修改技术监督bug
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<TableHeader area datePicker ref='TableHeaderRef'>
|
||||
<TableHeader area datePicker nextFlag ref='TableHeaderRef'>
|
||||
<template v-slot:select>
|
||||
<el-form-item label='流程状态'>
|
||||
<el-select v-model='tableStore.table.params.status' clearable placeholder='请选择流程状态'>
|
||||
@@ -162,7 +162,7 @@ const tableStore = new TableStore({
|
||||
icon: 'el-icon-Open',
|
||||
render: 'basicButton',
|
||||
disabled: row => {
|
||||
return !(row.createBy == adminInfo.$state.id|| row.status == 6 || row.status == 3 || row.status == 4)
|
||||
return row.createBy != adminInfo.$state.id || !(row.status == 3 || row.status == 4|| row.status == 6)
|
||||
},
|
||||
click: row => {
|
||||
planTestRef.value.open('重新发起计划测试', row.id, false)
|
||||
|
||||
Reference in New Issue
Block a user