diff --git a/src/api/system/dict/type.js b/src/api/system/dict/type.js index a7a6e01..b281f58 100644 --- a/src/api/system/dict/type.js +++ b/src/api/system/dict/type.js @@ -9,6 +9,15 @@ export function listType(query) { }) } +// 查询业务字典类型列表(扩展) +export function bizListType(query) { + return request({ + url: '/system/dict/type/bizlist', + method: 'get', + params: query + }) +} + // 查询字典类型详细 export function getType(dictId) { return request({ diff --git a/src/views/system/bizdict/data.vue b/src/views/system/bizdict/data.vue new file mode 100644 index 0000000..d626817 --- /dev/null +++ b/src/views/system/bizdict/data.vue @@ -0,0 +1,392 @@ + + + diff --git a/src/views/system/bizdict/index.vue b/src/views/system/bizdict/index.vue new file mode 100644 index 0000000..49dc791 --- /dev/null +++ b/src/views/system/bizdict/index.vue @@ -0,0 +1,341 @@ + + + diff --git a/src/views/system/dict/index.vue b/src/views/system/dict/index.vue index 520709a..de26be7 100644 --- a/src/views/system/dict/index.vue +++ b/src/views/system/dict/index.vue @@ -80,13 +80,14 @@ @click="handleDelete" v-hasPermi="['system:dict:remove']" >删除 +