ztxkui 4.2.18-8 → 4.2.18-80
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/dist/App.js +315 -291
- package/dist/Demo.js +30 -23
- package/dist/DemoCom/BasicDemo.js +57 -56
- package/dist/DemoCom/CodeQueryDemo.js +3 -2
- package/dist/DemoCom/CollapseDemo.js +28 -27
- package/dist/DemoCom/DragSort.js +11 -10
- package/dist/DemoCom/FormDemo.js +36 -30
- package/dist/DemoCom/PrintContainerDemo.js +151 -150
- package/dist/DemoCom/PrintDemo.js +15 -14
- package/dist/DemoCom/SinaturesDemo.js +9 -8
- package/dist/DemoCom/SyhDemo.js +21 -20
- package/dist/DemoCom/TableAnalyse.js +34 -33
- package/dist/DemoCom/TableDemo.js +74 -70
- package/dist/DemoCom/TableDemo1.js +34 -33
- package/dist/DemoCom/TableDetail.d.ts +9 -0
- package/dist/DemoCom/TableDetail.js +259 -0
- package/dist/DemoCom/TestCom.js +22 -19
- package/dist/DemoCom/data.d.ts +110 -0
- package/dist/DemoCom/data.js +2308 -0
- package/dist/TableDemo/BasicTable.js +103 -29
- package/dist/TableDemo/EditableTable.js +177 -91
- package/dist/TableDemo/ModalTable.js +25 -24
- package/dist/TableDemo/ProEditableTable.d.ts +21 -0
- package/dist/TableDemo/ProEditableTable.js +483 -0
- package/dist/TableDemo/data.d.ts +15 -0
- package/dist/TableDemo/data.js +44 -11
- package/dist/TableDemo/index.js +5 -4
- package/dist/TreeDemo.js +8 -7
- package/dist/TreeSelectDemo.js +7 -6
- package/dist/UI/Form/index.d.ts +3 -0
- package/dist/UI/Form/index.js +346 -0
- package/dist/UI/index.d.ts +2 -0
- package/dist/UI/index.js +10 -0
- package/dist/UploadDemo.js +12 -17
- package/dist/components/Button/button.js +3 -2
- package/dist/components/Collapse/collapse.js +2 -1
- package/dist/components/EnhanceSelect/index.js +39 -19
- package/dist/components/EnhanceTree/index.js +4 -3
- package/dist/components/EnhanceTreeSelect/index.js +4 -3
- package/dist/components/Export/export.js +5 -4
- package/dist/components/Input/input.d.ts +3 -0
- package/dist/components/Input/input.js +53 -3
- package/dist/components/InputNumber/input-number.js +3 -2
- package/dist/components/NumberCase/index.js +9 -7
- package/dist/components/Print/print.js +4 -3
- package/dist/components/PrintContainer/AttachPreviewModal.js +3 -2
- package/dist/components/PrintContainer/PrintModal.js +4 -3
- package/dist/components/PrintContainer/handle.d.ts +2 -4
- package/dist/components/PrintContainer/handle.js +3 -2
- package/dist/components/PrintContainer/lodop.js +2 -1
- package/dist/components/PrintContainer/print-container.js +74 -73
- package/dist/components/PrintContainer/service.js +5 -4
- package/dist/components/ProForm/hooks.d.ts +23 -0
- package/dist/components/ProForm/hooks.js +209 -0
- package/dist/components/ProForm/index.d.ts +6 -0
- package/dist/components/ProForm/index.js +101 -0
- package/dist/components/ProForm/interface.d.ts +169 -0
- package/dist/components/ProForm/interface.js +1 -0
- package/dist/components/ProForm/item.d.ts +13 -0
- package/dist/components/ProForm/item.js +221 -0
- package/dist/components/ProForm/items.d.ts +5 -0
- package/dist/components/ProForm/items.js +36 -0
- package/dist/components/ProForm/search-drawer.d.ts +12 -0
- package/dist/components/ProForm/search-drawer.js +202 -0
- package/dist/components/ProForm/setting.d.ts +5 -0
- package/dist/components/ProForm/setting.js +13 -0
- package/dist/components/ProFormList/index.d.ts +12 -0
- package/dist/components/ProFormList/index.js +34 -0
- package/dist/components/ProTable/hooks.d.ts +28 -0
- package/dist/components/ProTable/hooks.js +279 -0
- package/dist/components/ProTable/index.d.ts +8 -0
- package/dist/components/ProTable/index.js +77 -0
- package/dist/components/ProTable/interface.d.ts +51 -0
- package/dist/components/ProTable/interface.js +1 -0
- package/dist/components/RangePicker/range-picker.js +5 -2
- package/dist/components/SortableCancel/sortable-cancel.d.ts +1 -0
- package/dist/components/SortableCancel/sortable-cancel.js +2 -2
- package/dist/components/Table/components/FillDown.d.ts +8 -0
- package/dist/components/Table/components/FillDown.js +11 -0
- package/dist/components/Table/components/FilterDropdown.d.ts +15 -0
- package/dist/components/Table/components/FilterDropdown.js +93 -0
- package/dist/components/Table/constants.d.ts +2 -0
- package/dist/components/Table/constants.js +2 -0
- package/dist/components/Table/hooks/useColumns.d.ts +25 -8
- package/dist/components/Table/hooks/useColumns.js +702 -180
- package/dist/components/Table/hooks/useDropRef.js +4 -2
- package/dist/components/Table/hooks/useInnerPagination.js +1 -0
- package/dist/components/Table/hooks/useSelectSubtotal.d.ts +4 -0
- package/dist/components/Table/hooks/useSelectSubtotal.js +182 -0
- package/dist/components/Table/hooks/useVituralScrollBar.d.ts +10 -0
- package/dist/components/Table/hooks/useVituralScrollBar.js +234 -0
- package/dist/components/Table/index.d.ts +11 -0
- package/dist/components/Table/table-adddel-column.d.ts +8 -5
- package/dist/components/Table/table-adddel-column.js +16 -5
- package/dist/components/Table/table-dynamic.js +165 -18
- package/dist/components/Table/table-enhance-cell.d.ts +7 -3
- package/dist/components/Table/table-enhance-cell.js +214 -109
- package/dist/components/Table/table-enhance-row.d.ts +4 -4
- package/dist/components/Table/table-enhance-row.js +10 -11
- package/dist/components/Table/table-headTooltip.d.ts +6 -0
- package/dist/components/Table/table-headTooltip.js +13 -0
- package/dist/components/Table/table-resizable-title.d.ts +4 -5
- package/dist/components/Table/table-resizable-title.js +33 -6
- package/dist/components/Table/table-sort.d.ts +11 -0
- package/dist/components/Table/table-sort.js +66 -0
- package/dist/components/Table/table.d.ts +30 -4
- package/dist/components/Table/table.js +526 -180
- package/dist/components/Table/utils/dom.d.ts +26 -0
- package/dist/components/Table/utils/dom.js +123 -0
- package/dist/components/Table/utils/filterHandle.d.ts +1 -0
- package/dist/components/Table/utils/filterHandle.js +66 -0
- package/dist/components/Table/utils/getSummaryData.d.ts +2 -1
- package/dist/components/Table/utils/getSummaryData.js +282 -25
- package/dist/components/Table/utils/shallowEqual.d.ts +2 -0
- package/dist/components/Table/utils/shallowEqual.js +35 -0
- package/dist/components/Table/utils/validate.d.ts +1 -1
- package/dist/components/Table/utils/validate.js +30 -11
- package/dist/components/Upload/upload-table.js +31 -26
- package/dist/components/Upload/upload.js +23 -18
- package/dist/components/Upload/utils.js +11 -10
- package/dist/components/UploadSingle/upload-single.js +5 -4
- package/dist/components/Watermark/index.d.ts +2 -0
- package/dist/components/Watermark/index.js +2 -0
- package/dist/components/Watermark/interface.d.ts +20 -0
- package/dist/components/Watermark/interface.js +1 -0
- package/dist/components/Watermark/utils.d.ts +1 -0
- package/dist/components/Watermark/utils.js +70 -0
- package/dist/components/Watermark/water.d.ts +50 -0
- package/dist/components/Watermark/water.js +66 -0
- package/dist/components/Watermark/watermark-div.d.ts +4 -0
- package/dist/components/Watermark/watermark-div.js +41 -0
- package/dist/components/Watermark/watermark-shadow.d.ts +6 -0
- package/dist/components/Watermark/watermark-shadow.js +116 -0
- package/dist/components/Watermark/watermark.d.ts +3 -0
- package/dist/components/Watermark/watermark.js +102 -0
- package/dist/components/WorkflowPrintContainer/component/Gragh/Gragh.d.ts +9 -0
- package/dist/components/WorkflowPrintContainer/component/Gragh/Gragh.js +63 -0
- package/dist/components/WorkflowPrintContainer/component/Header.d.ts +12 -0
- package/dist/components/WorkflowPrintContainer/component/Header.js +109 -0
- package/dist/components/WorkflowPrintContainer/component/ProcessDetail.d.ts +18 -0
- package/dist/components/WorkflowPrintContainer/component/ProcessDetail.js +243 -0
- package/dist/components/WorkflowPrintContainer/component/Upload/index.d.ts +20 -0
- package/dist/components/WorkflowPrintContainer/component/Upload/index.js +59 -0
- package/dist/components/WorkflowPrintContainer/component/association/component/TableList.d.ts +10 -0
- package/dist/components/WorkflowPrintContainer/component/association/component/TableList.js +75 -0
- package/dist/components/WorkflowPrintContainer/component/association/index.d.ts +9 -0
- package/dist/components/WorkflowPrintContainer/component/association/index.js +92 -0
- package/dist/components/WorkflowPrintContainer/component/attention/component/TableList.d.ts +9 -0
- package/dist/components/WorkflowPrintContainer/component/attention/component/TableList.js +38 -0
- package/dist/components/WorkflowPrintContainer/component/attention/index.d.ts +10 -0
- package/dist/components/WorkflowPrintContainer/component/attention/index.js +95 -0
- package/dist/components/WorkflowPrintContainer/component/audit/component/TableList.d.ts +8 -0
- package/dist/components/WorkflowPrintContainer/component/audit/component/TableList.js +53 -0
- package/dist/components/WorkflowPrintContainer/component/audit/index.d.ts +7 -0
- package/dist/components/WorkflowPrintContainer/component/audit/index.js +88 -0
- package/dist/components/WorkflowPrintContainer/component/previewTable/component/TableList.d.ts +9 -0
- package/dist/components/WorkflowPrintContainer/component/previewTable/component/TableList.js +53 -0
- package/dist/components/WorkflowPrintContainer/component/previewTable/index.d.ts +11 -0
- package/dist/components/WorkflowPrintContainer/component/previewTable/index.js +60 -0
- package/dist/components/WorkflowPrintContainer/component/send/component/TableList.d.ts +9 -0
- package/dist/components/WorkflowPrintContainer/component/send/component/TableList.js +50 -0
- package/dist/components/WorkflowPrintContainer/component/send/index.d.ts +9 -0
- package/dist/components/WorkflowPrintContainer/component/send/index.js +92 -0
- package/dist/components/WorkflowPrintContainer/component/trail/component/TableList.d.ts +12 -0
- package/dist/components/WorkflowPrintContainer/component/trail/component/TableList.js +282 -0
- package/dist/components/WorkflowPrintContainer/component/trail/index.d.ts +11 -0
- package/dist/components/WorkflowPrintContainer/component/trail/index.js +56 -0
- package/dist/components/WorkflowPrintContainer/images.d.ts +2 -0
- package/dist/components/WorkflowPrintContainer/images.js +2 -0
- package/dist/components/WorkflowPrintContainer/index.d.ts +2 -0
- package/dist/components/WorkflowPrintContainer/index.js +2 -0
- package/dist/components/WorkflowPrintContainer/service.d.ts +14 -0
- package/dist/components/WorkflowPrintContainer/service.js +101 -0
- package/dist/components/WorkflowPrintContainer/usePagination.d.ts +14 -0
- package/dist/components/WorkflowPrintContainer/usePagination.js +22 -0
- package/dist/components/WorkflowPrintContainer/workflow-print-container.d.ts +100 -0
- package/dist/components/WorkflowPrintContainer/workflow-print-container.js +236 -0
- package/dist/components/business/Analyse/index.js +12 -11
- package/dist/components/business/CodeQuery/component/SearchForm.js +3 -2
- package/dist/components/business/CodeQuery/component/TableList.js +5 -4
- package/dist/components/business/CodeQuery/hooks.js +2 -1
- package/dist/components/business/CodeQuery/index.js +2 -1
- package/dist/components/business/Common/UserForgetPassword/index.js +36 -28
- package/dist/components/business/Common/UserInfo/component/MakingForm.js +11 -10
- package/dist/components/business/Common/UserInfo/index.js +7 -4
- package/dist/components/business/Common/UserPassword/index.d.ts +1 -0
- package/dist/components/business/Common/UserPassword/index.js +39 -18
- package/dist/components/business/Common/validatePassword.d.ts +1 -1
- package/dist/components/business/Common/validatePassword.js +17 -7
- package/dist/components/business/DetailCard/index.js +7 -6
- package/dist/components/business/DetailHeader/index.js +7 -6
- package/dist/components/business/DetailList/index.js +5 -4
- package/dist/components/business/DgColumns/index.js +12 -11
- package/dist/components/business/ExportButton/index.js +6 -5
- package/dist/components/business/Footer/index.js +4 -1
- package/dist/components/business/GridList/item.d.ts +1 -1
- package/dist/components/business/List/item.d.ts +1 -1
- package/dist/components/business/NewList/item.d.ts +1 -1
- package/dist/components/business/NewList/item.js +1 -1
- package/dist/components/business/OperationBtnGroup/index.js +17 -16
- package/dist/components/business/SearchContainer/hooks/useToggle.d.ts +1 -1
- package/dist/components/business/SearchContainer/hooks/useToggle.js +5 -4
- package/dist/components/business/SearchContainer/record-common-item.d.ts +14 -0
- package/dist/components/business/SearchContainer/record-common-item.js +82 -0
- package/dist/components/business/SearchContainer/record-common-list.d.ts +3 -0
- package/dist/components/business/SearchContainer/record-common-list.js +64 -0
- package/dist/components/business/SearchContainer/search-container.d.ts +13 -0
- package/dist/components/business/SearchContainer/search-container.js +32 -3
- package/dist/components/business/SearchContainer/search-drawer.d.ts +1 -0
- package/dist/components/business/SearchContainer/search-drawer.js +139 -13
- package/dist/components/business/SearchContainer/search-item.js +33 -2
- package/dist/components/business/SearchContainer/search-left.d.ts +1 -0
- package/dist/components/business/SearchContainer/search-left.js +11 -3
- package/dist/components/business/SearchContainer/search-right.js +25 -4
- package/dist/components/business/SearchContainer/useRecordCommonInit.d.ts +15 -0
- package/dist/components/business/SearchContainer/useRecordCommonInit.js +241 -0
- package/dist/components/business/SearchContainer/useRecordCommonSearch.d.ts +7 -0
- package/dist/components/business/SearchContainer/useRecordCommonSearch.js +139 -0
- package/dist/components/business/SearchContainer/useRecordCommonSearchContext.d.ts +31 -0
- package/dist/components/business/SearchContainer/useRecordCommonSearchContext.js +8 -0
- package/dist/components/business/Signatures/components/AttachOperation.js +7 -6
- package/dist/components/business/Signatures/components/CompareResult.js +7 -6
- package/dist/components/business/Signatures/components/DetailTable.js +37 -34
- package/dist/components/business/Signatures/components/QunjSeal.js +5 -4
- package/dist/components/business/Signatures/components/SealCheckbox.js +3 -2
- package/dist/components/business/Signatures/components/TemplateAttach.js +2 -1
- package/dist/components/business/Signatures/index.js +64 -53
- package/dist/components/business/SortList/sort-drawer.js +5 -4
- package/dist/components/business/Template/index.js +11 -10
- package/dist/components/utils/MyStorage.d.ts +36 -0
- package/dist/components/utils/MyStorage.js +120 -0
- package/dist/components/utils/ZtxkContext.d.ts +34 -0
- package/dist/components/utils/ZtxkContext.js +13 -0
- package/dist/components/utils/fetch.d.ts +10 -0
- package/dist/components/utils/fetch.js +119 -0
- package/dist/components/utils/index.d.ts +1 -0
- package/dist/components/utils/index.js +20 -0
- package/dist/components/utils/processNumber.d.ts +12 -0
- package/dist/components/utils/processNumber.js +106 -0
- package/dist/components/utils/upload.js +6 -3
- package/dist/components/utils/useBaseContext.d.ts +5 -0
- package/dist/components/utils/useBaseContext.js +10 -0
- package/dist/components/utils/useLastest.d.ts +2 -0
- package/dist/components/utils/useLastest.js +6 -0
- package/dist/components/utils/useMemoizedFn.d.ts +4 -0
- package/dist/components/utils/useMemoizedFn.js +19 -0
- package/dist/index.css +993 -7
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +9 -1
- package/dist/index.js +197 -84
- package/dist/locales/en-US.json +818 -0
- package/dist/locales/zh-CN.json +818 -0
- package/dist/request.js +6 -5
- package/package.json +7 -2
package/dist/App.js
CHANGED
|
@@ -14,6 +14,7 @@ var __spreadArray = (this && this.__spreadArray) || function (to, from) {
|
|
|
14
14
|
to[j] = from[i];
|
|
15
15
|
return to;
|
|
16
16
|
};
|
|
17
|
+
import i18next from 'ztxkutils/dist/i18next';
|
|
17
18
|
import React, { useCallback, useState, useMemo, useEffect } from 'react';
|
|
18
19
|
import Button from './components/Button';
|
|
19
20
|
import DatePicker from './components/DatePicker';
|
|
@@ -53,11 +54,11 @@ var data = [
|
|
|
53
54
|
isDeleted: null,
|
|
54
55
|
xid: null,
|
|
55
56
|
psNo: 'PF210300012',
|
|
56
|
-
companyName: '浙商中拓集团(重庆)有限公司',
|
|
57
|
+
companyName: i18next.t('浙商中拓集团(重庆)有限公司'),
|
|
57
58
|
companyId: '1295908627984670722',
|
|
58
|
-
depName: '工程三部',
|
|
59
|
+
depName: i18next.t('工程三部'),
|
|
59
60
|
depId: '1295909488001540097',
|
|
60
|
-
memberName: '首钢水城钢铁(集团)有限责任公司遵义销售分公司',
|
|
61
|
+
memberName: i18next.t('首钢水城钢铁(集团)有限责任公司遵义销售分公司'),
|
|
61
62
|
memberId: 100,
|
|
62
63
|
settlementDate: '2021-03-29',
|
|
63
64
|
postDate: '2021-03-29',
|
|
@@ -74,7 +75,7 @@ var data = [
|
|
|
74
75
|
settlementAmount: 185840.71,
|
|
75
76
|
diffAmount: 0,
|
|
76
77
|
settlementQuantity: 70,
|
|
77
|
-
quantityUnit: '吨',
|
|
78
|
+
quantityUnit: i18next.t('吨'),
|
|
78
79
|
taxCode: 'IH',
|
|
79
80
|
taxRate: '0.13',
|
|
80
81
|
mark: null,
|
|
@@ -92,16 +93,16 @@ var data = [
|
|
|
92
93
|
hongchongInvoiceNo: null,
|
|
93
94
|
hongchongInvoiceCode: null,
|
|
94
95
|
hongchongInvoiceDate: null,
|
|
95
|
-
invoiceTypeName: '正数发票',
|
|
96
|
-
taxCodeName: '13%进项税(国内采购,国内销售)- 价内税',
|
|
96
|
+
invoiceTypeName: i18next.t('正数发票'),
|
|
97
|
+
taxCodeName: i18next.t('13%进项税(国内采购,国内销售)- 价内税'),
|
|
97
98
|
taxRateName: '13.00%',
|
|
98
|
-
currencyName: '人民币',
|
|
99
|
-
statusName: '已作废',
|
|
100
|
-
createUserName: '吕常武',
|
|
101
|
-
updateUserName: '吕常武',
|
|
99
|
+
currencyName: i18next.t('人民币'),
|
|
100
|
+
statusName: i18next.t('已作废'),
|
|
101
|
+
createUserName: i18next.t('吕常武'),
|
|
102
|
+
updateUserName: i18next.t('吕常武'),
|
|
102
103
|
approveUserName: null,
|
|
103
104
|
postingFlagName: null,
|
|
104
|
-
hongchongFlagName: '未红冲',
|
|
105
|
+
hongchongFlagName: i18next.t('未红冲'),
|
|
105
106
|
},
|
|
106
107
|
{
|
|
107
108
|
id: '1374980963038527489',
|
|
@@ -114,11 +115,11 @@ var data = [
|
|
|
114
115
|
isDeleted: null,
|
|
115
116
|
xid: null,
|
|
116
117
|
psNo: 'PF210300009',
|
|
117
|
-
companyName: '浙商中拓集团(重庆)有限公司',
|
|
118
|
+
companyName: i18next.t('浙商中拓集团(重庆)有限公司'),
|
|
118
119
|
companyId: '1295908627984670722',
|
|
119
|
-
depName: '工程三部',
|
|
120
|
+
depName: i18next.t('工程三部'),
|
|
120
121
|
depId: '1295909488001540097',
|
|
121
|
-
memberName: '首钢水城钢铁(集团)有限责任公司遵义销售分公司',
|
|
122
|
+
memberName: i18next.t('首钢水城钢铁(集团)有限责任公司遵义销售分公司'),
|
|
122
123
|
memberId: 100,
|
|
123
124
|
settlementDate: '2021-03-25',
|
|
124
125
|
postDate: '2021-03-25',
|
|
@@ -135,13 +136,13 @@ var data = [
|
|
|
135
136
|
settlementAmount: 1548672.57,
|
|
136
137
|
diffAmount: -1700000,
|
|
137
138
|
settlementQuantity: 500,
|
|
138
|
-
quantityUnit: '吨',
|
|
139
|
+
quantityUnit: i18next.t('吨'),
|
|
139
140
|
taxCode: 'IH',
|
|
140
141
|
taxRate: '0.13',
|
|
141
142
|
mark: null,
|
|
142
143
|
approveUser: '1123598821738675201',
|
|
143
144
|
approveTime: '2021-03-25 15:07:32',
|
|
144
|
-
approveOpinion: '同意',
|
|
145
|
+
approveOpinion: i18next.t('同意'),
|
|
145
146
|
profitCenterName: null,
|
|
146
147
|
profitCenterId: null,
|
|
147
148
|
postingDate: null,
|
|
@@ -153,16 +154,16 @@ var data = [
|
|
|
153
154
|
hongchongInvoiceNo: null,
|
|
154
155
|
hongchongInvoiceCode: null,
|
|
155
156
|
hongchongInvoiceDate: null,
|
|
156
|
-
invoiceTypeName: '正数发票',
|
|
157
|
-
taxCodeName: '13%进项税(国内采购,国内销售)- 价内税',
|
|
157
|
+
invoiceTypeName: i18next.t('正数发票'),
|
|
158
|
+
taxCodeName: i18next.t('13%进项税(国内采购,国内销售)- 价内税'),
|
|
158
159
|
taxRateName: '13.00%',
|
|
159
|
-
currencyName: '人民币',
|
|
160
|
-
statusName: '已生效',
|
|
161
|
-
createUserName: '管理员',
|
|
162
|
-
updateUserName: '管理员',
|
|
163
|
-
approveUserName: '管理员',
|
|
160
|
+
currencyName: i18next.t('人民币'),
|
|
161
|
+
statusName: i18next.t('已生效'),
|
|
162
|
+
createUserName: i18next.t('管理员'),
|
|
163
|
+
updateUserName: i18next.t('管理员'),
|
|
164
|
+
approveUserName: i18next.t('管理员'),
|
|
164
165
|
postingFlagName: null,
|
|
165
|
-
hongchongFlagName: '未红冲',
|
|
166
|
+
hongchongFlagName: i18next.t('未红冲'),
|
|
166
167
|
},
|
|
167
168
|
{
|
|
168
169
|
id: '1362307289265418242',
|
|
@@ -175,11 +176,11 @@ var data = [
|
|
|
175
176
|
isDeleted: null,
|
|
176
177
|
xid: null,
|
|
177
178
|
psNo: 'PF210200004',
|
|
178
|
-
companyName: '浙商中拓集团(重庆)有限公司',
|
|
179
|
+
companyName: i18next.t('浙商中拓集团(重庆)有限公司'),
|
|
179
180
|
companyId: '1295908627984670722',
|
|
180
|
-
depName: '工程三部',
|
|
181
|
+
depName: i18next.t('工程三部'),
|
|
181
182
|
depId: '1295909488001540097',
|
|
182
|
-
memberName: '首钢水城钢铁(集团)有限责任公司遵义销售分公司',
|
|
183
|
+
memberName: i18next.t('首钢水城钢铁(集团)有限责任公司遵义销售分公司'),
|
|
183
184
|
memberId: 100,
|
|
184
185
|
settlementDate: '2021-02-18',
|
|
185
186
|
postDate: '2021-02-18',
|
|
@@ -196,7 +197,7 @@ var data = [
|
|
|
196
197
|
settlementAmount: 0,
|
|
197
198
|
diffAmount: 111,
|
|
198
199
|
settlementQuantity: 0,
|
|
199
|
-
quantityUnit: '吨',
|
|
200
|
+
quantityUnit: i18next.t('吨'),
|
|
200
201
|
taxCode: 'IH',
|
|
201
202
|
taxRate: '0.13',
|
|
202
203
|
mark: null,
|
|
@@ -214,16 +215,16 @@ var data = [
|
|
|
214
215
|
hongchongInvoiceNo: null,
|
|
215
216
|
hongchongInvoiceCode: null,
|
|
216
217
|
hongchongInvoiceDate: null,
|
|
217
|
-
invoiceTypeName: '负数发票',
|
|
218
|
-
taxCodeName: '13%进项税(国内采购,国内销售)- 价内税',
|
|
218
|
+
invoiceTypeName: i18next.t('负数发票'),
|
|
219
|
+
taxCodeName: i18next.t('13%进项税(国内采购,国内销售)- 价内税'),
|
|
219
220
|
taxRateName: '13.00%',
|
|
220
|
-
currencyName: '人民币',
|
|
221
|
-
statusName: '待审核',
|
|
222
|
-
createUserName: '管理员',
|
|
223
|
-
updateUserName: '管理员',
|
|
224
|
-
approveUserName: '管理员',
|
|
221
|
+
currencyName: i18next.t('人民币'),
|
|
222
|
+
statusName: i18next.t('待审核'),
|
|
223
|
+
createUserName: i18next.t('管理员'),
|
|
224
|
+
updateUserName: i18next.t('管理员'),
|
|
225
|
+
approveUserName: i18next.t('管理员'),
|
|
225
226
|
postingFlagName: null,
|
|
226
|
-
hongchongFlagName: '未红冲',
|
|
227
|
+
hongchongFlagName: i18next.t('未红冲'),
|
|
227
228
|
},
|
|
228
229
|
{
|
|
229
230
|
id: '1362292918212571138',
|
|
@@ -236,11 +237,11 @@ var data = [
|
|
|
236
237
|
isDeleted: null,
|
|
237
238
|
xid: null,
|
|
238
239
|
psNo: 'PF210200003',
|
|
239
|
-
companyName: '浙商中拓集团(重庆)有限公司',
|
|
240
|
+
companyName: i18next.t('浙商中拓集团(重庆)有限公司'),
|
|
240
241
|
companyId: '1295908627984670722',
|
|
241
|
-
depName: '工程三部',
|
|
242
|
+
depName: i18next.t('工程三部'),
|
|
242
243
|
depId: '1295909488001540097',
|
|
243
|
-
memberName: '首钢水城钢铁(集团)有限责任公司遵义销售分公司',
|
|
244
|
+
memberName: i18next.t('首钢水城钢铁(集团)有限责任公司遵义销售分公司'),
|
|
244
245
|
memberId: 100,
|
|
245
246
|
settlementDate: '2021-02-18',
|
|
246
247
|
postDate: '2021-02-18',
|
|
@@ -257,7 +258,7 @@ var data = [
|
|
|
257
258
|
settlementAmount: 0,
|
|
258
259
|
diffAmount: 3,
|
|
259
260
|
settlementQuantity: 0,
|
|
260
|
-
quantityUnit: '吨',
|
|
261
|
+
quantityUnit: i18next.t('吨'),
|
|
261
262
|
taxCode: 'IH',
|
|
262
263
|
taxRate: '0.13',
|
|
263
264
|
mark: null,
|
|
@@ -275,16 +276,16 @@ var data = [
|
|
|
275
276
|
hongchongInvoiceNo: null,
|
|
276
277
|
hongchongInvoiceCode: null,
|
|
277
278
|
hongchongInvoiceDate: null,
|
|
278
|
-
invoiceTypeName: '正数发票',
|
|
279
|
-
taxCodeName: '13%进项税(国内采购,国内销售)- 价内税',
|
|
279
|
+
invoiceTypeName: i18next.t('正数发票'),
|
|
280
|
+
taxCodeName: i18next.t('13%进项税(国内采购,国内销售)- 价内税'),
|
|
280
281
|
taxRateName: '13.00%',
|
|
281
|
-
currencyName: '人民币',
|
|
282
|
-
statusName: '已作废',
|
|
283
|
-
createUserName: '管理员',
|
|
284
|
-
updateUserName: '管理员',
|
|
285
|
-
approveUserName: '管理员',
|
|
282
|
+
currencyName: i18next.t('人民币'),
|
|
283
|
+
statusName: i18next.t('已作废'),
|
|
284
|
+
createUserName: i18next.t('管理员'),
|
|
285
|
+
updateUserName: i18next.t('管理员'),
|
|
286
|
+
approveUserName: i18next.t('管理员'),
|
|
286
287
|
postingFlagName: null,
|
|
287
|
-
hongchongFlagName: '未红冲',
|
|
288
|
+
hongchongFlagName: i18next.t('未红冲'),
|
|
288
289
|
},
|
|
289
290
|
{
|
|
290
291
|
id: '1362284857775304706',
|
|
@@ -297,11 +298,11 @@ var data = [
|
|
|
297
298
|
isDeleted: null,
|
|
298
299
|
xid: null,
|
|
299
300
|
psNo: 'PF210200002',
|
|
300
|
-
companyName: '浙商中拓集团(重庆)有限公司',
|
|
301
|
+
companyName: i18next.t('浙商中拓集团(重庆)有限公司'),
|
|
301
302
|
companyId: '1295908627984670722',
|
|
302
|
-
depName: '工程三部',
|
|
303
|
+
depName: i18next.t('工程三部'),
|
|
303
304
|
depId: '1295909488001540097',
|
|
304
|
-
memberName: '首钢水城钢铁(集团)有限责任公司遵义销售分公司',
|
|
305
|
+
memberName: i18next.t('首钢水城钢铁(集团)有限责任公司遵义销售分公司'),
|
|
305
306
|
memberId: 100,
|
|
306
307
|
settlementDate: '2021-02-18',
|
|
307
308
|
postDate: '2021-02-18',
|
|
@@ -318,7 +319,7 @@ var data = [
|
|
|
318
319
|
settlementAmount: 0,
|
|
319
320
|
diffAmount: 2,
|
|
320
321
|
settlementQuantity: 0,
|
|
321
|
-
quantityUnit: '吨',
|
|
322
|
+
quantityUnit: i18next.t('吨'),
|
|
322
323
|
taxCode: 'IH',
|
|
323
324
|
taxRate: '0.13',
|
|
324
325
|
mark: null,
|
|
@@ -336,16 +337,16 @@ var data = [
|
|
|
336
337
|
hongchongInvoiceNo: '1',
|
|
337
338
|
hongchongInvoiceCode: '1',
|
|
338
339
|
hongchongInvoiceDate: '2021-02-18',
|
|
339
|
-
invoiceTypeName: '正数发票',
|
|
340
|
-
taxCodeName: '13%进项税(国内采购,国内销售)- 价内税',
|
|
340
|
+
invoiceTypeName: i18next.t('正数发票'),
|
|
341
|
+
taxCodeName: i18next.t('13%进项税(国内采购,国内销售)- 价内税'),
|
|
341
342
|
taxRateName: '13.00%',
|
|
342
|
-
currencyName: '人民币',
|
|
343
|
-
statusName: '已生效',
|
|
344
|
-
createUserName: '管理员',
|
|
345
|
-
updateUserName: '管理员',
|
|
346
|
-
approveUserName: '管理员',
|
|
343
|
+
currencyName: i18next.t('人民币'),
|
|
344
|
+
statusName: i18next.t('已生效'),
|
|
345
|
+
createUserName: i18next.t('管理员'),
|
|
346
|
+
updateUserName: i18next.t('管理员'),
|
|
347
|
+
approveUserName: i18next.t('管理员'),
|
|
347
348
|
postingFlagName: null,
|
|
348
|
-
hongchongFlagName: '已红冲',
|
|
349
|
+
hongchongFlagName: i18next.t('已红冲'),
|
|
349
350
|
},
|
|
350
351
|
{
|
|
351
352
|
id: '1362282579207073793',
|
|
@@ -358,11 +359,11 @@ var data = [
|
|
|
358
359
|
isDeleted: null,
|
|
359
360
|
xid: null,
|
|
360
361
|
psNo: 'PF210200001',
|
|
361
|
-
companyName: '浙商中拓集团(重庆)有限公司',
|
|
362
|
+
companyName: i18next.t('浙商中拓集团(重庆)有限公司'),
|
|
362
363
|
companyId: '1295908627984670722',
|
|
363
|
-
depName: '工程三部',
|
|
364
|
+
depName: i18next.t('工程三部'),
|
|
364
365
|
depId: '1295909488001540097',
|
|
365
|
-
memberName: '首钢水城钢铁(集团)有限责任公司遵义销售分公司',
|
|
366
|
+
memberName: i18next.t('首钢水城钢铁(集团)有限责任公司遵义销售分公司'),
|
|
366
367
|
memberId: 100,
|
|
367
368
|
settlementDate: '2021-02-18',
|
|
368
369
|
postDate: '2021-02-18',
|
|
@@ -379,7 +380,7 @@ var data = [
|
|
|
379
380
|
settlementAmount: 0,
|
|
380
381
|
diffAmount: 1,
|
|
381
382
|
settlementQuantity: 0,
|
|
382
|
-
quantityUnit: '吨',
|
|
383
|
+
quantityUnit: i18next.t('吨'),
|
|
383
384
|
taxCode: 'IH',
|
|
384
385
|
taxRate: '0.13',
|
|
385
386
|
mark: null,
|
|
@@ -397,16 +398,16 @@ var data = [
|
|
|
397
398
|
hongchongInvoiceNo: null,
|
|
398
399
|
hongchongInvoiceCode: null,
|
|
399
400
|
hongchongInvoiceDate: null,
|
|
400
|
-
invoiceTypeName: '正数发票',
|
|
401
|
-
taxCodeName: '13%进项税(国内采购,国内销售)- 价内税',
|
|
401
|
+
invoiceTypeName: i18next.t('正数发票'),
|
|
402
|
+
taxCodeName: i18next.t('13%进项税(国内采购,国内销售)- 价内税'),
|
|
402
403
|
taxRateName: '13.00%',
|
|
403
|
-
currencyName: '人民币',
|
|
404
|
-
statusName: '已作废',
|
|
405
|
-
createUserName: '管理员',
|
|
406
|
-
updateUserName: '管理员',
|
|
404
|
+
currencyName: i18next.t('人民币'),
|
|
405
|
+
statusName: i18next.t('已作废'),
|
|
406
|
+
createUserName: i18next.t('管理员'),
|
|
407
|
+
updateUserName: i18next.t('管理员'),
|
|
407
408
|
approveUserName: null,
|
|
408
409
|
postingFlagName: null,
|
|
409
|
-
hongchongFlagName: '未红冲',
|
|
410
|
+
hongchongFlagName: i18next.t('未红冲'),
|
|
410
411
|
},
|
|
411
412
|
{
|
|
412
413
|
id: '1347817812069437442',
|
|
@@ -419,11 +420,11 @@ var data = [
|
|
|
419
420
|
isDeleted: null,
|
|
420
421
|
xid: null,
|
|
421
422
|
psNo: 'PF210100004',
|
|
422
|
-
companyName: '浙商中拓集团(重庆)有限公司',
|
|
423
|
+
companyName: i18next.t('浙商中拓集团(重庆)有限公司'),
|
|
423
424
|
companyId: '1295908627984670722',
|
|
424
|
-
depName: '工程三部',
|
|
425
|
+
depName: i18next.t('工程三部'),
|
|
425
426
|
depId: '1295909488001540097',
|
|
426
|
-
memberName: '首钢水城钢铁(集团)有限责任公司遵义销售分公司',
|
|
427
|
+
memberName: i18next.t('首钢水城钢铁(集团)有限责任公司遵义销售分公司'),
|
|
427
428
|
memberId: 100,
|
|
428
429
|
settlementDate: '2021-01-09',
|
|
429
430
|
postDate: '2021-01-09',
|
|
@@ -440,7 +441,7 @@ var data = [
|
|
|
440
441
|
settlementAmount: 0,
|
|
441
442
|
diffAmount: 100,
|
|
442
443
|
settlementQuantity: 0,
|
|
443
|
-
quantityUnit: '吨',
|
|
444
|
+
quantityUnit: i18next.t('吨'),
|
|
444
445
|
taxCode: 'J6',
|
|
445
446
|
taxRate: '0.13',
|
|
446
447
|
mark: null,
|
|
@@ -458,16 +459,16 @@ var data = [
|
|
|
458
459
|
hongchongInvoiceNo: '123123123',
|
|
459
460
|
hongchongInvoiceCode: '123123123',
|
|
460
461
|
hongchongInvoiceDate: '2021-01-26',
|
|
461
|
-
invoiceTypeName: '正数发票',
|
|
462
|
-
taxCodeName: '16%进项税(国内采购,出口销售)-不退税',
|
|
462
|
+
invoiceTypeName: i18next.t('正数发票'),
|
|
463
|
+
taxCodeName: i18next.t('16%进项税(国内采购,出口销售)-不退税'),
|
|
463
464
|
taxRateName: '13.00%',
|
|
464
|
-
currencyName: '人民币',
|
|
465
|
-
statusName: '已生效',
|
|
466
|
-
createUserName: '管理员',
|
|
467
|
-
updateUserName: '管理员',
|
|
468
|
-
approveUserName: '管理员',
|
|
465
|
+
currencyName: i18next.t('人民币'),
|
|
466
|
+
statusName: i18next.t('已生效'),
|
|
467
|
+
createUserName: i18next.t('管理员'),
|
|
468
|
+
updateUserName: i18next.t('管理员'),
|
|
469
|
+
approveUserName: i18next.t('管理员'),
|
|
469
470
|
postingFlagName: null,
|
|
470
|
-
hongchongFlagName: '已红冲',
|
|
471
|
+
hongchongFlagName: i18next.t('已红冲'),
|
|
471
472
|
},
|
|
472
473
|
{
|
|
473
474
|
id: '1347817541469720578',
|
|
@@ -480,11 +481,11 @@ var data = [
|
|
|
480
481
|
isDeleted: null,
|
|
481
482
|
xid: null,
|
|
482
483
|
psNo: 'PF210100003',
|
|
483
|
-
companyName: '浙商中拓集团(重庆)有限公司',
|
|
484
|
+
companyName: i18next.t('浙商中拓集团(重庆)有限公司'),
|
|
484
485
|
companyId: '1295908627984670722',
|
|
485
|
-
depName: '工程三部',
|
|
486
|
+
depName: i18next.t('工程三部'),
|
|
486
487
|
depId: '1295909488001540097',
|
|
487
|
-
memberName: '首钢水城钢铁(集团)有限责任公司遵义销售分公司',
|
|
488
|
+
memberName: i18next.t('首钢水城钢铁(集团)有限责任公司遵义销售分公司'),
|
|
488
489
|
memberId: 100,
|
|
489
490
|
settlementDate: '2021-01-09',
|
|
490
491
|
postDate: '2021-01-09',
|
|
@@ -501,7 +502,7 @@ var data = [
|
|
|
501
502
|
settlementAmount: 0,
|
|
502
503
|
diffAmount: 100,
|
|
503
504
|
settlementQuantity: 0,
|
|
504
|
-
quantityUnit: '吨',
|
|
505
|
+
quantityUnit: i18next.t('吨'),
|
|
505
506
|
taxCode: 'IH',
|
|
506
507
|
taxRate: '0.13',
|
|
507
508
|
mark: null,
|
|
@@ -519,16 +520,16 @@ var data = [
|
|
|
519
520
|
hongchongInvoiceNo: null,
|
|
520
521
|
hongchongInvoiceCode: null,
|
|
521
522
|
hongchongInvoiceDate: null,
|
|
522
|
-
invoiceTypeName: '正数发票',
|
|
523
|
-
taxCodeName: '13%进项税(国内采购,国内销售)- 价内税',
|
|
523
|
+
invoiceTypeName: i18next.t('正数发票'),
|
|
524
|
+
taxCodeName: i18next.t('13%进项税(国内采购,国内销售)- 价内税'),
|
|
524
525
|
taxRateName: '13.00%',
|
|
525
|
-
currencyName: '人民币',
|
|
526
|
-
statusName: '已作废',
|
|
527
|
-
createUserName: '管理员',
|
|
528
|
-
updateUserName: '管理员',
|
|
526
|
+
currencyName: i18next.t('人民币'),
|
|
527
|
+
statusName: i18next.t('已作废'),
|
|
528
|
+
createUserName: i18next.t('管理员'),
|
|
529
|
+
updateUserName: i18next.t('管理员'),
|
|
529
530
|
approveUserName: null,
|
|
530
531
|
postingFlagName: null,
|
|
531
|
-
hongchongFlagName: '未红冲',
|
|
532
|
+
hongchongFlagName: i18next.t('未红冲'),
|
|
532
533
|
},
|
|
533
534
|
{
|
|
534
535
|
id: '1347817104939143169',
|
|
@@ -541,11 +542,11 @@ var data = [
|
|
|
541
542
|
isDeleted: null,
|
|
542
543
|
xid: null,
|
|
543
544
|
psNo: 'PF210100002',
|
|
544
|
-
companyName: '浙商中拓集团(重庆)有限公司',
|
|
545
|
+
companyName: i18next.t('浙商中拓集团(重庆)有限公司'),
|
|
545
546
|
companyId: '1295908627984670722',
|
|
546
|
-
depName: '工程三部',
|
|
547
|
+
depName: i18next.t('工程三部'),
|
|
547
548
|
depId: '1295909488001540097',
|
|
548
|
-
memberName: '首钢水城钢铁(集团)有限责任公司遵义销售分公司',
|
|
549
|
+
memberName: i18next.t('首钢水城钢铁(集团)有限责任公司遵义销售分公司'),
|
|
549
550
|
memberId: 100,
|
|
550
551
|
settlementDate: '2021-01-09',
|
|
551
552
|
postDate: '2021-01-09',
|
|
@@ -562,7 +563,7 @@ var data = [
|
|
|
562
563
|
settlementAmount: 0,
|
|
563
564
|
diffAmount: 100,
|
|
564
565
|
settlementQuantity: 0,
|
|
565
|
-
quantityUnit: '吨',
|
|
566
|
+
quantityUnit: i18next.t('吨'),
|
|
566
567
|
taxCode: 'IH',
|
|
567
568
|
taxRate: '0.03',
|
|
568
569
|
mark: null,
|
|
@@ -580,16 +581,16 @@ var data = [
|
|
|
580
581
|
hongchongInvoiceNo: null,
|
|
581
582
|
hongchongInvoiceCode: null,
|
|
582
583
|
hongchongInvoiceDate: null,
|
|
583
|
-
invoiceTypeName: '正数发票',
|
|
584
|
-
taxCodeName: '13%进项税(国内采购,国内销售)- 价内税',
|
|
584
|
+
invoiceTypeName: i18next.t('正数发票'),
|
|
585
|
+
taxCodeName: i18next.t('13%进项税(国内采购,国内销售)- 价内税'),
|
|
585
586
|
taxRateName: '3.00%',
|
|
586
|
-
currencyName: '人民币',
|
|
587
|
-
statusName: '已生效',
|
|
588
|
-
createUserName: '管理员',
|
|
589
|
-
updateUserName: '管理员',
|
|
590
|
-
approveUserName: '管理员',
|
|
587
|
+
currencyName: i18next.t('人民币'),
|
|
588
|
+
statusName: i18next.t('已生效'),
|
|
589
|
+
createUserName: i18next.t('管理员'),
|
|
590
|
+
updateUserName: i18next.t('管理员'),
|
|
591
|
+
approveUserName: i18next.t('管理员'),
|
|
591
592
|
postingFlagName: null,
|
|
592
|
-
hongchongFlagName: '未红冲',
|
|
593
|
+
hongchongFlagName: i18next.t('未红冲'),
|
|
593
594
|
},
|
|
594
595
|
];
|
|
595
596
|
// const newData: User[] = data.map((item, index) => ({ ...item, id: index }));
|
|
@@ -658,100 +659,108 @@ var summaryConfig = [
|
|
|
658
659
|
];
|
|
659
660
|
var originFileList = [];
|
|
660
661
|
var detailData = {
|
|
661
|
-
inspectionName: '测试巡检01',
|
|
662
|
+
inspectionName: i18next.t('测试巡检01'),
|
|
662
663
|
inspectionCode: 'XJ2107010001',
|
|
663
|
-
inspectionTypeName: '风控巡检',
|
|
664
|
-
progress: '超期',
|
|
664
|
+
inspectionTypeName: i18next.t('风控巡检'),
|
|
665
|
+
progress: i18next.t('超期'),
|
|
665
666
|
createDate: '2021-07-01',
|
|
666
|
-
createUserName: '宋宇环',
|
|
667
|
+
createUserName: i18next.t('宋宇环'),
|
|
667
668
|
};
|
|
668
669
|
var inspectionData = [
|
|
669
670
|
{
|
|
670
|
-
inspectionName: '增洲库2021年4月巡检记录',
|
|
671
|
-
inspectionMan: '朱小兵',
|
|
671
|
+
inspectionName: i18next.t('增洲库2021年4月巡检记录'),
|
|
672
|
+
inspectionMan: i18next.t('朱小兵'),
|
|
672
673
|
inspectionTime: '2021-4-20 10:20',
|
|
673
|
-
rectifyMan: '李四',
|
|
674
|
-
statusName: '审核未通过',
|
|
674
|
+
rectifyMan: i18next.t('李四'),
|
|
675
|
+
statusName: i18next.t('审核未通过'),
|
|
675
676
|
inspectionRecords: [
|
|
676
677
|
{
|
|
677
|
-
operationMan: '张三',
|
|
678
|
-
operationName: '巡检记录提交',
|
|
678
|
+
operationMan: i18next.t('张三'),
|
|
679
|
+
operationName: i18next.t('巡检记录提交'),
|
|
679
680
|
operationTime: '2021-04-20 10:20',
|
|
680
|
-
operationDesc: '1、现场有一堆货物未挂起货权标识;2、仓库东北角新增了一台监控,但目前未接入杭州监控中心;3、缺少2020年3月份的盘库记录',
|
|
681
|
+
operationDesc: i18next.t('1、现场有一堆货物未挂起货权标识;2、仓库东北角新增了一台监控,但目前未接入杭州监控中心;3、缺少2020年3月份的盘库记录'),
|
|
681
682
|
},
|
|
682
683
|
{
|
|
683
|
-
operationMan: '张三',
|
|
684
|
-
operationName: '整改提交',
|
|
684
|
+
operationMan: i18next.t('张三'),
|
|
685
|
+
operationName: i18next.t('整改提交'),
|
|
685
686
|
operationTime: '2021-04-20 18:10',
|
|
686
|
-
operationDesc: '1、该货物已挂货权标识;2、已于杭州总部郑超联系,将该监控接入杭州监控中心,画面预览正常;3、2020年3月份属于疫情期间,期间未发生货物往来,且人员配置没有到位,拟计入本月一并盘点',
|
|
687
|
+
operationDesc: i18next.t('1、该货物已挂货权标识;2、已于杭州总部郑超联系,将该监控接入杭州监控中心,画面预览正常;3、2020年3月份属于疫情期间,期间未发生货物往来,且人员配置没有到位,拟计入本月一并盘点'),
|
|
687
688
|
},
|
|
688
689
|
{
|
|
689
|
-
operationMan: '张三',
|
|
690
|
-
operationName: '审核不通过',
|
|
690
|
+
operationMan: i18next.t('张三'),
|
|
691
|
+
operationName: i18next.t('审核不通过'),
|
|
691
692
|
operationTime: '2021-04-20 20:03',
|
|
692
|
-
operationDesc: '请立即盘点,并出具问题整改说明',
|
|
693
|
+
operationDesc: i18next.t('请立即盘点,并出具问题整改说明'),
|
|
693
694
|
},
|
|
694
695
|
{
|
|
695
|
-
operationMan: '张三',
|
|
696
|
-
operationName: '整改提交',
|
|
696
|
+
operationMan: i18next.t('张三'),
|
|
697
|
+
operationName: i18next.t('整改提交'),
|
|
697
698
|
operationTime: '2021-04-21 09:40',
|
|
698
|
-
operationDesc: '已盘点库存,现场账物一致,盘点结果及整改说明请见附件',
|
|
699
|
+
operationDesc: i18next.t('已盘点库存,现场账物一致,盘点结果及整改说明请见附件'),
|
|
699
700
|
},
|
|
700
701
|
],
|
|
701
702
|
},
|
|
702
703
|
{
|
|
703
|
-
inspectionName: '增洲库2020年11月巡检记录',
|
|
704
|
-
inspectionMan: '朱小兵',
|
|
704
|
+
inspectionName: i18next.t('增洲库2020年11月巡检记录'),
|
|
705
|
+
inspectionMan: i18next.t('朱小兵'),
|
|
705
706
|
inspectionTime: '2021-4-20 10:20',
|
|
706
|
-
rectifyMan: '李四',
|
|
707
|
-
statusName: '审核中',
|
|
707
|
+
rectifyMan: i18next.t('李四'),
|
|
708
|
+
statusName: i18next.t('审核中'),
|
|
708
709
|
inspectionRecords: [
|
|
709
710
|
{
|
|
710
|
-
operationMan: '张三',
|
|
711
|
-
operationName: '巡检记录提交',
|
|
711
|
+
operationMan: i18next.t('张三'),
|
|
712
|
+
operationName: i18next.t('巡检记录提交'),
|
|
712
713
|
operationTime: '2021-04-20 10:20',
|
|
713
|
-
operationDesc: '1、现场有一堆货物未挂起货权标识;2、仓库东北角新增了一台监控,但目前未接入杭州监控中心;3、缺少2020年3月份的盘库记录',
|
|
714
|
+
operationDesc: i18next.t('1、现场有一堆货物未挂起货权标识;2、仓库东北角新增了一台监控,但目前未接入杭州监控中心;3、缺少2020年3月份的盘库记录'),
|
|
714
715
|
},
|
|
715
716
|
{
|
|
716
|
-
operationMan: '张三',
|
|
717
|
-
operationName: '整改提交',
|
|
717
|
+
operationMan: i18next.t('张三'),
|
|
718
|
+
operationName: i18next.t('整改提交'),
|
|
718
719
|
operationTime: '2021-04-20 18:10',
|
|
719
|
-
operationDesc: '1、该货物已挂货权标识;2、已于杭州总部郑超联系,将该监控接入杭州监控中心,画面预览正常;3、2020年3月份属于疫情期间,期间未发生货物往来,且人员配置没有到位,拟计入本月一并盘点',
|
|
720
|
+
operationDesc: i18next.t('1、该货物已挂货权标识;2、已于杭州总部郑超联系,将该监控接入杭州监控中心,画面预览正常;3、2020年3月份属于疫情期间,期间未发生货物往来,且人员配置没有到位,拟计入本月一并盘点'),
|
|
720
721
|
},
|
|
721
722
|
{
|
|
722
|
-
operationMan: '张三',
|
|
723
|
-
operationName: '审核不通过',
|
|
723
|
+
operationMan: i18next.t('张三'),
|
|
724
|
+
operationName: i18next.t('审核不通过'),
|
|
724
725
|
operationTime: '2021-04-20 20:03',
|
|
725
|
-
operationDesc: '请立即盘点,并出具问题整改说明',
|
|
726
|
+
operationDesc: i18next.t('请立即盘点,并出具问题整改说明'),
|
|
726
727
|
},
|
|
727
728
|
{
|
|
728
|
-
operationMan: '张三',
|
|
729
|
-
operationName: '整改提交',
|
|
729
|
+
operationMan: i18next.t('张三'),
|
|
730
|
+
operationName: i18next.t('整改提交'),
|
|
730
731
|
operationTime: '2021-04-21 09:40',
|
|
731
|
-
operationDesc: '已盘点库存,现场账物一致,盘点结果及整改说明请见附件',
|
|
732
|
+
operationDesc: i18next.t('已盘点库存,现场账物一致,盘点结果及整改说明请见附件'),
|
|
732
733
|
},
|
|
733
734
|
],
|
|
734
735
|
},
|
|
735
736
|
];
|
|
736
737
|
var inspectionDetail = [
|
|
737
|
-
{ label: '巡检人', isManOrDate: true, content: '朱小兵、李总、王总' },
|
|
738
|
-
{ label: '巡检日期', isManOrDate: true, content: '2021-04-09 → 2021-04-11' },
|
|
739
738
|
{
|
|
740
|
-
label: '
|
|
741
|
-
|
|
739
|
+
label: i18next.t('巡检人'),
|
|
740
|
+
isManOrDate: true,
|
|
741
|
+
content: i18next.t('朱小兵、李总、王总'),
|
|
742
742
|
},
|
|
743
743
|
{
|
|
744
|
-
label: '
|
|
745
|
-
|
|
744
|
+
label: i18next.t('巡检日期'),
|
|
745
|
+
isManOrDate: true,
|
|
746
|
+
content: '2021-04-09 → 2021-04-11',
|
|
746
747
|
},
|
|
747
748
|
{
|
|
748
|
-
label: '
|
|
749
|
+
label: i18next.t('问题描述'),
|
|
750
|
+
content: i18next.t('1、该仓库监控未安装; 2、该仓库未贴注意标识 3、该仓库XXX'),
|
|
751
|
+
},
|
|
752
|
+
{
|
|
753
|
+
label: i18next.t('整改意见'),
|
|
754
|
+
content: i18next.t('问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述问题描述'),
|
|
755
|
+
},
|
|
756
|
+
{
|
|
757
|
+
label: i18next.t('附件'),
|
|
749
758
|
isAttach: true,
|
|
750
759
|
content: [
|
|
751
|
-
{ attachName: '迁安增洲-巡检照片1.jpg', attachLink: '123' },
|
|
752
|
-
{ attachName: '迁安增洲-巡检照片2.jpg', attachLink: '123' },
|
|
753
|
-
{ attachName: '迁安增洲-巡检照片3.jpg', attachLink: '123' },
|
|
754
|
-
{ attachName: '迁安增洲-巡检照片4.jpg', attachLink: '123' },
|
|
760
|
+
{ attachName: i18next.t('迁安增洲-巡检照片1.jpg'), attachLink: '123' },
|
|
761
|
+
{ attachName: i18next.t('迁安增洲-巡检照片2.jpg'), attachLink: '123' },
|
|
762
|
+
{ attachName: i18next.t('迁安增洲-巡检照片3.jpg'), attachLink: '123' },
|
|
763
|
+
{ attachName: i18next.t('迁安增洲-巡检照片4.jpg'), attachLink: '123' },
|
|
755
764
|
],
|
|
756
765
|
},
|
|
757
766
|
];
|
|
@@ -763,14 +772,14 @@ function App() {
|
|
|
763
772
|
var _d = useState(originFileList), fileList = _d[0], setFileList = _d[1];
|
|
764
773
|
var columns = useMemo(function () { return [
|
|
765
774
|
{
|
|
766
|
-
title: '序号',
|
|
775
|
+
title: i18next.t('序号'),
|
|
767
776
|
width: 62,
|
|
768
777
|
fixed: 'left',
|
|
769
778
|
align: 'center',
|
|
770
779
|
render: function (text, record, index) { return "" + (index + 1); },
|
|
771
780
|
},
|
|
772
781
|
{
|
|
773
|
-
title: '采购货款结算单号',
|
|
782
|
+
title: i18next.t('采购货款结算单号'),
|
|
774
783
|
width: 160,
|
|
775
784
|
dataIndex: 'psNo',
|
|
776
785
|
key: 'psNo',
|
|
@@ -783,17 +792,17 @@ function App() {
|
|
|
783
792
|
},
|
|
784
793
|
},
|
|
785
794
|
{
|
|
786
|
-
title: '测试下拉框1',
|
|
795
|
+
title: i18next.t('测试下拉框1'),
|
|
787
796
|
dataIndex: 'select1',
|
|
788
797
|
key: 'select1',
|
|
789
798
|
width: 150,
|
|
790
799
|
render: function () {
|
|
791
800
|
return (React.createElement(Select, null,
|
|
792
|
-
React.createElement(Select.Option, { key: "1", value: "1" },
|
|
801
|
+
React.createElement(Select.Option, { key: "1", value: "1" }, i18next.t('你好'))));
|
|
793
802
|
},
|
|
794
803
|
},
|
|
795
804
|
{
|
|
796
|
-
title: '测试下拉框',
|
|
805
|
+
title: i18next.t('测试下拉框'),
|
|
797
806
|
dataIndex: 'select',
|
|
798
807
|
key: 'select',
|
|
799
808
|
editable: true,
|
|
@@ -803,7 +812,7 @@ function App() {
|
|
|
803
812
|
},
|
|
804
813
|
},
|
|
805
814
|
{
|
|
806
|
-
title: '测试下拉框',
|
|
815
|
+
title: i18next.t('测试下拉框'),
|
|
807
816
|
dataIndex: 'datate',
|
|
808
817
|
key: 'datate',
|
|
809
818
|
width: 150,
|
|
@@ -812,7 +821,7 @@ function App() {
|
|
|
812
821
|
},
|
|
813
822
|
},
|
|
814
823
|
{
|
|
815
|
-
title: '测试下拉框',
|
|
824
|
+
title: i18next.t('测试下拉框'),
|
|
816
825
|
dataIndex: 'datate1',
|
|
817
826
|
key: 'datate1',
|
|
818
827
|
width: 150,
|
|
@@ -821,7 +830,7 @@ function App() {
|
|
|
821
830
|
},
|
|
822
831
|
},
|
|
823
832
|
{
|
|
824
|
-
title: '测试数字输入框',
|
|
833
|
+
title: i18next.t('测试数字输入框'),
|
|
825
834
|
dataIndex: 'inputNumber1',
|
|
826
835
|
key: 'inputNumber1',
|
|
827
836
|
editable: true,
|
|
@@ -831,7 +840,7 @@ function App() {
|
|
|
831
840
|
},
|
|
832
841
|
},
|
|
833
842
|
{
|
|
834
|
-
title: '测试数字金额输入框',
|
|
843
|
+
title: i18next.t('测试数字金额输入框'),
|
|
835
844
|
dataIndex: 'inputNumber2',
|
|
836
845
|
key: 'inputNumber2',
|
|
837
846
|
editable: true,
|
|
@@ -846,7 +855,7 @@ function App() {
|
|
|
846
855
|
},
|
|
847
856
|
},
|
|
848
857
|
{
|
|
849
|
-
title: '测试下拉框',
|
|
858
|
+
title: i18next.t('测试下拉框'),
|
|
850
859
|
dataIndex: 'selector1',
|
|
851
860
|
key: 'selector1',
|
|
852
861
|
editable: true,
|
|
@@ -856,17 +865,17 @@ function App() {
|
|
|
856
865
|
data: [
|
|
857
866
|
{
|
|
858
867
|
dictKey: '1',
|
|
859
|
-
dictValue: '张三',
|
|
868
|
+
dictValue: i18next.t('张三'),
|
|
860
869
|
},
|
|
861
870
|
{
|
|
862
871
|
dictKey: '2',
|
|
863
|
-
dictValue: '李四',
|
|
872
|
+
dictValue: i18next.t('李四'),
|
|
864
873
|
},
|
|
865
874
|
],
|
|
866
875
|
},
|
|
867
876
|
},
|
|
868
877
|
{
|
|
869
|
-
title: '结算日期',
|
|
878
|
+
title: i18next.t('结算日期'),
|
|
870
879
|
width: 120,
|
|
871
880
|
align: 'center',
|
|
872
881
|
dataIndex: 'settlementDate',
|
|
@@ -874,7 +883,7 @@ function App() {
|
|
|
874
883
|
ellipsis: true,
|
|
875
884
|
},
|
|
876
885
|
{
|
|
877
|
-
title: '过账日期',
|
|
886
|
+
title: i18next.t('过账日期'),
|
|
878
887
|
width: 120,
|
|
879
888
|
align: 'center',
|
|
880
889
|
dataIndex: 'postDate',
|
|
@@ -882,7 +891,7 @@ function App() {
|
|
|
882
891
|
ellipsis: true,
|
|
883
892
|
},
|
|
884
893
|
{
|
|
885
|
-
title: '发票类型',
|
|
894
|
+
title: i18next.t('发票类型'),
|
|
886
895
|
width: 100,
|
|
887
896
|
// align: 'center',
|
|
888
897
|
dataIndex: 'invoiceTypeName',
|
|
@@ -890,14 +899,14 @@ function App() {
|
|
|
890
899
|
ellipsis: true,
|
|
891
900
|
},
|
|
892
901
|
{
|
|
893
|
-
title: '发票日期',
|
|
902
|
+
title: i18next.t('发票日期'),
|
|
894
903
|
width: 120,
|
|
895
904
|
dataIndex: 'invoiceDate',
|
|
896
905
|
key: 'invoiceDate',
|
|
897
906
|
ellipsis: true,
|
|
898
907
|
},
|
|
899
908
|
{
|
|
900
|
-
title: '发票代码',
|
|
909
|
+
title: i18next.t('发票代码'),
|
|
901
910
|
width: 120,
|
|
902
911
|
align: 'left',
|
|
903
912
|
dataIndex: 'invoiceCode',
|
|
@@ -905,7 +914,7 @@ function App() {
|
|
|
905
914
|
ellipsis: true,
|
|
906
915
|
},
|
|
907
916
|
{
|
|
908
|
-
title: '发票号码',
|
|
917
|
+
title: i18next.t('发票号码'),
|
|
909
918
|
width: 120,
|
|
910
919
|
align: 'left',
|
|
911
920
|
dataIndex: 'invoiceNo',
|
|
@@ -913,7 +922,7 @@ function App() {
|
|
|
913
922
|
ellipsis: true,
|
|
914
923
|
},
|
|
915
924
|
{
|
|
916
|
-
title: '发票金额',
|
|
925
|
+
title: i18next.t('发票金额'),
|
|
917
926
|
width: 120,
|
|
918
927
|
align: 'left',
|
|
919
928
|
dataIndex: 'invoiceAmount',
|
|
@@ -922,7 +931,7 @@ function App() {
|
|
|
922
931
|
sorter: function (a, b) { return a.invoiceAmount - b.invoiceAmount; },
|
|
923
932
|
},
|
|
924
933
|
{
|
|
925
|
-
title: '发票税额',
|
|
934
|
+
title: i18next.t('发票税额'),
|
|
926
935
|
width: 120,
|
|
927
936
|
align: 'left',
|
|
928
937
|
dataIndex: 'invoiceTax',
|
|
@@ -930,7 +939,7 @@ function App() {
|
|
|
930
939
|
ellipsis: true,
|
|
931
940
|
},
|
|
932
941
|
{
|
|
933
|
-
title: '结算含税金额',
|
|
942
|
+
title: i18next.t('结算含税金额'),
|
|
934
943
|
width: 120,
|
|
935
944
|
align: 'left',
|
|
936
945
|
dataIndex: 'settlementUnitAmount',
|
|
@@ -938,7 +947,7 @@ function App() {
|
|
|
938
947
|
ellipsis: true,
|
|
939
948
|
},
|
|
940
949
|
{
|
|
941
|
-
title: '结算不含税金额',
|
|
950
|
+
title: i18next.t('结算不含税金额'),
|
|
942
951
|
width: 120,
|
|
943
952
|
align: 'left',
|
|
944
953
|
dataIndex: 'settlementAmount',
|
|
@@ -946,7 +955,7 @@ function App() {
|
|
|
946
955
|
ellipsis: true,
|
|
947
956
|
},
|
|
948
957
|
{
|
|
949
|
-
title: '结算税额',
|
|
958
|
+
title: i18next.t('结算税额'),
|
|
950
959
|
width: 120,
|
|
951
960
|
align: 'left',
|
|
952
961
|
dataIndex: 'settlementTax',
|
|
@@ -954,14 +963,14 @@ function App() {
|
|
|
954
963
|
ellipsis: true,
|
|
955
964
|
},
|
|
956
965
|
{
|
|
957
|
-
title: '税率',
|
|
966
|
+
title: i18next.t('税率'),
|
|
958
967
|
width: 100,
|
|
959
968
|
dataIndex: 'taxRateName',
|
|
960
969
|
key: 'taxRateName',
|
|
961
970
|
ellipsis: true,
|
|
962
971
|
},
|
|
963
972
|
{
|
|
964
|
-
title: '税码',
|
|
973
|
+
title: i18next.t('税码'),
|
|
965
974
|
width: 220,
|
|
966
975
|
align: 'left',
|
|
967
976
|
dataIndex: 'taxCodeName',
|
|
@@ -969,7 +978,7 @@ function App() {
|
|
|
969
978
|
ellipsis: true,
|
|
970
979
|
},
|
|
971
980
|
{
|
|
972
|
-
title: '结算数量',
|
|
981
|
+
title: i18next.t('结算数量'),
|
|
973
982
|
width: 120,
|
|
974
983
|
align: 'left',
|
|
975
984
|
dataIndex: 'settlementQuantity',
|
|
@@ -977,28 +986,28 @@ function App() {
|
|
|
977
986
|
ellipsis: true,
|
|
978
987
|
},
|
|
979
988
|
{
|
|
980
|
-
title: '数量单位',
|
|
989
|
+
title: i18next.t('数量单位'),
|
|
981
990
|
width: 100,
|
|
982
991
|
dataIndex: 'quantityUnit',
|
|
983
992
|
key: 'quantityUnit',
|
|
984
993
|
ellipsis: true,
|
|
985
994
|
},
|
|
986
995
|
{
|
|
987
|
-
title: '货币',
|
|
996
|
+
title: i18next.t('货币'),
|
|
988
997
|
width: 100,
|
|
989
998
|
dataIndex: 'currencyName',
|
|
990
999
|
key: 'currencyName',
|
|
991
1000
|
ellipsis: true,
|
|
992
1001
|
},
|
|
993
1002
|
{
|
|
994
|
-
title: '汇率',
|
|
1003
|
+
title: i18next.t('汇率'),
|
|
995
1004
|
width: 100,
|
|
996
1005
|
dataIndex: 'rate',
|
|
997
1006
|
key: 'rate',
|
|
998
1007
|
ellipsis: true,
|
|
999
1008
|
},
|
|
1000
1009
|
{
|
|
1001
|
-
title: '公司名称',
|
|
1010
|
+
title: i18next.t('公司名称'),
|
|
1002
1011
|
width: 220,
|
|
1003
1012
|
align: 'left',
|
|
1004
1013
|
dataIndex: 'companyName',
|
|
@@ -1006,7 +1015,7 @@ function App() {
|
|
|
1006
1015
|
ellipsis: true,
|
|
1007
1016
|
},
|
|
1008
1017
|
{
|
|
1009
|
-
title: '部门名称',
|
|
1018
|
+
title: i18next.t('部门名称'),
|
|
1010
1019
|
width: 220,
|
|
1011
1020
|
dataIndex: 'depName',
|
|
1012
1021
|
key: 'depName',
|
|
@@ -1014,7 +1023,7 @@ function App() {
|
|
|
1014
1023
|
align: 'left',
|
|
1015
1024
|
},
|
|
1016
1025
|
{
|
|
1017
|
-
title: '供应商名称',
|
|
1026
|
+
title: i18next.t('供应商名称'),
|
|
1018
1027
|
width: 220,
|
|
1019
1028
|
dataIndex: 'memberName',
|
|
1020
1029
|
key: 'memberName',
|
|
@@ -1022,7 +1031,7 @@ function App() {
|
|
|
1022
1031
|
align: 'left',
|
|
1023
1032
|
},
|
|
1024
1033
|
{
|
|
1025
|
-
title: '备注',
|
|
1034
|
+
title: i18next.t('备注'),
|
|
1026
1035
|
width: 220,
|
|
1027
1036
|
dataIndex: 'mark',
|
|
1028
1037
|
key: 'mark',
|
|
@@ -1030,7 +1039,7 @@ function App() {
|
|
|
1030
1039
|
align: 'left',
|
|
1031
1040
|
},
|
|
1032
1041
|
{
|
|
1033
|
-
title: '创建人',
|
|
1042
|
+
title: i18next.t('创建人'),
|
|
1034
1043
|
width: 120,
|
|
1035
1044
|
dataIndex: 'createUserName',
|
|
1036
1045
|
key: 'createUserName',
|
|
@@ -1038,14 +1047,14 @@ function App() {
|
|
|
1038
1047
|
align: 'left',
|
|
1039
1048
|
},
|
|
1040
1049
|
{
|
|
1041
|
-
title: '创建日期',
|
|
1050
|
+
title: i18next.t('创建日期'),
|
|
1042
1051
|
width: 100,
|
|
1043
1052
|
dataIndex: 'createTime',
|
|
1044
1053
|
key: 'createTime',
|
|
1045
1054
|
render: function (text) { return text; },
|
|
1046
1055
|
},
|
|
1047
1056
|
{
|
|
1048
|
-
title: '修改人',
|
|
1057
|
+
title: i18next.t('修改人'),
|
|
1049
1058
|
width: 120,
|
|
1050
1059
|
dataIndex: 'updateUserName',
|
|
1051
1060
|
key: 'updateUserName',
|
|
@@ -1053,13 +1062,13 @@ function App() {
|
|
|
1053
1062
|
align: 'left',
|
|
1054
1063
|
},
|
|
1055
1064
|
{
|
|
1056
|
-
title: '修改日期',
|
|
1065
|
+
title: i18next.t('修改日期'),
|
|
1057
1066
|
width: 100,
|
|
1058
1067
|
dataIndex: 'updateTime',
|
|
1059
1068
|
key: 'updateTime',
|
|
1060
1069
|
},
|
|
1061
1070
|
{
|
|
1062
|
-
title: '审核人',
|
|
1071
|
+
title: i18next.t('审核人'),
|
|
1063
1072
|
width: 120,
|
|
1064
1073
|
dataIndex: 'approveUserName',
|
|
1065
1074
|
key: 'approveUserName',
|
|
@@ -1067,13 +1076,13 @@ function App() {
|
|
|
1067
1076
|
align: 'left',
|
|
1068
1077
|
},
|
|
1069
1078
|
{
|
|
1070
|
-
title: '审核日期',
|
|
1079
|
+
title: i18next.t('审核日期'),
|
|
1071
1080
|
width: 100,
|
|
1072
1081
|
dataIndex: 'approveTime',
|
|
1073
1082
|
key: 'approveTime',
|
|
1074
1083
|
},
|
|
1075
1084
|
{
|
|
1076
|
-
title: '审核意见',
|
|
1085
|
+
title: i18next.t('审核意见'),
|
|
1077
1086
|
width: 220,
|
|
1078
1087
|
align: 'left',
|
|
1079
1088
|
dataIndex: 'approveOpinion',
|
|
@@ -1081,7 +1090,7 @@ function App() {
|
|
|
1081
1090
|
ellipsis: true,
|
|
1082
1091
|
},
|
|
1083
1092
|
{
|
|
1084
|
-
title: '单据状态',
|
|
1093
|
+
title: i18next.t('单据状态'),
|
|
1085
1094
|
width: 100,
|
|
1086
1095
|
dataIndex: 'statusName',
|
|
1087
1096
|
key: 'statusName',
|
|
@@ -1089,13 +1098,13 @@ function App() {
|
|
|
1089
1098
|
align: 'left',
|
|
1090
1099
|
},
|
|
1091
1100
|
{
|
|
1092
|
-
title: '操作',
|
|
1101
|
+
title: i18next.t('操作'),
|
|
1093
1102
|
width: 200,
|
|
1094
1103
|
fixed: 'right',
|
|
1095
1104
|
render: function (text, record, index) {
|
|
1096
1105
|
return (React.createElement(React.Fragment, null,
|
|
1097
|
-
React.createElement(Button, { type: "link" },
|
|
1098
|
-
React.createElement(Button, { type: "link" },
|
|
1106
|
+
React.createElement(Button, { type: "link" }, i18next.t('修改')),
|
|
1107
|
+
React.createElement(Button, { type: "link" }, i18next.t('删除'))));
|
|
1099
1108
|
},
|
|
1100
1109
|
},
|
|
1101
1110
|
]; }, []);
|
|
@@ -1106,7 +1115,7 @@ function App() {
|
|
|
1106
1115
|
setTimeout(function () {
|
|
1107
1116
|
setFileList([
|
|
1108
1117
|
{
|
|
1109
|
-
name: '奔奔.jpg',
|
|
1118
|
+
name: i18next.t('奔奔.jpg'),
|
|
1110
1119
|
uid: '1418469936545132546',
|
|
1111
1120
|
size: 36742,
|
|
1112
1121
|
response: {
|
|
@@ -1114,17 +1123,17 @@ function App() {
|
|
|
1114
1123
|
data: {
|
|
1115
1124
|
attachId: '1418469936545132546',
|
|
1116
1125
|
attachLink: 'http://192.168.0.83:9199/zmdms/upload/20210723/985557e75342c8f99ce532f232f3aa54.jpg',
|
|
1117
|
-
attachName: '奔奔.jpg',
|
|
1126
|
+
attachName: i18next.t('奔奔.jpg'),
|
|
1118
1127
|
createDept: '1397081930328424449',
|
|
1119
1128
|
createTime: '2021-07-23 15:16:12',
|
|
1120
1129
|
createUser: '1407239998672388098',
|
|
1121
|
-
createUserName: '哈哈哈啊',
|
|
1130
|
+
createUserName: i18next.t('哈哈哈啊'),
|
|
1122
1131
|
fileSize: 36742,
|
|
1123
1132
|
id: '1418469980262313986',
|
|
1124
1133
|
isDeleted: 0,
|
|
1125
1134
|
link: 'http://192.168.0.83:9199/zmdms/upload/20210723/985557e75342c8f99ce532f232f3aa54.jpg',
|
|
1126
1135
|
name: 'http://192.168.0.83:9199/zmdms/upload/20210723/985557e75342c8f99ce532f232f3aa54.jpg',
|
|
1127
|
-
originalName: '奔奔.jpg',
|
|
1136
|
+
originalName: i18next.t('奔奔.jpg'),
|
|
1128
1137
|
projectId: '1418469948842782722',
|
|
1129
1138
|
status: 1,
|
|
1130
1139
|
updateTime: '2021-07-23 15:16:12',
|
|
@@ -1136,14 +1145,19 @@ function App() {
|
|
|
1136
1145
|
]);
|
|
1137
1146
|
setSearchLayout([
|
|
1138
1147
|
{ name: 'type4', show: true },
|
|
1139
|
-
{
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
{ name: '
|
|
1146
|
-
{ name: '
|
|
1148
|
+
{
|
|
1149
|
+
name: 'pwNo',
|
|
1150
|
+
label: i18next.t('入库单号'),
|
|
1151
|
+
show: true,
|
|
1152
|
+
disabled: true,
|
|
1153
|
+
},
|
|
1154
|
+
{ name: 'status', label: i18next.t('单据状态'), show: true },
|
|
1155
|
+
{ name: 'intime', label: i18next.t('入库日期'), show: true },
|
|
1156
|
+
{ name: 'warehouseId', label: i18next.t('仓库名称'), show: true },
|
|
1157
|
+
{ name: 'companyId', label: i18next.t('公司名称'), show: true },
|
|
1158
|
+
{ name: 'depId', label: i18next.t('部门名称'), show: true },
|
|
1159
|
+
{ name: 'test1', label: i18next.t('部门名称'), show: true },
|
|
1160
|
+
{ name: 'test2', label: i18next.t('部门名称'), show: true },
|
|
1147
1161
|
{ name: 'type1', show: true },
|
|
1148
1162
|
{ name: 'type2', show: true },
|
|
1149
1163
|
{ name: 'type3', show: true },
|
|
@@ -1193,16 +1207,16 @@ function App() {
|
|
|
1193
1207
|
return (React.createElement("div", { className: "App", style: { padding: '10px' } },
|
|
1194
1208
|
React.createElement("div", { style: { padding: '10px', width: '60%' } },
|
|
1195
1209
|
React.createElement(GridList, null,
|
|
1196
|
-
React.createElement(GridList.Item, { span: 8, title:
|
|
1197
|
-
React.createElement(GridList.Item, { span: 8, title:
|
|
1198
|
-
React.createElement(GridList.Item, { span: 8, title:
|
|
1210
|
+
React.createElement(GridList.Item, { span: 8, title: i18next.t('姓名姓名姓名姓名姓名姓名姓名') }, i18next.t('姓名')),
|
|
1211
|
+
React.createElement(GridList.Item, { span: 8, title: i18next.t('姓名') }, i18next.t('姓名')),
|
|
1212
|
+
React.createElement(GridList.Item, { span: 8, title: i18next.t('姓名') }, i18next.t('姓名'))),
|
|
1199
1213
|
React.createElement(GridList, null,
|
|
1200
|
-
React.createElement(GridList.Item, { span: 12, titleSpan: 8, title:
|
|
1201
|
-
React.createElement(GridList.Item, { span: 12, titleSpan: 8, title:
|
|
1214
|
+
React.createElement(GridList.Item, { span: 12, titleSpan: 8, title: i18next.t('姓名姓名姓名姓名姓名姓名姓名') }, i18next.t('姓名')),
|
|
1215
|
+
React.createElement(GridList.Item, { span: 12, titleSpan: 8, title: i18next.t('姓名') }, i18next.t('姓名'))),
|
|
1202
1216
|
React.createElement(GridList, null,
|
|
1203
|
-
React.createElement(GridList.Item, { span: 24, title:
|
|
1217
|
+
React.createElement(GridList.Item, { span: 24, title: i18next.t('姓名'), titleSpan: 8 }, i18next.t('姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名'))),
|
|
1204
1218
|
React.createElement(GridList, null,
|
|
1205
|
-
React.createElement(GridList.Item, { span: 24, title:
|
|
1219
|
+
React.createElement(GridList.Item, { span: 24, title: i18next.t('姓名'), titleSpan: 12 }, i18next.t('姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓名姓')))),
|
|
1206
1220
|
React.createElement(DetailList, { records: inspectionDetail, labelWidth: 10, labelAlign: "left", apiBaseUrl: "http://192.168.0.83:8888", fileBaseUrl: "http://192.168.0.83:88",
|
|
1207
1221
|
// downloadBtnDisable={true}
|
|
1208
1222
|
hasManOrDate: true, hasSignArea: true, isDark: true }),
|
|
@@ -1211,10 +1225,10 @@ function App() {
|
|
|
1211
1225
|
React.createElement(DetailList, { apiBaseUrl: "http://192.168.0.83:8888", fileBaseUrl: "http://192.168.0.83:88", hasSignArea: true, isDark: true, labelWidth: 10 }),
|
|
1212
1226
|
inspectionData.map(function (item) {
|
|
1213
1227
|
var inspectionDesc = [
|
|
1214
|
-
{ title: '巡检人', content: item.inspectionMan },
|
|
1215
|
-
{ title: '上传时间', content: item.inspectionTime },
|
|
1216
|
-
{ title: '整改人', content: item.rectifyMan },
|
|
1217
|
-
{ title: '状态', content: item.statusName },
|
|
1228
|
+
{ title: i18next.t('巡检人'), content: item.inspectionMan },
|
|
1229
|
+
{ title: i18next.t('上传时间'), content: item.inspectionTime },
|
|
1230
|
+
{ title: i18next.t('整改人'), content: item.rectifyMan },
|
|
1231
|
+
{ title: i18next.t('状态'), content: item.statusName },
|
|
1218
1232
|
];
|
|
1219
1233
|
var records = [];
|
|
1220
1234
|
if (item.inspectionRecords.length > 0) {
|
|
@@ -1257,60 +1271,68 @@ function App() {
|
|
|
1257
1271
|
React.createElement(Container, null,
|
|
1258
1272
|
React.createElement(DetailHeader, { headerName: detailData === null || detailData === void 0 ? void 0 : detailData.inspectionName, code: detailData === null || detailData === void 0 ? void 0 : detailData.inspectionCode, type: detailData === null || detailData === void 0 ? void 0 : detailData.inspectionTypeName, progress: detailData === null || detailData === void 0 ? void 0 : detailData.progress, createDate: detailData === null || detailData === void 0 ? void 0 : detailData.createDate, createrName: detailData === null || detailData === void 0 ? void 0 : detailData.createUserName }),
|
|
1259
1273
|
React.createElement(TransList, { gutter: 16 },
|
|
1260
|
-
React.createElement(FormItem, { span: 6, title:
|
|
1261
|
-
React.createElement(FormItem, { span: 6, title:
|
|
1262
|
-
React.createElement(FormItem, { span: 6, title:
|
|
1263
|
-
React.createElement(FormItem, { span: 6, title:
|
|
1274
|
+
React.createElement(FormItem, { span: 6, title: i18next.t('项目类型') }, i18next.t('物流金融')),
|
|
1275
|
+
React.createElement(FormItem, { span: 6, title: i18next.t('所属部门') }, i18next.t('业务二部')),
|
|
1276
|
+
React.createElement(FormItem, { span: 6, title: i18next.t('项目负责人') }, i18next.t('谌姚琦')),
|
|
1277
|
+
React.createElement(FormItem, { span: 6, title: i18next.t('业务负责人') }, i18next.t('李富丰 李富丰 李富丰 李富丰'))),
|
|
1264
1278
|
React.createElement(TransList, { gutter: 16 },
|
|
1265
|
-
React.createElement(FormItem, { span: 6, title:
|
|
1266
|
-
React.createElement(FormItem, { span: 6, title:
|
|
1267
|
-
React.createElement(FormItem, { span: 6, title:
|
|
1268
|
-
React.createElement(FormItem, { span: 6, title:
|
|
1279
|
+
React.createElement(FormItem, { span: 6, title: i18next.t('项目类型') }, i18next.t('物流金融')),
|
|
1280
|
+
React.createElement(FormItem, { span: 6, title: i18next.t('所属部门') }, i18next.t('业务二部')),
|
|
1281
|
+
React.createElement(FormItem, { span: 6, title: i18next.t('项目负责人') }, i18next.t('谌姚琦')),
|
|
1282
|
+
React.createElement(FormItem, { span: 6, title: i18next.t('业务负责人') }, i18next.t('李富丰'))),
|
|
1269
1283
|
React.createElement(TransList, { gutter: 16 },
|
|
1270
|
-
React.createElement(FormItem, { span: 6, title:
|
|
1271
|
-
React.createElement(FormItem, { span: 6, title:
|
|
1272
|
-
React.createElement(FormItem, { span: 6, title:
|
|
1273
|
-
React.createElement(FormItem, { span: 6, title:
|
|
1284
|
+
React.createElement(FormItem, { span: 6, title: i18next.t('项目类型') }, i18next.t('物流金融')),
|
|
1285
|
+
React.createElement(FormItem, { span: 6, title: i18next.t('所属部门') }, i18next.t('业务二部')),
|
|
1286
|
+
React.createElement(FormItem, { span: 6, title: i18next.t('项目负责人') }, i18next.t('谌姚琦')),
|
|
1287
|
+
React.createElement(FormItem, { span: 6, title: i18next.t('业务负责人') }, i18next.t('李富丰'))),
|
|
1274
1288
|
React.createElement(Form, { name: "test-list", form: form },
|
|
1275
1289
|
React.createElement(SearchContainer, { dark: true },
|
|
1276
1290
|
React.createElement(SearchLeft, { isDynamic: true,
|
|
1277
1291
|
// searchLayout={searchLayout}
|
|
1278
1292
|
onChange: onSearchLayoutChange },
|
|
1279
|
-
React.createElement(SearchItem, { width: "half", name: "pwNo", label:
|
|
1293
|
+
React.createElement(SearchItem, { width: "half", name: "pwNo", label: i18next.t('入库单号'), disabled: true },
|
|
1280
1294
|
React.createElement(Input.TextArea, { autoSize: true, allowClear: true, disabled: true })),
|
|
1281
|
-
React.createElement(SearchItem, { width: "half", name: "pwNo1", label:
|
|
1295
|
+
React.createElement(SearchItem, { width: "half", name: "pwNo1", label: i18next.t('入库单号1') },
|
|
1282
1296
|
React.createElement(Input, null)),
|
|
1283
|
-
React.createElement(SearchItem, { width: "half", name: "status", label:
|
|
1297
|
+
React.createElement(SearchItem, { width: "half", name: "status", label: i18next.t('单据状态') },
|
|
1284
1298
|
React.createElement(Select, null)),
|
|
1285
|
-
React.createElement(SearchItem, { name: "intime", label:
|
|
1299
|
+
React.createElement(SearchItem, { name: "intime", label: i18next.t('入库日期') },
|
|
1286
1300
|
React.createElement(RangePicker, null)),
|
|
1287
|
-
React.createElement(SearchItem, { name: "warehouseId", label:
|
|
1301
|
+
React.createElement(SearchItem, { name: "warehouseId", label: i18next.t('仓库名称') },
|
|
1288
1302
|
React.createElement(Select, null)),
|
|
1289
|
-
React.createElement(SearchItem, { name: "companyId", label:
|
|
1303
|
+
React.createElement(SearchItem, { name: "companyId", label: i18next.t('公司名称') },
|
|
1290
1304
|
React.createElement(Select, null)),
|
|
1291
|
-
React.createElement(SearchItem, { name: "companyId1", label:
|
|
1305
|
+
React.createElement(SearchItem, { name: "companyId1", label: i18next.t('公司名称1') },
|
|
1292
1306
|
React.createElement(Input.TextArea, { autoSize: true })),
|
|
1293
|
-
React.createElement(SearchItem, { name: "depId", label:
|
|
1307
|
+
React.createElement(SearchItem, { name: "depId", label: i18next.t('部门名称'), rules: [
|
|
1308
|
+
{ required: true, message: i18next.t('请选择仓库名称') },
|
|
1309
|
+
] },
|
|
1294
1310
|
React.createElement(Select, null)),
|
|
1295
|
-
React.createElement(SearchItem, { name: "test1", label:
|
|
1311
|
+
React.createElement(SearchItem, { name: "test1", label: i18next.t('部门名称') },
|
|
1296
1312
|
React.createElement(Checkbox.Group, null,
|
|
1297
|
-
React.createElement(Checkbox, { value: "1" },
|
|
1298
|
-
React.createElement(Checkbox, { value: "2" },
|
|
1313
|
+
React.createElement(Checkbox, { value: "1" }, i18next.t('是')),
|
|
1314
|
+
React.createElement(Checkbox, { value: "2" }, i18next.t('否')))),
|
|
1299
1315
|
React.createElement(SearchItem, { name: "sss", label: "", noLabelShowBg: true },
|
|
1300
|
-
React.createElement(Checkbox, { value: "1" },
|
|
1301
|
-
React.createElement(SearchItem, { name: "sss1", label: "", hiddenLabelName:
|
|
1302
|
-
React.createElement(Checkbox, { value: "1" },
|
|
1303
|
-
React.createElement(SearchItem, { name: "sss2", label: "", hiddenLabelName:
|
|
1304
|
-
React.createElement(Checkbox, { value: "1" },
|
|
1305
|
-
React.createElement(SearchItem, { name: "sss2", label: "", hiddenLabelName:
|
|
1306
|
-
React.createElement(Radio, { value: "1" },
|
|
1307
|
-
React.createElement(SearchItem, { name: "test2", label:
|
|
1316
|
+
React.createElement(Checkbox, { value: "1" }, i18next.t('是'))),
|
|
1317
|
+
React.createElement(SearchItem, { name: "sss1", label: "", hiddenLabelName: i18next.t('动态表单配置'), noLabelShowBg: true },
|
|
1318
|
+
React.createElement(Checkbox, { value: "1" }, i18next.t('是'))),
|
|
1319
|
+
React.createElement(SearchItem, { name: "sss2", label: "", hiddenLabelName: i18next.t('动态表单配置'), noLabelShowBg: true },
|
|
1320
|
+
React.createElement(Checkbox, { value: "1" }, i18next.t('是'))),
|
|
1321
|
+
React.createElement(SearchItem, { name: "sss2", label: "", hiddenLabelName: i18next.t('动态表单配置'), noLabelShowBg: true },
|
|
1322
|
+
React.createElement(Radio, { value: "1" }, i18next.t('是'))),
|
|
1323
|
+
React.createElement(SearchItem, { name: "test2", label: i18next.t('部门名称'), rules: [
|
|
1324
|
+
{ required: true, message: i18next.t('请选择仓库名称') },
|
|
1325
|
+
] },
|
|
1308
1326
|
React.createElement(Radio.Group, null,
|
|
1309
|
-
React.createElement(Radio, { value: "1" },
|
|
1310
|
-
React.createElement(Radio, { value: "2" },
|
|
1311
|
-
React.createElement(SearchItem, { name: "test3", label:
|
|
1327
|
+
React.createElement(Radio, { value: "1" }, i18next.t('是')),
|
|
1328
|
+
React.createElement(Radio, { value: "2" }, i18next.t('否')))),
|
|
1329
|
+
React.createElement(SearchItem, { name: "test3", label: i18next.t('部门名称'), rules: [
|
|
1330
|
+
{ required: true, message: i18next.t('请选择仓库名称') },
|
|
1331
|
+
] },
|
|
1312
1332
|
React.createElement(InputNumber, null)),
|
|
1313
|
-
React.createElement(SearchItem, { name: "test4", label:
|
|
1333
|
+
React.createElement(SearchItem, { name: "test4", label: i18next.t('部门名称'), rules: [
|
|
1334
|
+
{ required: true, message: i18next.t('请选择仓库名称') },
|
|
1335
|
+
] },
|
|
1314
1336
|
React.createElement(Input.TextArea, { autoSize: true })),
|
|
1315
1337
|
React.createElement(SearchItem, { name: "type1", width: "half", noLabel: true },
|
|
1316
1338
|
React.createElement(Select, null)),
|
|
@@ -1321,19 +1343,19 @@ function App() {
|
|
|
1321
1343
|
React.createElement(SearchItem, { name: "type4", width: "half", noLabel: true },
|
|
1322
1344
|
React.createElement(Select, null))),
|
|
1323
1345
|
React.createElement(SearchRight, null,
|
|
1324
|
-
React.createElement(Button, { type: "primary", onClick: function () { return console.log(form.validateFields()); } },
|
|
1325
|
-
React.createElement(Button, { type: "default" },
|
|
1346
|
+
React.createElement(Button, { type: "primary", onClick: function () { return console.log(form.validateFields()); } }, i18next.t('查询')),
|
|
1347
|
+
React.createElement(Button, { type: "default" }, i18next.t('重置'))))),
|
|
1326
1348
|
React.createElement(OperationMiddle, { paddingTop: false },
|
|
1327
|
-
React.createElement(Button, { type: "primary" },
|
|
1328
|
-
React.createElement(Button, { type: "primary" },
|
|
1349
|
+
React.createElement(Button, { type: "primary" }, i18next.t('查询')),
|
|
1350
|
+
React.createElement(Button, { type: "primary" }, i18next.t('查询')),
|
|
1329
1351
|
React.createElement(OperationRight, null,
|
|
1330
|
-
|
|
1352
|
+
i18next.t('总计:共查询记录'),
|
|
1331
1353
|
React.createElement("strong", null, "10"),
|
|
1332
|
-
|
|
1354
|
+
i18next.t('条, 入库件数'),
|
|
1333
1355
|
React.createElement("strong", null, "22"),
|
|
1334
|
-
|
|
1356
|
+
i18next.t('件, 入库数量'),
|
|
1335
1357
|
React.createElement("strong", null, "33"),
|
|
1336
|
-
|
|
1358
|
+
i18next.t('吨'))),
|
|
1337
1359
|
React.createElement(Table, { columns: columns,
|
|
1338
1360
|
// dataSource={data.concat(newData)}
|
|
1339
1361
|
dataSource: dataSource, rowKey: "id", showColumnDynamic: true,
|
|
@@ -1345,38 +1367,40 @@ function App() {
|
|
|
1345
1367
|
React.createElement("br", null),
|
|
1346
1368
|
React.createElement("br", null),
|
|
1347
1369
|
React.createElement("br", null),
|
|
1348
|
-
React.createElement(Pagination, { total: 100, showTotal: function (total, range) {
|
|
1370
|
+
React.createElement(Pagination, { total: 100, showTotal: function (total, range) {
|
|
1371
|
+
return i18next.t('共{{total}}条', { total: total });
|
|
1372
|
+
}, showSizeChanger: true }),
|
|
1349
1373
|
React.createElement(Tabs, null,
|
|
1350
|
-
React.createElement(Tabs.TabPane, { tab:
|
|
1374
|
+
React.createElement(Tabs.TabPane, { tab: i18next.t('你好') })),
|
|
1351
1375
|
React.createElement(Tabs, { type: "card" },
|
|
1352
|
-
React.createElement(Tabs.TabPane, { tab:
|
|
1376
|
+
React.createElement(Tabs.TabPane, { tab: i18next.t('你好') })),
|
|
1353
1377
|
React.createElement(Tabs, { type: "editable-card" },
|
|
1354
|
-
React.createElement(Tabs.TabPane, { tab:
|
|
1378
|
+
React.createElement(Tabs.TabPane, { tab: i18next.t('你好') })),
|
|
1355
1379
|
React.createElement(Tabs, { isHeader: true, marginTop: true },
|
|
1356
|
-
React.createElement(Tabs.TabPane, { key: "1", tab: React.createElement(Button, { type: "link" },
|
|
1357
|
-
React.createElement(Tabs.TabPane, { key: "2", tab: React.createElement(Button, { type: "link" },
|
|
1358
|
-
React.createElement(Tabs.TabPane, { key: "3", tab: React.createElement("a", { href: "/" },
|
|
1359
|
-
React.createElement(Tabs.TabPane, { key: "4", tab: React.createElement("a", { href: "/" },
|
|
1360
|
-
React.createElement(Tabs.TabPane, { key: "5", tab: React.createElement("a", { href: "/" },
|
|
1361
|
-
React.createElement(Tabs.TabPane, { key: "6", tab: React.createElement("a", { href: "/" },
|
|
1362
|
-
React.createElement(Tabs.TabPane, { key: "7", tab: React.createElement("a", { href: "/" },
|
|
1363
|
-
React.createElement(Tabs.TabPane, { key: "8", tab: React.createElement("a", { href: "/" },
|
|
1364
|
-
React.createElement(Tabs.TabPane, { key: "9", tab: React.createElement("a", { href: "/" },
|
|
1365
|
-
React.createElement(Tabs.TabPane, { key: "10", tab: React.createElement("a", { href: "/" },
|
|
1366
|
-
React.createElement(Tabs.TabPane, { key: "11", tab: React.createElement("a", { href: "/" },
|
|
1380
|
+
React.createElement(Tabs.TabPane, { key: "1", tab: React.createElement(Button, { type: "link" }, i18next.t('你好')) }),
|
|
1381
|
+
React.createElement(Tabs.TabPane, { key: "2", tab: React.createElement(Button, { type: "link" }, i18next.t('你好')) }),
|
|
1382
|
+
React.createElement(Tabs.TabPane, { key: "3", tab: React.createElement("a", { href: "/" }, i18next.t('你好')) }),
|
|
1383
|
+
React.createElement(Tabs.TabPane, { key: "4", tab: React.createElement("a", { href: "/" }, i18next.t('你好')) }),
|
|
1384
|
+
React.createElement(Tabs.TabPane, { key: "5", tab: React.createElement("a", { href: "/" }, i18next.t('你好')) }),
|
|
1385
|
+
React.createElement(Tabs.TabPane, { key: "6", tab: React.createElement("a", { href: "/" }, i18next.t('你好')) }),
|
|
1386
|
+
React.createElement(Tabs.TabPane, { key: "7", tab: React.createElement("a", { href: "/" }, i18next.t('你好')) }),
|
|
1387
|
+
React.createElement(Tabs.TabPane, { key: "8", tab: React.createElement("a", { href: "/" }, i18next.t('你好')) }),
|
|
1388
|
+
React.createElement(Tabs.TabPane, { key: "9", tab: React.createElement("a", { href: "/" }, i18next.t('你好')) }),
|
|
1389
|
+
React.createElement(Tabs.TabPane, { key: "10", tab: React.createElement("a", { href: "/" }, i18next.t('你好')) }),
|
|
1390
|
+
React.createElement(Tabs.TabPane, { key: "11", tab: React.createElement("a", { href: "/" }, i18next.t('你好')) })),
|
|
1367
1391
|
React.createElement(Tabs, { isContent: true },
|
|
1368
|
-
React.createElement(Tabs.TabPane, { key: "1", tab:
|
|
1369
|
-
React.createElement(Tabs.TabPane, { key: "2", tab:
|
|
1370
|
-
React.createElement(Tabs.TabPane, { key: "3", tab:
|
|
1371
|
-
React.createElement(Tabs.TabPane, { key: "4", tab:
|
|
1372
|
-
React.createElement(Tabs.TabPane, { key: "5", tab:
|
|
1373
|
-
React.createElement(Tabs.TabPane, { key: "6", tab:
|
|
1374
|
-
React.createElement(Tabs.TabPane, { key: "7", tab:
|
|
1375
|
-
React.createElement(Tabs.TabPane, { key: "8", tab:
|
|
1376
|
-
React.createElement(Tabs.TabPane, { key: "9", tab:
|
|
1377
|
-
React.createElement(Tabs.TabPane, { key: "10", tab:
|
|
1378
|
-
React.createElement(Tabs.TabPane, { key: "11", tab:
|
|
1379
|
-
React.createElement(Button, null,
|
|
1392
|
+
React.createElement(Tabs.TabPane, { key: "1", tab: i18next.t('你好') }),
|
|
1393
|
+
React.createElement(Tabs.TabPane, { key: "2", tab: i18next.t('你好') }),
|
|
1394
|
+
React.createElement(Tabs.TabPane, { key: "3", tab: i18next.t('你好') }),
|
|
1395
|
+
React.createElement(Tabs.TabPane, { key: "4", tab: i18next.t('你好') }),
|
|
1396
|
+
React.createElement(Tabs.TabPane, { key: "5", tab: i18next.t('你好') }),
|
|
1397
|
+
React.createElement(Tabs.TabPane, { key: "6", tab: i18next.t('你好') }),
|
|
1398
|
+
React.createElement(Tabs.TabPane, { key: "7", tab: i18next.t('你好') }),
|
|
1399
|
+
React.createElement(Tabs.TabPane, { key: "8", tab: i18next.t('你好') }),
|
|
1400
|
+
React.createElement(Tabs.TabPane, { key: "9", tab: i18next.t('你好') }),
|
|
1401
|
+
React.createElement(Tabs.TabPane, { key: "10", tab: i18next.t('你好') }),
|
|
1402
|
+
React.createElement(Tabs.TabPane, { key: "11", tab: i18next.t('你好') })),
|
|
1403
|
+
React.createElement(Button, null, i18next.t('你好')),
|
|
1380
1404
|
React.createElement(DatePicker, { allowClear: true, bordered: false }),
|
|
1381
1405
|
React.createElement(RangePicker, null),
|
|
1382
1406
|
React.createElement(TimePicker, null),
|
|
@@ -1390,6 +1414,6 @@ function App() {
|
|
|
1390
1414
|
React.createElement(Input.Password, null),
|
|
1391
1415
|
React.createElement(Input.TextArea, null),
|
|
1392
1416
|
React.createElement(InputNumber, { style: { width: 200 }, formatterType: "currency", precision: 2, onChange: function (value) { return console.log(value); } }),
|
|
1393
|
-
React.createElement(Checkbox, null,
|
|
1417
|
+
React.createElement(Checkbox, null, i18next.t('你好'))));
|
|
1394
1418
|
}
|
|
1395
1419
|
export default App;
|