This commit is contained in:
aihe 2024-05-09 17:35:55 +08:00
parent 9f28adae23
commit 114c73fc71

View File

@ -18,8 +18,8 @@
</u-row>
<u-row custom-style="margin-top:20rpx;" justify="end">
<u-row>
<text class="pr-30">是否需要PDF</text>
<u-switch v-model="submitParam.isNeedPdf"
<text class="pr-30">是否已打印F</text>
<u-switch v-model="submitParam.hasPrinted"
active-color="#B12D29" size="34"></u-switch>
</u-row>
</u-row>
@ -122,7 +122,7 @@
submitParam: {
lang: 'zh',
printType: [],
isNeedPdf: false,
isNeedPdf: 'T',
date: [],
subBillCodeRange: []
},
@ -172,7 +172,7 @@
let param = JSON.parse(JSON.stringify(this.submitParam))
param.printType = param.printType.join(',')
param.subBillCodeRange = param.subBillCodeRange.join(',')
param.isNeedPdf = param.isNeedPdf ? 'T' : ''
// param.isNeedPdf = param.isNeedPdf ? 'T' : ''
let res = await apiService.getRealGetWaybillPrintData(param)
}
}