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. 34
      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,
zflist: null,
zuofei: [],
getRowKeys: (row) => {
getRowKeys:
(row) => {
return row.id; //id
},
expands: [], //id

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

@ -201,7 +201,11 @@
</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-column
property="billNum"
@ -240,7 +244,7 @@
></el-table-column>
</el-table>
<div slot="footer" class="dialog-footer">
<el-button type="text" @click="dialogTableVisible = false"
<el-button type="text" @click="dialogTableVisible = false"
>取消</el-button
>
<el-button type="primary" @click="handleDelete"> </el-button>
@ -295,8 +299,9 @@ export default {
};
return {
crmType: "M100Online-MB",
dialogTableVisible :false,
zflist:null,
dialogTableVisible: false,
zuofei: [],
zflist: null,
getRowKeys: (row) => {
return row.id; //id
},
@ -566,20 +571,14 @@ export default {
this.listQuery
)
.then((response) => {
response.items.forEach((item)=>{
if(item.printType == 0)
{
response.items.forEach((item) => {
if (item.printType == 0) {
item.printType = "正常打印";
}
else if(item.printType == 1)
{
} else if (item.printType == 1) {
item.printType = "重打";
}
else
{
} else {
item.printType = "补打";
}
});
this.list = response.items;
this.totalCount = response.totalCount;
@ -680,7 +679,7 @@ export default {
})
.catch(() => {});
},
//
//
handleDelete() {
//debugger;
let params = this.zuofei;
@ -698,10 +697,9 @@ export default {
type: "success",
duration: 2000,
});
});
this.dialogTableVisible = false;
this.getList();
this.dialogTableVisible = false;
this.getList();
},
//-
// handleDelete(row) {

Loading…
Cancel
Save