@qqt-product/ui 0.0.12 → 0.0.13
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/components/ComponentsDemo.vue.d.ts +13 -0
- package/dist/components/EditPage.vue.d.ts +6011 -0
- package/dist/components/PreviewList.vue.d.ts +218 -0
- package/dist/components/hook/use-field-select-modal-hook.d.ts +288 -0
- package/dist/components/login.vue.d.ts +19 -0
- package/dist/components/mock.d.ts +260 -0
- package/dist/components/mockList.d.ts +44 -0
- package/dist/index.es.js +79830 -58293
- package/dist/index.umd.js +15319 -54
- package/dist/lib/components/breadcrumb/index.d.ts +10 -0
- package/dist/lib/components/breadcrumb/src/breadcrumb.vue.d.ts +7 -0
- package/dist/lib/components/card-list-layout/index.d.ts +147 -0
- package/dist/lib/components/card-list-layout/src/card-content.vue.d.ts +70 -0
- package/dist/lib/components/card-list-layout/src/cardItem.vue.d.ts +79 -0
- package/dist/lib/components/card-list-layout/src/index.vue.d.ts +144 -0
- package/dist/lib/components/card-list-layout/src/sidebar.vue.d.ts +30 -0
- package/dist/lib/components/card-list-layout/src/types.d.ts +41 -0
- package/dist/lib/components/cascader/index.d.ts +42 -54
- package/dist/lib/components/cascader/src/cascader-types.d.ts +17 -23
- package/dist/lib/components/cascader/src/cascader.vue.d.ts +42 -54
- package/dist/lib/components/cascader/src/use-cascader.d.ts +2 -2
- package/dist/lib/components/checkbox/index.d.ts +113 -0
- package/dist/lib/components/checkbox/src/checkbox-types.d.ts +62 -0
- package/dist/lib/components/checkbox/src/checkbox.vue.d.ts +109 -0
- package/dist/lib/components/checkbox/src/use-checkbox.d.ts +2 -0
- package/dist/lib/components/codeEditorModel/index.d.ts +187 -0
- package/dist/lib/components/codeEditorModel/src/codeEditorModel.vue.d.ts +184 -0
- package/dist/lib/components/collapse-transition/index.d.ts +16 -0
- package/dist/lib/components/collapse-transition/src/collapse-transition.vue.d.ts +15 -0
- package/dist/lib/components/coutdown/index.d.ts +94 -0
- package/dist/lib/components/coutdown/src/coutdown.d.ts +56 -0
- package/dist/lib/components/coutdown/src/coutdown.vue.d.ts +99 -0
- package/dist/lib/components/currency/index.d.ts +109 -0
- package/dist/lib/components/currency/src/currency-type.d.ts +47 -0
- package/dist/lib/components/currency/src/currency.vue.d.ts +105 -0
- package/dist/lib/components/currency/src/use-currency.d.ts +2 -0
- package/dist/lib/components/currency/src/use-methods.d.ts +14 -0
- package/dist/lib/components/detail-form/index.d.ts +102 -0
- package/dist/lib/components/detail-form/src/detail-form.vue.d.ts +99 -0
- package/dist/lib/components/detail-form/src/use-detail-form.d.ts +2 -0
- package/dist/lib/components/detail-grid/index.d.ts +2633 -0
- package/dist/lib/components/detail-grid/src/detail-grid.vue.d.ts +2630 -0
- package/dist/lib/components/detail-grid/src/hook/use-grid-config-hook.d.ts +10 -0
- package/dist/lib/components/detail-grid/src/use-detail-grid.d.ts +2 -0
- package/dist/lib/components/detail-page-layout/index.d.ts +186 -0
- package/dist/lib/components/detail-page-layout/src/detail-page-layout.vue.d.ts +183 -0
- package/dist/lib/components/detail-page-layout/src/use-detail-page-layout.d.ts +2 -0
- package/dist/lib/components/edit-form/index.d.ts +103 -62
- package/dist/lib/components/edit-form/src/edit-form-types.d.ts +28 -24
- package/dist/lib/components/edit-form/src/edit-form.vue.d.ts +104 -62
- package/dist/lib/components/edit-form/src/hook/use-callback-hook.d.ts +11 -0
- package/dist/lib/components/edit-form/src/hook/use-form-config-hook.d.ts +8 -0
- package/dist/lib/components/edit-form/src/use-edit-form.d.ts +1 -1
- package/dist/lib/components/edit-grid/index.d.ts +90 -63
- package/dist/lib/components/edit-grid/src/components/empty/index.d.ts +8 -0
- package/dist/lib/components/edit-grid/src/edit-grid-types.d.ts +33 -24
- package/dist/lib/components/edit-grid/src/edit-grid.vue.d.ts +90 -63
- package/dist/lib/components/edit-grid/src/hook/use-grid-config-hook.d.ts +10 -0
- package/dist/lib/components/edit-grid/src/hook/use-grid-height-hook.d.ts +4 -0
- package/dist/lib/components/edit-grid/src/use-edit-grid.d.ts +1 -1
- package/dist/lib/components/edit-page-layout/index.d.ts +66 -10
- package/dist/lib/components/edit-page-layout/src/edit-page-layout-types.d.ts +206 -38
- package/dist/lib/components/edit-page-layout/src/edit-page-layout.vue.d.ts +66 -10
- package/dist/lib/components/edit-page-layout/src/types.d.ts +1 -0
- package/dist/lib/components/editor/index.d.ts +31 -0
- package/dist/lib/components/editor/src/index.vue.d.ts +28 -0
- package/dist/lib/components/field-select-modal/index.d.ts +150 -0
- package/dist/lib/components/field-select-modal/src/field-select-modal-types.d.ts +85 -0
- package/dist/lib/components/field-select-modal/src/field-select-modal.vue.d.ts +146 -0
- package/dist/lib/components/field-select-modal/src/use-field-select-modal.d.ts +6 -0
- package/dist/lib/components/index.d.ts +23 -3
- package/dist/lib/components/item-wrap/index.d.ts +57 -0
- package/dist/lib/components/item-wrap/src/item-wrap-types.d.ts +27 -0
- package/dist/lib/components/item-wrap/src/item-wrap.vue.d.ts +53 -0
- package/dist/lib/components/item-wrap/src/use-item-wrap.d.ts +2 -0
- package/dist/lib/components/layout/index.d.ts +93 -12
- package/dist/lib/components/layout/src/header/index.vue.d.ts +109 -76
- package/dist/lib/components/layout/src/header/navRight/customMessage.vue.d.ts +8 -17
- package/dist/lib/components/layout/src/header/navRight/customPerson.vue.d.ts +15 -2
- package/dist/lib/components/layout/src/header/navRight/index.vue.d.ts +99 -61
- package/dist/lib/components/layout/src/header/navRight/langSwitch.vue.d.ts +26 -6
- package/dist/lib/components/layout/src/header/navRight/rightTool.vue.d.ts +22 -39
- package/dist/lib/components/layout/src/header/navRight/settingDrawer.vue.d.ts +34 -0
- package/dist/lib/components/layout/src/index.vue.d.ts +93 -26
- package/dist/lib/components/layout/src/menu/deepCycleSubMenu.vue.d.ts +4 -1
- package/dist/lib/components/layout/src/menu/menu.vue.d.ts +56 -72
- package/dist/lib/components/layout/src/menu/secondLevelMenu.vue.d.ts +4 -22
- package/dist/lib/components/layout/src/menu/subSecondMenu.vue.d.ts +3 -21
- package/dist/lib/components/layout/src/sider/index.vue.d.ts +23 -24
- package/dist/lib/components/layout/src/sider/logo.vue.d.ts +1 -10
- package/dist/lib/components/layout/src/sider/search.vue.d.ts +77 -2
- package/dist/lib/components/layout/src/types.d.ts +68 -0
- package/dist/lib/components/{layout-auchor → layout-anchor}/index.d.ts +9 -6
- package/dist/lib/components/{layout-auchor/src/layout-auchor-types.d.ts → layout-anchor/src/layout-anchor-types.d.ts} +3 -3
- package/dist/lib/components/{layout-auchor → layout-anchor}/src/layout-auchor.vue.d.ts +6 -3
- package/dist/lib/components/layout-anchor/src/use-layout-anchor.d.ts +2 -0
- package/dist/lib/components/layout-buttons/index.d.ts +38 -1
- package/dist/lib/components/layout-buttons/src/layout-buttons-types.d.ts +16 -0
- package/dist/lib/components/layout-buttons/src/layout-buttons.vue.d.ts +38 -1
- package/dist/lib/components/layout-buttons/src/use-layout-buttons.d.ts +1 -1
- package/dist/lib/components/layout-pattern/index.d.ts +7 -13
- package/dist/lib/components/layout-pattern/src/components/vertical.vue.d.ts +34 -4
- package/dist/lib/components/layout-pattern/src/layout-pattern-types.d.ts +3 -5
- package/dist/lib/components/layout-pattern/src/layout-pattern.vue.d.ts +7 -13
- package/dist/lib/components/list-page-layout/index.d.ts +244 -0
- package/dist/lib/components/list-page-layout/src/components/common/add-modal/add-modal.vue.d.ts +21 -0
- package/dist/lib/components/list-page-layout/src/components/common/columnSetting/columnSetting.vue.d.ts +293 -0
- package/dist/lib/components/list-page-layout/src/components/common/columnSetting/use-grid-slot-hook.d.ts +22 -0
- package/dist/lib/components/list-page-layout/src/components/common/edit-nav-modal/edit-nav-modal.vue.d.ts +16 -0
- package/dist/lib/components/list-page-layout/src/components/common/edit-nav-modal/types.d.ts +4 -0
- package/dist/lib/components/list-page-layout/src/components/common/help-text-modal/help-text-modal.vue.d.ts +8 -0
- package/dist/lib/components/list-page-layout/src/components/common/import-modal/import-modal.vue.d.ts +40 -0
- package/dist/lib/components/list-page-layout/src/components/common/record-modal/mock.d.ts +48 -0
- package/dist/lib/components/list-page-layout/src/components/common/record-modal/record-modal.vue.d.ts +5088 -0
- package/dist/lib/components/list-page-layout/src/components/list-content/events-helper.d.ts +13 -0
- package/dist/lib/components/list-page-layout/src/components/list-content/list-content.vue.d.ts +95 -0
- package/dist/lib/components/list-page-layout/src/components/list-content-buttons/events-helper.d.ts +6 -0
- package/dist/lib/components/list-page-layout/src/components/list-content-buttons/list-content-buttons.vue.d.ts +33 -0
- package/dist/lib/components/list-page-layout/src/components/list-header/list-header.vue.d.ts +27 -0
- package/dist/lib/components/list-page-layout/src/components/list-header/module/query/index.vue.d.ts +15 -0
- package/dist/lib/components/list-page-layout/src/components/list-header/module/quick-nav/index.vue.d.ts +9 -0
- package/dist/lib/components/list-page-layout/src/components/list-header/module/searchExtend/index.vue.d.ts +103 -0
- package/dist/lib/components/list-page-layout/src/components/list-header/module/tabs/index.vue.d.ts +56 -0
- package/dist/lib/components/list-page-layout/src/hooks/export-xls-hook.d.ts +4 -0
- package/dist/lib/components/list-page-layout/src/hooks/fetch-data-hook.d.ts +5 -0
- package/dist/lib/components/list-page-layout/src/hooks/fetch-head-data-hook.d.ts +6 -0
- package/dist/lib/components/list-page-layout/src/hooks/get-columns-hook.d.ts +6 -0
- package/dist/lib/components/list-page-layout/src/hooks/list-slot-hook.d.ts +9 -0
- package/dist/lib/components/list-page-layout/src/hooks/use-button-function-hook.d.ts +13 -0
- package/dist/lib/components/list-page-layout/src/layout.vue.d.ts +238 -0
- package/dist/lib/components/list-page-layout/src/list-page-layout-types.d.ts +358 -0
- package/dist/lib/components/list-page-layout/src/symbol.d.ts +11 -0
- package/dist/lib/components/list-page-layout/src/tokens.d.ts +12 -0
- package/dist/lib/components/list-page-layout/src/types.d.ts +1 -0
- package/dist/lib/components/list-page-layout/src/utils/gridConfig.d.ts +174 -0
- package/dist/lib/components/page-layout/index.d.ts +11 -1
- package/dist/lib/components/page-layout/src/constant/buttons.d.ts +10 -0
- package/dist/lib/components/page-layout/src/constant/index.d.ts +3 -0
- package/dist/lib/components/page-layout/src/constant/items.d.ts +3 -0
- package/dist/lib/components/page-layout/src/constant/symbol.d.ts +15 -0
- package/dist/lib/components/page-layout/src/hook/use-merge-defaultValues-hook.d.ts +6 -0
- package/dist/lib/components/page-layout/src/hook/use-page-data-hook.d.ts +6 -0
- package/dist/lib/components/page-layout/src/hook/use-promise-step.d.ts +26 -0
- package/dist/lib/components/page-layout/src/hook/use-ref-instance-hook.d.ts +7 -0
- package/dist/lib/components/page-layout/src/hook/use-remote-config-hook.d.ts +5 -2
- package/dist/lib/components/page-layout/src/page-layout.vue.d.ts +6 -1
- package/dist/lib/components/page-layout/src/token.d.ts +7 -1
- package/dist/lib/components/page-layout/src/util.d.ts +10 -35
- package/dist/lib/components/radio/index.d.ts +104 -0
- package/dist/lib/components/radio/src/radio-types.d.ts +56 -0
- package/dist/lib/components/radio/src/radio.vue.d.ts +100 -0
- package/dist/lib/components/radio/src/use-radio.d.ts +2 -0
- package/dist/lib/components/remote-select/index.d.ts +122 -0
- package/dist/lib/components/remote-select/src/remote-select-types.d.ts +50 -0
- package/dist/lib/components/remote-select/src/remote-select.vue.d.ts +118 -0
- package/dist/lib/components/remote-select/src/use-remote-select.d.ts +6 -0
- package/dist/lib/components/select/index.d.ts +10 -41
- package/dist/lib/components/select/src/select-types.d.ts +4 -15
- package/dist/lib/components/select/src/select.vue.d.ts +10 -41
- package/dist/lib/components/select/src/use-select.d.ts +2 -2
- package/dist/lib/components/select-modal/index.d.ts +329 -0
- package/dist/lib/components/select-modal/src/select-modal-types.d.ts +51 -0
- package/dist/lib/components/select-modal/src/select-modal.vue.d.ts +325 -0
- package/dist/lib/components/select-modal/src/use-select-modal.d.ts +6 -0
- package/dist/lib/components/shared/hooks/use-namespace-last.d.ts +23 -0
- package/dist/lib/components/shared/hooks/use-namespace.d.ts +3 -3
- package/dist/lib/components/switch/index.d.ts +2 -4
- package/dist/lib/components/switch/src/switch-types.d.ts +0 -2
- package/dist/lib/components/switch/src/switch.vue.d.ts +2 -4
- package/dist/lib/components/tree-select/index.d.ts +114 -0
- package/dist/lib/components/tree-select/src/tree-select-types.d.ts +60 -0
- package/dist/lib/components/tree-select/src/tree-select.vue.d.ts +110 -0
- package/dist/lib/components/tree-select/src/use-tree-select.d.ts +2 -0
- package/dist/lib/components/upload-file/index.d.ts +266 -0
- package/dist/lib/components/upload-file/src/hook/use-file-column-hook.d.ts +20 -0
- package/dist/lib/components/upload-file/src/hook/use-operation-column-button-hook.d.ts +11 -0
- package/dist/lib/components/upload-file/src/hook/use-operation-column-hook.d.ts +15 -0
- package/dist/lib/components/upload-file/src/upload-file-types.d.ts +154 -0
- package/dist/lib/components/upload-file/src/upload-file.vue.d.ts +258 -0
- package/dist/lib/components/upload-image/index.d.ts +191 -0
- package/dist/lib/components/upload-image/src/upload-image-type.d.ts +53 -0
- package/dist/lib/components/upload-image/src/upload-image.vue.d.ts +187 -0
- package/dist/lib/components/vxe-select/index.d.ts +116 -0
- package/dist/lib/components/vxe-select/src/use-vxe-select.d.ts +2 -0
- package/dist/lib/components/vxe-select/src/vxe-select-types.d.ts +58 -0
- package/dist/lib/components/vxe-select/src/vxe-select.vue.d.ts +112 -0
- package/dist/lib/index.d.ts +16 -2
- package/dist/lib/setting/vxe-table/config.d.ts +3 -0
- package/dist/lib/utils/event.d.ts +37 -0
- package/dist/router/index.d.ts +4 -0
- package/dist/stores/user.d.ts +25 -0
- package/dist/style.css +6 -8
- package/dist/utils/qApiPlugin.d.ts +6 -0
- package/dist/views/dashboard/workspace.vue.d.ts +6972 -0
- package/dist/vite-env.d.ts +15 -0
- package/package.json +17 -4
- package/dist/lib/components/layout/src/menu/icon.d.ts +0 -6
- package/dist/lib/components/layout-auchor/src/use-layout-auchor.d.ts +0 -2
- package/dist/lib/components/layout-header/index.d.ts +0 -17
- package/dist/lib/components/layout-header/src/layout-header-types.d.ts +0 -8
- package/dist/lib/components/layout-header/src/layout-header.vue.d.ts +0 -13
- package/dist/lib/components/layout-header/src/use-layout-header.d.ts +0 -2
- package/dist/lib/constant/constant.d.ts +0 -1
- package/dist/lib/types/ComponentCustomProperties .d.ts +0 -6
|
@@ -0,0 +1,260 @@
|
|
|
1
|
+
export declare const currentRow: {
|
|
2
|
+
bidingDocCost: number;
|
|
3
|
+
templateNumber: string;
|
|
4
|
+
mustMaterialNumber: string;
|
|
5
|
+
biddingType: string;
|
|
6
|
+
purchaseRemark: string;
|
|
7
|
+
companyName: null;
|
|
8
|
+
showProbeList_dictText: string;
|
|
9
|
+
securityCost: number;
|
|
10
|
+
localCurrency: string;
|
|
11
|
+
purchasePrincipal: string;
|
|
12
|
+
resultNotice: string;
|
|
13
|
+
biddingProjectStatus: string;
|
|
14
|
+
bidBeginTime_DateMaps: number;
|
|
15
|
+
publishTime_DateMaps: number;
|
|
16
|
+
deleted_dictText: string;
|
|
17
|
+
supplierTaxRate: string;
|
|
18
|
+
busAccount: string;
|
|
19
|
+
evaEndTime: string;
|
|
20
|
+
id: string;
|
|
21
|
+
bidEndTime: string;
|
|
22
|
+
fax: string;
|
|
23
|
+
extendField: string;
|
|
24
|
+
echoEndTime: null;
|
|
25
|
+
publishTime: string;
|
|
26
|
+
needEcho_dictText: null;
|
|
27
|
+
currentById: null;
|
|
28
|
+
publishUser: string;
|
|
29
|
+
paymentWay: string;
|
|
30
|
+
confirmBidBy: string;
|
|
31
|
+
selections: null;
|
|
32
|
+
injectionEls: boolean;
|
|
33
|
+
templateVersion: number;
|
|
34
|
+
purchaseGroup: string;
|
|
35
|
+
quoteType_dictText: string;
|
|
36
|
+
confirmBidIp: string;
|
|
37
|
+
currentRound: number;
|
|
38
|
+
fbk11: string;
|
|
39
|
+
fbk10: string;
|
|
40
|
+
createTime_DateMaps: number;
|
|
41
|
+
publishAudit: string;
|
|
42
|
+
bidEndTime_DateMaps: number;
|
|
43
|
+
needEcho: string;
|
|
44
|
+
quoteType: string;
|
|
45
|
+
showProbeList: string;
|
|
46
|
+
openControl: string;
|
|
47
|
+
bidEvaluationEnd_dictText: null;
|
|
48
|
+
purchaseOrgName: null;
|
|
49
|
+
biddingSummary: null;
|
|
50
|
+
contactAddr: string;
|
|
51
|
+
supplierQualification: string;
|
|
52
|
+
fbk15: string;
|
|
53
|
+
fbk14: string;
|
|
54
|
+
currency: string;
|
|
55
|
+
fbk13: string;
|
|
56
|
+
fbk12: string;
|
|
57
|
+
fbk19: string;
|
|
58
|
+
fbk18: string;
|
|
59
|
+
bidEvaluationName: string;
|
|
60
|
+
email: string;
|
|
61
|
+
fbk17: string;
|
|
62
|
+
fbk16: string;
|
|
63
|
+
dataVersion: number;
|
|
64
|
+
fbk20: string;
|
|
65
|
+
workFlowType: string;
|
|
66
|
+
bidBeginTime: string;
|
|
67
|
+
biddingProjectStatus_dictText: string;
|
|
68
|
+
openBidPassword: null;
|
|
69
|
+
purchaseGroupName: null;
|
|
70
|
+
updateTime: string;
|
|
71
|
+
projectStatus_dictText: string;
|
|
72
|
+
bidEvaluationNumber: string;
|
|
73
|
+
updateById: string;
|
|
74
|
+
keyWord: null;
|
|
75
|
+
fundSource: string;
|
|
76
|
+
participateQuantity: number;
|
|
77
|
+
biddingStatus_dictText: string;
|
|
78
|
+
deleted: number;
|
|
79
|
+
resultAuditStatus: string;
|
|
80
|
+
applyBeginTime_DateMaps: number;
|
|
81
|
+
partEcho: string;
|
|
82
|
+
createTime: string;
|
|
83
|
+
auditStatus: string;
|
|
84
|
+
createById: string;
|
|
85
|
+
supplierScope: string;
|
|
86
|
+
buyBidDocEndTime: null;
|
|
87
|
+
planOpenBidTime_DateMaps: number;
|
|
88
|
+
accessCategoryFilter: null;
|
|
89
|
+
applyEndTime_DateMaps: number;
|
|
90
|
+
openBidAlertMinute: number;
|
|
91
|
+
replyQuantity: null;
|
|
92
|
+
againQuote: string;
|
|
93
|
+
publicScope: string;
|
|
94
|
+
tradeCondition: string;
|
|
95
|
+
sendTargetPrice: string;
|
|
96
|
+
openPlace: null;
|
|
97
|
+
economyRate: number;
|
|
98
|
+
applyBeginTime: string;
|
|
99
|
+
buyBidDocBeginTime: null;
|
|
100
|
+
exchangeRate: string;
|
|
101
|
+
realityOpenBidTime: null;
|
|
102
|
+
publicScope_dictText: string;
|
|
103
|
+
biddingNumber: string;
|
|
104
|
+
purchaseOrg: string;
|
|
105
|
+
bidEvaluationWay: string;
|
|
106
|
+
test: string;
|
|
107
|
+
controlWay: string;
|
|
108
|
+
economyAmount: number;
|
|
109
|
+
taxCode: string;
|
|
110
|
+
taxRate: string;
|
|
111
|
+
accessCategoryFilter_dictText: null;
|
|
112
|
+
bidEvaluationEnd: string;
|
|
113
|
+
resultSendWay: string;
|
|
114
|
+
documentParentId: null;
|
|
115
|
+
projectName: string;
|
|
116
|
+
projectId: string;
|
|
117
|
+
confirmBidWay: string;
|
|
118
|
+
quotaWay: string;
|
|
119
|
+
applyEndTime: string;
|
|
120
|
+
fbk9: string;
|
|
121
|
+
fbk8: string;
|
|
122
|
+
fbk7: string;
|
|
123
|
+
fbk6: string;
|
|
124
|
+
bidThirdType: null;
|
|
125
|
+
inviteQuantity: number;
|
|
126
|
+
fbk5: string;
|
|
127
|
+
createType: string;
|
|
128
|
+
fbk4: string;
|
|
129
|
+
fbk3: string;
|
|
130
|
+
elsStatusLogList: null;
|
|
131
|
+
fbk2: string;
|
|
132
|
+
fbk1: string;
|
|
133
|
+
priceCreateWay: string;
|
|
134
|
+
updateBy: string;
|
|
135
|
+
bidEvaluationWay_dictText: string;
|
|
136
|
+
evaEndTime_DateMaps: number;
|
|
137
|
+
contactNumber: string;
|
|
138
|
+
buyBidingDoc: string;
|
|
139
|
+
company: string;
|
|
140
|
+
bidSecondType: null;
|
|
141
|
+
flowId: string;
|
|
142
|
+
biddingDesc: string;
|
|
143
|
+
resultFlowId: string;
|
|
144
|
+
updateTime_DateMaps: number;
|
|
145
|
+
paymentCondition: string;
|
|
146
|
+
projectNumber: string;
|
|
147
|
+
planOpenBidTime: string;
|
|
148
|
+
resultAudit: string;
|
|
149
|
+
elsAccount: string;
|
|
150
|
+
awardBidWay: string;
|
|
151
|
+
generateContract_dictText: string;
|
|
152
|
+
createBy_dictText: string;
|
|
153
|
+
templateAccount: string;
|
|
154
|
+
projectStatus: string;
|
|
155
|
+
createBy: string;
|
|
156
|
+
templateName: string;
|
|
157
|
+
budgetAmount: number;
|
|
158
|
+
updateBy_dictText: string;
|
|
159
|
+
tradeCondition_dictText: null;
|
|
160
|
+
documentId: null;
|
|
161
|
+
qualificationReview: string;
|
|
162
|
+
generateContract: string;
|
|
163
|
+
biddingStatus: string;
|
|
164
|
+
};
|
|
165
|
+
export declare const userInfo: {
|
|
166
|
+
accountValidityDate: null;
|
|
167
|
+
activitiSync: null;
|
|
168
|
+
address: string;
|
|
169
|
+
addressLabel: null;
|
|
170
|
+
aliasName: null;
|
|
171
|
+
avatar: string;
|
|
172
|
+
birthday: number;
|
|
173
|
+
createBy: null;
|
|
174
|
+
createById: string;
|
|
175
|
+
createTime: string;
|
|
176
|
+
deleted: number;
|
|
177
|
+
elsAccount: string;
|
|
178
|
+
elsStatusLogList: null;
|
|
179
|
+
email: string;
|
|
180
|
+
enterpriseLogo: null;
|
|
181
|
+
enterpriseName: null;
|
|
182
|
+
fbk1: string;
|
|
183
|
+
fbk10: string;
|
|
184
|
+
fbk2: string;
|
|
185
|
+
fbk3: string;
|
|
186
|
+
fbk4: string;
|
|
187
|
+
fbk5: string;
|
|
188
|
+
fbk6: string;
|
|
189
|
+
fbk7: string;
|
|
190
|
+
fbk8: string;
|
|
191
|
+
fbk9: string;
|
|
192
|
+
id: string;
|
|
193
|
+
injectionEls: boolean;
|
|
194
|
+
interfaceMessage: string;
|
|
195
|
+
interfaceMsg: null;
|
|
196
|
+
interfaceStatus: string;
|
|
197
|
+
keyWord: null;
|
|
198
|
+
languageMap: null;
|
|
199
|
+
orgCode: string;
|
|
200
|
+
orgCode_dictText: null;
|
|
201
|
+
password: null;
|
|
202
|
+
phone: string;
|
|
203
|
+
post: string;
|
|
204
|
+
postcode: string;
|
|
205
|
+
realname: string;
|
|
206
|
+
returnState: null;
|
|
207
|
+
salt: null;
|
|
208
|
+
secret: null;
|
|
209
|
+
selectedroles: null;
|
|
210
|
+
selectedroles_dictText: null;
|
|
211
|
+
selections: null;
|
|
212
|
+
sensitiveFieldGroups: string;
|
|
213
|
+
serivceUrl: string;
|
|
214
|
+
sex: number;
|
|
215
|
+
sourceId: string;
|
|
216
|
+
sourceSystem: string;
|
|
217
|
+
sourceType: null;
|
|
218
|
+
status: number;
|
|
219
|
+
subAccount: string;
|
|
220
|
+
subaccountOrgList: never[];
|
|
221
|
+
superiorLeader: string;
|
|
222
|
+
telephone: string;
|
|
223
|
+
updateBy: string;
|
|
224
|
+
updateById: string;
|
|
225
|
+
updateTime: string;
|
|
226
|
+
userCurreny: {
|
|
227
|
+
'111111': string;
|
|
228
|
+
AA001: string;
|
|
229
|
+
};
|
|
230
|
+
userOrg: {
|
|
231
|
+
companyCode: string;
|
|
232
|
+
factory: string;
|
|
233
|
+
locationList: string[];
|
|
234
|
+
factoryList: string[];
|
|
235
|
+
purchaseGroupList: string[];
|
|
236
|
+
deptList: string[];
|
|
237
|
+
purchaseOrganizationList: string[];
|
|
238
|
+
companyCodeList: string[];
|
|
239
|
+
purchaseOrganization: string;
|
|
240
|
+
purchaseGroup: string;
|
|
241
|
+
location: string;
|
|
242
|
+
dept: string;
|
|
243
|
+
};
|
|
244
|
+
workNo: string;
|
|
245
|
+
};
|
|
246
|
+
export declare const formFieldsInputTypeConfig: {
|
|
247
|
+
groupCode: string;
|
|
248
|
+
sortOrder: string;
|
|
249
|
+
fieldType: string;
|
|
250
|
+
fieldLabel: string;
|
|
251
|
+
fieldLabelI18nKey: string;
|
|
252
|
+
fieldName: string;
|
|
253
|
+
dictCode: string;
|
|
254
|
+
defaultValue: string;
|
|
255
|
+
dataFormat: string;
|
|
256
|
+
helpText: string;
|
|
257
|
+
alertMsg: string;
|
|
258
|
+
mobile: number;
|
|
259
|
+
placeholder: string;
|
|
260
|
+
};
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
export declare const tags: {
|
|
2
|
+
code: number;
|
|
3
|
+
message: string;
|
|
4
|
+
result: {
|
|
5
|
+
label: string;
|
|
6
|
+
tabList: ({
|
|
7
|
+
fileName: string;
|
|
8
|
+
rejectReason: null;
|
|
9
|
+
title: string;
|
|
10
|
+
total: number;
|
|
11
|
+
value: null;
|
|
12
|
+
} | {
|
|
13
|
+
fileName: string;
|
|
14
|
+
rejectReason: null;
|
|
15
|
+
title: string;
|
|
16
|
+
total: number;
|
|
17
|
+
value: string;
|
|
18
|
+
})[];
|
|
19
|
+
};
|
|
20
|
+
success: boolean;
|
|
21
|
+
timestamp: number;
|
|
22
|
+
};
|
|
23
|
+
export declare const filterTags: {
|
|
24
|
+
code: number;
|
|
25
|
+
message: string;
|
|
26
|
+
result: {
|
|
27
|
+
label: string;
|
|
28
|
+
tabList: ({
|
|
29
|
+
fileName: string;
|
|
30
|
+
rejectReason: null;
|
|
31
|
+
title: string;
|
|
32
|
+
total: number;
|
|
33
|
+
value: null;
|
|
34
|
+
} | {
|
|
35
|
+
fileName: string;
|
|
36
|
+
rejectReason: null;
|
|
37
|
+
title: string;
|
|
38
|
+
total: number;
|
|
39
|
+
value: string;
|
|
40
|
+
})[];
|
|
41
|
+
};
|
|
42
|
+
success: boolean;
|
|
43
|
+
timestamp: number;
|
|
44
|
+
};
|