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