fix:交接页面按钮修正

This commit is contained in:
shijing 2024-10-30 10:03:34 +08:00
parent f4fcc315bb
commit 9734d461cf
1 changed files with 3 additions and 3 deletions

View File

@ -153,7 +153,7 @@
<el-button
link
size="small"
v-if="scope.row.send_mgroup == mgroupId"
v-if="scope.row.send_mgroup == mgroupId||deptId==scope.row.send_dept"
@click="table_print(scope.row)"
type="success"
>打印</el-button
@ -178,7 +178,7 @@
v-auth="'handover.update'"
type="primary"
v-if="
scope.row.send_mgroup == mgroupId &&
(scope.row.send_mgroup == mgroupId||deptId==scope.row.send_dept)&&
scope.row.submit_time == null
"
>编辑</el-button
@ -186,7 +186,7 @@
<el-popconfirm
title="确定删除吗?"
v-if="
scope.row.send_mgroup == mgroupId &&
(scope.row.send_mgroup == mgroupId||deptId==scope.row.send_dept)&&
scope.row.submit_time == null
"
@confirm="table_del(scope.row, scope.$index)"