mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-10 06:56:44 +08:00
fix(PhotoScanner): 修正图片上传业务编号获取方式
- 将 businessNo 的值从 that.orderNo 改为 this.$route.query.orderNo - 确保上传图片时使用正确的订单号参数
This commit is contained in:
@@ -399,7 +399,7 @@ export default {
|
||||
uploadImg2(formdata).then(res => {
|
||||
if (res.result === '0' && res.path) {
|
||||
let obj = {
|
||||
businessNo: that.orderNo,
|
||||
businessNo: this.$route.query.orderNo,
|
||||
businessType: '',
|
||||
imageInfoType: that.imageType,
|
||||
rgssUrl: encodeURIComponent(res.path),
|
||||
|
||||
Reference in New Issue
Block a user