vue2-client 1.2.102 → 1.2.106
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/.env +15 -15
- package/.eslintrc.js +82 -82
- package/CHANGELOG.md +260 -246
- package/package.json +92 -92
- package/src/base-client/all.js +66 -66
- package/src/base-client/components/common/AmapMarker/AmapPointRendering.vue +113 -113
- package/src/base-client/components/common/CitySelect/CitySelect.vue +244 -244
- package/src/base-client/components/common/CitySelect/index.js +3 -3
- package/src/base-client/components/common/CitySelect/index.md +109 -109
- package/src/base-client/components/common/CreateQuery/CreateQuery.vue +547 -547
- package/src/base-client/components/common/CreateQuery/CreateQueryItem.vue +778 -778
- package/src/base-client/components/common/CreateSimpleFormQuery/CreateSimpleFormQuery.vue +310 -310
- package/src/base-client/components/common/PersonSetting/PersonSetting.vue +210 -210
- package/src/base-client/components/common/PersonSetting/index.js +3 -3
- package/src/base-client/components/common/Upload/Upload.vue +158 -157
- package/src/base-client/components/common/Upload/index.js +3 -3
- package/src/base-client/components/common/XAddForm/XAddForm.vue +349 -349
- package/src/base-client/components/common/XAddNativeForm/XAddNativeForm.vue +322 -322
- package/src/base-client/components/common/XForm/XForm.vue +268 -268
- package/src/base-client/components/common/XForm/XFormItem.vue +371 -371
- package/src/base-client/components/common/XFormTable/XFormTable.vue +513 -507
- package/src/base-client/components/common/XTable/XTable.vue +6 -1
- package/src/base-client/components/iot/WebmeterAnalysisView/WebmeterAnalysisView.vue +960 -960
- package/src/components/STable/index.js +2 -2
- package/src/config/CreateQueryConfig.js +307 -307
- package/src/layouts/header/HeaderNotice.vue +199 -199
- package/src/layouts/header/InstitutionDetail.vue +177 -177
- package/src/pages/login/Login.vue +1 -1
- package/src/router/async/router.map.js +60 -60
- package/src/services/api/WebmeterAnalysisViewApi.js +24 -24
- package/src/services/api/manage.js +16 -16
- package/src/services/api/restTools.js +24 -24
- package/vue.config.js +163 -163
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
:rowKey="rowKey"
|
|
38
38
|
:rowSelection="rowSelection"
|
|
39
39
|
:scroll="{ x: scrollXWidth, y: scrollYWidth }"
|
|
40
|
-
showPagination="
|
|
40
|
+
:showPagination="showPagination"
|
|
41
41
|
size="default"
|
|
42
42
|
>
|
|
43
43
|
<template
|
|
@@ -171,6 +171,11 @@ export default {
|
|
|
171
171
|
default: () => {
|
|
172
172
|
return undefined
|
|
173
173
|
}
|
|
174
|
+
},
|
|
175
|
+
// 数据只有一页时是否展示分页,true:展示,auto:隐藏
|
|
176
|
+
showPagination: {
|
|
177
|
+
type: String | Boolean,
|
|
178
|
+
default: true
|
|
174
179
|
}
|
|
175
180
|
},
|
|
176
181
|
computed: {
|