Commit 9ad37d9e authored by dragondean@qq.com's avatar dragondean@qq.com

下载提单pdf增加一个随机数

parent 10e0337b
......@@ -28,7 +28,7 @@ export default {
download() {
_BOX["downloadBillService"]({ id: this.currRow.id }).then((res) => {
if (res.data && res.data.imgUrl) {
FileSaver.saveAs(res.data.imgUrl, res.data.imgUrl.split('/').pop());
FileSaver.saveAs(res.data.imgUrl + '?' + Math.random(), res.data.imgUrl.split('/').pop());
}
});
},
......
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