vue2-client 1.4.4 → 1.4.5

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.0 - 1.4.2 -2022-09-17 @江超**
4
+ **1.4.3 - 1.4.5 -2022-09-18 @张振宇**
5
5
  - 功能修改:
6
6
  - 表单配置后台接口插槽
7
+ - 查询表格支持底部插槽
7
8
 
8
9
  **1.4.0 - 1.4.2 -2022-09-17 @江超**
9
10
  - 功能修改:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue2-client",
3
- "version": "1.4.4",
3
+ "version": "1.4.5",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -64,6 +64,9 @@
64
64
  </a-space>
65
65
  <slot name="expand"></slot>
66
66
  </template>
67
+ <template slot="footer">
68
+ <slot name="footer"></slot>
69
+ </template>
67
70
  </x-table>
68
71
  <!-- 上传文件 -->
69
72
  <x-import-excel
@@ -56,6 +56,9 @@
56
56
  <a @click="action(record)">{{ item.slotValue }}</a>
57
57
  </span>
58
58
  </template>
59
+ <template slot="footer">
60
+ <slot name="footer"></slot>
61
+ </template>
59
62
  </s-table>
60
63
  </div>
61
64
  </template>