Merge pull request 'master' (#224) from master into test

Reviewed-on: http://git.feashow.cn/feashow/SmartOpsWeb/pulls/224
This commit is contained in:
2024-12-21 14:13:42 +00:00
3 changed files with 79 additions and 7 deletions

View File

@@ -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

View File

@@ -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: '处理人',

View File

@@ -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: '处理人',