fix:交接页面按钮修正
This commit is contained in:
parent
f4fcc315bb
commit
9734d461cf
|
@ -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)"
|
||||||
|
|
Loading…
Reference in New Issue