Commit ebc33c07 authored by dragondean@qq.com's avatar dragondean@qq.com

提单下载命名错误和特价优惠不显示费用

parent d045a0f2
...@@ -24,7 +24,7 @@ export default { ...@@ -24,7 +24,7 @@ export default {
download() { download() {
_BOX["downloadBillService"]({ id: this.currRow.id }).then((res) => { _BOX["downloadBillService"]({ id: this.currRow.id }).then((res) => {
if (res.data && res.data.imgUrl) { if (res.data && res.data.imgUrl) {
FileSaver.saveAs(res.data.imgUrl, this.currRow.orderNo + ".pdf"); FileSaver.saveAs(res.data.imgUrl, res.data.imgUrl.split('/').pop());
} }
}); });
}, },
......
...@@ -389,7 +389,8 @@ export default { ...@@ -389,7 +389,8 @@ export default {
} }
} }
if(val == 6){ // 没有优惠券ID的情况下才对特价做处理,有id则表示查看和编辑不做处理
if(!this.form.couponId && val == 6){
this.fee[1] = [{}] this.fee[1] = [{}]
this.fee[2] = [{}] this.fee[2] = [{}]
} }
......
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