cloud-web-corejs 1.0.73 → 1.0.75
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/package.json +2 -2
- package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/data-table-editor.vue +3 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/table-column-dialog.vue +582 -299
- package/src/components/xform/form-designer/widget-panel/widgetsConfig.js +4 -3
- package/src/components/xform/form-render/container-item/data-table-item.vue +1 -1
- package/src/components/xform/form-render/container-item/data-table-mixin.js +18 -18
- package/src/views/user/position/list.vue +2 -2
- package/src/views/user/role/list.vue +2 -2
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "cloud-web-corejs",
|
3
3
|
"private": false,
|
4
|
-
"version": "1.0.
|
4
|
+
"version": "1.0.75",
|
5
5
|
"scripts": {
|
6
6
|
"dev": "vue-cli-service serve",
|
7
7
|
"lint": "eslint --ext .js,.vue src",
|
@@ -12,7 +12,7 @@
|
|
12
12
|
"svgo": "svgo -f src/icons/svg --config=src/icons/svgo.yml",
|
13
13
|
"test:unit": "jest --clearCache && vue-cli-service test:unit",
|
14
14
|
"test:ci": "npm run lint && npm run test:unit",
|
15
|
-
"updateCorejs": "npm install cloud-web-corejs --registry https://registry.npmjs.org",
|
15
|
+
"updateCorejs": "npm install cloud-web-corejs --no-save --registry https://registry.npmjs.org",
|
16
16
|
"publishDev": "npm publish --tag dev"
|
17
17
|
},
|
18
18
|
"dependencies": {
|
@@ -25,6 +25,9 @@
|
|
25
25
|
<el-form-item :label="i18nt('designer.setting.showPagination')">
|
26
26
|
<el-switch v-model="optionModel.showPagination"></el-switch>
|
27
27
|
</el-form-item>
|
28
|
+
<el-form-item :label="i18nt('是否显示表尾统计')">
|
29
|
+
<el-switch v-model="optionModel.showGridFooter"></el-switch>
|
30
|
+
</el-form-item>
|
28
31
|
<!-- <el-form-item :label="i18nt('显示导出')">
|
29
32
|
<el-switch v-model="optionModel.showExportBtn"></el-switch>
|
30
33
|
</el-form-item>-->
|