联调 常态化干扰源用户管理 流程

This commit is contained in:
GGJ
2024-06-28 15:37:30 +08:00
parent 70e4363123
commit 062eec323e
2 changed files with 14 additions and 1 deletions

View File

@@ -40,7 +40,7 @@ const open = async (row: any) => {
},
xAxis: {
name: '',
data: ['技术监督计划', '用户投诉', '在线问题']
data: ['技术监督计划', '用户投诉', '在线监测问题']
},
yAxis: {

View File

@@ -222,6 +222,19 @@ const tableStore = new TableStore({
}, 100)
}
},
{
name: 'edit',
title: '重新发起',
type: 'warning',
icon: 'el-icon-Open',
render: 'basicButton',
disabled: row => {
return row.createBy != adminInfo.$state.id || !(row.status == 3 || row.status == 4)
},
click: row => {
addForms.value.open({ title: '重新发起', row: row })
}
},
{
name: 'cancel',
title: '取消',