Commit a8bdca4795bf75447bb270875e917d41bedcb49b

Authored by ww
1 parent d63e8b1b

fix: fix can not open drawio

... ... @@ -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 };
... ...