Commit 3efcf1a3 authored by 吴春's avatar 吴春

修复发票附件审核界面无法查看下一个/上一个

parent 4ddcb840
...@@ -1130,7 +1130,7 @@ ...@@ -1130,7 +1130,7 @@
<el-image <el-image
style="width: 100%; height: auto" style="width: 100%; height: auto"
:src="file.Url?file.Url:file.Content" :src="file.Url?file.Url:file.Content"
:preview-src-list="[file.Url?file.Url:file.Content]"> :preview-src-list="InvoiceVoucherListImg">
</el-image> </el-image>
<!-- <img :src="file.Url?file.Url:file.Content" @click="showImg(file.Url?file.Url:file.Content)"> --> <!-- <img :src="file.Url?file.Url:file.Content" @click="showImg(file.Url?file.Url:file.Content)"> -->
</div> </div>
...@@ -2212,6 +2212,7 @@ class="w135 _border_b_1"> ...@@ -2212,6 +2212,7 @@ class="w135 _border_b_1">
export default { export default {
data() { data() {
return { return {
InvoiceVoucherListImg: [],
isCostTypeId: false,//地接费(领取)用款计划 isCostTypeId: false,//地接费(领取)用款计划
PaymentMethodList:[ PaymentMethodList:[
{Name:'银行卡',Id:1}, {Name:'银行卡',Id:1},
...@@ -3926,6 +3927,15 @@ else if (Type==2) { ...@@ -3926,6 +3927,15 @@ else if (Type==2) {
Type:data.Type, Type:data.Type,
HelpBranchName:data.HelpBranchName, HelpBranchName:data.HelpBranchName,
} }
//2023-11-23 add by:W
if (data.InvoiceVoucherInfo) {
this.InvoiceVoucherList = data.InvoiceVoucherInfo;
this.InvoiceVoucherList.forEach(x => {
if (x.Type == 3) {
this.InvoiceVoucherListImg.push(x.Content)
}
})
}
this.benMoney = 0 this.benMoney = 0
this.AuditOrRefundMsg.HelpBranchId=data.HelpBranchId; this.AuditOrRefundMsg.HelpBranchId=data.HelpBranchId;
this.AuditOrRefundMsg.KingdeeInvoice=data.KingdeeInvoice+""; this.AuditOrRefundMsg.KingdeeInvoice=data.KingdeeInvoice+"";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment