From 96ad8dcb68bb860fbe92871af91be2fdf9158914 Mon Sep 17 00:00:00 2001 From: z Date: Sat, 26 Jul 2025 17:45:02 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B4=BE=E5=B7=A5=E5=8D=95=E5=A4=8D=E9=80=89?= =?UTF-8?q?=E6=A1=86=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../views/heli/taskdispatch/detailDialog.vue | 27 +++++++++++++++---- 1 file changed, 22 insertions(+), 5 deletions(-) diff --git a/mes-ui/mes-ui-admin-vue3/src/views/heli/taskdispatch/detailDialog.vue b/mes-ui/mes-ui-admin-vue3/src/views/heli/taskdispatch/detailDialog.vue index 1303d44..b121ee3 100644 --- a/mes-ui/mes-ui-admin-vue3/src/views/heli/taskdispatch/detailDialog.vue +++ b/mes-ui/mes-ui-admin-vue3/src/views/heli/taskdispatch/detailDialog.vue @@ -221,7 +221,7 @@ class="!w-260px" v-model="formData.requiredCompletedDate" type="date" value-form @@ -236,7 +236,7 @@ class="!w-260px" v-model="formData.requiredCompletedDate" type="date" value-form @@ -276,7 +276,7 @@ style=" display: flex; justify-content: center; align-items: center; width: 100%;"> - + @@ -1519,8 +1519,8 @@ const onAddItem = () => { dispatchId: undefined, procedureCode:'' , isReport:0 , - checkYn : 0, - checkYns: true, + checkYn : 1, + checkYns: false, postId: ownerList2.value[0].id } // 遍历对象的键 @@ -1833,4 +1833,21 @@ const printHandle = (id) => { padding: 10px; /* 调整为合适的值 */ } +.large-checkbox { + transform: scale(1.5); /* 方法1:使用scale放大 */ + /* 或者 */ + /* 方法2:通过调整字体大小 */ + /* font-size: 18px; */ +} +/* 或者更精确地控制内部图标 */ +/* .large-checkbox .el-checkbox__inner { + width: 20px; + height: 20px; +} +.large-checkbox .el-checkbox__inner::after { + height: 10px; + left: 7px; + top: 3px; + width: 5px; +} */