ydb-components-material 0.1.87 → 0.1.89
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/build/docs/404.html +3 -3
- package/build/docs/_demos/:uuid +3 -3
- package/build/docs/colorful-button.html +3 -3
- package/build/docs/colorful-input.html +3 -3
- package/build/docs/index.html +3 -3
- package/build/docs/umi.6ffa9be4.js +1 -0
- package/build/docs/{umi.507b3306.css → umi.fd11a37a.css} +1 -1
- package/build/docs/~demos/:uuid.html +3 -3
- package/build/docs/~demos/colorful-button-demo.html +3 -3
- package/build/docs/~demos/colorful-input-demo.html +3 -3
- package/build/lowcode/assets-daily.json +11 -11
- package/build/lowcode/assets-dev.json +2 -2
- package/build/lowcode/assets-prod.json +11 -11
- package/build/lowcode/index.js +1 -1
- package/build/lowcode/meta.js +1 -1
- package/build/lowcode/preview.js +9 -9
- package/build/lowcode/render/default/view.css +1 -1
- package/build/lowcode/render/default/view.js +2 -2
- package/build/lowcode/view.css +1 -1
- package/build/lowcode/view.js +2 -2
- package/dist/BizComps.css +1 -1
- package/dist/BizComps.js +5 -5
- package/dist/BizComps.js.map +1 -1
- package/es/components/file-list/checkPoint.d.ts +3 -0
- package/es/components/file-list/checkPoint.js +157 -0
- package/es/components/file-list/checkPoint.scss +120 -0
- package/es/components/file-list/file.js +224 -0
- package/es/components/file-list/icon/checked.svg +1 -0
- package/es/components/file-list/icon/close.svg +1 -0
- package/es/components/file-list/icon/del.svg +1 -0
- package/es/components/file-list/icon/download.svg +1 -0
- package/es/components/file-list/icon/download_pc.svg +1 -0
- package/es/components/file-list/icon/file.svg +1 -0
- package/es/components/file-list/icon/icon_errorMsg.svg +1 -0
- package/es/components/file-list/icon/icon_warning.svg +1 -0
- package/es/components/file-list/icon/preview.svg +1 -0
- package/es/components/file-list/icon/preview_pc.svg +1 -0
- package/es/components/file-list/icon/upload.svg +1 -0
- package/es/components/file-list/icon/view.svg +1 -0
- package/es/components/file-list/index.d.ts +21 -0
- package/es/components/file-list/index.js +258 -0
- package/es/components/file-list/index.scss +61 -0
- package/es/components/file-list/item.d.ts +27 -0
- package/es/components/file-list/item.js +854 -0
- package/es/components/file-list/item.scss +412 -0
- package/es/components/file-list/seal.d.ts +3 -0
- package/es/components/file-list/seal.js +222 -0
- package/es/components/file-list/sealUtil.js +252 -0
- package/es/components/file-list/sign.d.ts +3 -0
- package/es/components/file-list/sign.js +138 -0
- package/es/components/file-list/signUtil.js +369 -0
- package/es/index.d.ts +2 -0
- package/es/index.js +1 -0
- package/es/style.js +1 -0
- package/lib/components/file-list/checkPoint.d.ts +3 -0
- package/lib/components/file-list/checkPoint.js +162 -0
- package/lib/components/file-list/checkPoint.scss +120 -0
- package/lib/components/file-list/file.js +233 -0
- package/lib/components/file-list/icon/checked.svg +1 -0
- package/lib/components/file-list/icon/close.svg +1 -0
- package/lib/components/file-list/icon/del.svg +1 -0
- package/lib/components/file-list/icon/download.svg +1 -0
- package/lib/components/file-list/icon/download_pc.svg +1 -0
- package/lib/components/file-list/icon/file.svg +1 -0
- package/lib/components/file-list/icon/icon_errorMsg.svg +1 -0
- package/lib/components/file-list/icon/icon_warning.svg +1 -0
- package/lib/components/file-list/icon/preview.svg +1 -0
- package/lib/components/file-list/icon/preview_pc.svg +1 -0
- package/lib/components/file-list/icon/upload.svg +1 -0
- package/lib/components/file-list/icon/view.svg +1 -0
- package/lib/components/file-list/index.d.ts +21 -0
- package/lib/components/file-list/index.js +263 -0
- package/lib/components/file-list/index.scss +61 -0
- package/lib/components/file-list/item.d.ts +27 -0
- package/lib/components/file-list/item.js +860 -0
- package/lib/components/file-list/item.scss +412 -0
- package/lib/components/file-list/seal.d.ts +3 -0
- package/lib/components/file-list/seal.js +228 -0
- package/lib/components/file-list/sealUtil.js +254 -0
- package/lib/components/file-list/sign.d.ts +3 -0
- package/lib/components/file-list/sign.js +144 -0
- package/lib/components/file-list/signUtil.js +371 -0
- package/lib/index.d.ts +2 -0
- package/lib/index.js +3 -1
- package/lib/style.js +1 -0
- package/lowcode/file-list/meta.ts +231 -0
- package/lowcode_es/_setter/IconSelectSetter.js +1 -1
- package/lowcode_es/file-list/meta.d.ts +22 -0
- package/lowcode_es/file-list/meta.js +213 -0
- package/lowcode_es/meta.js +3 -2
- package/lowcode_lib/_setter/IconSelectSetter.js +1 -1
- package/lowcode_lib/file-list/meta.d.ts +22 -0
- package/lowcode_lib/file-list/meta.js +218 -0
- package/lowcode_lib/meta.js +14 -13
- package/package.json +5 -4
- package/build/docs/umi.5298404d.js +0 -1
|
@@ -0,0 +1,233 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
exports.__esModule = true;
|
|
4
|
+
exports.dataURLtoBlob = dataURLtoBlob;
|
|
5
|
+
exports.getBlob = getBlob;
|
|
6
|
+
exports.getFileExtension = getFileExtension;
|
|
7
|
+
exports.initFormat = void 0;
|
|
8
|
+
exports.upload = upload;
|
|
9
|
+
exports.uploadFilePromise = uploadFilePromise;
|
|
10
|
+
// import apiConfig from '@/config/api.cofig'
|
|
11
|
+
|
|
12
|
+
// 下载文件
|
|
13
|
+
function getBlob(url) {
|
|
14
|
+
return new Promise(function (resolve, reject) {
|
|
15
|
+
var xhr = new XMLHttpRequest();
|
|
16
|
+
xhr.open('GET', url, true);
|
|
17
|
+
xhr.responseType = 'blob';
|
|
18
|
+
xhr.onload = function () {
|
|
19
|
+
if (xhr.status === 200) {
|
|
20
|
+
resolve(xhr.response);
|
|
21
|
+
} else {
|
|
22
|
+
reject("Request failed with status " + xhr.status);
|
|
23
|
+
}
|
|
24
|
+
};
|
|
25
|
+
xhr.onerror = function () {
|
|
26
|
+
reject('Request failed');
|
|
27
|
+
};
|
|
28
|
+
xhr.send();
|
|
29
|
+
});
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
// 上传文件
|
|
33
|
+
function upload(option) {
|
|
34
|
+
var xhr = new XMLHttpRequest(); // 定义上传方式
|
|
35
|
+
|
|
36
|
+
if (option.onProgress && xhr.upload) {
|
|
37
|
+
xhr.upload.onprogress = function progress(e) {
|
|
38
|
+
if (e.total > 0) {
|
|
39
|
+
e.percent = e.loaded / e.total * 100;
|
|
40
|
+
}
|
|
41
|
+
option.onProgress(e); // 上传进度,也是上传成功后回调
|
|
42
|
+
};
|
|
43
|
+
}
|
|
44
|
+
var formData = new FormData();
|
|
45
|
+
formData.append('file', option.file, option.file.name);
|
|
46
|
+
if (option.title) {
|
|
47
|
+
formData.append('title', option.title);
|
|
48
|
+
}
|
|
49
|
+
if (option.fileType) {
|
|
50
|
+
formData.append('fileType', option.fileType);
|
|
51
|
+
}
|
|
52
|
+
xhr.onerror = function error(e) {
|
|
53
|
+
option.onError(e); // 失败返回
|
|
54
|
+
};
|
|
55
|
+
xhr.onload = function onload() {
|
|
56
|
+
if (xhr.status !== 200) {
|
|
57
|
+
return option.onError(JSON.parse(xhr.response));
|
|
58
|
+
}
|
|
59
|
+
option.onSuccess(JSON.parse(xhr.response)); // 成功返回函数
|
|
60
|
+
};
|
|
61
|
+
xhr.open('post', option.action, true);
|
|
62
|
+
if (option.withCredentials && 'withCredentials' in xhr) {
|
|
63
|
+
xhr.withCredentials = true;
|
|
64
|
+
}
|
|
65
|
+
var headers = option.headers || {}; // 定义请求头
|
|
66
|
+
if (headers['X-Requested-With'] !== null) {
|
|
67
|
+
xhr.setRequestHeader('X-Requested-With', 'XMLHttpRequest');
|
|
68
|
+
}
|
|
69
|
+
for (var h in headers) {
|
|
70
|
+
if (headers.hasOwnProperty(h) && headers[h] !== null) {
|
|
71
|
+
xhr.setRequestHeader(h, headers[h]);
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
xhr.send(formData);
|
|
75
|
+
return {
|
|
76
|
+
abort: function abort() {
|
|
77
|
+
xhr.abort();
|
|
78
|
+
}
|
|
79
|
+
};
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
// 获取文件名后缀
|
|
83
|
+
function getFileExtension(filename) {
|
|
84
|
+
var match = filename.match(/\.([^.]+)$/);
|
|
85
|
+
return match ? match[1].toLowerCase() : '';
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
// base64转换为流文件
|
|
89
|
+
function dataURLtoBlob(dataUrl) {
|
|
90
|
+
var arr = dataUrl.split(',');
|
|
91
|
+
var mime = arr[0].match(/:(.*?);/)[1];
|
|
92
|
+
var bstr = atob(arr[1]);
|
|
93
|
+
var n = bstr.length;
|
|
94
|
+
var u8arr = new Uint8Array(n);
|
|
95
|
+
while (n--) {
|
|
96
|
+
u8arr[n] = bstr.charCodeAt(n);
|
|
97
|
+
}
|
|
98
|
+
return new Blob([u8arr], {
|
|
99
|
+
type: mime
|
|
100
|
+
});
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
// 上传文件至申报端的服务器 [方法]
|
|
104
|
+
function uploadFilePromise(url, config) {
|
|
105
|
+
console.log('uploadFilePromise', config);
|
|
106
|
+
return new Promise(function (resolve, reject) {
|
|
107
|
+
var formData = new FormData();
|
|
108
|
+
formData.append('file', url);
|
|
109
|
+
formData.append('open', true);
|
|
110
|
+
formData.append('open', 'true');
|
|
111
|
+
fetch(config.baseUrl + "/declaration/material/file/files/api", {
|
|
112
|
+
method: 'POST',
|
|
113
|
+
body: formData,
|
|
114
|
+
headers: {
|
|
115
|
+
Authorization: config.tokenTY
|
|
116
|
+
}
|
|
117
|
+
}).then(function (response) {
|
|
118
|
+
return response.json();
|
|
119
|
+
}).then(function (res) {
|
|
120
|
+
resolve(res);
|
|
121
|
+
// if (res.fileId) {
|
|
122
|
+
// valChange({
|
|
123
|
+
// ...res,
|
|
124
|
+
// name: fileData.name,
|
|
125
|
+
// type: fileData.type
|
|
126
|
+
// })
|
|
127
|
+
// // Message.notice('上传成功')
|
|
128
|
+
// } else {
|
|
129
|
+
// // Message.error('上传失败,请重试')
|
|
130
|
+
// }
|
|
131
|
+
})["catch"](function (err) {
|
|
132
|
+
return err;
|
|
133
|
+
});
|
|
134
|
+
// uni.uploadFile({
|
|
135
|
+
// url: `${baseURL}/declaration/material/file/files/api`,
|
|
136
|
+
// filePath: url,
|
|
137
|
+
// name: 'file',
|
|
138
|
+
// formData: {
|
|
139
|
+
// // #ifdef H5
|
|
140
|
+
// open: true,
|
|
141
|
+
// // #endif
|
|
142
|
+
// // #ifdef MP-WEIXIN
|
|
143
|
+
// open: 'true'
|
|
144
|
+
// // #endif
|
|
145
|
+
// },
|
|
146
|
+
// header: {
|
|
147
|
+
// Authorization: uni.getStorageSync('declarationAppToken')
|
|
148
|
+
// },
|
|
149
|
+
// success: (res) => {
|
|
150
|
+
// if (res.statusCode === 200) {
|
|
151
|
+
// // resolve(JSON.parse(res.data))
|
|
152
|
+
// resolve({
|
|
153
|
+
// status: 'success',
|
|
154
|
+
// message: '上传成功',
|
|
155
|
+
// ...JSON.parse(res.data)
|
|
156
|
+
// });
|
|
157
|
+
// } else {
|
|
158
|
+
// resolve({
|
|
159
|
+
// status: 'failed',
|
|
160
|
+
// message: '上传失败'
|
|
161
|
+
// })
|
|
162
|
+
// }
|
|
163
|
+
// },
|
|
164
|
+
// fail: (err) => {
|
|
165
|
+
// resolve({
|
|
166
|
+
// status: 'failed',
|
|
167
|
+
// message: '上传失败'
|
|
168
|
+
// })
|
|
169
|
+
// }
|
|
170
|
+
// })
|
|
171
|
+
});
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
// 初始化材料格式 [方法]
|
|
175
|
+
var initFormat = exports.initFormat = function initFormat(materialSpec) {
|
|
176
|
+
var materialSpecArr = materialSpec.split(',');
|
|
177
|
+
var arr = [{
|
|
178
|
+
key: '1',
|
|
179
|
+
value: 'doc'
|
|
180
|
+
}, {
|
|
181
|
+
key: '2',
|
|
182
|
+
value: 'docx'
|
|
183
|
+
}, {
|
|
184
|
+
key: '3',
|
|
185
|
+
value: 'pdf'
|
|
186
|
+
}, {
|
|
187
|
+
key: '4',
|
|
188
|
+
value: 'ofd'
|
|
189
|
+
}, {
|
|
190
|
+
key: '5',
|
|
191
|
+
value: 'xlsx'
|
|
192
|
+
}, {
|
|
193
|
+
key: '6',
|
|
194
|
+
value: 'xls'
|
|
195
|
+
}, {
|
|
196
|
+
key: '7',
|
|
197
|
+
value: 'png'
|
|
198
|
+
}, {
|
|
199
|
+
key: '8',
|
|
200
|
+
value: 'jpg'
|
|
201
|
+
}, {
|
|
202
|
+
key: '9',
|
|
203
|
+
value: 'jpeg'
|
|
204
|
+
}, {
|
|
205
|
+
key: '10',
|
|
206
|
+
value: 'gif'
|
|
207
|
+
}, {
|
|
208
|
+
key: '11',
|
|
209
|
+
value: 'bmp'
|
|
210
|
+
}, {
|
|
211
|
+
key: '12',
|
|
212
|
+
value: 'zip'
|
|
213
|
+
}, {
|
|
214
|
+
key: '13',
|
|
215
|
+
value: 'rar'
|
|
216
|
+
}, {
|
|
217
|
+
key: '14',
|
|
218
|
+
value: 'mp3'
|
|
219
|
+
}, {
|
|
220
|
+
key: '15',
|
|
221
|
+
value: 'mp4'
|
|
222
|
+
}, {
|
|
223
|
+
key: '16',
|
|
224
|
+
value: 'xml'
|
|
225
|
+
}];
|
|
226
|
+
var formatArr = [];
|
|
227
|
+
arr.forEach(function (ele) {
|
|
228
|
+
if (materialSpecArr.includes(ele.key)) {
|
|
229
|
+
formatArr.push(ele.value);
|
|
230
|
+
}
|
|
231
|
+
});
|
|
232
|
+
return formatArr;
|
|
233
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="none" version="1.1" width="14" height="14" viewBox="0 0 14 14"><defs><clipPath id="master_svg0_106_93330"><rect x="0" y="0" width="14" height="14" rx="0"/></clipPath></defs><g clip-path="url(#master_svg0_106_93330)"><g><path d="M7.0020943,14.000407C3.672467,14.005688,0.80125445,11.65946,0.13995513,8.3929729C-0.52134383,5.1264863,1.2108389,1.846483,4.2798362,0.55383289C7.8382812,-0.95109636,11.941765,0.71642286,13.445227,4.2783422C14.948689,7.8402619,13.282796,11.947755,9.7243519,13.452684C8.8629837,13.816712,7.9370847,14.003004,7.0020943,14.000407ZM7.0020943,1.1015548C3.7463284,1.1015548,1.1061484,3.744313,1.1061484,7.0032587C1.1061484,10.262204,3.7463281,12.904963,7.0020943,12.904963C10.25786,12.904963,12.89804,10.262204,12.89804,7.0032587C12.89804,3.744313,10.25786,1.1015548,7.0020943,1.1015548Z" fill="#FFFFFF" fill-opacity="1" style="mix-blend-mode:passthrough"/></g><g><path d="M5.8392997015625,9.782016725C5.694968501562499,9.779958725,5.5572960015625,9.720898625,5.4562683015625,9.617700625000001L2.8297682115625,6.988634825C2.6147319265625,6.773055825,2.6148665585625,6.423844625,2.8300691515625,6.208432225C3.0452717515625,5.9930196250000005,3.3941421515625,5.992884625,3.6095104215625,6.208130825L5.8392997015625,8.453790625L10.4767141015625,3.811847495C10.6920643015625,3.596497122,11.0410194015625,3.596582655,11.2562647015625,3.812038165C11.4715099015625,4.027494105,11.4715958015625,4.376790285,11.2564564015625,4.592351375L6.2223310015625,9.617699625C6.1213033015625005,9.720897625,5.9836309015625,9.779958225,5.8392997015625,9.782016725Z" fill="#FFFFFF" fill-opacity="1" style="mix-blend-mode:passthrough"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="none" version="1.1" width="24" height="24" viewBox="0 0 24 24"><defs><clipPath id="master_svg0_106_93607"><rect x="0" y="0" width="24" height="24" rx="0"/></clipPath></defs><g clip-path="url(#master_svg0_106_93607)"><path d="M10.62774178125,12.00024228125L3.78474200125,5.15724198125C3.40573692325,4.77823618125,3.40573692325,4.16374743125,3.7847423512500002,3.7847423512500002C4.16374779125,3.40573692325,4.77823648125,3.40573692325,5.15724198125,3.78474200125L12.00024228125,10.62774178125L18.843241281250002,3.78474200125C19.222301281249997,3.40605306625,19.83653228125,3.40620327025,20.21540428125,3.78507745125C20.59428028125,4.16395199125,20.59443128125,4.77818178125,20.21574428125,5.15724198125L13.37274168125,12.00024228125L20.21574028125,18.843241281250002C20.59474528125,19.22224728125,20.59474528125,19.83673828125,20.21574028125,20.21574028125C19.83673428125,20.59474528125,19.22224428125,20.59474528125,18.843241281250002,20.21574428125L12.00024228125,13.37274168125L5.15724198125,20.21574428125C4.77818178125,20.59443128125,4.16395163125,20.59428028125,3.78507709125,20.21540428125C3.40620291225,19.83653228125,3.40605306625,19.222301281249997,3.78474200125,18.843241281250002L10.62774178125,12.00024228125Z" fill="#FFFFFF" fill-opacity="1" style="mix-blend-mode:passthrough"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="none" version="1.1" width="16" height="16" viewBox="0 0 16 16"><g><g><ellipse cx="8" cy="8" rx="8" ry="8" fill="#333333" fill-opacity="1"/></g><g><path d="M11.7879457,4.21203609C11.5011454,3.929321304,11.040452,3.929321304,10.753614899999999,4.21203609C10.753614899999999,4.21203609,7.9922135,6.9734569,7.9922135,6.9734569C7.9922135,6.9734569,5.2307363,4.21201725,5.2307363,4.21201725C4.94241077,3.94331019,4.49305326,3.951255418,4.21434879,4.22994111C3.935663126,4.50862682,3.927717894,4.95796555,4.19642495,5.2463286C4.19642495,5.2463286,6.9578644999999995,8.0078058,6.9578644999999995,8.0078058C6.9578644999999995,8.0078058,4.19642495,10.7692451,4.19642495,10.7692451C3.927717894,11.0575709,3.935663126,11.5069466,4.21434879,11.7856331C4.49303442,12.0643187,4.9423731,12.0722647,5.2307363,11.8035569C5.2307363,11.8035569,7.9922135,9.042117099999999,7.9922135,9.042117099999999C7.9922135,9.042117099999999,10.753653,11.8035569,10.753653,11.8035569C11.041997,12.0722647,11.4913545,12.0643187,11.7700396,11.7856331C12.0487261,11.5069466,12.0566711,11.0576091,11.787963900000001,10.7692451C11.787963900000001,10.7692451,9.0265245,8.0078058,9.0265245,8.0078058C9.0265245,8.0078058,11.787963900000001,5.2463286,11.787963900000001,5.2463286C12.0706787,4.95950937,12.0706787,4.49883649,11.787963900000001,4.21201725C11.787963900000001,4.21201725,11.7879457,4.21203609,11.7879457,4.21203609Z" fill="#FFFFFF" fill-opacity="1" style="mix-blend-mode:passthrough"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="none" version="1.1" width="16" height="11.727999687194824" viewBox="0 0 16 11.727999687194824"><g><path d="M16,9.5679989Q16,9.9679985,15.864,10.319999Q15.728001,10.671999,15.488,10.959999Q15.247999,11.247999,14.92,11.431999Q14.592001,11.615999,14.208,11.679999L14.208,11.711999L13.872,11.711999L13.856,11.711999L3.4720001,11.711999Q3.4400001,11.711999,3.4320002,11.719999Q3.4240003,11.728,3.3920002,11.728Q3.3600001,11.728,3.3440001,11.719999Q3.3280001,11.711999,3.296,11.711999L3.2,11.711999L3.2,11.695999Q2.5280001,11.664,1.944,11.391999Q1.3599999,11.119999,0.92799997,10.664Q0.49600008,10.208,0.248,9.6079998Q-8.9406967e-8,9.0079994,0,8.3359995Q8.9406967e-8,7.6639996,0.248,7.0719995Q0.4959999,6.4799995,0.91999996,6.0319996Q1.3440001,5.5839996,1.9119999,5.2959995Q2.4799998,5.0079994,3.1359999,4.96Q3.2479999,3.9199998,3.7119999,3.016Q4.1759996,2.1120002,4.9039998,1.4400001Q5.632,0.76799989,6.5759997,0.38400006Q7.5199995,2.3841858e-7,8.592,0Q9.7279997,0,10.736,0.43199992Q11.744,0.86399984,12.488,1.6159999Q13.231999,2.3680003,13.664,3.3679998Q14.096,4.3679991,14.096,5.5039997Q14.096,6.0159998,14,6.5039997Q13.904,6.9919996,13.728,7.4399996Q13.759999,7.4399996,13.799999,7.4319992Q13.839999,7.4239988,13.871999,7.4239988Q14.319999,7.4239988,14.703999,7.5919991Q15.087998,7.7599993,15.375998,8.0479994Q15.663999,8.3359995,15.831999,8.7279997Q15.999999,9.1199999,16,9.5679989ZM10.736,7.1999989Q10.928,6.8799992,10.848001,6.8319988Q10.768001,6.7839985,10.448001,6.7839985Q10.256001,6.7839985,9.9120007,6.7759981Q9.5680008,6.7679977,9.3920002,6.7679977Q9.1360006,6.7679977,9.0640001,6.5599976Q8.9919996,6.3519974,8.9920006,5.9839973Q8.9920006,5.4719973,8.9840002,5.1599979Q8.9759998,4.8479977,8.9759998,4.4799976Q8.9759998,4.0639982,8.9200001,3.8719981Q8.8640003,3.6799982,8.4639997,3.6799982Q8.1759996,3.6799982,8.0319996,3.6879981Q7.8879995,3.695998,7.6319995,3.695998Q7.1999993,3.695998,7.0959997,3.9439981Q6.9920001,4.1919985,6.9919996,4.4319983L6.9919996,4.9439983Q6.9919996,5.1519985,6.9999995,5.343998Q7.0079994,5.5359983,7.0079994,5.7439985L7.0079994,6.2079983Q7.0079994,6.4639978,6.9439993,6.5999985Q6.8799992,6.7359991,6.6399994,6.7359982Q6.5439992,6.7519979,6.3759995,6.7599983Q6.2079997,6.7679987,6.0319996,6.7759981Q5.8559995,6.7839975,5.6959996,6.7839985L5.4399996,6.7839985Q5.1039996,6.7839985,5.0399995,6.9919987Q4.9759994,7.1999989,5.2479997,7.5199986Q5.5199995,7.855999,5.8319998,8.2479982Q6.1440001,8.6399975,6.448,9.0399981Q6.7519999,9.4399986,7.0320001,9.8159981Q7.3120003,10.191998,7.552,10.463998Q7.9840002,10.943997,8.3839998,10.447998Q8.6239996,10.175998,8.9440002,9.7439985Q9.2640009,9.3119993,9.6000004,8.8399982Q9.9359999,8.3679972,10.240001,7.9279985Q10.544002,7.4879999,10.736,7.1999989Z" fill="#1678FF" fill-opacity="1" style="mix-blend-mode:passthrough"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="none" version="1.1" width="14" height="14" viewBox="0 0 14 14"><defs><clipPath id="master_svg0_106_82168"><rect x="0" y="0" width="14" height="14" rx="0"/></clipPath></defs><g clip-path="url(#master_svg0_106_82168)"><g><path d="M13.026563,9.1396484375C12.733489,9.1465744972,12.497551,9.3825128075,12.490624,9.6755861075C12.490624,10.8546484375,11.703125,11.8215239375,10.70125,11.8215239375L3.2987499,11.8215239375C2.296875,11.8127737375,1.509375,10.8546484375,1.509375,9.6755861075C1.5024495,9.3825119775,1.26651073,9.1465736628,0.97343743,9.1396484375C0.68036395,9.1465744972,0.4444256425,9.3825128075,0.4375,9.6755861075C0.4375,11.462774037500001,1.7259375,12.8933982375,3.2987499,12.8933982375L10.70125,12.8933982375C12.274063,12.8933982375,13.5625,11.462774037500001,13.5625,9.6755861075C13.555574,9.3825119775,13.319635,9.1465736628,13.026563,9.1396484375Z" fill="#1678FF" fill-opacity="1" style="mix-blend-mode:passthrough"/></g><g><path d="M6.62372038125,9.3891039375C6.85207508125,9.5784521375,7.182865881250001,9.5784521375,7.411220581249999,9.3891039375L9.44997068125,7.3503537375C9.63593958125,7.1398992375,9.626101981249999,6.8210883375,9.42751268125,6.6224990375C9.228923281250001,6.4239096375,8.91011238125,6.4140730375,8.699657881250001,6.6000414375L7.59059548125,7.7091035375L7.59059548125,1.6278542875C7.57250328125,1.3445480175,7.33744718125,1.1240234375,7.05356358125,1.1240234375C6.76968078125,1.1240234375,6.53462458125,1.3445481175,6.51653288125,1.6278542875L6.51653288125,7.7091035375L5.40747034125,6.6000414375C5.19701534125,6.4140749375,4.87820670125,6.4239130375,4.67961819125,6.6225018375C4.48102968525,6.8210902375,4.47119176025,7.1398983375,4.65715773125,7.3503537375L6.62372038125,9.3891039375Z" fill="#1678FF" fill-opacity="1" style="mix-blend-mode:passthrough"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="none" version="1.1" width="24" height="24" viewBox="0 0 24 24"><defs><clipPath id="master_svg0_125_16922"><rect x="0" y="0" width="24" height="24" rx="0"/></clipPath><linearGradient x1="0.5" y1="0" x2="0.5" y2="1" id="master_svg1_125_17238"><stop offset="0%" stop-color="#579EFF" stop-opacity="1"/><stop offset="100%" stop-color="#85B8FF" stop-opacity="1"/></linearGradient></defs><g clip-path="url(#master_svg0_125_16922)"><g><path d="M8.7133856e-15,3.00078105C-7.9004963e-8,2.33803946,0.53725815,1.80078125,1.2,1.80078125L9.4087505,1.80078125C9.8887873,1.800799667833,10.322625,2.08689746,10.5117,2.52813119L11.1,3.90078095L22.800001,3.90078095C23.462742,3.90078115,24,4.43803905,24,5.10078075L24,17.70077925C24,18.36352125,23.462742,18.90077925,22.799999,18.90077925L1.2,18.90077925C0.53725827,18.90077925,8.7133856e-15,18.36352125,8.7133856e-15,17.70077925L8.7133856e-15,3.00078105Z" fill="#4288E7" fill-opacity="1" style="mix-blend-mode:passthrough"/></g><g><path d="M3.30009795625,5.8505859375L20.70009765625,5.8505859375Q21.90009865625,5.8505859375,21.90009865625,7.0505862375L21.90009865625,17.850584937500003Q21.90009865625,19.0505849375,20.70009765625,19.0505849375L3.30009755625,19.0505849375Q2.10009765625,19.0505849375,2.10009765625,17.850584937500003L2.10009765625,7.0505855375Q2.10009765625,5.85058557987213,3.30009795625,5.8505859375Z" fill="#FFFFFF" fill-opacity="1" style="mix-blend-mode:passthrough"/></g><g><path d="M1.1999998,7.80078125L22.799999,7.80078125Q24,7.80078125,24,9.00078155L24,21.00078225Q24,22.20078225,22.799999,22.20078225L1.2,22.20078225Q0,22.20078225,0,21.00078225L0,9.00078155Q0,7.80078125,1.1999998,7.80078125Z" fill="url(#master_svg1_125_17238)" fill-opacity="1" style="mix-blend-mode:passthrough"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="none" version="1.1" width="14" height="14" viewBox="0 0 14 14"><g><g><path d="M14,7Q14,7.1718402,13.991568,7.3434739Q13.983135,7.5151072,13.966292,7.68612Q13.949449,7.8571329,13.924234,8.027113Q13.899019,8.197093,13.865496,8.3656311Q13.83197,8.5341702,13.790217,8.700861Q13.748464,8.8675518,13.698582,9.0319929Q13.648699,9.196434,13.590806,9.3582287Q13.532915,9.5200233,13.467155,9.6787834Q13.401394,9.8375435,13.327923,9.9928856Q13.254452,10.148228,13.173448,10.299777Q13.092443,10.451326,13.004099,10.598719Q12.915755,10.746111,12.820286,10.88899Q12.724816,11.03187,12.622452,11.169893Q12.520086,11.307918,12.411073,11.440753Q12.302058,11.573587,12.186657,11.700912Q12.071257,11.828238,11.949747,11.949747Q11.828238,12.071257,11.700912,12.186658Q11.573587,12.302058,11.440753,12.411073Q11.307918,12.520086,11.169893,12.622451Q11.03187,12.724816,10.88899,12.820286Q10.746111,12.915755,10.598719,13.004099Q10.451326,13.092443,10.299777,13.173449Q10.148228,13.254454,9.9928856,13.327925Q9.8375435,13.401396,9.6787834,13.467155Q9.5200233,13.532916,9.3582287,13.590808Q9.196434,13.648699,9.0319929,13.698583Q8.8675518,13.748465,8.700861,13.790218Q8.5341702,13.831971,8.3656311,13.865496Q8.197093,13.899019,8.027113,13.924234Q7.8571329,13.94945,7.68612,13.966293Q7.5151072,13.983136,7.3434734,13.991568Q7.1718402,14,7,14Q6.8281598,14,6.6565266,13.991568Q6.4848933,13.983135,6.3138804,13.966292Q6.1428671,13.949449,5.9728866,13.924234Q5.802906,13.899019,5.6343675,13.865496Q5.4658289,13.83197,5.2991385,13.790217Q5.1324482,13.748464,4.9680071,13.698582Q4.803566,13.648699,4.6417708,13.590806Q4.4799757,13.532915,4.3212156,13.467155Q4.1624556,13.401394,4.0071144,13.327923Q3.8517723,13.254452,3.700223,13.173448Q3.5486732,13.092443,3.4012804,13.004099Q3.2538881,12.915755,3.1110082,12.820286Q2.9681282,12.724816,2.8301048,12.622452Q2.6920815,12.520086,2.559247,12.411073Q2.4264126,12.302058,2.299087,12.186657Q2.171762,12.071257,2.0502524,11.949747Q1.9287429,11.828238,1.813342,11.700912Q1.6979411,11.573587,1.5889268,11.440753Q1.4799124,11.307918,1.3775473,11.169893Q1.275182,11.03187,1.1797127,10.88899Q1.0842432,10.746111,0.99589968,10.598719Q0.90755606,10.451326,0.82655108,10.299777Q0.74554604,10.148228,0.67207485,9.9928856Q0.59860361,9.8375435,0.53284317,9.6787834Q0.46708274,9.5200233,0.40919149,9.3582287Q0.35130021,9.196434,0.30141759,9.0319929Q0.25153497,8.8675518,0.20978118,8.700861Q0.16802739,8.5341702,0.13450301,8.3656311Q0.10097862,8.197093,0.075764418,8.027113Q0.0505502,7.8571329,0.033706907,7.68612Q0.016863609,7.5151072,0.0084318044,7.3434734Q0,7.1718402,0,7Q0,6.8281598,0.0084318044,6.6565266Q0.016863609,6.4848933,0.033706907,6.3138804Q0.0505502,6.1428671,0.07576441,5.9728866Q0.10097862,5.802906,0.13450301,5.6343675Q0.16802739,5.4658289,0.20978117,5.2991385Q0.25153497,5.1324482,0.30141759,4.9680071Q0.35130021,4.803566,0.40919146,4.6417708Q0.46708274,4.4799757,0.53284317,4.3212156Q0.59860361,4.1624556,0.67207479,4.0071144Q0.74554598,3.8517723,0.82655102,3.700223Q0.90755594,3.5486732,0.99589956,3.4012804Q1.0842431,3.2538881,1.1797125,3.1110082Q1.2751819,2.9681282,1.3775471,2.8301048Q1.4799123,2.6920815,1.5889268,2.559247Q1.6979411,2.4264126,1.8133421,2.299087Q1.9287429,2.171762,2.0502524,2.0502524Q2.171762,1.9287429,2.299087,1.813342Q2.4264126,1.6979411,2.559247,1.5889268Q2.6920815,1.4799124,2.8301048,1.3775473Q2.9681282,1.275182,3.1110082,1.1797127Q3.2538881,1.0842432,3.4012806,0.99589968Q3.5486729,0.90755606,3.7002227,0.82655108Q3.8517723,0.74554604,4.0071139,0.67207485Q4.1624556,0.59860361,4.3212156,0.53284317Q4.4799757,0.46708274,4.6417708,0.40919149Q4.803566,0.35130021,4.9680071,0.30141759Q5.1324482,0.25153497,5.2991385,0.20978118Q5.4658289,0.16802739,5.6343675,0.13450301Q5.802906,0.10097862,5.9728866,0.075764418Q6.1428671,0.0505502,6.31388,0.033706907Q6.4848928,0.016863609,6.6565266,0.0084318044Q6.8281598,0,7,0Q7.1718402,0,7.3434739,0.0084318044Q7.5151072,0.016863609,7.68612,0.033706907Q7.8571329,0.0505502,8.027113,0.07576441Q8.197093,0.10097862,8.3656311,0.13450301Q8.5341702,0.16802739,8.700861,0.20978117Q8.8675518,0.25153497,9.0319929,0.30141759Q9.196434,0.35130021,9.3582287,0.40919146Q9.5200233,0.46708274,9.6787834,0.53284317Q9.8375435,0.59860361,9.9928856,0.67207479Q10.148228,0.74554598,10.299777,0.82655102Q10.451326,0.90755594,10.598719,0.99589956Q10.746111,1.0842431,10.88899,1.1797125Q11.03187,1.2751819,11.169893,1.3775471Q11.307918,1.4799123,11.440753,1.5889268Q11.573587,1.6979411,11.700912,1.8133421Q11.828238,1.9287429,11.949747,2.0502524Q12.071257,2.171762,12.186658,2.299087Q12.302058,2.4264126,12.411073,2.559247Q12.520086,2.6920815,12.622451,2.8301048Q12.724816,2.9681282,12.820286,3.1110082Q12.915755,3.2538881,13.004099,3.4012806Q13.092443,3.5486729,13.173449,3.7002227Q13.254454,3.8517723,13.327925,4.0071139Q13.401396,4.1624556,13.467155,4.3212156Q13.532916,4.4799757,13.590808,4.6417708Q13.648699,4.803566,13.698583,4.9680071Q13.748465,5.1324482,13.790218,5.2991385Q13.831971,5.4658289,13.865496,5.6343675Q13.899019,5.802906,13.924234,5.9728866Q13.94945,6.1428671,13.966293,6.31388Q13.983136,6.4848928,13.991568,6.6565266Q14,6.8281598,14,7Z" fill="#FF6237" fill-opacity="1" style="mix-blend-mode:passthrough"/></g><path d="M7.777777928186035,10.889105915Q7.777777828186036,10.965710345,7.762832928186035,11.040842775Q7.747888128186036,11.115975225,7.718572828186035,11.186748525Q7.689257628186035,11.257521725,7.646698428186035,11.321216025Q7.604139428186035,11.384910325,7.549972028186035,11.439077825Q7.495804528186035,11.493245224999999,7.432110228186035,11.535804225Q7.368415928186035,11.578363425,7.297642728186036,11.607678625Q7.226869428186035,11.636993925,7.151736978186035,11.651938725Q7.076604548186035,11.666883625,7.000000118186035,11.666883725Q6.923395638186035,11.666883625,6.848263148186035,11.651938725Q6.7731306581860355,11.636993925,6.7023573781860355,11.607678625Q6.631584108186035,11.578363425,6.567889868186035,11.535804225Q6.504195628186035,11.493245224999999,6.4500281481860355,11.439077825Q6.3958606381860355,11.384910325,6.353301508186036,11.321216025Q6.310742363186035,11.257521725,6.281427126186035,11.186748525Q6.252111886186035,11.115975225,6.2371671071860355,11.040842775Q6.222222328186035,10.965710345,6.222222328186035,10.889105915Q6.222222328186035,10.812501435,6.2371671071860355,10.737368945Q6.252111886186035,10.662236455,6.281427126186035,10.591463175Q6.310742363186035,10.520689905,6.353301498186035,10.456995665Q6.3958606381860355,10.393301425,6.4500281481860355,10.339133945Q6.504195628186035,10.284966435,6.567889868186035,10.242407305Q6.631584138186035,10.19984816,6.702357408186035,10.170532923Q6.7731306581860355,10.141217683,6.848263148186035,10.126272904Q6.923395638186035,10.111328125,7.000000118186035,10.111328125Q7.076604548186035,10.111328125,7.151736978186035,10.126272904Q7.226869428186035,10.141217683,7.297642728186036,10.170532923Q7.368415928186035,10.19984816,7.432110228186035,10.242407295Q7.495804528186035,10.284966435,7.549972028186035,10.339133945Q7.604139428186035,10.393301425,7.646698428186035,10.456995665Q7.689257628186035,10.520689935,7.718572828186035,10.591463205Q7.747888128186036,10.662236455,7.762832928186035,10.737368945Q7.777777828186036,10.812501435,7.777777928186035,10.889105915Z" fill="#FFFFFF" fill-opacity="1" style="mix-blend-mode:passthrough"/><path d="M6.222222328186035,7.777995625C6.222222328186035,8.207550525,6.570445298186035,8.555773225,7.000000118186035,8.555773225C7.429554928186035,8.555773225,7.777777928186035,8.207550525,7.777777928186035,7.777995625L7.777777928186035,3.889105975C7.777777928186035,3.4595511549999998,7.429554928186035,3.111328125,7.000000118186035,3.111328125C6.570445298186035,3.111328125,6.222222328186035,3.4595511549999998,6.222222328186035,3.889105975L6.222222328186035,7.777995625Z" fill="#FFFFFF" fill-opacity="1"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="none" version="1.1" width="14" height="14" viewBox="0 0 14 14"><g><g><path d="M14,7Q14,7.1718402,13.991568,7.3434739Q13.983135,7.5151072,13.966292,7.68612Q13.949449,7.8571329,13.924234,8.027113Q13.899019,8.197093,13.865496,8.3656311Q13.83197,8.5341702,13.790217,8.700861Q13.748464,8.8675518,13.698582,9.0319929Q13.648699,9.196434,13.590806,9.3582287Q13.532915,9.5200233,13.467155,9.6787834Q13.401394,9.8375435,13.327923,9.9928856Q13.254452,10.148228,13.173448,10.299777Q13.092443,10.451326,13.004099,10.598719Q12.915755,10.746111,12.820286,10.88899Q12.724816,11.03187,12.622452,11.169893Q12.520086,11.307918,12.411073,11.440753Q12.302058,11.573587,12.186657,11.700912Q12.071257,11.828238,11.949747,11.949747Q11.828238,12.071257,11.700912,12.186658Q11.573587,12.302058,11.440753,12.411073Q11.307918,12.520086,11.169893,12.622451Q11.03187,12.724816,10.88899,12.820286Q10.746111,12.915755,10.598719,13.004099Q10.451326,13.092443,10.299777,13.173449Q10.148228,13.254454,9.9928856,13.327925Q9.8375435,13.401396,9.6787834,13.467155Q9.5200233,13.532916,9.3582287,13.590808Q9.196434,13.648699,9.0319929,13.698583Q8.8675518,13.748465,8.700861,13.790218Q8.5341702,13.831971,8.3656311,13.865496Q8.197093,13.899019,8.027113,13.924234Q7.8571329,13.94945,7.68612,13.966293Q7.5151072,13.983136,7.3434734,13.991568Q7.1718402,14,7,14Q6.8281598,14,6.6565266,13.991568Q6.4848933,13.983135,6.3138804,13.966292Q6.1428671,13.949449,5.9728866,13.924234Q5.802906,13.899019,5.6343675,13.865496Q5.4658289,13.83197,5.2991385,13.790217Q5.1324482,13.748464,4.9680071,13.698582Q4.803566,13.648699,4.6417708,13.590806Q4.4799757,13.532915,4.3212156,13.467155Q4.1624556,13.401394,4.0071144,13.327923Q3.8517723,13.254452,3.700223,13.173448Q3.5486732,13.092443,3.4012804,13.004099Q3.2538881,12.915755,3.1110082,12.820286Q2.9681282,12.724816,2.8301048,12.622452Q2.6920815,12.520086,2.559247,12.411073Q2.4264126,12.302058,2.299087,12.186657Q2.171762,12.071257,2.0502524,11.949747Q1.9287429,11.828238,1.813342,11.700912Q1.6979411,11.573587,1.5889268,11.440753Q1.4799124,11.307918,1.3775473,11.169893Q1.275182,11.03187,1.1797127,10.88899Q1.0842432,10.746111,0.99589968,10.598719Q0.90755606,10.451326,0.82655108,10.299777Q0.74554604,10.148228,0.67207485,9.9928856Q0.59860361,9.8375435,0.53284317,9.6787834Q0.46708274,9.5200233,0.40919149,9.3582287Q0.35130021,9.196434,0.30141759,9.0319929Q0.25153497,8.8675518,0.20978118,8.700861Q0.16802739,8.5341702,0.13450301,8.3656311Q0.10097862,8.197093,0.075764418,8.027113Q0.0505502,7.8571329,0.033706907,7.68612Q0.016863609,7.5151072,0.0084318044,7.3434734Q0,7.1718402,0,7Q0,6.8281598,0.0084318044,6.6565266Q0.016863609,6.4848933,0.033706907,6.3138804Q0.0505502,6.1428671,0.07576441,5.9728866Q0.10097862,5.802906,0.13450301,5.6343675Q0.16802739,5.4658289,0.20978117,5.2991385Q0.25153497,5.1324482,0.30141759,4.9680071Q0.35130021,4.803566,0.40919146,4.6417708Q0.46708274,4.4799757,0.53284317,4.3212156Q0.59860361,4.1624556,0.67207479,4.0071144Q0.74554598,3.8517723,0.82655102,3.700223Q0.90755594,3.5486732,0.99589956,3.4012804Q1.0842431,3.2538881,1.1797125,3.1110082Q1.2751819,2.9681282,1.3775471,2.8301048Q1.4799123,2.6920815,1.5889268,2.559247Q1.6979411,2.4264126,1.8133421,2.299087Q1.9287429,2.171762,2.0502524,2.0502524Q2.171762,1.9287429,2.299087,1.813342Q2.4264126,1.6979411,2.559247,1.5889268Q2.6920815,1.4799124,2.8301048,1.3775473Q2.9681282,1.275182,3.1110082,1.1797127Q3.2538881,1.0842432,3.4012806,0.99589968Q3.5486729,0.90755606,3.7002227,0.82655108Q3.8517723,0.74554604,4.0071139,0.67207485Q4.1624556,0.59860361,4.3212156,0.53284317Q4.4799757,0.46708274,4.6417708,0.40919149Q4.803566,0.35130021,4.9680071,0.30141759Q5.1324482,0.25153497,5.2991385,0.20978118Q5.4658289,0.16802739,5.6343675,0.13450301Q5.802906,0.10097862,5.9728866,0.075764418Q6.1428671,0.0505502,6.31388,0.033706907Q6.4848928,0.016863609,6.6565266,0.0084318044Q6.8281598,0,7,0Q7.1718402,0,7.3434739,0.0084318044Q7.5151072,0.016863609,7.68612,0.033706907Q7.8571329,0.0505502,8.027113,0.07576441Q8.197093,0.10097862,8.3656311,0.13450301Q8.5341702,0.16802739,8.700861,0.20978117Q8.8675518,0.25153497,9.0319929,0.30141759Q9.196434,0.35130021,9.3582287,0.40919146Q9.5200233,0.46708274,9.6787834,0.53284317Q9.8375435,0.59860361,9.9928856,0.67207479Q10.148228,0.74554598,10.299777,0.82655102Q10.451326,0.90755594,10.598719,0.99589956Q10.746111,1.0842431,10.88899,1.1797125Q11.03187,1.2751819,11.169893,1.3775471Q11.307918,1.4799123,11.440753,1.5889268Q11.573587,1.6979411,11.700912,1.8133421Q11.828238,1.9287429,11.949747,2.0502524Q12.071257,2.171762,12.186658,2.299087Q12.302058,2.4264126,12.411073,2.559247Q12.520086,2.6920815,12.622451,2.8301048Q12.724816,2.9681282,12.820286,3.1110082Q12.915755,3.2538881,13.004099,3.4012806Q13.092443,3.5486729,13.173449,3.7002227Q13.254454,3.8517723,13.327925,4.0071139Q13.401396,4.1624556,13.467155,4.3212156Q13.532916,4.4799757,13.590808,4.6417708Q13.648699,4.803566,13.698583,4.9680071Q13.748465,5.1324482,13.790218,5.2991385Q13.831971,5.4658289,13.865496,5.6343675Q13.899019,5.802906,13.924234,5.9728866Q13.94945,6.1428671,13.966293,6.31388Q13.983136,6.4848928,13.991568,6.6565266Q14,6.8281598,14,7ZM6.9999456,8.5557728C6.5703907,8.5557728,6.222168,8.20755,6.222168,7.7779951L6.222168,3.8891058C6.222168,3.4595511,6.5703907,3.1113281,6.9999456,3.1113281C7.4295006,3.1113281,7.7777233,3.4595511,7.7777233,3.8891058L7.7777233,7.7779951C7.7777233,8.20755,7.4295006,8.5557728,6.9999456,8.5557728ZM7.7777233,10.889106Q7.7777228,10.96571,7.7627783,11.040842Q7.7478328,11.115973,7.7185173,11.186747Q7.6892023,11.25752,7.6466436,11.321214Q7.604085,11.384909,7.5499172,11.439076Q7.4957495,11.493243,7.432055,11.535803Q7.3683605,11.578362,7.2975874,11.607677Q7.2268143,11.636992,7.1516819,11.651937Q7.0765495,11.666883,6.9999456,11.666883Q6.9233408,11.666883,6.8482084,11.651937Q6.7730756,11.636992,6.7023025,11.607677Q6.6315289,11.578362,6.5678344,11.535803Q6.5041404,11.493244,6.4499731,11.439077Q6.3958054,11.384909,6.3532467,11.321215Q6.3106875,11.25752,6.2813725,11.186747Q6.2520571,11.115973,6.2371125,11.040841Q6.222168,10.96571,6.222168,10.889106Q6.222168,10.8125,6.237113,10.737368Q6.2520571,10.662235,6.2813725,10.591462Q6.3106875,10.520689,6.3532462,10.456995Q6.3958054,10.3933,6.4499731,10.339133Q6.5041404,10.284966,6.5678349,10.242407Q6.6315289,10.199847,6.702302,10.170532Q6.7730751,10.141217,6.848208,10.126272Q6.9233408,10.111328,6.9999456,10.111328Q7.0765495,10.111328,7.1516819,10.126272Q7.2268143,10.141217,7.2975874,10.170532Q7.3683605,10.199847,7.432055,10.242407Q7.4957495,10.284966,7.5499167,10.339133Q7.604084,10.3933,7.6466436,10.456994Q7.6892023,10.520688,7.7185178,10.591461Q7.7478333,10.662235,7.7627783,10.737368Q7.7777228,10.8125,7.7777233,10.889106Z" fill-rule="evenodd" fill="#F29655" fill-opacity="1" style="mix-blend-mode:passthrough"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="none" version="1.1" width="16" height="11" viewBox="0 0 16 11"><g><path d="M15.949896,5.2555661C16.016703,5.4388962,16.016703,5.5611272,15.949896,5.7444577C15.949896,5.7444577,15.883092,5.9277883,15.816283,5.9888978C15.749479,6.1722283,15.615868,6.3555694,15.482255,6.5999985C15.148229,7.0888891,14.680583,7.7000132,14.012527,8.3722239C12.743215,9.6555681,10.739035,11,8,11C5.2609663,11,3.2567897,9.6555681,1.987474,8.3722239C1.319415,7.7000132,0.85177505,7.0888891,0.51774478,6.5999985C0.51774478,6.5999985,0.18371604,5.9888978,0.18371604,5.9888978C0.11691014,5.9277883,0.050104432,5.7444577,0.050104432,5.7444577C-0.016701477,5.6222262,-0.016701477,5.4388962,0.050104432,5.2555661C0.050104432,5.2555661,0.1169103,5.0722361,0.18371604,5.0111141C0.25052202,4.8277841,0.38413364,4.6444426,0.51774478,4.4000139C0.85177356,3.9111221,1.319415,3.3000102,1.987474,2.6277888C3.2567489,1.3444551,5.2609239,0,7.9999585,0C10.738992,0,12.743169,1.3444551,14.012487,2.6277888C14.680545,3.3000102,15.148186,3.9111221,15.482213,4.400003C15.482213,4.400003,15.816243,5.0111032,15.816243,5.0111032C15.883049,5.0722246,15.949852,5.2555661,15.949852,5.2555661C15.949852,5.2555661,15.949896,5.2555661,15.949896,5.2555661ZM8.0000048,3.3000102C9.2025099,3.3000102,10.271409,4.2777824,10.271409,5.5000286C10.271409,6.72223,9.2025127,7.7000132,8.0000048,7.7000132C6.7974997,7.7000132,5.728601,6.72223,5.728601,5.5000286C5.728601,4.2777824,6.7974944,3.3000102,8.0000048,3.3000102C8.0000048,3.3000102,8.0000048,3.3000102,8.0000048,3.3000102ZM4.3924899,5.5000286C4.3924899,7.3333526,5.9958301,8.9222136,8.0000048,8.9222136C10.004179,8.9222136,11.607521,7.3333526,11.607521,5.5000286C11.607521,3.6666818,10.004179,2.0777981,8.0000048,2.0777981C5.9958305,2.0777981,4.3924899,3.6666818,4.3924899,5.5000286C4.3924899,5.5000286,4.3924899,5.5000286,4.3924899,5.5000286Z" fill="#1678FF" fill-opacity="1" style="mix-blend-mode:passthrough"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="none" version="1.1" width="14" height="14" viewBox="0 0 14 14"><defs><clipPath id="master_svg0_106_82481"><rect x="0" y="0" width="14" height="14" rx="0"/></clipPath></defs><g clip-path="url(#master_svg0_106_82481)"><g><path d="M13.97271,6.999665275C13.891562,6.664800675,13.783504,6.337064275,13.64959,6.019664775C13.404864,5.411447975,13.081926,4.837849374999999,12.688967,4.313415075C12.110768,3.581627475,11.380726,2.984510075,10.549396,2.563414935C9.4433727,2.011644065,8.221776,1.732647761,6.9863548,1.7496645899C5.7502618,1.724446429,4.5259304,1.994385455,3.4145808,2.537164685C2.5844595,2.960120075,1.8547852,3.5569360750000003,1.2750096,4.287164675C0.87603199,4.822022175,0.55548692,5.411327375,0.32311872,6.037164675C0.18057276,6.345179575,0.07221707,6.667947775,0,6.999665275C0.082369737,7.336379975,0.19640799,7.664514075,0.34058478,7.979664775C0.5804258,8.602062275,0.90043324,9.190378675,1.2924757,9.729665275C1.8696687,10.462443375,2.5999486,11.059755375,3.4320469,11.479665775C4.5389404,12.015602875,5.7573576,12.279557875,6.9863548,12.249664875C8.2206593,12.275189875,9.4429007,12.002050875,10.549396,11.453415875C11.381495,11.033505475,12.111773,10.436194375,12.688967,9.703415875000001C13.086786,9.166357075,13.409948,8.577641475,13.64959,7.953415375C13.783248,7.644926075,13.891319,7.325930575,13.97271,6.999665275ZM12.837427,6.999665275C12.61424,7.708336375,12.27804,8.376138675,11.841871,8.977165675C11.375208,9.588168575000001,10.778562,10.087341275,10.095283,10.438415575C9.1284113,10.911903375,8.0622406,11.145957975,6.9863544,11.120915375C5.9230242,11.142092675,4.8697462,10.911237675,3.9123583,10.447165475C3.2290792,10.096089375,2.6324337,9.596917675,2.1657696,8.985916175C1.7243083,8.382339475,1.3822936,7.711744275,1.1527486,6.999665275C1.3787415,6.285076175,1.7178229,5.611497675,2.157037,5.004664875C2.6253767,4.395274375,3.2216303,3.896429775,3.903626,3.543414875C4.8629971,3.076080175,5.9198942,2.845088575,6.9863548,2.869664675C8.0470734,2.846531975,9.097971,3.077520975,10.051619,3.543414875C10.730993,3.900371775,11.326464,4.398561675,11.798207,5.004664875C12.250916,5.608408675,12.601961,6.282314275,12.837427,6.999665275ZM6.9863548,4.252164875C5.4805121,4.237688074999999,4.2485065,5.449904675,4.2356339,6.958702575C4.2227607,8.467500675,5.4339018,9.700643575,6.9397717,9.711963175000001C8.4456415,9.723282775000001,9.6751127,8.508486275,9.6848345,6.999665275C9.7042675,5.491362375,8.4918356,4.256905075000001,6.9863548,4.252164875ZM8.5757504,6.999665275C8.5804882,7.425781275,8.41364,7.835830675,8.1129045,8.137165075C7.5027294,8.764733275000001,6.4961782,8.764733275000001,5.886004,8.137165075C5.2691822,7.504751175,5.2691822,6.494578875,5.886004,5.862165475C6.500319,5.244508475,7.4985895,5.244508475,8.1129045,5.862165475C8.41364,6.163498375,8.5804882,6.573548775,8.5757504,6.999665275Z" fill="#1678FF" fill-opacity="1" style="mix-blend-mode:passthrough"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="none" version="1.1" width="14" height="14" viewBox="0 0 14 14"><g><g><rect x="0" y="5.958888053894043" width="14" height="2.0841517448425293" rx="1.0420758724212646" fill="#1678FF" fill-opacity="1"/><g transform="matrix(0,1,-1,0,8.041714668273926,-8.041714668273926)"><rect x="8.041714668273926" y="0" width="14" height="2.0841517448425293" rx="1.0420758724212646" fill="#1678FF" fill-opacity="1"/></g></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="none" version="1.1" width="16" height="16" viewBox="0 0 16 16"><defs><clipPath id="master_svg0_141_32160"><rect x="0" y="0" width="16" height="16" rx="0"/></clipPath></defs><g clip-path="url(#master_svg0_141_32160)"><g><path d="M15.949896,7.7555661C16.016703,7.9388962,16.016703,8.0611272,15.949896,8.2444577C15.949896,8.2444577,15.883092,8.4277883,15.816283,8.4888978C15.749479,8.6722283,15.615868,8.8555694,15.482255,9.0999985C15.148229,9.5888891,14.680583,10.2000132,14.012527,10.8722239C12.743215,12.1555681,10.739035,13.5,8,13.5C5.2609663,13.5,3.2567897,12.1555681,1.987474,10.8722239C1.319415,10.2000132,0.85177505,9.5888891,0.51774478,9.0999985C0.51774478,9.0999985,0.18371604,8.4888978,0.18371604,8.4888978C0.11691014,8.4277883,0.050104432,8.2444577,0.050104432,8.2444577C-0.016701477,8.1222262,-0.016701477,7.9388962,0.050104432,7.7555661C0.050104432,7.7555661,0.1169103,7.5722361,0.18371604,7.5111141C0.25052202,7.3277841,0.38413364,7.1444426,0.51774478,6.9000139C0.85177356,6.4111221,1.319415,5.8000102,1.987474,5.127788799999999C3.2567489,3.8444551000000002,5.2609239,2.5,7.9999585,2.5C10.738992,2.5,12.743169,3.8444551000000002,14.012487,5.127788799999999C14.680545,5.8000102,15.148186,6.4111221,15.482213,6.900003C15.482213,6.900003,15.816243,7.5111032,15.816243,7.5111032C15.883049,7.5722246,15.949852,7.7555661,15.949852,7.7555661C15.949852,7.7555661,15.949896,7.7555661,15.949896,7.7555661ZM8.0000048,5.8000102C9.2025099,5.8000102,10.271409,6.7777824,10.271409,8.0000286C10.271409,9.22223,9.2025127,10.2000132,8.0000048,10.2000132C6.7974997,10.2000132,5.728601,9.22223,5.728601,8.0000286C5.728601,6.7777824,6.7974944,5.8000102,8.0000048,5.8000102C8.0000048,5.8000102,8.0000048,5.8000102,8.0000048,5.8000102ZM4.3924899,8.0000286C4.3924899,9.833352600000001,5.9958301,11.4222136,8.0000048,11.4222136C10.004179,11.4222136,11.607521,9.833352600000001,11.607521,8.0000286C11.607521,6.1666818,10.004179,4.5777981,8.0000048,4.5777981C5.9958305,4.5777981,4.3924899,6.1666818,4.3924899,8.0000286C4.3924899,8.0000286,4.3924899,8.0000286,4.3924899,8.0000286Z" fill="#1678FF" fill-opacity="1" style="mix-blend-mode:passthrough"/></g></g></svg>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import './index.scss';
|
|
3
|
+
export interface FileListProps {
|
|
4
|
+
/**
|
|
5
|
+
* 列表数据
|
|
6
|
+
*/
|
|
7
|
+
fileList: Array<object>;
|
|
8
|
+
token: string;
|
|
9
|
+
tokenTY: string;
|
|
10
|
+
accessToken: string;
|
|
11
|
+
userInfo: object;
|
|
12
|
+
baseUrl: string;
|
|
13
|
+
env: string;
|
|
14
|
+
isPC?: boolean;
|
|
15
|
+
disabled?: boolean;
|
|
16
|
+
style?: object;
|
|
17
|
+
download: (value: any) => void;
|
|
18
|
+
valChange: (value: any) => void;
|
|
19
|
+
}
|
|
20
|
+
declare const FileList: React.FC<FileListProps>;
|
|
21
|
+
export default FileList;
|
|
@@ -0,0 +1,263 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
exports.__esModule = true;
|
|
5
|
+
exports["default"] = void 0;
|
|
6
|
+
var _balloon = _interopRequireDefault(require("@alifd/next/lib/balloon"));
|
|
7
|
+
var _react = _interopRequireDefault(require("react"));
|
|
8
|
+
var _item = _interopRequireDefault(require("./item"));
|
|
9
|
+
require("./index.scss");
|
|
10
|
+
var Tooltip = _balloon["default"].Tooltip;
|
|
11
|
+
var MATERIAL_TYPE = {
|
|
12
|
+
1: '原件',
|
|
13
|
+
2: '复印件',
|
|
14
|
+
3: '原件或复印件',
|
|
15
|
+
4: '有电子签章的电子证照',
|
|
16
|
+
5: '证照扫描件'
|
|
17
|
+
};
|
|
18
|
+
var MATERIAL_FORMAT = {
|
|
19
|
+
1: 'doc',
|
|
20
|
+
2: 'docx',
|
|
21
|
+
3: 'ofd',
|
|
22
|
+
4: 'pdf',
|
|
23
|
+
5: 'xlsx',
|
|
24
|
+
6: 'xls',
|
|
25
|
+
7: 'png',
|
|
26
|
+
8: 'jpg',
|
|
27
|
+
9: 'jpeg',
|
|
28
|
+
10: 'gif',
|
|
29
|
+
11: 'bmp',
|
|
30
|
+
12: 'zip',
|
|
31
|
+
13: 'rar',
|
|
32
|
+
14: 'mp3',
|
|
33
|
+
15: 'mp4',
|
|
34
|
+
16: 'xml'
|
|
35
|
+
};
|
|
36
|
+
var FileList = function FileList(_ref) {
|
|
37
|
+
var fileList = _ref.fileList,
|
|
38
|
+
token = _ref.token,
|
|
39
|
+
tokenTY = _ref.tokenTY,
|
|
40
|
+
accessToken = _ref.accessToken,
|
|
41
|
+
userInfo = _ref.userInfo,
|
|
42
|
+
baseUrl = _ref.baseUrl,
|
|
43
|
+
env = _ref.env,
|
|
44
|
+
isPC = _ref.isPC,
|
|
45
|
+
disabled = _ref.disabled,
|
|
46
|
+
isShowLib = _ref.isShowLib,
|
|
47
|
+
style = _ref.style,
|
|
48
|
+
download = _ref.download,
|
|
49
|
+
valChange = _ref.valChange;
|
|
50
|
+
var convertNumbersToChinese = function convertNumbersToChinese(str) {
|
|
51
|
+
// 定义基础映射关系
|
|
52
|
+
var digitMap = {
|
|
53
|
+
'0': '〇',
|
|
54
|
+
'1': '一',
|
|
55
|
+
'2': '二',
|
|
56
|
+
'3': '三',
|
|
57
|
+
'4': '四',
|
|
58
|
+
'5': '五',
|
|
59
|
+
'6': '六',
|
|
60
|
+
'7': '七',
|
|
61
|
+
'8': '八',
|
|
62
|
+
'9': '九'
|
|
63
|
+
};
|
|
64
|
+
|
|
65
|
+
// 使用正则表达式全局匹配所有数字字符并进行替换
|
|
66
|
+
return String(str).replace(/\d/g, function (matchedDigit) {
|
|
67
|
+
return digitMap[matchedDigit];
|
|
68
|
+
}) + '、';
|
|
69
|
+
};
|
|
70
|
+
|
|
71
|
+
// 拼接材料的提示文案 - 一级材料
|
|
72
|
+
var getTipText = function getTipText(item) {
|
|
73
|
+
console.log('getTipText', item);
|
|
74
|
+
var materialSize = item.materialSize,
|
|
75
|
+
materialSpec = item.materialSpec,
|
|
76
|
+
materialType = item.materialType;
|
|
77
|
+
if (!materialSpec) return '';
|
|
78
|
+
var formatText = materialSpec.split(',').map(function (i) {
|
|
79
|
+
return MATERIAL_FORMAT[i];
|
|
80
|
+
}).join('、');
|
|
81
|
+
var sizeText = materialSize ? "\u5355\u4E2A\u4E0D\u8D85\u8FC7\u3010" + materialSize + "MB\u3011" : '';
|
|
82
|
+
return "\u9700\u4E0A\u4F20\u3010" + MATERIAL_TYPE[materialType] + "\u3011\uFF0C\u652F\u6301\u3010" + formatText + "\u3011\u683C\u5F0F\u3002" + sizeText;
|
|
83
|
+
};
|
|
84
|
+
|
|
85
|
+
// 拼接材料的提示文案 - 二级材料
|
|
86
|
+
var getTipTextForSubMaterial = function getTipTextForSubMaterial(item, index, subIndex) {
|
|
87
|
+
var subMaterials = fileList[index].subMaterials;
|
|
88
|
+
console.log('getTipTextForSubMaterial', item, index, subIndex);
|
|
89
|
+
console.log('subMaterials', subMaterials);
|
|
90
|
+
var materialSize = item.materialSize,
|
|
91
|
+
materialSpec = item.materialSpec,
|
|
92
|
+
materialType = item.materialType;
|
|
93
|
+
var groupId = fileList[index].subMaterials[subIndex].groupId;
|
|
94
|
+
if (!materialSpec) return '';
|
|
95
|
+
var formatText = materialSpec.split(',').map(function (i) {
|
|
96
|
+
return MATERIAL_FORMAT[i];
|
|
97
|
+
}).join('、');
|
|
98
|
+
var sameGroupIdMaterials = subMaterials.filter(function (m) {
|
|
99
|
+
return m.groupId === groupId;
|
|
100
|
+
});
|
|
101
|
+
var materialNames = sameGroupIdMaterials.map(function (m) {
|
|
102
|
+
return m.materialName;
|
|
103
|
+
});
|
|
104
|
+
var text = '';
|
|
105
|
+
if (materialNames.length > 1) {
|
|
106
|
+
text = "\u3010" + materialNames.join('和') + "\u3011\u81F3\u5C11\u4E0A\u4F20\u4E00\u4EFD\uFF0C";
|
|
107
|
+
}
|
|
108
|
+
var sizeText = materialSize ? "\u5355\u4E2A\u4E0D\u8D85\u8FC7\u3010" + materialSize + "MB\u3011" : '';
|
|
109
|
+
console.log('text', sizeText);
|
|
110
|
+
return text + "\u9700\u4E0A\u4F20\u3010" + MATERIAL_TYPE[materialType] + "\u3011\uFF0C\u652F\u6301\u3010" + formatText + "\u3011\u683C\u5F0F\u3002" + sizeText;
|
|
111
|
+
};
|
|
112
|
+
var handleChange = function handleChange(value, fileIndex, index, subIndex) {
|
|
113
|
+
console.log('handleChange', value, fileIndex, index, subIndex);
|
|
114
|
+
// 先找到一级目录
|
|
115
|
+
var oneLevelItem = fileList[index];
|
|
116
|
+
// 如果subIndex有值。再去找一下二级目录
|
|
117
|
+
if (subIndex !== undefined) {
|
|
118
|
+
// value为空,说明删除了
|
|
119
|
+
if (!value) {
|
|
120
|
+
oneLevelItem.subMaterials[subIndex].isSmart = false;
|
|
121
|
+
oneLevelItem.subMaterials[subIndex].isShareFile = false;
|
|
122
|
+
// 如果当前文件list中只有一个文件,还得补个空的
|
|
123
|
+
if (oneLevelItem.subMaterials[subIndex].fileList.length === 1) {
|
|
124
|
+
oneLevelItem.subMaterials[subIndex].fileList = [{
|
|
125
|
+
fileId: ''
|
|
126
|
+
}];
|
|
127
|
+
} else {
|
|
128
|
+
oneLevelItem.subMaterials[subIndex].fileList.splice(fileIndex, 1);
|
|
129
|
+
}
|
|
130
|
+
} else {
|
|
131
|
+
// 如果当前这个位置的fileId是空的。说明这次修改是新增
|
|
132
|
+
var isAdd = !oneLevelItem.subMaterials[subIndex].fileList[fileIndex].fileId;
|
|
133
|
+
oneLevelItem.subMaterials[subIndex].fileList[fileIndex] = value;
|
|
134
|
+
if (isAdd && oneLevelItem.subMaterials[subIndex].fileList.length < 10) {
|
|
135
|
+
oneLevelItem.subMaterials[subIndex].fileList.push({
|
|
136
|
+
fileId: ''
|
|
137
|
+
});
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
} else {
|
|
141
|
+
if (!value) {
|
|
142
|
+
oneLevelItem.isSmart = false;
|
|
143
|
+
oneLevelItem.isShareFile = false;
|
|
144
|
+
oneLevelItem.fileList.splice(fileIndex, 1);
|
|
145
|
+
if (oneLevelItem.fileList.length === 0) {
|
|
146
|
+
oneLevelItem.fileList.push({
|
|
147
|
+
fileId: ''
|
|
148
|
+
});
|
|
149
|
+
}
|
|
150
|
+
} else {
|
|
151
|
+
// 如果当前这个位置的fileId是空的。说明这次修改是新增
|
|
152
|
+
var _isAdd = !oneLevelItem.fileList[fileIndex].fileId;
|
|
153
|
+
oneLevelItem.fileList[fileIndex] = value;
|
|
154
|
+
if (_isAdd && oneLevelItem.fileList.length < 10) {
|
|
155
|
+
oneLevelItem.fileList.push({
|
|
156
|
+
fileId: ''
|
|
157
|
+
});
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
console.log('fileList--------res', fileList);
|
|
162
|
+
valChange(fileList);
|
|
163
|
+
};
|
|
164
|
+
var trigger = function trigger(child) {
|
|
165
|
+
return /*#__PURE__*/_react["default"].createElement("div", {
|
|
166
|
+
className: "tag",
|
|
167
|
+
style: {
|
|
168
|
+
backgroundColor: child.isSmart ? '#1678FF' : child.isShareFile ? '#15BC83' : '#9570F7'
|
|
169
|
+
}
|
|
170
|
+
}, child.isSmart ? '智' : child.isShareFile ? '享' : '自');
|
|
171
|
+
};
|
|
172
|
+
return /*#__PURE__*/_react["default"].createElement("div", {
|
|
173
|
+
className: "file_list",
|
|
174
|
+
style: style
|
|
175
|
+
}, fileList.map(function (item, index) {
|
|
176
|
+
return /*#__PURE__*/_react["default"].createElement("div", {
|
|
177
|
+
className: "file_level_one"
|
|
178
|
+
}, /*#__PURE__*/_react["default"].createElement("div", {
|
|
179
|
+
className: "file_level_one_title"
|
|
180
|
+
}, /*#__PURE__*/_react["default"].createElement("p", {
|
|
181
|
+
className: "name_level_one"
|
|
182
|
+
}, convertNumbersToChinese(index + 1), item.materialName), !(item.subMaterials && item.subMaterials.length > 0) && /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, /*#__PURE__*/_react["default"].createElement("span", {
|
|
183
|
+
className: "required"
|
|
184
|
+
}, "*"), /*#__PURE__*/_react["default"].createElement(_balloon["default"], {
|
|
185
|
+
v2: true,
|
|
186
|
+
trigger: trigger(item),
|
|
187
|
+
triggerType: "click",
|
|
188
|
+
align: "tl",
|
|
189
|
+
title: "",
|
|
190
|
+
delay: 20
|
|
191
|
+
}, item.isSmart ? '本材料为智能生成材料,系统将根据您填写的信息自动生成申报材料。' : item.isShareFile ? '本材料为共享材料,数据由大数据共享获取,无需用户自行准备。' : '需要用户自行准备申报材料'))), item.subMaterials && item.subMaterials.length > 0 ? /*#__PURE__*/_react["default"].createElement("div", {
|
|
192
|
+
className: "file_level_two"
|
|
193
|
+
}, item.subMaterials.map(function (child, subIndex) {
|
|
194
|
+
return /*#__PURE__*/_react["default"].createElement("div", {
|
|
195
|
+
className: "file_level_two_item"
|
|
196
|
+
}, /*#__PURE__*/_react["default"].createElement("div", {
|
|
197
|
+
className: "file_level_two_title"
|
|
198
|
+
}, /*#__PURE__*/_react["default"].createElement("p", {
|
|
199
|
+
className: "name_level_two"
|
|
200
|
+
}, subIndex + 1, "\u3001", child.materialName), /*#__PURE__*/_react["default"].createElement("span", {
|
|
201
|
+
className: "required"
|
|
202
|
+
}, "*"), /*#__PURE__*/_react["default"].createElement(_balloon["default"], {
|
|
203
|
+
v2: true,
|
|
204
|
+
trigger: trigger(child),
|
|
205
|
+
triggerType: "click",
|
|
206
|
+
align: "tl",
|
|
207
|
+
title: "",
|
|
208
|
+
delay: 20
|
|
209
|
+
}, child.isSmart ? '本材料为智能生成材料,系统将根据您填写的信息自动生成申报材料。' : child.isShareFile ? '本材料为共享材料,数据由大数据共享获取,无需用户自行准备。' : '需要用户自行准备申报材料')), /*#__PURE__*/_react["default"].createElement("p", {
|
|
210
|
+
className: "tip"
|
|
211
|
+
}, getTipTextForSubMaterial(item, index, subIndex)), child.fileList.map(function (file, i) {
|
|
212
|
+
return /*#__PURE__*/_react["default"].createElement(_item["default"], {
|
|
213
|
+
index: index,
|
|
214
|
+
subIndex: subIndex,
|
|
215
|
+
fileIndex: i,
|
|
216
|
+
file: file,
|
|
217
|
+
fileConfig: child,
|
|
218
|
+
maxFileSize: item.materialSize,
|
|
219
|
+
spec: item.materialSpec,
|
|
220
|
+
userInfo: userInfo,
|
|
221
|
+
token: token,
|
|
222
|
+
tokenTY: tokenTY,
|
|
223
|
+
accessToken: accessToken,
|
|
224
|
+
baseUrl: baseUrl,
|
|
225
|
+
env: env,
|
|
226
|
+
isPC: isPC,
|
|
227
|
+
disabled: disabled,
|
|
228
|
+
download: download,
|
|
229
|
+
valChange: handleChange,
|
|
230
|
+
style: {
|
|
231
|
+
marginBottom: '12px'
|
|
232
|
+
}
|
|
233
|
+
});
|
|
234
|
+
}));
|
|
235
|
+
})) : /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, /*#__PURE__*/_react["default"].createElement("p", {
|
|
236
|
+
className: "tip"
|
|
237
|
+
}, getTipText(item)), item.fileList.map(function (file, i) {
|
|
238
|
+
return /*#__PURE__*/_react["default"].createElement(_item["default"], {
|
|
239
|
+
index: index,
|
|
240
|
+
fileIndex: i,
|
|
241
|
+
file: file,
|
|
242
|
+
fileConfig: item,
|
|
243
|
+
maxFileSize: item.materialSize,
|
|
244
|
+
spec: item.materialSpec,
|
|
245
|
+
isShowLib: isShowLib,
|
|
246
|
+
userInfo: userInfo,
|
|
247
|
+
token: token,
|
|
248
|
+
tokenTY: tokenTY,
|
|
249
|
+
accessToken: accessToken,
|
|
250
|
+
baseUrl: baseUrl,
|
|
251
|
+
env: env,
|
|
252
|
+
isPC: isPC,
|
|
253
|
+
disabled: disabled,
|
|
254
|
+
download: download,
|
|
255
|
+
valChange: handleChange,
|
|
256
|
+
style: {
|
|
257
|
+
marginBottom: '12px'
|
|
258
|
+
}
|
|
259
|
+
});
|
|
260
|
+
})));
|
|
261
|
+
}));
|
|
262
|
+
};
|
|
263
|
+
var _default = exports["default"] = FileList;
|