From bc16d211c5a2b31f0e3127a102748806151eaecb Mon Sep 17 00:00:00 2001 From: zouyu <2723363702@qq.com> Date: 星期四, 14 十二月 2023 16:23:19 +0800 Subject: [PATCH] modified: src/const/crud/customerOrder/customerOrderForm.js modified: src/views/plan/operationtask/operationtask-form.vue modified: src/views/product/workbench/operation-task-pane.vue modified: src/views/product/workbench/taskinfo-pane.vue modified: src/views/product/workbench/workReportCard.vue modified: src/views/quality/finishedProductInspection/finishedProduct-form.vue modified: src/views/quality/newReport/ReportForm.vue modified: src/views/quality/processInspect/processInspect-form.vue modified: src/views/quality/rawMaterial/rawMaterial-form.vue modified: src/views/quality/teststandard/standard-form.vue modified: src/views/technology/completeproductstructure/completeproductstructure-form.vue modified: src/views/technology/document/document-form.vue modified: src/views/technology/operation/operation-form.vue modified: src/views/technology/routing/routing-form.vue modified: src/views/warehouse/changestock/index.vue --- src/App.vue | 34 ++++++++++++++++++++++++++-------- 1 files changed, 26 insertions(+), 8 deletions(-) diff --git a/src/App.vue b/src/App.vue index d983112..feac764 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,6 +1,6 @@ <template> <div id="app"> - <router-view/> + <router-view /> </div> </template> @@ -12,15 +12,33 @@ }, computed: {}, watch: {}, - created() { - }, + created() {}, methods: {} } </script> <style lang="scss"> - #app { - width: 100%; - height: 100%; - overflow: hidden; - } +#app { + width: 100%; + height: 100%; + overflow: hidden; +} +/* 鍏ㄥ眬妯℃�佹鏍峰紡 */ +.el-dialog__header,.el-message-box__header { + box-sizing: border-box; + height: 56px; + border-bottom: 1px solid rgb(238, 238, 238); + padding: 0px; + display: flex; + align-items: center; +} +.el-dialog__header::before { + content: ""; + display: inline-block; + width: 4px; + height: 30.24px; + background: #875a7b; + border-radius: 10px; + margin-left: 32px; + margin-right: 8.5px; +} </style> -- Gitblit v1.9.3