feat(task-management): 工单管理新增联系人筛选和显示功能

This commit is contained in:
dj
2024-12-21 22:13:20 +08:00
parent 93f454e7d8
commit b3a0171e8c
3 changed files with 79 additions and 7 deletions

View File

@@ -56,6 +56,16 @@ const searchConfig = reactive([
// },
// component: 'el-input',
// },
{
label: '联系人',
prop: 'destinationNumber',
props: {
placeholder: '请输入联系人查询',
clearable: true,
checkStrictly: true
},
component: 'el-input',
},
{
label: '处理人',
prop: 'operationUser',
@@ -144,13 +154,13 @@ const tableConfig = reactive({
prop: 'alarmUnit',
label: '拨打单位',
align: 'center',
width: 200
width: 120
},
{
prop: 'alarmObject',
label: '拨打对象',
align: 'center',
width: 200
width: 100
},
{
prop: 'orderState',
@@ -179,6 +189,19 @@ const tableConfig = reactive({
}
}
},
{
prop: 'destinationNumber',
label: '联系人',
align: 'center',
width: 160,
currentRender: ({row, index}) => {
if (row.destinationNumber) {
return row.destinationNumber
} else {
return '--'
}
}
},
{
prop: 'operationUser',
label: '处理人',