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
@@ -1,6 +1,9 @@
1
1
  # Change Log
2
2
  > 所有关于本项目的变化都在该文档里。
3
3
 
4
+ **1.8.130 -2024-4-11 @江超**
5
+ - 导出bug修改
6
+
4
7
  **1.8.126 -2024-4-9 @江超**
5
8
  - 现在相同配置名的key不会重复发起请求了
6
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue2-client",
3
- "version": "1.8.128",
3
+ "version": "1.8.130-st",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --no-eslint",
@@ -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, this.env === 'dev').then(res => {
389
+ }, that.serviceName, that.env === 'dev').then(res => {
390
390
  let value = res
391
391
  if (that.compatible === 'V4') {
392
392
  value = res.value