Browse Source

重构产品管理

dev
qb 2 months ago
parent
commit
c31a9dd851
  1. 22
      src/api/basicdata/basicdataCategory.js
  2. 229
      src/option/basicdata/basicdataCategory.js
  3. 998
      src/views/basicdata/brand/basicdataCategory.vue

22
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,
});
};
};

229
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,
},
];

998
src/views/basicdata/brand/basicdataCategory.vue

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save