From a41c87a94a0b52688420a7af3b242bc771628e28 Mon Sep 17 00:00:00 2001 From: Ben Lin <maobin001@msn.com> Date: 星期五, 19 七月 2024 17:30:32 +0800 Subject: [PATCH] 登录logo更新 --- src/views/tigerprojects/mes/eng/route/components/ActionItemProps.vue | 23 +++++++++++++++++++++-- 1 files changed, 21 insertions(+), 2 deletions(-) diff --git a/src/views/tigerprojects/mes/eng/route/components/ActionItemProps.vue b/src/views/tigerprojects/mes/eng/route/components/ActionItemProps.vue index 1f55e0a..7f6c6f1 100644 --- a/src/views/tigerprojects/mes/eng/route/components/ActionItemProps.vue +++ b/src/views/tigerprojects/mes/eng/route/components/ActionItemProps.vue @@ -3,8 +3,8 @@ * @Author: your name * @version: * @Date: 2024-05-01 17:18:49 - * @LastEditors: your name - * @LastEditTime: 2024-06-18 00:20:58 + * @LastEditors: Ben Lin + * @LastEditTime: 2024-07-19 15:58:20 --> <!-- * @Description: 琛ㄥ崟椤瑰睘鎬э紝鎺т欢灞炴�ч潰鏉� @@ -72,6 +72,14 @@ :options="needSetupOptions" /> </FormItem> + <FormItem label="鎵ц鍑洪敊鏃讹紝鏄惁閲嶇疆鏁翠釜宸ュ簭鐨勬搷浣�(Y/N)" name="鎵ц鍑洪敊鏃讹紝鏄惁閲嶇疆鏁翠釜宸ュ簭鐨勬搷浣�(Y/N)"> + <Select + ref="select" + v-model:value="routeConfig.currentAct.NEED_RESET" + style="width: 150px" + :options="needResetOptions" + /> + </FormItem> <FormItem label="鏄惁鍚敤" name="鏄惁鍚敤"> <Select ref="select" @@ -120,6 +128,16 @@ label: '鏃犻渶璁剧疆', }, ]); + const needResetOptions = ref<SelectTypes['options']>([ + { + value: 'Y', + label: '鏄�', + }, + { + value: 'N', + label: '鍚�', + }, + ]); const actTypeLable = unref(getLocale) == 'zh_CN' ? 'Desc' : 'Name'; watch( () => routeConfig.currentAct, @@ -135,6 +153,7 @@ r.ACT_TYPE = newVal.ACT_TYPE; r.ACT_CODE = newVal.ACT_CODE; r.NEED_SETUP = newVal.NEED_SETUP; + r.NEED_RESET = newVal.NEED_RESET; // r.DO_TYPE = newVal.DO_TYPE; // r.DO_METHOD = newVal.DO_METHOD; // r.DO_IF_PASS = newVal.DO_IF_PASS; -- Gitblit v1.9.3