Merge pull request 'feat(task-management): 工单管理新增联系人筛选和显示功能' (#223) from dj into master
Reviewed-on: http://git.feashow.cn/feashow/SmartOpsWeb/pulls/223
This commit is contained in:
@@ -64,7 +64,18 @@ const searchConfig = reactive([
|
|||||||
filterable: true,
|
filterable: true,
|
||||||
},
|
},
|
||||||
component: shallowRef(fvSelect),
|
component: shallowRef(fvSelect),
|
||||||
}, {
|
},
|
||||||
|
{
|
||||||
|
label: '联系人',
|
||||||
|
prop: 'destinationNumber',
|
||||||
|
props: {
|
||||||
|
placeholder: '请输入联系人查询',
|
||||||
|
clearable: true,
|
||||||
|
checkStrictly: true
|
||||||
|
},
|
||||||
|
component: 'el-input',
|
||||||
|
},
|
||||||
|
{
|
||||||
label: '处理人',
|
label: '处理人',
|
||||||
prop: 'operationUser',
|
prop: 'operationUser',
|
||||||
props: {
|
props: {
|
||||||
@@ -152,13 +163,13 @@ const tableConfig = reactive({
|
|||||||
prop: 'alarmUnit',
|
prop: 'alarmUnit',
|
||||||
label: '拨打单位',
|
label: '拨打单位',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
width: 200
|
width: 120
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'alarmObject',
|
prop: 'alarmObject',
|
||||||
label: '拨打对象',
|
label: '拨打对象',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
width: 200
|
width: 100
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'orderState',
|
prop: 'orderState',
|
||||||
@@ -187,10 +198,24 @@ const tableConfig = reactive({
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
prop: 'destinationNumber',
|
||||||
|
label: '联系人',
|
||||||
|
align: 'center',
|
||||||
|
width: 160,
|
||||||
|
currentRender: ({row, index}) => {
|
||||||
|
if (row.destinationNumber) {
|
||||||
|
return row.destinationNumber
|
||||||
|
} else {
|
||||||
|
return '--'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
prop: 'operationUser',
|
prop: 'operationUser',
|
||||||
label: '处理人',
|
label: '处理人',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
|
width: 100,
|
||||||
currentRender: ({row, index}) => {
|
currentRender: ({row, index}) => {
|
||||||
if (row.operationUser) {
|
if (row.operationUser) {
|
||||||
return row.operationUser
|
return row.operationUser
|
||||||
|
|||||||
@@ -56,6 +56,16 @@ const searchConfig = reactive([
|
|||||||
// },
|
// },
|
||||||
// component: 'el-input',
|
// component: 'el-input',
|
||||||
// },
|
// },
|
||||||
|
{
|
||||||
|
label: '联系人',
|
||||||
|
prop: 'destinationNumber',
|
||||||
|
props: {
|
||||||
|
placeholder: '请输入联系人查询',
|
||||||
|
clearable: true,
|
||||||
|
checkStrictly: true
|
||||||
|
},
|
||||||
|
component: 'el-input',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
label: '处理人',
|
label: '处理人',
|
||||||
prop: 'operationUser',
|
prop: 'operationUser',
|
||||||
@@ -144,13 +154,13 @@ const tableConfig = reactive({
|
|||||||
prop: 'alarmUnit',
|
prop: 'alarmUnit',
|
||||||
label: '拨打单位',
|
label: '拨打单位',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
width: 200
|
width: 120
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'alarmObject',
|
prop: 'alarmObject',
|
||||||
label: '拨打对象',
|
label: '拨打对象',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
width: 200
|
width: 100
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'orderState',
|
prop: 'orderState',
|
||||||
@@ -179,6 +189,20 @@ const tableConfig = reactive({
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
prop: 'destinationNumber',
|
||||||
|
label: '联系人',
|
||||||
|
align: 'center',
|
||||||
|
width: 160,
|
||||||
|
currentRender: ({row, index}) => {
|
||||||
|
if (row.destinationNumber) {
|
||||||
|
return row.destinationNumber
|
||||||
|
} else {
|
||||||
|
return '--'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
prop: 'operationUser',
|
prop: 'operationUser',
|
||||||
label: '处理人',
|
label: '处理人',
|
||||||
|
|||||||
@@ -56,6 +56,16 @@ const searchConfig = reactive([
|
|||||||
// },
|
// },
|
||||||
// component: 'el-input',
|
// component: 'el-input',
|
||||||
// },
|
// },
|
||||||
|
{
|
||||||
|
label: '联系人',
|
||||||
|
prop: 'destinationNumber',
|
||||||
|
props: {
|
||||||
|
placeholder: '请输入联系人查询',
|
||||||
|
clearable: true,
|
||||||
|
checkStrictly: true
|
||||||
|
},
|
||||||
|
component: 'el-input',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
label: '处理人',
|
label: '处理人',
|
||||||
prop: 'operationUser',
|
prop: 'operationUser',
|
||||||
@@ -144,13 +154,13 @@ const tableConfig = reactive({
|
|||||||
prop: 'alarmUnit',
|
prop: 'alarmUnit',
|
||||||
label: '拨打单位',
|
label: '拨打单位',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
width: 200
|
width: 120
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'alarmObject',
|
prop: 'alarmObject',
|
||||||
label: '拨打对象',
|
label: '拨打对象',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
width: 200
|
width: 100
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'orderState',
|
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',
|
prop: 'operationUser',
|
||||||
label: '处理人',
|
label: '处理人',
|
||||||
|
|||||||
Reference in New Issue
Block a user