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 @@