@pisell/materials 3.0.16 → 3.0.18

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.
Files changed (121) hide show
  1. package/build/lowcode/assets-daily.json +11 -11
  2. package/build/lowcode/assets-dev.json +2 -2
  3. package/build/lowcode/assets-prod.json +11 -11
  4. package/build/lowcode/index.js +1 -1
  5. package/build/lowcode/meta.js +2 -2
  6. package/build/lowcode/preview.js +142 -142
  7. package/build/lowcode/render/default/view.css +1 -1
  8. package/build/lowcode/render/default/view.js +20 -29
  9. package/build/lowcode/view.css +1 -1
  10. package/build/lowcode/view.js +22 -31
  11. package/es/components/table/Actions/component/ColumnsSetting/PopoverContent.js +1 -1
  12. package/es/components/table/Actions/component/ExportImport/components/ExportFile/index.d.ts +7 -0
  13. package/es/components/table/Actions/component/ExportImport/components/ExportFile/index.js +143 -0
  14. package/es/components/table/Actions/component/ExportImport/components/ExportFile/index.less +29 -0
  15. package/es/components/table/Actions/component/ExportImport/components/ExportTable/function.d.ts +7 -0
  16. package/es/components/table/Actions/component/ExportImport/components/ExportTable/function.js +87 -0
  17. package/es/components/table/Actions/component/ExportImport/components/ExportTable/index.d.ts +8 -0
  18. package/es/components/table/Actions/component/ExportImport/components/ExportTable/index.js +41 -0
  19. package/es/components/table/Actions/component/ExportImport/components/ExportTable/index.less +5 -0
  20. package/es/components/table/Actions/component/ExportImport/components/ImportLog/Detail.d.ts +4 -0
  21. package/es/components/table/Actions/component/ExportImport/components/ImportLog/Detail.js +97 -0
  22. package/es/components/table/Actions/component/ExportImport/components/ImportLog/index.d.ts +7 -0
  23. package/es/components/table/Actions/component/ExportImport/components/ImportLog/index.js +137 -0
  24. package/es/components/table/Actions/component/ExportImport/components/ImportLog/index.less +48 -0
  25. package/es/components/table/Actions/component/ExportImport/components/ImportTable/index.d.ts +10 -0
  26. package/es/components/table/Actions/component/ExportImport/components/ImportTable/index.js +149 -0
  27. package/es/components/table/Actions/component/ExportImport/components/ImportTable/index.less +97 -0
  28. package/es/components/table/Actions/component/ExportImport/index.d.ts +8 -0
  29. package/es/components/table/Actions/component/ExportImport/index.js +232 -0
  30. package/es/components/table/Actions/component/ExportImport/index.less +194 -0
  31. package/es/components/table/Actions/component/ExportImport/utils/date.d.ts +8 -0
  32. package/es/components/table/Actions/component/ExportImport/utils/date.js +19 -0
  33. package/es/components/table/Actions/component/ExportImport/utils/download.d.ts +3 -0
  34. package/es/components/table/Actions/component/ExportImport/utils/download.js +39 -0
  35. package/es/components/table/Actions/component/ExportImport/utils/file.d.ts +7 -0
  36. package/es/components/table/Actions/component/ExportImport/utils/file.js +21 -0
  37. package/es/components/table/Actions/index.d.ts +3 -2
  38. package/es/components/table/Actions/index.js +12 -8
  39. package/es/components/table/BasicTable/index.js +11 -1
  40. package/es/components/table/Table/index.js +17 -2
  41. package/es/components/table/Table/utils.d.ts +11 -2
  42. package/es/components/table/Table/utils.js +5 -1
  43. package/es/components/table/hooks/useGenScroll.d.ts +1 -0
  44. package/es/components/table/hooks/useGenScroll.js +4 -3
  45. package/es/components/table/hooks/useTableSetting.d.ts +2 -1
  46. package/es/components/table/hooks/useTableSetting.js +2 -1
  47. package/es/components/table/index.js +15 -13
  48. package/es/components/table/model.d.ts +2 -0
  49. package/es/components/table/model.js +15 -1
  50. package/es/components/table/serve.d.ts +11 -0
  51. package/es/components/table/serve.js +38 -0
  52. package/es/components/table/status.d.ts +19 -0
  53. package/es/components/table/status.js +26 -0
  54. package/es/components/table/types.d.ts +20 -0
  55. package/es/components/table/utils.d.ts +15 -0
  56. package/es/components/table/utils.js +26 -0
  57. package/es/components/virtual-keyboard/Time/index.js +1 -1
  58. package/es/components/virtual-keyboard/VirtualKeyInput/index.js +1 -1
  59. package/es/locales/en-US.d.ts +47 -0
  60. package/es/locales/en-US.js +60 -1
  61. package/es/locales/zh-CN.d.ts +47 -0
  62. package/es/locales/zh-CN.js +60 -1
  63. package/es/locales/zh-TW.d.ts +47 -0
  64. package/es/locales/zh-TW.js +60 -1
  65. package/lib/components/table/Actions/component/ColumnsSetting/PopoverContent.js +1 -1
  66. package/lib/components/table/Actions/component/ExportImport/components/ExportFile/index.d.ts +7 -0
  67. package/lib/components/table/Actions/component/ExportImport/components/ExportFile/index.js +150 -0
  68. package/lib/components/table/Actions/component/ExportImport/components/ExportFile/index.less +29 -0
  69. package/lib/components/table/Actions/component/ExportImport/components/ExportTable/function.d.ts +7 -0
  70. package/lib/components/table/Actions/component/ExportImport/components/ExportTable/function.js +78 -0
  71. package/lib/components/table/Actions/component/ExportImport/components/ExportTable/index.d.ts +8 -0
  72. package/lib/components/table/Actions/component/ExportImport/components/ExportTable/index.js +60 -0
  73. package/lib/components/table/Actions/component/ExportImport/components/ExportTable/index.less +5 -0
  74. package/lib/components/table/Actions/component/ExportImport/components/ImportLog/Detail.d.ts +4 -0
  75. package/lib/components/table/Actions/component/ExportImport/components/ImportLog/Detail.js +117 -0
  76. package/lib/components/table/Actions/component/ExportImport/components/ImportLog/index.d.ts +7 -0
  77. package/lib/components/table/Actions/component/ExportImport/components/ImportLog/index.js +141 -0
  78. package/lib/components/table/Actions/component/ExportImport/components/ImportLog/index.less +48 -0
  79. package/lib/components/table/Actions/component/ExportImport/components/ImportTable/index.d.ts +10 -0
  80. package/lib/components/table/Actions/component/ExportImport/components/ImportTable/index.js +124 -0
  81. package/lib/components/table/Actions/component/ExportImport/components/ImportTable/index.less +97 -0
  82. package/lib/components/table/Actions/component/ExportImport/index.d.ts +8 -0
  83. package/lib/components/table/Actions/component/ExportImport/index.js +210 -0
  84. package/lib/components/table/Actions/component/ExportImport/index.less +194 -0
  85. package/lib/components/table/Actions/component/ExportImport/utils/date.d.ts +8 -0
  86. package/lib/components/table/Actions/component/ExportImport/utils/date.js +49 -0
  87. package/lib/components/table/Actions/component/ExportImport/utils/download.d.ts +3 -0
  88. package/lib/components/table/Actions/component/ExportImport/utils/download.js +62 -0
  89. package/lib/components/table/Actions/component/ExportImport/utils/file.d.ts +7 -0
  90. package/lib/components/table/Actions/component/ExportImport/utils/file.js +55 -0
  91. package/lib/components/table/Actions/index.d.ts +3 -2
  92. package/lib/components/table/Actions/index.js +11 -7
  93. package/lib/components/table/BasicTable/index.js +9 -0
  94. package/lib/components/table/Table/index.js +28 -3
  95. package/lib/components/table/Table/utils.d.ts +11 -2
  96. package/lib/components/table/Table/utils.js +4 -1
  97. package/lib/components/table/hooks/useGenScroll.d.ts +1 -0
  98. package/lib/components/table/hooks/useGenScroll.js +3 -3
  99. package/lib/components/table/hooks/useTableSetting.d.ts +2 -1
  100. package/lib/components/table/hooks/useTableSetting.js +2 -1
  101. package/lib/components/table/index.js +14 -12
  102. package/lib/components/table/model.d.ts +2 -0
  103. package/lib/components/table/model.js +11 -1
  104. package/lib/components/table/serve.d.ts +11 -0
  105. package/lib/components/table/serve.js +41 -0
  106. package/lib/components/table/status.d.ts +19 -0
  107. package/lib/components/table/status.js +55 -0
  108. package/lib/components/table/types.d.ts +20 -0
  109. package/lib/components/table/utils.d.ts +15 -0
  110. package/lib/components/table/utils.js +40 -0
  111. package/lib/components/virtual-keyboard/Time/index.js +1 -1
  112. package/lib/components/virtual-keyboard/VirtualKeyInput/index.js +2 -2
  113. package/lib/locales/en-US.d.ts +47 -0
  114. package/lib/locales/en-US.js +52 -1
  115. package/lib/locales/zh-CN.d.ts +47 -0
  116. package/lib/locales/zh-CN.js +52 -1
  117. package/lib/locales/zh-TW.d.ts +47 -0
  118. package/lib/locales/zh-TW.js +52 -1
  119. package/lowcode/table/meta.ts +84 -1
  120. package/lowcode/table/snippets.ts +8 -0
  121. package/package.json +1 -1
@@ -0,0 +1,55 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
+ var __getOwnPropNames = Object.getOwnPropertyNames;
4
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
5
+ var __export = (target, all) => {
6
+ for (var name in all)
7
+ __defProp(target, name, { get: all[name], enumerable: true });
8
+ };
9
+ var __copyProps = (to, from, except, desc) => {
10
+ if (from && typeof from === "object" || typeof from === "function") {
11
+ for (let key of __getOwnPropNames(from))
12
+ if (!__hasOwnProp.call(to, key) && key !== except)
13
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14
+ }
15
+ return to;
16
+ };
17
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
18
+
19
+ // src/components/table/status.ts
20
+ var status_exports = {};
21
+ __export(status_exports, {
22
+ defaultOptions: () => defaultOptions,
23
+ exportImportOptions: () => exportImportOptions,
24
+ suffixOptions: () => suffixOptions
25
+ });
26
+ module.exports = __toCommonJS(status_exports);
27
+ var import_locales = require("../../locales/index");
28
+ var defaultOptions = {
29
+ exportType: "current-page",
30
+ footerHintTypes: ["export_file", "import_log"],
31
+ okShowButtonTypes: ["export", "import"],
32
+ exportValue: "export",
33
+ importValue: "import"
34
+ };
35
+ var suffixOptions = {
36
+ "1": `${(0, import_locales.getText)("page.customer.list.table.num")}`,
37
+ "2": `${(0, import_locales.getText)("page.customer.suffix")}`,
38
+ product: `${(0, import_locales.getText)("page.product.suffix")}`,
39
+ "4": `${(0, import_locales.getText)("page.voucher.suffix")}`,
40
+ "5": `${(0, import_locales.getText)("page.recharge.suffix")}`,
41
+ "6": `${(0, import_locales.getText)("page.ticket.suffix")}`,
42
+ "7": `${(0, import_locales.getText)("page.package.ticket.suffix")}`
43
+ };
44
+ var exportImportOptions = {
45
+ import: (0, import_locales.getText)("table-action-export-import-button-import"),
46
+ export: (0, import_locales.getText)("table-action-export-import-button"),
47
+ export_file: (0, import_locales.getText)("table-action-export-import-export-title"),
48
+ import_log: (0, import_locales.getText)("table-action-export-import-import-title")
49
+ };
50
+ // Annotate the CommonJS export names for ESM import in node:
51
+ 0 && (module.exports = {
52
+ defaultOptions,
53
+ exportImportOptions,
54
+ suffixOptions
55
+ });
@@ -158,6 +158,25 @@ declare type SortDetail = {
158
158
  fromItem: Record<string, any>;
159
159
  toItem: Record<string, any>;
160
160
  };
161
+ /** 导入导出模式 */
162
+ export declare type ExportImportModeType = "import" | "export" | "export_file" | "import_log";
163
+ /**
164
+ * 导入导出配置
165
+ */
166
+ export declare type ExportImportType = {
167
+ /** 是否展示 */
168
+ show: boolean;
169
+ /** 表id */
170
+ formId?: string;
171
+ /** 表key */
172
+ formCode?: string;
173
+ /** 当前所选项 */
174
+ selectLists: string[];
175
+ /** 导入模版链接 */
176
+ templateFileUrl: string;
177
+ /** 标题 */
178
+ title: string;
179
+ };
161
180
  export declare type GridViewProps = {
162
181
  columns: any;
163
182
  dataSource: any[];
@@ -177,6 +196,7 @@ export declare type GridViewProps = {
177
196
  actionButtons: any;
178
197
  sort: SortType;
179
198
  title: any;
199
+ exportImport: ExportImportType;
180
200
  onValuesChange: (changedValues: any, values: any) => void;
181
201
  summary: any;
182
202
  utils: any;
@@ -0,0 +1,15 @@
1
+ declare type RType = (url: string, data?: {} | undefined, config?: {} | undefined) => Promise<any>;
2
+ declare class Request {
3
+ private request;
4
+ constructor();
5
+ setRequest(val: any): void;
6
+ getRequest(): {
7
+ get: RType;
8
+ post: RType;
9
+ put: RType;
10
+ remove: RType;
11
+ custom: RType;
12
+ };
13
+ }
14
+ export declare const request: Request;
15
+ export {};
@@ -0,0 +1,40 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
+ var __getOwnPropNames = Object.getOwnPropertyNames;
4
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
5
+ var __export = (target, all) => {
6
+ for (var name in all)
7
+ __defProp(target, name, { get: all[name], enumerable: true });
8
+ };
9
+ var __copyProps = (to, from, except, desc) => {
10
+ if (from && typeof from === "object" || typeof from === "function") {
11
+ for (let key of __getOwnPropNames(from))
12
+ if (!__hasOwnProp.call(to, key) && key !== except)
13
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14
+ }
15
+ return to;
16
+ };
17
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
18
+
19
+ // src/components/table/utils.ts
20
+ var utils_exports = {};
21
+ __export(utils_exports, {
22
+ request: () => request
23
+ });
24
+ module.exports = __toCommonJS(utils_exports);
25
+ var Request = class {
26
+ constructor() {
27
+ this.request = {};
28
+ }
29
+ setRequest(val) {
30
+ this.request = val;
31
+ }
32
+ getRequest() {
33
+ return this.request;
34
+ }
35
+ };
36
+ var request = new Request();
37
+ // Annotate the CommonJS export names for ESM import in node:
38
+ 0 && (module.exports = {
39
+ request
40
+ });
@@ -35,7 +35,7 @@ module.exports = __toCommonJS(Time_exports);
35
35
  var import_react = __toESM(require("react"));
36
36
  var import__ = __toESM(require("../index"));
37
37
  var import_index = require("./index.less");
38
- var import_utils = require("./utils.tsx");
38
+ var import_utils = require("./utils");
39
39
  var import_locales = require("../../../locales");
40
40
  var import_dayjs = __toESM(require("dayjs"));
41
41
  var items = [
@@ -34,7 +34,7 @@ __export(VirtualKeyInput_exports, {
34
34
  module.exports = __toCommonJS(VirtualKeyInput_exports);
35
35
  var import_react = __toESM(require("react"));
36
36
  var import_antd = require("antd");
37
- var import_icon = require("@pisell/icon");
37
+ var import_Delete = __toESM(require("@pisell/icon/es/Delete"));
38
38
  var import_ahooks = require("ahooks");
39
39
  var import_classnames = __toESM(require("classnames"));
40
40
  var import_index = require("./index.less");
@@ -85,6 +85,6 @@ var VirtualKeyInput = (props) => {
85
85
  readOnly: true,
86
86
  value: previewValue
87
87
  }
88
- ), (value == null ? void 0 : value.length) ? /* @__PURE__ */ import_react.default.createElement("div", { className: "virtual-keyboard-input-delete", onClick: _onDelete }, /* @__PURE__ */ import_react.default.createElement(import_icon.Delete, { className: "virtual-keyboard-input-delete-icon" })) : null);
88
+ ), (value == null ? void 0 : value.length) ? /* @__PURE__ */ import_react.default.createElement("div", { className: "virtual-keyboard-input-delete", onClick: _onDelete }, /* @__PURE__ */ import_react.default.createElement(import_Delete.default, { className: "virtual-keyboard-input-delete-icon" })) : null);
89
89
  };
90
90
  var VirtualKeyInput_default = VirtualKeyInput;
@@ -26,6 +26,7 @@ declare const _default: {
26
26
  "table-action-group-by-title-tip": string;
27
27
  "table-action-column-title": string;
28
28
  "table-column-group-records": string;
29
+ "table-column-group-lock-tip": string;
29
30
  "table-column-drag-sort-disabled-tip": string;
30
31
  "table-action-filter-no-filter": string;
31
32
  "table-action-range-picker-presets-today": string;
@@ -49,5 +50,51 @@ declare const _default: {
49
50
  'batch-editor-what-price': string;
50
51
  'batch-editor-quick-edit-title': (product: string, num: string) => string;
51
52
  'batch-editor-quick-edit-title-2': (product: string) => string;
53
+ 'table-action-export-import-export-success': string;
54
+ 'table-action-export-import-button': string;
55
+ 'table-action-export-import-export-range': string;
56
+ 'table-action-export-import-current-page': string;
57
+ 'table-action-export-import-all-records': string;
58
+ 'table-action-export-import-selected-records': string;
59
+ 'table-action-export-import-selected': string;
60
+ 'table-action-export-import-item': (length: number) => string;
61
+ 'table-action-export-import-product': string;
62
+ 'table-action-export-import-table-text-input-title': string;
63
+ 'table-action-export-import-table-text-input-describe': string;
64
+ 'table-action-export-import-table-error-file': string;
65
+ 'table-action-export-import-import-success': string;
66
+ 'table-action-export-import-import-phone': string;
67
+ 'table-action-export-import-table-success-download': string;
68
+ 'table-action-export-import-table-textimport-product': string;
69
+ 'table-action-export-import-table-text-product-template': string;
70
+ 'table-action-export-import-table-text-click-download': string;
71
+ 'table-action-export-import-table-text-edit-file': string;
72
+ 'table-action-export-import-button-import': string;
73
+ 'table-action-export-import-cancel': string;
74
+ 'table-action-export-import-file-completed': string;
75
+ 'table-action-export-import-file-processing': string;
76
+ 'table-action-export-import-file-pending': string;
77
+ 'table-action-export-import-file-refresh': string;
78
+ 'table-action-export-import-export-title': string;
79
+ 'table-action-export-import-file-hint': string;
80
+ 'table-action-export-import-file-name': string;
81
+ 'table-action-export-import-file-content': string;
82
+ 'table-action-export-import-file-content-all': string;
83
+ 'table-action-export-import-file-content-part': string;
84
+ 'table-action-export-import-file-status': string;
85
+ 'table-action-export-import-file-account': string;
86
+ 'table-action-export-import-file-created': string;
87
+ 'table-action-export-import-file-record': (length: number) => string;
88
+ 'table-action-export-import-import-title': string;
89
+ 'table-action-export-import-log-hint': string;
90
+ 'table-action-export-import-log-name': string;
91
+ 'table-action-export-import-log-result': string;
92
+ 'table-action-export-import-log-ok': (num: number) => string;
93
+ 'table-action-export-import-log-err': (num: number) => string;
94
+ 'table-action-export-import-log-check': string;
95
+ 'table-action-export-import-log-detail-title': string;
96
+ 'table-action-export-import-log-err-log': string;
97
+ 'table-action-export-import-log-copy': string;
98
+ 'table-action-export-import-table-success-copy': string;
52
99
  };
53
100
  export default _default;
@@ -50,6 +50,7 @@ var en_US_default = {
50
50
  "table-action-group-by-title-tip": "Please select the field from the dropdown menu to group the data for better organization and browsing.",
51
51
  "table-action-column-title": "Header settings",
52
52
  "table-column-group-records": "records",
53
+ "table-column-group-lock-tip": "Fixed column immutable order",
53
54
  "table-column-drag-sort-disabled-tip": "Automatic sorting is enabled, manual dragging is disabled.",
54
55
  "table-action-filter-no-filter": "No filter options available.",
55
56
  "table-action-range-picker-presets-today": "Today",
@@ -72,5 +73,55 @@ var en_US_default = {
72
73
  "batch-editor-quick-edit": "Quick edit",
73
74
  "batch-editor-what-price": "What price",
74
75
  "batch-editor-quick-edit-title": (product, num) => `You have selected ${num} products including ${product}`,
75
- "batch-editor-quick-edit-title-2": (product) => `You have selected ${product}`
76
+ "batch-editor-quick-edit-title-2": (product) => `You have selected ${product}`,
77
+ // 导出
78
+ "table-action-export-import-export-success": "Export successful! ",
79
+ "table-action-export-import-button": "Export",
80
+ "table-action-export-import-export-range": "Export Range",
81
+ "table-action-export-import-current-page": "Current Page",
82
+ "table-action-export-import-all-records": "All Records",
83
+ "table-action-export-import-selected-records": "Selected Records",
84
+ "table-action-export-import-selected": "Selected",
85
+ "table-action-export-import-item": (length) => `${length} ${length > 1 ? "items" : "item"}`,
86
+ "table-action-export-import-product": "Export Products",
87
+ // 导入
88
+ "table-action-export-import-table-text-input-title": "Click or drag file to this area to upload",
89
+ "table-action-export-import-table-text-input-describe": "Support both single and bulk uploads. Do not upload data file other than supported template.",
90
+ "table-action-export-import-table-error-file": "Only supports uploading files in.csv,.xls,.xlsx format.",
91
+ "table-action-export-import-import-success": "Import successful! ",
92
+ "table-action-export-import-import-phone": "Whether to replace data with the same mobile number?",
93
+ "table-action-export-import-table-success-download": "Download Success",
94
+ "table-action-export-import-table-textimport-product": "Import Products",
95
+ "table-action-export-import-table-text-product-template": "Import Template",
96
+ "table-action-export-import-table-text-click-download": "Click to download",
97
+ "table-action-export-import-table-text-edit-file": "Replace file",
98
+ "table-action-export-import-button-import": "Import",
99
+ "table-action-export-import-cancel": "Cancel",
100
+ "table-action-export-import-file-completed": "completed",
101
+ "table-action-export-import-file-processing": "processing",
102
+ "table-action-export-import-file-pending": "pending",
103
+ "table-action-export-import-file-refresh": "Refresh",
104
+ "table-action-export-import-export-title": "Export File",
105
+ "table-action-export-import-file-hint": "Display only the last 10 export histories",
106
+ "table-action-export-import-file-name": "Export File",
107
+ "table-action-export-import-file-content": "Content",
108
+ "table-action-export-import-file-content-all": "All",
109
+ "table-action-export-import-file-content-part": "Selected",
110
+ "table-action-export-import-file-status": "Status",
111
+ "table-action-export-import-file-account": "Operator",
112
+ "table-action-export-import-file-created": "Operation Time",
113
+ "table-action-export-import-file-record": (length) => `${length} ${length > 1 ? "records" : "record"}`,
114
+ // 导入日志
115
+ "table-action-export-import-import-title": "Import Log",
116
+ "table-action-export-import-log-hint": "Display only the last 10 import histories",
117
+ "table-action-export-import-log-name": "Import File",
118
+ "table-action-export-import-log-result": "Import Results",
119
+ "table-action-export-import-log-ok": (num) => `${num} successful`,
120
+ "table-action-export-import-log-err": (num) => `, ${num} failures`,
121
+ "table-action-export-import-log-check": `View more`,
122
+ // 导入详情
123
+ "table-action-export-import-log-detail-title": "Import Details",
124
+ "table-action-export-import-log-err-log": "Failure Log",
125
+ "table-action-export-import-log-copy": "Copy",
126
+ "table-action-export-import-table-success-copy": "Copy Success"
76
127
  };
@@ -26,6 +26,7 @@ declare const _default: {
26
26
  "table-action-group-by-title-tip": string;
27
27
  "table-action-column-title": string;
28
28
  "table-column-group-records": string;
29
+ "table-column-group-lock-tip": string;
29
30
  "table-column-drag-sort-disabled-tip": string;
30
31
  "table-action-filter-no-filter": string;
31
32
  "table-action-range-picker-presets-today": string;
@@ -49,5 +50,51 @@ declare const _default: {
49
50
  'batch-editor-what-price': string;
50
51
  'batch-editor-quick-edit-title': (product: string, num: string) => string;
51
52
  'batch-editor-quick-edit-title-2': (product: string) => string;
53
+ 'table-action-export-import-export-success': string;
54
+ 'table-action-export-import-button': string;
55
+ 'table-action-export-import-export-range': string;
56
+ 'table-action-export-import-current-page': string;
57
+ 'table-action-export-import-all-records': string;
58
+ 'table-action-export-import-selected-records': string;
59
+ 'table-action-export-import-selected': string;
60
+ 'table-action-export-import-item': (length: number) => string;
61
+ 'table-action-export-import-product': string;
62
+ 'table-action-export-import-table-text-input-title': string;
63
+ 'table-action-export-import-table-text-input-describe': string;
64
+ 'table-action-export-import-table-error-file': string;
65
+ 'table-action-export-import-import-success': string;
66
+ 'table-action-export-import-import-phone': string;
67
+ 'table-action-export-import-table-success-download': string;
68
+ 'table-action-export-import-table-textimport-product': string;
69
+ 'table-action-export-import-table-text-product-template': string;
70
+ 'table-action-export-import-table-text-click-download': string;
71
+ 'table-action-export-import-table-text-edit-file': string;
72
+ 'table-action-export-import-button-import': string;
73
+ 'table-action-export-import-cancel': string;
74
+ 'table-action-export-import-file-completed': string;
75
+ 'table-action-export-import-file-processing': string;
76
+ 'table-action-export-import-file-pending': string;
77
+ 'table-action-export-import-file-refresh': string;
78
+ 'table-action-export-import-export-title': string;
79
+ 'table-action-export-import-file-hint': string;
80
+ 'table-action-export-import-file-name': string;
81
+ 'table-action-export-import-file-content': string;
82
+ 'table-action-export-import-file-content-all': string;
83
+ 'table-action-export-import-file-content-part': string;
84
+ 'table-action-export-import-file-status': string;
85
+ 'table-action-export-import-file-account': string;
86
+ 'table-action-export-import-file-created': string;
87
+ 'table-action-export-import-file-record': (length: number) => string;
88
+ 'table-action-export-import-import-title': string;
89
+ 'table-action-export-import-log-hint': string;
90
+ 'table-action-export-import-log-name': string;
91
+ 'table-action-export-import-log-result': string;
92
+ 'table-action-export-import-log-ok': (num: number) => string;
93
+ 'table-action-export-import-log-err': (num: number) => string;
94
+ 'table-action-export-import-log-check': string;
95
+ 'table-action-export-import-log-detail-title': string;
96
+ 'table-action-export-import-log-err-log': string;
97
+ 'table-action-export-import-log-copy': string;
98
+ 'table-action-export-import-table-success-copy': string;
52
99
  };
53
100
  export default _default;
@@ -50,6 +50,7 @@ var zh_CN_default = {
50
50
  "table-action-group-by-title-tip": "请从下拉菜单中选择要分组的字段,以便更好地组织和浏览数据。",
51
51
  "table-action-column-title": "表头设置",
52
52
  "table-column-group-records": "条记录",
53
+ "table-column-group-lock-tip": "固定列不可移动顺序",
53
54
  "table-column-drag-sort-disabled-tip": "已开启自动排序,无法手动拖拽",
54
55
  "table-action-filter-no-filter": "没有可用的筛选器。",
55
56
  "table-action-range-picker-presets-today": "今天",
@@ -72,5 +73,55 @@ var zh_CN_default = {
72
73
  "batch-editor-quick-edit": "快速编辑",
73
74
  "batch-editor-what-price": "什么价格",
74
75
  "batch-editor-quick-edit-title": (product, num) => `您已选择 ${product} 等${num}件商品`,
75
- "batch-editor-quick-edit-title-2": (product) => `您已选择 ${product}`
76
+ "batch-editor-quick-edit-title-2": (product) => `您已选择 ${product}`,
77
+ // 导出
78
+ "table-action-export-import-export-success": "导出成功!",
79
+ "table-action-export-import-button": "导出",
80
+ "table-action-export-import-export-range": "导出范围",
81
+ "table-action-export-import-current-page": "当前页面",
82
+ "table-action-export-import-all-records": "所有记录",
83
+ "table-action-export-import-selected-records": "所选记录",
84
+ "table-action-export-import-selected": "已选",
85
+ "table-action-export-import-item": (length) => `${length} 条`,
86
+ "table-action-export-import-product": "导出商品",
87
+ // 导入
88
+ "table-action-export-import-table-text-input-title": "单击或拖动文件到该区域进行上传",
89
+ "table-action-export-import-table-text-input-describe": "支持单个上传。严禁上传公司数据或其他band文件。",
90
+ "table-action-export-import-table-error-file": "仅支持上传.csv,.xls,.xlsx格式的文件!",
91
+ "table-action-export-import-import-success": "导入成功!",
92
+ "table-action-export-import-import-phone": "手机相同的是否覆盖",
93
+ "table-action-export-import-table-success-download": "下载成功",
94
+ "table-action-export-import-table-textimport-product": "导入商品",
95
+ "table-action-export-import-table-text-product-template": "导入模板",
96
+ "table-action-export-import-table-text-click-download": "点击下载",
97
+ "table-action-export-import-table-text-edit-file": "替换文件",
98
+ "table-action-export-import-button-import": "导入",
99
+ "table-action-export-import-cancel": "取消",
100
+ "table-action-export-import-file-completed": "已完成",
101
+ "table-action-export-import-file-processing": "处理中",
102
+ "table-action-export-import-file-pending": "待处理",
103
+ "table-action-export-import-file-refresh": "刷新",
104
+ "table-action-export-import-export-title": "导出文件",
105
+ "table-action-export-import-file-hint": "仅显示最近的10次导出记录",
106
+ "table-action-export-import-file-name": "导出文件",
107
+ "table-action-export-import-file-content": "导出内容",
108
+ "table-action-export-import-file-content-all": "所有",
109
+ "table-action-export-import-file-content-part": "所选",
110
+ "table-action-export-import-file-status": "状态",
111
+ "table-action-export-import-file-account": "操作人",
112
+ "table-action-export-import-file-created": "操作时间",
113
+ "table-action-export-import-file-record": (length) => `${length} 条记录`,
114
+ // 导入日志
115
+ "table-action-export-import-import-title": "导入日志",
116
+ "table-action-export-import-log-hint": "仅显示最近的10次导入记录",
117
+ "table-action-export-import-log-name": "导入文件",
118
+ "table-action-export-import-log-result": "导入结果",
119
+ "table-action-export-import-log-ok": (num) => `成功 ${num} 条`,
120
+ "table-action-export-import-log-err": (num) => `, 失败 ${num} 条`,
121
+ "table-action-export-import-log-check": `查看原因`,
122
+ // 导入详情
123
+ "table-action-export-import-log-detail-title": "导入详情",
124
+ "table-action-export-import-log-err-log": "失败日志",
125
+ "table-action-export-import-log-copy": "复制",
126
+ "table-action-export-import-table-success-copy": "复制成功"
76
127
  };
@@ -26,6 +26,7 @@ declare const _default: {
26
26
  "table-action-group-by-title-tip": string;
27
27
  "table-action-column-title": string;
28
28
  "table-column-group-records": string;
29
+ "table-column-group-lock-tip": string;
29
30
  "table-column-drag-sort-disabled-tip": string;
30
31
  "table-action-filter-no-filter": string;
31
32
  "table-action-range-picker-presets-today": string;
@@ -49,5 +50,51 @@ declare const _default: {
49
50
  'batch-editor-quick-edit': string;
50
51
  'batch-editor-quick-edit-title': (product: string, num: string) => string;
51
52
  'batch-editor-quick-edit-title-2': (product: string) => string;
53
+ 'table-action-export-import-export-success': string;
54
+ 'table-action-export-import-button': string;
55
+ 'table-action-export-import-export-range': string;
56
+ 'table-action-export-import-current-page': string;
57
+ 'table-action-export-import-all-records': string;
58
+ 'table-action-export-import-selected-records': string;
59
+ 'table-action-export-import-selected': string;
60
+ 'table-action-export-import-item': (length: number) => string;
61
+ 'table-action-export-import-product': string;
62
+ 'table-action-export-import-table-text-input-title': string;
63
+ 'table-action-export-import-table-text-input-describe': string;
64
+ 'table-action-export-import-table-error-file': string;
65
+ 'table-action-export-import-import-success': string;
66
+ 'table-action-export-import-import-phone': string;
67
+ 'table-action-export-import-table-success-download': string;
68
+ 'table-action-export-import-table-textimport-product': string;
69
+ 'table-action-export-import-table-text-product-template': string;
70
+ 'table-action-export-import-table-text-click-download': string;
71
+ 'table-action-export-import-table-text-edit-file': string;
72
+ 'table-action-export-import-button-import': string;
73
+ 'table-action-export-import-cancel': string;
74
+ 'table-action-export-import-file-completed': string;
75
+ 'table-action-export-import-file-processing': string;
76
+ 'table-action-export-import-file-pending': string;
77
+ 'table-action-export-import-file-refresh': string;
78
+ 'table-action-export-import-export-title': string;
79
+ 'table-action-export-import-file-hint': string;
80
+ 'table-action-export-import-file-name': string;
81
+ 'table-action-export-import-file-content': string;
82
+ 'table-action-export-import-file-content-all': string;
83
+ 'table-action-export-import-file-content-part': string;
84
+ 'table-action-export-import-file-status': string;
85
+ 'table-action-export-import-file-account': string;
86
+ 'table-action-export-import-file-created': string;
87
+ 'table-action-export-import-file-record': (length: number) => string;
88
+ 'table-action-export-import-import-title': string;
89
+ 'table-action-export-import-log-hint': string;
90
+ 'table-action-export-import-log-name': string;
91
+ 'table-action-export-import-log-result': string;
92
+ 'table-action-export-import-log-ok': (num: number) => string;
93
+ 'table-action-export-import-log-err': (num: number) => string;
94
+ 'table-action-export-import-log-check': string;
95
+ 'table-action-export-import-log-detail-title': string;
96
+ 'table-action-export-import-log-err-log': string;
97
+ 'table-action-export-import-log-copy': string;
98
+ 'table-action-export-import-table-success-copy': string;
52
99
  };
53
100
  export default _default;
@@ -50,6 +50,7 @@ var zh_TW_default = {
50
50
  "table-action-group-by-title-tip": "請從下拉式選單中選擇要分組的字段,以便更好地組織和瀏覽數據。",
51
51
  "table-action-column-title": "表頭設置",
52
52
  "table-column-group-records": "條記錄",
53
+ "table-column-group-lock-tip": "固定列不可移動順序",
53
54
  "table-column-drag-sort-disabled-tip": "已開啟自動排序,無法手動拖曳",
54
55
  "table-action-filter-no-filter": "沒有可用的篩選器。",
55
56
  "table-action-range-picker-presets-today": "今天",
@@ -72,5 +73,55 @@ var zh_TW_default = {
72
73
  "batch-editor-what-price": "什麼價格",
73
74
  "batch-editor-quick-edit": "快速編輯",
74
75
  "batch-editor-quick-edit-title": (product, num) => `您已選擇 ${product} 等${num}件產品`,
75
- "batch-editor-quick-edit-title-2": (product) => `您已選擇 ${product}`
76
+ "batch-editor-quick-edit-title-2": (product) => `您已選擇 ${product}`,
77
+ // 导出
78
+ "table-action-export-import-export-success": "導出成功!",
79
+ "table-action-export-import-button": "匯出",
80
+ "table-action-export-import-export-range": "導出範圍",
81
+ "table-action-export-import-current-page": "當前頁面",
82
+ "table-action-export-import-all-records": "所有記錄",
83
+ "table-action-export-import-selected-records": "所選記錄",
84
+ "table-action-export-import-selected": "已選",
85
+ "table-action-export-import-item": (length) => `${length} 條`,
86
+ "table-action-export-import-product": "導出商品",
87
+ // 导入
88
+ "table-action-export-import-table-text-input-title": "單擊或拖動文件到該區域進行上傳",
89
+ "table-action-export-import-table-text-input-describe": "支持單個上傳。嚴禁上傳公司數據或其他band文件。",
90
+ "table-action-export-import-table-error-file": "僅支持上傳.csv,.xls,.xlsx格式的文件!",
91
+ "table-action-export-import-import-success": "導入成功!",
92
+ "table-action-export-import-import-phone": "手機相同的是否覆蓋",
93
+ "table-action-export-import-table-success-download": "下載成功",
94
+ "table-action-export-import-table-textimport-product": "導入商品",
95
+ "table-action-export-import-table-text-product-template": "導入模板",
96
+ "table-action-export-import-table-text-click-download": "點擊下載",
97
+ "table-action-export-import-table-text-edit-file": "替換文件",
98
+ "table-action-export-import-button-import": "導入",
99
+ "table-action-export-import-cancel": "取消",
100
+ "table-action-export-import-file-completed": "已完成",
101
+ "table-action-export-import-file-processing": "處理中",
102
+ "table-action-export-import-file-pending": "待處理",
103
+ "table-action-export-import-file-refresh": "刷新",
104
+ "table-action-export-import-export-title": "導出文件",
105
+ "table-action-export-import-file-hint": "僅顯示最近的10次導出記錄",
106
+ "table-action-export-import-file-name": "導出文件",
107
+ "table-action-export-import-file-content": "導出內容",
108
+ "table-action-export-import-file-content-all": "所有",
109
+ "table-action-export-import-file-content-part": "所選",
110
+ "table-action-export-import-file-status": "狀態",
111
+ "table-action-export-import-file-account": "操作人",
112
+ "table-action-export-import-file-created": "操作時間",
113
+ "table-action-export-import-file-record": (length) => `${length} 條記錄`,
114
+ // 导入日志
115
+ "table-action-export-import-import-title": "導入日誌",
116
+ "table-action-export-import-log-hint": "僅顯示最近的10次導入記錄",
117
+ "table-action-export-import-log-name": "導入文件",
118
+ "table-action-export-import-log-result": "導入結果",
119
+ "table-action-export-import-log-ok": (num) => `成功 ${num} 條`,
120
+ "table-action-export-import-log-err": (num) => `, 失败 ${num} 條`,
121
+ "table-action-export-import-log-check": `查看原因`,
122
+ // 导入详情
123
+ "table-action-export-import-log-detail-title": "導入詳情",
124
+ "table-action-export-import-log-err-log": "失敗日誌",
125
+ "table-action-export-import-log-copy": "復製",
126
+ "table-action-export-import-table-success-copy": "復製成功"
76
127
  };