diff --git a/src/api/basicdata/basicdataCategory.js b/src/api/basicdata/basicdataCategory.js index e0ce3549..e3b3cace 100644 --- a/src/api/basicdata/basicdataCategory.js +++ b/src/api/basicdata/basicdataCategory.js @@ -1,14 +1,10 @@ import request from '@/axios'; -export const getList = (current, size, params) => { +export const getList = params => { return request({ url: '/api/logpm-basicdata/basicdataCategory/list', method: 'get', - params: { - ...params, - current, - size, - }, + params, }); }; @@ -60,6 +56,14 @@ export const update = row => { }); }; +export const submit = row => { + return request({ + url: '/api/logpm-basicdata/basicdataCategory/submit', + method: 'post', + data: row, + }); +}; + export const getDeptLazyTree = parentId => { return request({ url: '/api/logpm-basicdata/basicdataCategory/lazy-tree', @@ -80,10 +84,10 @@ export const getDownTemplate = () => { responseType: 'blob', }); }; -export const $_getList = (params) => { +export const $_getList = params => { return request({ url: '/api/logpm-basicdata/basicdataCategory/list', method: 'get', - params + params, }); -}; \ No newline at end of file +}; diff --git a/src/option/basicdata/basicdataCategory.js b/src/option/basicdata/basicdataCategory.js index b195d036..ac1660e4 100644 --- a/src/option/basicdata/basicdataCategory.js +++ b/src/option/basicdata/basicdataCategory.js @@ -1,180 +1,49 @@ -export default { - height: 'auto', - calcHeight: 30, - tip: false, - searchShow: false, - searchMenuSpan: 6, - indexLabel: '序号', - indexWidth: 80, - border: true, - index: true, - viewBtn: true, - selection: true, - dialogClickModal: false, - column: [ - { - label: '主键', - prop: 'id', - type: 'input', - addDisplay: false, - editDisplay: false, - viewDisplay: false, - hide: true, - width: 'fit-content', - }, - { - label: '租户号', - prop: 'tenantId', - type: 'input', - addDisplay: false, - editDisplay: false, - viewDisplay: false, - hide: true, - width: 'fit-content', - }, - { - label: '创建人', - prop: 'createUser', - type: 'input', - addDisplay: false, - editDisplay: false, - viewDisplay: false, - hide: true, - width: 'fit-content', - }, - { - label: '创建时间', - prop: 'createTime', - type: 'input', - addDisplay: false, - editDisplay: false, - viewDisplay: false, - hide: true, - width: 'fit-content', - }, - { - label: '更新人', - prop: 'updateUser', - type: 'input', - addDisplay: false, - editDisplay: false, - viewDisplay: false, - hide: true, - width: 'fit-content', - }, - { - label: '更新时间', - prop: 'updateTime', - type: 'input', - addDisplay: false, - editDisplay: false, - viewDisplay: false, - hide: true, - width: 'fit-content', - }, - { - label: '状态', - prop: 'status', - type: 'input', - addDisplay: false, - editDisplay: false, - viewDisplay: false, - hide: true, - width: 'fit-content', - }, - { - label: '是否已删除', - prop: 'isDeleted', - type: 'input', - addDisplay: false, - editDisplay: false, - viewDisplay: false, - hide: true, - width: 'fit-content', - }, - { - label: '创建部门', - prop: 'createDept', - type: 'input', - addDisplay: false, - editDisplay: false, - viewDisplay: false, - hide: true, - width: 'fit-content', - }, - { - label: '预留1', - prop: 'reserve1', - type: 'input', - addDisplay: false, - editDisplay: false, - viewDisplay: false, - hide: true, - width: 'fit-content', - }, - { - label: '预留2', - prop: 'reserve2', - type: 'input', - addDisplay: false, - editDisplay: false, - viewDisplay: false, - hide: true, - width: 'fit-content', - }, - { - label: '预留3', - prop: 'reserve3', - type: 'input', - addDisplay: false, - editDisplay: false, - viewDisplay: false, - hide: true, - width: 'fit-content', - }, - { - label: '预留4', - prop: 'reserve4', - type: 'input', - addDisplay: false, - editDisplay: false, - viewDisplay: false, - hide: true, - width: 'fit-content', - }, - { - label: '预留5', - prop: 'reserve5', - type: 'input', - addDisplay: false, - editDisplay: false, - viewDisplay: false, - hide: true, - width: 'fit-content', - }, - { - label: '名称', - prop: 'name', - type: 'input', - search: true, - }, - { - label: '类型', - prop: 'type', - type: 'select', - search: true, - dicUrl: '/api/blade-system/dict-biz/dictionary?code=category', - props: { - label: 'dictValue', - value: 'dictKey', - }, - rules: [ - { - required: true, - message: '请选择类型', - trigger: 'blur', - }, - ], - }, - ], -}; +export const columnList = [ + { + prop: '', + label: '复选框', + type: 0, + width: 55, + fixed: true, + }, + { + prop: '', + label: '序号', + type: 12, + values: '', + width: 55, + fixed: true, + }, + { + label: '名称', + prop: 'name', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + isTitleSearch: true, + }, + { + label: '类型', + prop: 'typeName', + type: 3, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + isTitleSearch: true, + }, + { + label: '操作', + prop: '', + type: 6, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, +]; diff --git a/src/views/basicdata/brand/basicdataCategory.vue b/src/views/basicdata/brand/basicdataCategory.vue index 5630edcb..6cb92360 100644 --- a/src/views/basicdata/brand/basicdataCategory.vue +++ b/src/views/basicdata/brand/basicdataCategory.vue @@ -1,388 +1,672 @@