t20-common-lib 0.9.13 → 0.10.0
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 +64 -85
- package/packages/branch-bank-select/index.js +8 -8
- package/packages/branch-bank-select/src/main.vue +179 -179
- package/packages/common-collapse/index.js +8 -8
- package/packages/common-collapse/src/main.vue +147 -147
- package/packages/form-page/index.js +8 -8
- package/packages/form-page/src/main.vue +55 -55
- package/packages/input-number/index.js +8 -0
- package/packages/input-number/src/main.vue +184 -0
- package/packages/main-page/index.js +8 -8
- package/packages/main-page/src/main.vue +43 -43
- package/packages/multi-currency-statistics/index.js +8 -8
- package/packages/multi-currency-statistics/src/main.vue +229 -229
- package/packages/page-header/index.js +8 -8
- package/packages/page-header/src/main.vue +95 -95
- package/packages/statis-card/index.js +8 -8
- package/packages/statis-card/src/main.vue +250 -250
- package/packages/tab-page/index.js +8 -8
- package/packages/tab-page/src/main.vue +101 -101
- package/packages/tab-pane/index.js +8 -8
- package/packages/tab-pane/src/main.vue +185 -185
- package/packages/table-page/index.js +8 -8
- package/packages/table-page/src/main.vue +42 -42
- package/packages/theme-chalk/src/common/element-variables.scss +1045 -1045
- package/packages/theme-chalk/src/common/normalize.scss +869 -869
- package/packages/theme-chalk/src/index.scss +8 -8
- package/src/api/common.js +20 -20
- package/src/i18n.json +4 -4
- package/src/index.js +75 -71
- package/src/store/index.js +25 -25
- package/src/store/modules/user.js +42 -42
- package/src/utils/asciiWidth.js +107 -107
- package/src/utils/common.js +12 -12
- package/src/utils/date.js +43 -43
- package/src/utils/exportFile.js +6 -6
- package/src/utils/i18n/cn2hk.json +1270 -1270
- package/src/utils/i18n/index.js +69 -69
- package/src/utils/repairElementUI.js +141 -141
- package/src/utils/tableCellUtils.js +54 -54
- package/src/utils/tableheaderFilterpanel.vue +257 -257
- package/style/index.css +26 -0
|
@@ -1,42 +1,42 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="t20-table-page flex-column">
|
|
3
|
-
<div class="m-b-s" v-if="$slots.header">
|
|
4
|
-
<slot name="header"></slot>
|
|
5
|
-
</div>
|
|
6
|
-
<div class="t20-page-content flex-column flex-1">
|
|
7
|
-
<slot></slot>
|
|
8
|
-
<div class="table flex-1">
|
|
9
|
-
<slot name="table"></slot>
|
|
10
|
-
</div>
|
|
11
|
-
</div>
|
|
12
|
-
<div class="page-footer-shadow flex-box flex-lr flex-v" v-if="$slots.footer">
|
|
13
|
-
<slot name="footer"></slot>
|
|
14
|
-
</div>
|
|
15
|
-
</div>
|
|
16
|
-
</template>
|
|
17
|
-
|
|
18
|
-
<script>
|
|
19
|
-
export default {
|
|
20
|
-
name: 'TablePage'
|
|
21
|
-
}
|
|
22
|
-
</script>
|
|
23
|
-
|
|
24
|
-
<style lang="scss" scoped>
|
|
25
|
-
.t20-table-page {
|
|
26
|
-
padding: 8px !important;
|
|
27
|
-
background-color: #fff !important;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
.t20-page-content {
|
|
31
|
-
height: 100%;
|
|
32
|
-
overflow: hidden;
|
|
33
|
-
.table {
|
|
34
|
-
overflow: hidden;
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
.page-footer-shadow {
|
|
39
|
-
height: 44px !important;
|
|
40
|
-
margin-bottom: 0 !important;
|
|
41
|
-
}
|
|
42
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="t20-table-page flex-column">
|
|
3
|
+
<div class="m-b-s" v-if="$slots.header">
|
|
4
|
+
<slot name="header"></slot>
|
|
5
|
+
</div>
|
|
6
|
+
<div class="t20-page-content flex-column flex-1">
|
|
7
|
+
<slot></slot>
|
|
8
|
+
<div class="table flex-1">
|
|
9
|
+
<slot name="table"></slot>
|
|
10
|
+
</div>
|
|
11
|
+
</div>
|
|
12
|
+
<div class="page-footer-shadow flex-box flex-lr flex-v" v-if="$slots.footer">
|
|
13
|
+
<slot name="footer"></slot>
|
|
14
|
+
</div>
|
|
15
|
+
</div>
|
|
16
|
+
</template>
|
|
17
|
+
|
|
18
|
+
<script>
|
|
19
|
+
export default {
|
|
20
|
+
name: 'TablePage'
|
|
21
|
+
}
|
|
22
|
+
</script>
|
|
23
|
+
|
|
24
|
+
<style lang="scss" scoped>
|
|
25
|
+
.t20-table-page {
|
|
26
|
+
padding: 8px !important;
|
|
27
|
+
background-color: #fff !important;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.t20-page-content {
|
|
31
|
+
height: 100%;
|
|
32
|
+
overflow: hidden;
|
|
33
|
+
.table {
|
|
34
|
+
overflow: hidden;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.page-footer-shadow {
|
|
39
|
+
height: 44px !important;
|
|
40
|
+
margin-bottom: 0 !important;
|
|
41
|
+
}
|
|
42
|
+
</style>
|