|
|
@ -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" |
|
|
@ -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; |
|
|
@ -698,7 +697,6 @@ export default { |
|
|
|
type: "success", |
|
|
|
duration: 2000, |
|
|
|
}); |
|
|
|
|
|
|
|
}); |
|
|
|
this.dialogTableVisible = false; |
|
|
|
this.getList(); |
|
|
|