1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
| 'use strict';
|
| Object.defineProperty(exports, '__esModule', { value: true });
|
| var vue = require('vue');
| require('../../../../hooks/index.js');
| var hHelper = require('../h-helper.js');
| var styleHelper = require('./style-helper.js');
| var index = require('../../../../hooks/use-namespace/index.js');
|
| var TableFooter = vue.defineComponent({
| name: "ElTableFooter",
| props: {
| fixed: {
| type: String,
| default: ""
| },
| store: {
| required: true,
| type: Object
| },
| summaryMethod: Function,
| sumText: String,
| border: Boolean,
| defaultSort: {
| type: Object,
| default: () => {
| return {
| prop: "",
| order: ""
| };
| }
| }
| },
| setup(props) {
| const { getCellClasses, getCellStyles, columns } = styleHelper["default"](props);
| const ns = index.useNamespace("table");
| return {
| ns,
| getCellClasses,
| getCellStyles,
| columns
| };
| },
| render() {
| const {
| columns,
| getCellStyles,
| getCellClasses,
| summaryMethod,
| sumText,
| ns
| } = this;
| const data = this.store.states.data.value;
| let sums = [];
| if (summaryMethod) {
| sums = summaryMethod({
| columns,
| data
| });
| } else {
| columns.forEach((column, index) => {
| if (index === 0) {
| sums[index] = sumText;
| return;
| }
| const values = data.map((item) => Number(item[column.property]));
| const precisions = [];
| let notNumber = true;
| values.forEach((value) => {
| if (!Number.isNaN(+value)) {
| notNumber = false;
| const decimal = `${value}`.split(".")[1];
| precisions.push(decimal ? decimal.length : 0);
| }
| });
| const precision = Math.max.apply(null, precisions);
| if (!notNumber) {
| sums[index] = values.reduce((prev, curr) => {
| const value = Number(curr);
| if (!Number.isNaN(+value)) {
| return Number.parseFloat((prev + curr).toFixed(Math.min(precision, 20)));
| } else {
| return prev;
| }
| }, 0);
| } else {
| sums[index] = "";
| }
| });
| }
| return vue.h("table", {
| class: ns.e("footer"),
| cellspacing: "0",
| cellpadding: "0",
| border: "0"
| }, [
| hHelper.hColgroup({
| columns
| }),
| vue.h("tbody", [
| vue.h("tr", {}, [
| ...columns.map((column, cellIndex) => vue.h("td", {
| key: cellIndex,
| colspan: column.colSpan,
| rowspan: column.rowSpan,
| class: getCellClasses(columns, cellIndex),
| style: getCellStyles(column, cellIndex)
| }, [
| vue.h("div", {
| class: ["cell", column.labelClassName]
| }, [sums[cellIndex]])
| ]))
| ])
| ])
| ]);
| }
| });
|
| exports["default"] = TableFooter;
| //# sourceMappingURL=index.js.map
|
|