Browse Source

修改BUG

branch_ccpg_220107
songnan.zhang 3 years ago
parent
commit
bb8fa37451
  1. 5
      vue/src/views/pg-fis/basedate/m100Online/ScrapMB.vue
  2. 20
      vue/src/views/pg-fis/basedate/m100Online/ScrapZHB.vue

5
vue/src/views/pg-fis/basedate/m100Online/ScrapMB.vue

@ -297,7 +297,10 @@ export default {
dialogTableVisible: false, dialogTableVisible: false,
zflist: null, zflist: null,
zuofei: [], zuofei: [],
getRowKeys: (row) => { getRowKeys:
(row) => {
return row.id; //id return row.id; //id
}, },
expands: [], //id expands: [], //id

20
vue/src/views/pg-fis/basedate/m100Online/ScrapZHB.vue

@ -201,7 +201,11 @@
</div> </div>
</div> </div>
<div> <div>
<el-dialog title="作废信息" append-to-body="true" :visible.sync="dialogTableVisible"> <el-dialog
title="作废信息"
append-to-body="true"
:visible.sync="dialogTableVisible"
>
<el-table :data="zflist"> <el-table :data="zflist">
<el-table-column <el-table-column
property="billNum" property="billNum"
@ -296,6 +300,7 @@ export default {
return { return {
crmType: "M100Online-MB", crmType: "M100Online-MB",
dialogTableVisible: false, dialogTableVisible: false,
zuofei: [],
zflist: null, zflist: null,
getRowKeys: (row) => { getRowKeys: (row) => {
return row.id; //id return row.id; //id
@ -567,19 +572,13 @@ export default {
) )
.then((response) => { .then((response) => {
response.items.forEach((item) => { response.items.forEach((item) => {
if(item.printType == 0) if (item.printType == 0) {
{
item.printType = "正常打印"; item.printType = "正常打印";
} } else if (item.printType == 1) {
else if(item.printType == 1)
{
item.printType = "重打"; item.printType = "重打";
} } else {
else
{
item.printType = "补打"; item.printType = "补打";
} }
}); });
this.list = response.items; this.list = response.items;
this.totalCount = response.totalCount; this.totalCount = response.totalCount;
@ -698,7 +697,6 @@ export default {
type: "success", type: "success",
duration: 2000, duration: 2000,
}); });
}); });
this.dialogTableVisible = false; this.dialogTableVisible = false;
this.getList(); this.getList();

Loading…
Cancel
Save