@hw-component/table 1.9.51 → 1.9.53
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/es/HTableBody/hooks.js +33 -18
- package/es/index.css +3 -0
- package/es/render/Text.d.ts +1 -0
- package/es/render/config.js +1 -1
- package/lib/HTableBody/hooks.js +36 -21
- package/lib/index.css +3 -0
- package/lib/render/Text.d.ts +1 -0
- package/lib/render/config.js +1 -1
- package/package.json +1 -1
- package/src/components/HTableBody/hooks.tsx +12 -4
- package/src/components/index.less +5 -0
- package/src/components/render/config.tsx +1 -1
- package/src/pages/Table/index.tsx +41 -0
package/es/HTableBody/hooks.js
CHANGED
|
@@ -8,6 +8,7 @@ import _Object$defineProperty from '@babel/runtime-corejs3/core-js-stable/object
|
|
|
8
8
|
import _defineProperty from '@babel/runtime-corejs3/helpers/defineProperty';
|
|
9
9
|
import _slicedToArray from '@babel/runtime-corejs3/helpers/slicedToArray';
|
|
10
10
|
import _indexOfInstanceProperty from '@babel/runtime-corejs3/core-js-stable/instance/index-of';
|
|
11
|
+
import _concatInstanceProperty from '@babel/runtime-corejs3/core-js-stable/instance/concat';
|
|
11
12
|
import _filterInstanceProperty from '@babel/runtime-corejs3/core-js-stable/instance/filter';
|
|
12
13
|
import _spliceInstanceProperty from '@babel/runtime-corejs3/core-js-stable/instance/splice';
|
|
13
14
|
import _mapInstanceProperty from '@babel/runtime-corejs3/core-js-stable/instance/map';
|
|
@@ -21,9 +22,10 @@ import { outColSetting, mkChangeValue } from './utils.js';
|
|
|
21
22
|
import configRender from '../render/index.js';
|
|
22
23
|
import { useHTableConfigContext } from '../TableConfig.js';
|
|
23
24
|
import { textTypes } from '../render/config.js';
|
|
25
|
+
import { useClassName } from '../hooks/index.js';
|
|
24
26
|
|
|
25
27
|
function ownKeys(e, r) { var t = _Object$keys(e); if (_Object$getOwnPropertySymbols) { var o = _Object$getOwnPropertySymbols(e); r && (o = _filterInstanceProperty(o).call(o, function (r) { return _Object$getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
26
|
-
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var
|
|
28
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var _context3, _context4; var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? _forEachInstanceProperty(_context3 = ownKeys(Object(t), !0)).call(_context3, function (r) { _defineProperty(e, r, t[r]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(e, _Object$getOwnPropertyDescriptors(t)) : _forEachInstanceProperty(_context4 = ownKeys(Object(t))).call(_context4, function (r) { _Object$defineProperty(e, r, _Object$getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
27
29
|
var rowSelectionCol = function rowSelectionCol(rowSelection) {
|
|
28
30
|
var _ref = rowSelection || {},
|
|
29
31
|
allPageCheck = _ref.allPageCheck,
|
|
@@ -53,26 +55,38 @@ var useCols = function useCols(_ref2) {
|
|
|
53
55
|
var configData = _ref2.configData,
|
|
54
56
|
rowSelection = _ref2.rowSelection,
|
|
55
57
|
table = _ref2.table;
|
|
58
|
+
var trClassname = useClassName("");
|
|
56
59
|
var _useState = useState([]),
|
|
57
60
|
_useState2 = _slicedToArray(_useState, 2),
|
|
58
61
|
cols = _useState2[0],
|
|
59
62
|
setCols = _useState2[1];
|
|
60
63
|
var _useHTableConfigConte = useHTableConfigContext({}),
|
|
61
64
|
valueTypeConfig = _useHTableConfigConte.valueTypeConfig;
|
|
62
|
-
var itemProvider = function itemProvider(item) {
|
|
65
|
+
var itemProvider = function itemProvider(item, lastItem) {
|
|
66
|
+
var _context2;
|
|
67
|
+
var _ref3 = lastItem || {},
|
|
68
|
+
_ref3$children = _ref3.children,
|
|
69
|
+
children = _ref3$children === void 0 ? [] : _ref3$children;
|
|
70
|
+
var childLen = children === null || children === void 0 ? void 0 : children.length;
|
|
71
|
+
var trClassName = !!childLen ? trClassname : "";
|
|
63
72
|
var _item$valueType = item.valueType,
|
|
64
73
|
valueType = _item$valueType === void 0 ? "" : _item$valueType,
|
|
65
74
|
_item$valueTypeProps = item.valueTypeProps,
|
|
66
|
-
valueTypeProps = _item$valueTypeProps === void 0 ? {} : _item$valueTypeProps
|
|
75
|
+
valueTypeProps = _item$valueTypeProps === void 0 ? {} : _item$valueTypeProps,
|
|
76
|
+
_item$className = item.className,
|
|
77
|
+
className = _item$className === void 0 ? "" : _item$className;
|
|
67
78
|
var itemType = valueType;
|
|
68
79
|
if (_indexOfInstanceProperty(textTypes).call(textTypes, itemType) !== -1) {
|
|
80
|
+
var _context;
|
|
69
81
|
var ellipsis = valueTypeProps.ellipsis;
|
|
70
82
|
return _objectSpread(_objectSpread({}, item), {}, {
|
|
71
83
|
ellipsis: ellipsis,
|
|
84
|
+
className: _concatInstanceProperty(_context = "".concat(className, " ")).call(_context, trClassName),
|
|
72
85
|
render: configRender(item, table, valueTypeConfig)
|
|
73
86
|
});
|
|
74
87
|
}
|
|
75
88
|
return _objectSpread(_objectSpread({}, item), {}, {
|
|
89
|
+
className: _concatInstanceProperty(_context2 = "".concat(className, " ")).call(_context2, trClassName),
|
|
76
90
|
render: configRender(item, table, valueTypeConfig)
|
|
77
91
|
});
|
|
78
92
|
};
|
|
@@ -83,8 +97,9 @@ var useCols = function useCols(_ref2) {
|
|
|
83
97
|
if (rowSelection !== false) {
|
|
84
98
|
_spliceInstanceProperty(colsArray).call(colsArray, 0, 0, rowSelectionCol(rowSelection));
|
|
85
99
|
}
|
|
86
|
-
return _mapInstanceProperty(colsArray).call(colsArray, function (item) {
|
|
87
|
-
|
|
100
|
+
return _mapInstanceProperty(colsArray).call(colsArray, function (item, index) {
|
|
101
|
+
var lastItem = colsArray[index - 1];
|
|
102
|
+
return itemProvider(item, lastItem);
|
|
88
103
|
});
|
|
89
104
|
};
|
|
90
105
|
useEffect(function () {
|
|
@@ -94,10 +109,10 @@ var useCols = function useCols(_ref2) {
|
|
|
94
109
|
cols: cols
|
|
95
110
|
};
|
|
96
111
|
};
|
|
97
|
-
var useSynchronousKeys = function useSynchronousKeys(
|
|
98
|
-
var selectedRowKeys =
|
|
99
|
-
records =
|
|
100
|
-
rowKey =
|
|
112
|
+
var useSynchronousKeys = function useSynchronousKeys(_ref4) {
|
|
113
|
+
var selectedRowKeys = _ref4.selectedRowKeys,
|
|
114
|
+
records = _ref4.records,
|
|
115
|
+
rowKey = _ref4.rowKey;
|
|
101
116
|
var _useHTableContext = useHTableContext(),
|
|
102
117
|
rowOnChange = _useHTableContext.rowOnChange;
|
|
103
118
|
var findId = function findId(key) {
|
|
@@ -130,17 +145,17 @@ var useSize = function useSize(size) {
|
|
|
130
145
|
setCuSize: setCuSize
|
|
131
146
|
};
|
|
132
147
|
};
|
|
133
|
-
var useColumnsStateType = function useColumnsStateType(
|
|
134
|
-
var columnsState =
|
|
135
|
-
columns =
|
|
148
|
+
var useColumnsStateType = function useColumnsStateType(_ref5) {
|
|
149
|
+
var columnsState = _ref5.columnsState,
|
|
150
|
+
columns = _ref5.columns;
|
|
136
151
|
var _useHTableContext2 = useHTableContext(),
|
|
137
152
|
tableInstance = _useHTableContext2.tableInstance;
|
|
138
|
-
var
|
|
139
|
-
persistenceType =
|
|
140
|
-
persistenceKey =
|
|
141
|
-
value =
|
|
142
|
-
defaultValue =
|
|
143
|
-
onChange =
|
|
153
|
+
var _ref6 = columnsState || {},
|
|
154
|
+
persistenceType = _ref6.persistenceType,
|
|
155
|
+
persistenceKey = _ref6.persistenceKey,
|
|
156
|
+
value = _ref6.value,
|
|
157
|
+
defaultValue = _ref6.defaultValue,
|
|
158
|
+
onChange = _ref6.onChange;
|
|
144
159
|
var _useState5 = useState(defaultValue),
|
|
145
160
|
_useState6 = _slicedToArray(_useState5, 2),
|
|
146
161
|
selfValue = _useState6[0],
|
package/es/index.css
CHANGED
package/es/render/Text.d.ts
CHANGED
package/es/render/config.js
CHANGED
|
@@ -26,7 +26,7 @@ var getTableVal = function getTableVal(config, itemData) {
|
|
|
26
26
|
return val;
|
|
27
27
|
}
|
|
28
28
|
var relVal = val === null || val === void 0 ? void 0 : val.toString();
|
|
29
|
-
return !!relVal ?
|
|
29
|
+
return !!relVal ? val : null;
|
|
30
30
|
};
|
|
31
31
|
var dateRender = function dateRender(config, itemData) {
|
|
32
32
|
var _config$valueTypeProp = config.valueTypeProps,
|
package/lib/HTableBody/hooks.js
CHANGED
|
@@ -9,6 +9,7 @@ var _Object$defineProperty = require('@babel/runtime-corejs3/core-js-stable/obje
|
|
|
9
9
|
var _defineProperty = require('@babel/runtime-corejs3/helpers/defineProperty');
|
|
10
10
|
var _slicedToArray = require('@babel/runtime-corejs3/helpers/slicedToArray');
|
|
11
11
|
var _indexOfInstanceProperty = require('@babel/runtime-corejs3/core-js-stable/instance/index-of');
|
|
12
|
+
var _concatInstanceProperty = require('@babel/runtime-corejs3/core-js-stable/instance/concat');
|
|
12
13
|
var _filterInstanceProperty = require('@babel/runtime-corejs3/core-js-stable/instance/filter');
|
|
13
14
|
var _spliceInstanceProperty = require('@babel/runtime-corejs3/core-js-stable/instance/splice');
|
|
14
15
|
var _mapInstanceProperty = require('@babel/runtime-corejs3/core-js-stable/instance/map');
|
|
@@ -19,12 +20,13 @@ var React = require('react');
|
|
|
19
20
|
var context = require('../context.js');
|
|
20
21
|
var RowSelection = require('./RowSelection.js');
|
|
21
22
|
var utils = require('./utils.js');
|
|
22
|
-
var index = require('../render/index.js');
|
|
23
|
+
var index$1 = require('../render/index.js');
|
|
23
24
|
var TableConfig = require('../TableConfig.js');
|
|
24
25
|
var config = require('../render/config.js');
|
|
26
|
+
var index = require('../hooks/index.js');
|
|
25
27
|
|
|
26
28
|
function ownKeys(e, r) { var t = _Object$keys(e); if (_Object$getOwnPropertySymbols) { var o = _Object$getOwnPropertySymbols(e); r && (o = _filterInstanceProperty(o).call(o, function (r) { return _Object$getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
27
|
-
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var
|
|
29
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var _context3, _context4; var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? _forEachInstanceProperty(_context3 = ownKeys(Object(t), !0)).call(_context3, function (r) { _defineProperty(e, r, t[r]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(e, _Object$getOwnPropertyDescriptors(t)) : _forEachInstanceProperty(_context4 = ownKeys(Object(t))).call(_context4, function (r) { _Object$defineProperty(e, r, _Object$getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
28
30
|
var rowSelectionCol = function rowSelectionCol(rowSelection) {
|
|
29
31
|
var _ref = rowSelection || {},
|
|
30
32
|
allPageCheck = _ref.allPageCheck,
|
|
@@ -54,27 +56,39 @@ var useCols = function useCols(_ref2) {
|
|
|
54
56
|
var configData = _ref2.configData,
|
|
55
57
|
rowSelection = _ref2.rowSelection,
|
|
56
58
|
table = _ref2.table;
|
|
59
|
+
var trClassname = index.useClassName("");
|
|
57
60
|
var _useState = React.useState([]),
|
|
58
61
|
_useState2 = _slicedToArray(_useState, 2),
|
|
59
62
|
cols = _useState2[0],
|
|
60
63
|
setCols = _useState2[1];
|
|
61
64
|
var _useHTableConfigConte = TableConfig.useHTableConfigContext({}),
|
|
62
65
|
valueTypeConfig = _useHTableConfigConte.valueTypeConfig;
|
|
63
|
-
var itemProvider = function itemProvider(item) {
|
|
66
|
+
var itemProvider = function itemProvider(item, lastItem) {
|
|
67
|
+
var _context2;
|
|
68
|
+
var _ref3 = lastItem || {},
|
|
69
|
+
_ref3$children = _ref3.children,
|
|
70
|
+
children = _ref3$children === void 0 ? [] : _ref3$children;
|
|
71
|
+
var childLen = children === null || children === void 0 ? void 0 : children.length;
|
|
72
|
+
var trClassName = !!childLen ? trClassname : "";
|
|
64
73
|
var _item$valueType = item.valueType,
|
|
65
74
|
valueType = _item$valueType === void 0 ? "" : _item$valueType,
|
|
66
75
|
_item$valueTypeProps = item.valueTypeProps,
|
|
67
|
-
valueTypeProps = _item$valueTypeProps === void 0 ? {} : _item$valueTypeProps
|
|
76
|
+
valueTypeProps = _item$valueTypeProps === void 0 ? {} : _item$valueTypeProps,
|
|
77
|
+
_item$className = item.className,
|
|
78
|
+
className = _item$className === void 0 ? "" : _item$className;
|
|
68
79
|
var itemType = valueType;
|
|
69
80
|
if (_indexOfInstanceProperty(config.textTypes).call(config.textTypes, itemType) !== -1) {
|
|
81
|
+
var _context;
|
|
70
82
|
var ellipsis = valueTypeProps.ellipsis;
|
|
71
83
|
return _objectSpread(_objectSpread({}, item), {}, {
|
|
72
84
|
ellipsis: ellipsis,
|
|
73
|
-
|
|
85
|
+
className: _concatInstanceProperty(_context = "".concat(className, " ")).call(_context, trClassName),
|
|
86
|
+
render: index$1.default(item, table, valueTypeConfig)
|
|
74
87
|
});
|
|
75
88
|
}
|
|
76
89
|
return _objectSpread(_objectSpread({}, item), {}, {
|
|
77
|
-
|
|
90
|
+
className: _concatInstanceProperty(_context2 = "".concat(className, " ")).call(_context2, trClassName),
|
|
91
|
+
render: index$1.default(item, table, valueTypeConfig)
|
|
78
92
|
});
|
|
79
93
|
};
|
|
80
94
|
var changeConfigData = function changeConfigData(data) {
|
|
@@ -84,8 +98,9 @@ var useCols = function useCols(_ref2) {
|
|
|
84
98
|
if (rowSelection !== false) {
|
|
85
99
|
_spliceInstanceProperty(colsArray).call(colsArray, 0, 0, rowSelectionCol(rowSelection));
|
|
86
100
|
}
|
|
87
|
-
return _mapInstanceProperty(colsArray).call(colsArray, function (item) {
|
|
88
|
-
|
|
101
|
+
return _mapInstanceProperty(colsArray).call(colsArray, function (item, index) {
|
|
102
|
+
var lastItem = colsArray[index - 1];
|
|
103
|
+
return itemProvider(item, lastItem);
|
|
89
104
|
});
|
|
90
105
|
};
|
|
91
106
|
React.useEffect(function () {
|
|
@@ -95,10 +110,10 @@ var useCols = function useCols(_ref2) {
|
|
|
95
110
|
cols: cols
|
|
96
111
|
};
|
|
97
112
|
};
|
|
98
|
-
var useSynchronousKeys = function useSynchronousKeys(
|
|
99
|
-
var selectedRowKeys =
|
|
100
|
-
records =
|
|
101
|
-
rowKey =
|
|
113
|
+
var useSynchronousKeys = function useSynchronousKeys(_ref4) {
|
|
114
|
+
var selectedRowKeys = _ref4.selectedRowKeys,
|
|
115
|
+
records = _ref4.records,
|
|
116
|
+
rowKey = _ref4.rowKey;
|
|
102
117
|
var _useHTableContext = context.useHTableContext(),
|
|
103
118
|
rowOnChange = _useHTableContext.rowOnChange;
|
|
104
119
|
var findId = function findId(key) {
|
|
@@ -131,17 +146,17 @@ var useSize = function useSize(size) {
|
|
|
131
146
|
setCuSize: setCuSize
|
|
132
147
|
};
|
|
133
148
|
};
|
|
134
|
-
var useColumnsStateType = function useColumnsStateType(
|
|
135
|
-
var columnsState =
|
|
136
|
-
columns =
|
|
149
|
+
var useColumnsStateType = function useColumnsStateType(_ref5) {
|
|
150
|
+
var columnsState = _ref5.columnsState,
|
|
151
|
+
columns = _ref5.columns;
|
|
137
152
|
var _useHTableContext2 = context.useHTableContext(),
|
|
138
153
|
tableInstance = _useHTableContext2.tableInstance;
|
|
139
|
-
var
|
|
140
|
-
persistenceType =
|
|
141
|
-
persistenceKey =
|
|
142
|
-
value =
|
|
143
|
-
defaultValue =
|
|
144
|
-
onChange =
|
|
154
|
+
var _ref6 = columnsState || {},
|
|
155
|
+
persistenceType = _ref6.persistenceType,
|
|
156
|
+
persistenceKey = _ref6.persistenceKey,
|
|
157
|
+
value = _ref6.value,
|
|
158
|
+
defaultValue = _ref6.defaultValue,
|
|
159
|
+
onChange = _ref6.onChange;
|
|
145
160
|
var _useState5 = React.useState(defaultValue),
|
|
146
161
|
_useState6 = _slicedToArray(_useState5, 2),
|
|
147
162
|
selfValue = _useState6[0],
|
package/lib/index.css
CHANGED
package/lib/render/Text.d.ts
CHANGED
package/lib/render/config.js
CHANGED
|
@@ -29,7 +29,7 @@ var getTableVal = function getTableVal(config, itemData) {
|
|
|
29
29
|
return val;
|
|
30
30
|
}
|
|
31
31
|
var relVal = val === null || val === void 0 ? void 0 : val.toString();
|
|
32
|
-
return !!relVal ?
|
|
32
|
+
return !!relVal ? val : null;
|
|
33
33
|
};
|
|
34
34
|
var dateRender = function dateRender(config, itemData) {
|
|
35
35
|
var _config$valueTypeProp = config.valueTypeProps,
|
package/package.json
CHANGED
|
@@ -16,6 +16,7 @@ import { mkChangeValue, outColSetting } from "./utils";
|
|
|
16
16
|
import configRender from "../render";
|
|
17
17
|
import { useHTableConfigContext } from "@/components/TableConfig";
|
|
18
18
|
import { textTypes } from "@/components/render/config";
|
|
19
|
+
import {useClassName} from "@/components/hooks";
|
|
19
20
|
const rowSelectionCol = (rowSelection?: HRowSelection) => {
|
|
20
21
|
const { allPageCheck, onChange, getCheckboxProps } = rowSelection || {};
|
|
21
22
|
return {
|
|
@@ -44,21 +45,27 @@ const rowSelectionCol = (rowSelection?: HRowSelection) => {
|
|
|
44
45
|
};
|
|
45
46
|
|
|
46
47
|
export const useCols = ({ configData, rowSelection, table }: HTableProps) => {
|
|
48
|
+
const trClassname=useClassName("");
|
|
47
49
|
const [cols, setCols] = useState<ConfigDataModal>([]);
|
|
48
50
|
const { valueTypeConfig } = useHTableConfigContext({});
|
|
49
|
-
const itemProvider = (item: ConfigItemModal) => {
|
|
50
|
-
const {
|
|
51
|
+
const itemProvider = (item: ConfigItemModal,lastItem?: ConfigItemModal) => {
|
|
52
|
+
const {children=[]}=lastItem||{};
|
|
53
|
+
const childLen=(children as any[])?.length;
|
|
54
|
+
const trClassName=!!childLen?trClassname:"";
|
|
55
|
+
const { valueType = "", valueTypeProps = {} ,className=""} = item;
|
|
51
56
|
const itemType = valueType as string;
|
|
52
57
|
if (textTypes.indexOf(itemType) !== -1) {
|
|
53
58
|
const { ellipsis } = valueTypeProps;
|
|
54
59
|
return {
|
|
55
60
|
...item,
|
|
56
61
|
ellipsis: ellipsis,
|
|
62
|
+
className:`${className} ${trClassName}`,
|
|
57
63
|
render: configRender(item, table as HTableInstance, valueTypeConfig),
|
|
58
64
|
};
|
|
59
65
|
}
|
|
60
66
|
return {
|
|
61
67
|
...item,
|
|
68
|
+
className:`${className} ${trClassName}`,
|
|
62
69
|
render: configRender(item, table as HTableInstance, valueTypeConfig),
|
|
63
70
|
};
|
|
64
71
|
};
|
|
@@ -69,8 +76,9 @@ export const useCols = ({ configData, rowSelection, table }: HTableProps) => {
|
|
|
69
76
|
if (rowSelection !== false) {
|
|
70
77
|
colsArray.splice(0, 0, rowSelectionCol(rowSelection) as any);
|
|
71
78
|
}
|
|
72
|
-
return colsArray.map((item) => {
|
|
73
|
-
|
|
79
|
+
return colsArray.map((item,index) => {
|
|
80
|
+
const lastItem=colsArray[index-1];
|
|
81
|
+
return itemProvider(item,lastItem);
|
|
74
82
|
});
|
|
75
83
|
};
|
|
76
84
|
useEffect(() => {
|
|
@@ -13,7 +13,7 @@ const getTableVal = (config: ConfigItemModal, itemData: any) => {
|
|
|
13
13
|
return val;
|
|
14
14
|
}
|
|
15
15
|
const relVal=val?.toString();
|
|
16
|
-
return !!relVal?
|
|
16
|
+
return !!relVal?val:null;
|
|
17
17
|
};
|
|
18
18
|
const dateRender = (config: ConfigItemModal, itemData: any) => {
|
|
19
19
|
const { valueTypeProps = {} } = config;
|
|
@@ -80,6 +80,47 @@ export const configData = [
|
|
|
80
80
|
return <TagsComponent data={openidList} />;
|
|
81
81
|
},
|
|
82
82
|
},
|
|
83
|
+
{
|
|
84
|
+
title: '升级规则',
|
|
85
|
+
dataIndex: 'rule',
|
|
86
|
+
children: [
|
|
87
|
+
{
|
|
88
|
+
title: '邀请总人数',
|
|
89
|
+
dataIndex: 'upInviteCount',
|
|
90
|
+
width: 100,
|
|
91
|
+
align: 'center',
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
title: '订单笔数',
|
|
95
|
+
dataIndex: 'upOrderCount',
|
|
96
|
+
width: 100,
|
|
97
|
+
align: 'center',
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
title: '返利总金额',
|
|
101
|
+
dataIndex: 'upTotalAmount',
|
|
102
|
+
width: 100,
|
|
103
|
+
align: 'center',
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
title: '奖励积分',
|
|
107
|
+
dataIndex: 'upReInte',
|
|
108
|
+
width: 100,
|
|
109
|
+
align: 'center',
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
title: '奖励金额',
|
|
113
|
+
dataIndex: 'upReBal',
|
|
114
|
+
width: 100,
|
|
115
|
+
align: 'center',
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
title: '升级提示语',
|
|
119
|
+
dataIndex: 'upRemsg',
|
|
120
|
+
width: 130,
|
|
121
|
+
},
|
|
122
|
+
],
|
|
123
|
+
},
|
|
83
124
|
{
|
|
84
125
|
title: "钉钉机器人",
|
|
85
126
|
dataIndex: "dingdingList",
|