mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-11 20:16: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 => {
|
uploadImg2(formdata).then(res => {
|
||||||
if (res.result === '0' && res.path) {
|
if (res.result === '0' && res.path) {
|
||||||
let obj = {
|
let obj = {
|
||||||
businessNo: that.orderNo,
|
businessNo: this.$route.query.orderNo,
|
||||||
businessType: '',
|
businessType: '',
|
||||||
imageInfoType: that.imageType,
|
imageInfoType: that.imageType,
|
||||||
rgssUrl: encodeURIComponent(res.path),
|
rgssUrl: encodeURIComponent(res.path),
|
||||||
|
|||||||
Reference in New Issue
Block a user