agilebuilder-ui 1.1.4-temp1 → 1.1.4-temp2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -168,7 +168,7 @@ export default {
|
|
|
168
168
|
const baseURL = window.$vueApp.config.globalProperties.baseURL
|
|
169
169
|
const baseAPI = window.$vueApp.config.globalProperties.baseAPI
|
|
170
170
|
const tempAction = baseURL + '/common/fs-upload/search-file-names'
|
|
171
|
-
if (isPlateSys(
|
|
171
|
+
if (isPlateSys(window.$vueApp.config.globalProperties.systemCode)) {
|
|
172
172
|
tempAction = baseAPI + '/api/search-file-names'
|
|
173
173
|
}
|
|
174
174
|
this.$http.post(tempAction, uuids).then((result) => {
|
|
@@ -309,7 +309,7 @@ export default {
|
|
|
309
309
|
const baseURL = window.$vueApp.config.globalProperties.baseURL
|
|
310
310
|
const baseAPI = window.$vueApp.config.globalProperties.baseAPI
|
|
311
311
|
const tempAction = baseURL + '/common/fs-upload/search-file-names'
|
|
312
|
-
if (isPlateSys(
|
|
312
|
+
if (isPlateSys(this.systemCode)) {
|
|
313
313
|
tempAction = baseAPI + '/api/search-file-names'
|
|
314
314
|
}
|
|
315
315
|
this.$http.post(tempAction, uuids).then((result) => {
|