Commit f440dc6a authored by chenqikuai's avatar chenqikuai

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

parent 7bb785b2
......@@ -90,7 +90,13 @@
</spin>
<div class="h-5"></div>
</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>
......@@ -1029,12 +1035,16 @@ export default Vue.extend({
})
</script>
<style lang="less">
.base_form_item {
// justify-content: center;
<style lang="less" scoped>
/deep/ .base_form_item {
display: flex;
/deep/ .ant-form-item-label {
.ant-form-item-label {
padding-right: 30px;
}
}
.outletmodal {
/deep/.ant-modal-content {
overflow: hidden;
}
}
</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