vue2-client 1.5.11 → 1.5.12

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.5.11 -2022-12-05 @江超**
4
+ **1.5.11 - 1.5.12 -2022-12-05 @江超**
5
5
  - 优化了查询配置生成界面的样式
6
6
 
7
7
  **1.5.6 - 1.5.10 -2022-12-05 @江超**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue2-client",
3
- "version": "1.5.11",
3
+ "version": "1.5.12",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -25,8 +25,8 @@
25
25
  @selectRow="selectRow"
26
26
  @afterQuery="afterQuery"
27
27
  @tempTableEdit="tempTableEdit">
28
- <template slot="expand">
29
- <slot name="expand"></slot>
28
+ <template slot="button">
29
+ <slot name="button"></slot>
30
30
  </template>
31
31
  <template slot="rightBtnExpand">
32
32
  <slot name="rightBtnExpand"></slot>
@@ -32,7 +32,6 @@
32
32
  </a-dropdown>
33
33
  <slot :selectedRowKeys="selectedRowKeys" :selectedRows="selectedRows" name="button"></slot>
34
34
  </a-space>
35
- <slot name="expand"></slot>
36
35
  </span>
37
36
  </a-col>
38
37
  <a-col>
@@ -31,10 +31,7 @@ const GetAppDataService = {
31
31
  localStorage.setItem(process.env.VUE_APP_BADGE_KEY, JSON.stringify(badgeItemArray))
32
32
  })
33
33
  // 获取省市区数据
34
- await post(manageApi.getDivisionsOhChina, {}).then((res) => {
35
- // 追加参数
36
- localStorage.setItem(process.env.VUE_APP_DIVISIONSOHCHINA, JSON.stringify(res))
37
- })
34
+ localStorage.setItem(process.env.VUE_APP_DIVISIONSOHCHINA, JSON.stringify([]))
38
35
  },
39
36
  // 返回树形省市区
40
37
  getDivisionsOhChinaForTree () {