vue2-client 1.8.128 → 1.8.130-st
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/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -395,6 +395,7 @@ export default {
|
|
|
395
395
|
// 挨个获取插槽
|
|
396
396
|
waitForDownloadSlotName.forEach(configName => {
|
|
397
397
|
getConfigByName(configName, undefined, res => {
|
|
398
|
+
console.warn('res', res)
|
|
398
399
|
this.configFromWeb[configName] = res
|
|
399
400
|
count++
|
|
400
401
|
})
|
|
@@ -446,16 +447,12 @@ export default {
|
|
|
446
447
|
}
|
|
447
448
|
},
|
|
448
449
|
beforeMount () {
|
|
449
|
-
console.warn('123', this.localConfig)
|
|
450
450
|
if (this.localConfig) {
|
|
451
|
-
console.warn('1')
|
|
452
451
|
this.config = this.localConfig
|
|
453
452
|
this.configInit()
|
|
454
453
|
} else {
|
|
455
454
|
getConfigByName(this.configName, undefined, res => {
|
|
456
|
-
console.warn('res', res)
|
|
457
455
|
this.config = res
|
|
458
|
-
console.warn('2', res)
|
|
459
456
|
this.configInit()
|
|
460
457
|
})
|
|
461
458
|
}
|
|
@@ -386,7 +386,7 @@ export default {
|
|
|
386
386
|
queryParamsName: that.queryParamsName,
|
|
387
387
|
queryParams: that.queryParams,
|
|
388
388
|
form: conditionParams,
|
|
389
|
-
}, that.serviceName,
|
|
389
|
+
}, that.serviceName, that.env === 'dev').then(res => {
|
|
390
390
|
let value = res
|
|
391
391
|
if (that.compatible === 'V4') {
|
|
392
392
|
value = res.value
|