From a2586ce70485035d77746ff9c18364f408f4c6aa Mon Sep 17 00:00:00 2001 From: yangfeng <wanwan926_4@163.com> Date: 星期一, 07 八月 2023 16:57:06 +0800 Subject: [PATCH] 服务管理模块详情页 --- src/views/service/clientServiceOrder/AddCientServiceOrderDialog.vue | 108 ++++++++++++++++++++++++++++-------------------------- 1 files changed, 56 insertions(+), 52 deletions(-) diff --git a/src/views/service/orderManage/AddOrderManageDialog.vue b/src/views/service/clientServiceOrder/AddCientServiceOrderDialog.vue similarity index 95% rename from src/views/service/orderManage/AddOrderManageDialog.vue rename to src/views/service/clientServiceOrder/AddCientServiceOrderDialog.vue index 685e1d5..3247a53 100644 --- a/src/views/service/orderManage/AddOrderManageDialog.vue +++ b/src/views/service/clientServiceOrder/AddCientServiceOrderDialog.vue @@ -5,6 +5,8 @@ :visible.sync="editConfig.visible" :width="dialogWidth" :before-close="handleClose" + append-to-body + custom-class="iframe-dialog" > <el-form ref="form" @@ -480,7 +482,7 @@ import SelectClientDialog from "@/views/other/commonDialog/SelectClientDialog" import pageMixin from "@/components/makepager/pager/mixin/pageMixin" export default { - name: "AddOrderManageDialog", + name: "AddClientServiceOrderDialog", mixins: [pageMixin], props: { editCommonConfig: { @@ -683,68 +685,70 @@ <!-- Add "scoped" attribute to limit CSS to this component only --> <style lang="scss" scoped> -.order-manage { - .basic-info { - .basic-info-title { - background-color: #f4f8fe; - padding-left: 10px; - font-size: 15px; - font-weight: bold; - color: #666; - height: 42px; - line-height: 42px; - } - .basic-info-view { - margin-top: 10px; - padding-right: 40px; - .custom-name, - .common-select { - display: flex; - .common-select-sel { - width: 270px; - } - .common-select-btn { - margin-left: 5px; - font-size: 16px; - cursor: pointer; - } - } - } - .annex-view { - display: flex; - color: #6166d3; - .setFormat { - margin-left: 10px; - } - } +::v-deep { + .iframe-dialog .el-dialog__body { .basic-info { - .basic-info-label { + .basic-info-title { + background-color: #f4f8fe; padding-left: 10px; + font-size: 15px; + font-weight: bold; + color: #666; height: 42px; line-height: 42px; - background: #f4f8fe; - color: #333; - font-size: 14px; } - .basic-info-content { - .list { - .page { - text-align: right; - margin-bottom: 5px; + .basic-info-view { + margin-top: 10px; + padding-right: 40px; + .custom-name, + .common-select { + display: flex; + .common-select-sel { + width: 270px; + } + .common-select-btn { + margin-left: 5px; + font-size: 16px; + cursor: pointer; } } - .no-data { - height: 40px; - line-height: 40px; + } + .annex-view { + display: flex; + color: #6166d3; + .setFormat { margin-left: 10px; } } + .basic-info { + .basic-info-label { + padding-left: 10px; + height: 42px; + line-height: 42px; + background: #f4f8fe; + color: #333; + font-size: 14px; + } + .basic-info-content { + .list { + .page { + text-align: right; + margin-bottom: 5px; + } + } + .no-data { + height: 40px; + line-height: 40px; + margin-left: 10px; + } + } + } } - } - .dialog-footer { - background-color: #f5f5f5; - height: 55px; - line-height: 55px; + .dialog-footer { + background-color: #f5f5f5; + height: 55px; + line-height: 55px; + } } } </style> -- Gitblit v1.8.0