vue2-client 1.8.82 → 1.8.83

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,7 +1,7 @@
1
1
  # Change Log
2
2
  > 所有关于本项目的变化都在该文档里。
3
3
 
4
- **1.8.82 -2024-3-7 @江超**
4
+ **1.8.82 - 1.8.83 -2024-3-7 @江超**
5
5
  - 删除过时组件
6
6
  - XFormItem的下拉框数据源现在支持从配置中心获取了
7
7
  - 待解决:XTable显示来自配置中心的字典徽标
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue2-client",
3
- "version": "1.8.82",
3
+ "version": "1.8.83",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --no-eslint",
@@ -441,7 +441,7 @@ export default {
441
441
  const configName = this.attr.keyName.substring(7)
442
442
  getConfigByName(configName, this.serviceName, res => {
443
443
  this.getDataCallback(res.value)
444
- })
444
+ }, this.env === 'dev')
445
445
  } else {
446
446
  this.initRadioValue()
447
447
  }
@@ -205,7 +205,7 @@ export default {
205
205
  getConfig () {
206
206
  getConfigByName(this.queryParamsName, this.serviceName, (res) => {
207
207
  this.updateComponents(res)
208
- })
208
+ }, this.env === 'dev')
209
209
  },
210
210
  getConfigBySource () {
211
211
  parseConfig(this.queryParamsJson, 'CRUD_FORM', this.serviceName, this.env === 'dev').then(res => {
@@ -215,7 +215,7 @@ export default {
215
215
  getColumnJsonByLogic () {
216
216
  getConfigByLogic(this.logicName, this.logicParam, this.serviceName, (res) => {
217
217
  this.updateComponents(res, true)
218
- })
218
+ }, this.env === 'dev')
219
219
  },
220
220
  /**
221
221
  * 更新子组件
@@ -39,49 +39,37 @@ const commonApi = {
39
39
  getColumnsJson: '/api/af-system/logic/getColumns',
40
40
  }
41
41
 
42
- export function getConfigUrl (serviceName = process.env.VUE_APP_SYSTEM_NAME) {
43
- return '/api/' + serviceName + '/' + commonApi.getConfig
44
- }
45
-
46
- export function getNativeConfigUrl (serviceName = process.env.VUE_APP_SYSTEM_NAME) {
47
- return '/api/' + serviceName + '/' + commonApi.getNativeConfig
48
- }
49
-
50
- export function parseConfigUrl (serviceName = process.env.VUE_APP_SYSTEM_NAME, isDev) {
51
- let apiPre = '/api/'
52
- if (isDev) {
53
- apiPre = '/devApi/'
54
- }
55
- return apiPre + serviceName + '/' + commonApi.parseConfig
56
- }
57
-
58
- /**
59
- * 获取字典键参数
60
- */
61
- export function getDictionaryParam () {
62
- return post('/api/af-system/logic/getDictionaryParam', {})
63
- }
64
-
65
42
  /**
66
43
  * 根据配置名获取配置内容
67
44
  * @param content 已有的配置内容
68
45
  * @param configName 配置名称
69
46
  * @param serviceName 命名空间名称
70
47
  * @param callback 回调函数
48
+ * @param isDev 是否为开发环境
71
49
  */
72
- export function getConfig (content, configName, serviceName = process.env.VUE_APP_SYSTEM_NAME, callback) {
50
+ export function getConfig (content, configName, serviceName = process.env.VUE_APP_SYSTEM_NAME, callback, isDev) {
73
51
  if (content) {
74
52
  return content
75
53
  }
76
- indexedDB.getByWeb(configName, getConfigUrl(serviceName), { configName: configName }, callback)
54
+ let apiPre = '/api/'
55
+ if (isDev) {
56
+ apiPre = '/devApi/'
57
+ }
58
+ const getConfigUrl = apiPre + commonApi.getConfig
59
+ indexedDB.getByWeb(configName, getConfigUrl, { configName: configName }, callback)
77
60
  }
78
61
 
79
- export function getConfigByName (configName, serviceName = process.env.VUE_APP_SYSTEM_NAME, callback) {
80
- return getConfig(undefined, configName, serviceName, callback)
62
+ export function getConfigByName (configName, serviceName = process.env.VUE_APP_SYSTEM_NAME, callback, isDev) {
63
+ return getConfig(undefined, configName, serviceName, callback, isDev)
81
64
  }
82
65
 
83
- export function getNativeConfig (configName, serviceName = process.env.VUE_APP_SYSTEM_NAME) {
84
- return post(getNativeConfigUrl(serviceName), { configName: configName })
66
+ export function getNativeConfig (configName, serviceName = process.env.VUE_APP_SYSTEM_NAME, isDev) {
67
+ let apiPre = '/api/'
68
+ if (isDev) {
69
+ apiPre = '/devApi/'
70
+ }
71
+ const getConfigUrl = apiPre + commonApi.getNativeConfig
72
+ return post(getConfigUrl, { configName: configName })
85
73
  }
86
74
 
87
75
  /**
@@ -90,9 +78,14 @@ export function getNativeConfig (configName, serviceName = process.env.VUE_APP_S
90
78
  * @param parameter Logic调用参数
91
79
  * @param serviceName 命名空间名称
92
80
  * @param callback 回调函数
81
+ * @param isDev 是否是开发环境
93
82
  */
94
- export function getConfigByLogic (logicName, parameter, serviceName = process.env.VUE_APP_SYSTEM_NAME, callback) {
95
- indexedDB.getByWeb(`${logicName}_${JSON.stringify(parameter)}`, '/api/' + serviceName + '/logic/' + logicName,
83
+ export function getConfigByLogic (logicName, parameter, serviceName = process.env.VUE_APP_SYSTEM_NAME, callback, isDev) {
84
+ let apiPre = '/api/'
85
+ if (isDev) {
86
+ apiPre = '/devApi/'
87
+ }
88
+ indexedDB.getByWeb(`${logicName}_${JSON.stringify(parameter)}`, apiPre + serviceName + '/logic/' + logicName,
96
89
  parameter, callback)
97
90
  }
98
91
 
@@ -101,10 +94,14 @@ export function getConfigByLogic (logicName, parameter, serviceName = process.en
101
94
  * @param configContent 原配置内容
102
95
  * @param configType 配置类型
103
96
  * @param serviceName 命名空间名称
104
- * @package isDev 是否是开发环境
97
+ * @param isDev 是否是开发环境
105
98
  */
106
99
  export function parseConfig (configContent, configType, serviceName = process.env.VUE_APP_SYSTEM_NAME, isDev) {
107
- const url = parseConfigUrl(serviceName, isDev)
100
+ let apiPre = '/api/'
101
+ if (isDev) {
102
+ apiPre = '/devApi/'
103
+ }
104
+ const url = apiPre + serviceName + '/' + commonApi.parseConfig
108
105
  return post(url, {
109
106
  configType: configType,
110
107
  configContent: configContent