Commit f440dc6a authored by chenqikuai's avatar chenqikuai

perf: 修复网点管理弹出框点击弹出框以外的范围无法关闭的问题

parent 7bb785b2
...@@ -90,7 +90,13 @@ ...@@ -90,7 +90,13 @@
</spin> </spin>
<div class="h-5"></div> <div class="h-5"></div>
</a-modal> </a-modal>
<a-modal v-model="visible" :footer="null" :afterClose="afterClose" width="900px"> <a-modal
v-model="visible"
:footer="null"
:afterClose="afterClose"
width="900px"
class="outletmodal"
>
<div class="text-center text-lg font-semibold" v-if="modalType === eModalType.edit"> <div class="text-center text-lg font-semibold" v-if="modalType === eModalType.edit">
编辑网点 编辑网点
</div> </div>
...@@ -1029,12 +1035,16 @@ export default Vue.extend({ ...@@ -1029,12 +1035,16 @@ export default Vue.extend({
}) })
</script> </script>
<style lang="less"> <style lang="less" scoped>
.base_form_item { /deep/ .base_form_item {
// justify-content: center;
display: flex; display: flex;
/deep/ .ant-form-item-label { .ant-form-item-label {
padding-right: 30px; padding-right: 30px;
} }
} }
.outletmodal {
/deep/.ant-modal-content {
overflow: hidden;
}
}
</style> </style>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment