Commit 467ad8c33181b5ea6621d663271342dce39fb399

Authored by fengtao
2 parents 0998c138 86af3d56

Merge branch 'main' into ft-dev

... ... @@ -53,7 +53,9 @@ export default {
53 53 };
54 54 const getUrl = await uni.$u.http.get('/', { params: httpData, custom: { load: false } });
55 55 const pathUrl = uni.getStorageSync('config');
56   - this.showConfiguration = pathUrl.baseURL + '/' + '?' + 'configurationId=' + e + '&' + 'lightbox=' + 1;
  56 + const userInfo = uni.getStorageSync('userInfo')
  57 + this.showConfiguration = `${pathUrl.baseURL}/?configurationId=${e}&userId=${userInfo.userId}&lightbox=1`
  58 + // this.showConfiguration = pathUrl.baseURL + '/' + '?' + 'configurationId=' + e + '&' + 'lightbox=' + 1;
57 59 }
58 60 }
59 61 };
... ...