vue2-client 1.4.31 → 1.4.32

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,9 +1,10 @@
1
1
  # Change Log
2
2
  > 所有关于本项目的变化都在该文档里。
3
3
 
4
- **1.4.31 -2022-10-13 @苗艳强**
4
+ **1.4.31 - 1.4.32 -2022-10-13 @苗艳强**
5
5
  - 功能修改:
6
6
  - 查询配置生成页面新增api插槽项删除
7
+ - 修复api插槽项删除后仍然存在的问题
7
8
 
8
9
  **1.4.30 -2022-10-11 @江超**
9
10
  - 功能修改:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue2-client",
3
- "version": "1.4.31",
3
+ "version": "1.4.32",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -514,6 +514,7 @@ export default {
514
514
  }
515
515
  // 查询插槽array to object
516
516
  delete this.result.apiSlotView
517
+ this.result.apiSlot = {}
517
518
  for (let i = 0; i < this.form.apiSlotView.length; i++) {
518
519
  this.result.apiSlot[this.form.apiSlotView[i].slotType] = this.form.apiSlotView[i].slotName
519
520
  }
package/vue.config.js CHANGED
@@ -10,8 +10,8 @@ const isProd = process.env.NODE_ENV === 'production'
10
10
 
11
11
  const server = 'http://121.36.106.17:8400'
12
12
  // const local = 'http://localhost:8445/webmeter'
13
- // const local = 'http://123.60.214.109:8406'
14
- const local = 'http://localhost:8080/webmeter'
13
+ const local = 'http://123.60.214.109:8406'
14
+ // const local = 'http://localhost:8080'
15
15
 
16
16
  module.exports = {
17
17
  devServer: {