修改冀北 bug

This commit is contained in:
GGJ
2024-07-15 20:34:21 +08:00
parent afc0e875d8
commit c8c4c50274
8 changed files with 197 additions and 257 deletions

View File

@@ -138,7 +138,7 @@ const tableStore = new TableStore({
icon: 'el-icon-EditPen',
render: 'basicButton',
disabled: row => {
return row.status !== 5
return row.dutyOrgId != adminInfo.$state.deptId || row.status !== 5
},
click: row => {
feedbackPopup.value.open(
@@ -173,7 +173,7 @@ const tableStore = new TableStore({
icon: 'el-icon-Open',
render: 'basicButton',
showDisabled: row => {
return row.createBy != adminInfo.$state.id || !(row.status == 0)
return row.dutyOrgId != adminInfo.$state.deptId || !(row.status == 0)
},
disabled: row => {
return !(row.status == 0)