|
|
|
@ -10,6 +10,12 @@ export const searchFormSchema: FormSchema[] = [
|
|
|
|
|
component: 'Input',
|
|
|
|
|
colProps: { span: 4 },
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'taskNo',
|
|
|
|
|
label: '任务流水号',
|
|
|
|
|
component: 'Input',
|
|
|
|
|
colProps: { span: 4 },
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'goodsCode',
|
|
|
|
|
label: '接收人',
|
|
|
|
@ -41,30 +47,18 @@ export const searchFormSchema: FormSchema[] = [
|
|
|
|
|
{
|
|
|
|
|
field: 'taskType',
|
|
|
|
|
label: '任务类型',
|
|
|
|
|
component: 'ApiSelect',
|
|
|
|
|
component: 'Select',
|
|
|
|
|
required: false,
|
|
|
|
|
dynamicDisabled: false,
|
|
|
|
|
colProps: { span: 4 },
|
|
|
|
|
componentProps: ({ formModel }) => {
|
|
|
|
|
return {
|
|
|
|
|
api: () => {
|
|
|
|
|
return new Promise((resolve) => {
|
|
|
|
|
GetTaskPlatEnumDict().then((res) => {
|
|
|
|
|
let arr = []
|
|
|
|
|
res.data.forEach((item) => {
|
|
|
|
|
if(item.type==='TASK_TYPE'){
|
|
|
|
|
arr = item.data
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
res.selectData = arr
|
|
|
|
|
resolve(res)
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
options: typeData.value,
|
|
|
|
|
fieldNames: {
|
|
|
|
|
label: 'name',
|
|
|
|
|
value: 'code'
|
|
|
|
|
},
|
|
|
|
|
labelField: 'name',
|
|
|
|
|
valueField: 'code',
|
|
|
|
|
immediate:false,
|
|
|
|
|
resultField: 'selectData',
|
|
|
|
|
showSearch: true,
|
|
|
|
|
filterOption: (input: string, option: any) => {
|
|
|
|
|
return option.label.toLowerCase().indexOf(input.toLowerCase()) >= 0
|
|
|
|
|
},
|
|
|
|
@ -74,30 +68,18 @@ export const searchFormSchema: FormSchema[] = [
|
|
|
|
|
{
|
|
|
|
|
field: 'taskSource',
|
|
|
|
|
label: '任务来源',
|
|
|
|
|
component: 'ApiSelect',
|
|
|
|
|
component: 'Select',
|
|
|
|
|
required: false,
|
|
|
|
|
dynamicDisabled: false,
|
|
|
|
|
colProps: { span: 4 },
|
|
|
|
|
componentProps: ({ formModel }) => {
|
|
|
|
|
return {
|
|
|
|
|
api: () => {
|
|
|
|
|
return new Promise((resolve) => {
|
|
|
|
|
GetTaskPlatEnumDict().then((res) => {
|
|
|
|
|
let arr = []
|
|
|
|
|
res.data.forEach((item) => {
|
|
|
|
|
if(item.type==='SOURCE'){
|
|
|
|
|
arr = item.data
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
res.selectData = arr
|
|
|
|
|
resolve(res)
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
options: sourceData.value,
|
|
|
|
|
fieldNames: {
|
|
|
|
|
label: 'name',
|
|
|
|
|
value: 'code'
|
|
|
|
|
},
|
|
|
|
|
labelField: 'name',
|
|
|
|
|
valueField: 'code',
|
|
|
|
|
immediate:false,
|
|
|
|
|
resultField: 'selectData',
|
|
|
|
|
showSearch: true,
|
|
|
|
|
filterOption: (input: string, option: any) => {
|
|
|
|
|
return option.label.toLowerCase().indexOf(input.toLowerCase()) >= 0
|
|
|
|
|
},
|
|
|
|
@ -107,30 +89,18 @@ export const searchFormSchema: FormSchema[] = [
|
|
|
|
|
{
|
|
|
|
|
field: 'taskCategory',
|
|
|
|
|
label: '任务分类',
|
|
|
|
|
component: 'ApiSelect',
|
|
|
|
|
component: 'Select',
|
|
|
|
|
required: false,
|
|
|
|
|
dynamicDisabled: false,
|
|
|
|
|
colProps: { span: 4 },
|
|
|
|
|
componentProps: ({ formModel }) => {
|
|
|
|
|
return {
|
|
|
|
|
api: () => {
|
|
|
|
|
return new Promise((resolve) => {
|
|
|
|
|
GetTaskPlatEnumDict().then((res) => {
|
|
|
|
|
let arr = []
|
|
|
|
|
res.data.forEach((item) => {
|
|
|
|
|
if(item.type==='CATEGORY'){
|
|
|
|
|
arr = item.data
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
res.selectData = arr
|
|
|
|
|
resolve(res)
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
options: categoryData.value,
|
|
|
|
|
fieldNames: {
|
|
|
|
|
label: 'name',
|
|
|
|
|
value: 'code'
|
|
|
|
|
},
|
|
|
|
|
labelField: 'name',
|
|
|
|
|
valueField: 'code',
|
|
|
|
|
immediate:false,
|
|
|
|
|
resultField: 'selectData',
|
|
|
|
|
showSearch: true,
|
|
|
|
|
filterOption: (input: string, option: any) => {
|
|
|
|
|
return option.label.toLowerCase().indexOf(input.toLowerCase()) >= 0
|
|
|
|
|
},
|
|
|
|
@ -140,30 +110,18 @@ export const searchFormSchema: FormSchema[] = [
|
|
|
|
|
{
|
|
|
|
|
field: 'status',
|
|
|
|
|
label: '任务状态',
|
|
|
|
|
component: 'ApiSelect',
|
|
|
|
|
component: 'Select',
|
|
|
|
|
required: false,
|
|
|
|
|
dynamicDisabled: false,
|
|
|
|
|
colProps: { span: 4 },
|
|
|
|
|
componentProps: ({ formModel }) => {
|
|
|
|
|
return {
|
|
|
|
|
api: () => {
|
|
|
|
|
return new Promise((resolve) => {
|
|
|
|
|
GetTaskPlatEnumDict().then((res) => {
|
|
|
|
|
let arr = []
|
|
|
|
|
res.data.forEach((item) => {
|
|
|
|
|
if(item.type==='STATUS'){
|
|
|
|
|
arr = item.data
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
res.selectData = arr
|
|
|
|
|
resolve(res)
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
options: statusData.value,
|
|
|
|
|
fieldNames: {
|
|
|
|
|
label: 'name',
|
|
|
|
|
value: 'code'
|
|
|
|
|
},
|
|
|
|
|
labelField: 'name',
|
|
|
|
|
valueField: 'code',
|
|
|
|
|
immediate:false,
|
|
|
|
|
resultField: 'selectData',
|
|
|
|
|
showSearch: true,
|
|
|
|
|
filterOption: (input: string, option: any) => {
|
|
|
|
|
return option.label.toLowerCase().indexOf(input.toLowerCase()) >= 0
|
|
|
|
|
},
|
|
|
|
@ -287,7 +245,30 @@ export const columns: BasicColumn[] = [
|
|
|
|
|
ellipsis: true
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
export const typeData = ref([]) as any
|
|
|
|
|
export const statusData = ref([]) as any
|
|
|
|
|
export const sourceData = ref([]) as any
|
|
|
|
|
export const categoryData = ref([]) as any
|
|
|
|
|
function init() {
|
|
|
|
|
GetTaskPlatEnumDict().then((res) => {
|
|
|
|
|
res.data.forEach((item) => {
|
|
|
|
|
if (item.type === 'TASK_TYPE') {
|
|
|
|
|
typeData.value = item.data
|
|
|
|
|
}
|
|
|
|
|
if (item.type === 'STATUS') {
|
|
|
|
|
statusData.value = item.data
|
|
|
|
|
}
|
|
|
|
|
if (item.type === 'CATEGORY') {
|
|
|
|
|
categoryData.value = item.data
|
|
|
|
|
}
|
|
|
|
|
if (item.type === 'SOURCE') {
|
|
|
|
|
sourceData.value = item.data
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
console.log(typeData.value)
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
init()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|