From 67552745548a0a6846adad65605cbcece42ef10a Mon Sep 17 00:00:00 2001 From: chiyilin <2449182606@qq.com> Date: Thu, 2 Nov 2023 11:42:11 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=AD=97=E5=85=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils/dict.js | 3 + src/views/borrow/record/index.vue | 15 +- src/views/setting/fileCategory/index.vue | 210 ++++++----------------- 3 files changed, 59 insertions(+), 169 deletions(-) diff --git a/src/utils/dict.js b/src/utils/dict.js index c48faff3..0db360c1 100644 --- a/src/utils/dict.js +++ b/src/utils/dict.js @@ -163,6 +163,9 @@ CONSULTATION_TYPE: 'consultation_type', ASSET_TYPE: 'asset_type', //其他档案业务类型 OTHER_BUSINESS_TYPE: 'other_business_type', +//启用状态 +ENABLE_STATE: 'enable_state', + } diff --git a/src/views/borrow/record/index.vue b/src/views/borrow/record/index.vue index d0451829..f12522f4 100644 --- a/src/views/borrow/record/index.vue +++ b/src/views/borrow/record/index.vue @@ -20,15 +20,16 @@ - + v-for="dict in this.getDictDatas(DICT_TYPE.BORROW_APPLY)" + :key="dict.value" + :label="dict.label" + :value="dict.value" + /> diff --git a/src/views/setting/fileCategory/index.vue b/src/views/setting/fileCategory/index.vue index 35a9ba60..19d42c46 100644 --- a/src/views/setting/fileCategory/index.vue +++ b/src/views/setting/fileCategory/index.vue @@ -1,65 +1,31 @@