fix:交接记录中传参mgroupx
This commit is contained in:
parent
d686d54eb8
commit
057fa9af75
|
|
@ -141,12 +141,6 @@
|
|||
width="300"
|
||||
>
|
||||
<template #default="scope">
|
||||
<!-- <el-button
|
||||
v-if="scope.row.send_mgroup == mgroupId||deptId==scope.row.send_dept"
|
||||
@click="table_print(scope.row)"
|
||||
type="success"
|
||||
>打印</el-button
|
||||
> -->
|
||||
<el-button
|
||||
@click="table_receive(scope.row)"
|
||||
type="success"
|
||||
|
|
@ -170,13 +164,6 @@
|
|||
<el-button type="warning">撤消</el-button>
|
||||
</template>
|
||||
</el-popconfirm>
|
||||
<!-- <el-button
|
||||
@click="table_edit(scope.row)"
|
||||
v-auth="'handover.update'"
|
||||
type="primary"
|
||||
v-if="(scope.row.send_mgroup == mgroupId||deptId==scope.row.send_dept)&&scope.row.submit_time == null&&scope.row.mtype == 10"
|
||||
>编辑</el-button
|
||||
> -->
|
||||
<el-popconfirm
|
||||
title="确定删除吗?"
|
||||
v-if="(scope.row.send_mgroup == mgroupId||deptId==scope.row.send_dept)&&scope.row.submit_time == null"
|
||||
|
|
@ -354,7 +341,7 @@ export default {
|
|||
that.mgroupId = res[0].id;
|
||||
that.processId = res[0].process;
|
||||
that.processCate = res[0].process_cate;
|
||||
that.params.mgroup = that.mgroupId;
|
||||
that.params.mgroupx = that.mgroupId;
|
||||
that.apiObj = that.$API.wpm.handover.list;
|
||||
that.$refs.table.refresh();
|
||||
});
|
||||
|
|
@ -448,6 +435,8 @@ export default {
|
|||
let form = {};
|
||||
form.send_mgroup = row.recive_mgroup;
|
||||
form.recive_mgroup = row.send_mgroup;
|
||||
// form.recive_mgroup_name = row.send_mgroup_name;
|
||||
// form.recive_dept = row.send_dept;
|
||||
form.handoverb = [];
|
||||
that.handoverbList = [];
|
||||
row.handoverb.forEach((item) => {
|
||||
|
|
|
|||
Loading…
Reference in New Issue