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