ui-process-h5 0.1.36 → 0.1.40

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (102) hide show
  1. package/build/configure/README.md +171 -0
  2. package/build/configure/package.json +27 -0
  3. package/build/scripts/postinstall.mjs +14 -0
  4. package/build/scripts/switch-cli.mjs +4 -0
  5. package/build/scripts/utils.mjs +60 -0
  6. package/index.html +12 -0
  7. package/package.json +48 -20
  8. package/src/App.vue +151 -0
  9. package/src/assets/font-icon/iconfont.scss +57 -0
  10. package/src/assets/font-icon/iconfont.ttf +0 -0
  11. package/src/assets/img/arrow-right.png +0 -0
  12. package/src/assets/img/arrow.png +0 -0
  13. package/src/assets/img/check.png +0 -0
  14. package/src/assets/js/auth.js +41 -0
  15. package/src/assets/js/errorCode.js +6 -0
  16. package/src/assets/js/message.js +352 -0
  17. package/src/assets/js/request.js +90 -0
  18. package/src/assets/js/toast.js +239 -0
  19. package/src/assets/js/top.js +229 -0
  20. package/src/assets/js/utils.js +82 -0
  21. package/src/assets/js/vuePopper.js +123 -0
  22. package/src/assets/query.png +0 -0
  23. package/src/main.js +15 -0
  24. package/src/packages/attchUpload/index.js +371 -0
  25. package/src/packages/attchUpload/index.scss +136 -0
  26. package/src/packages/attchUpload/index.vue +173 -0
  27. package/src/packages/downSelect/index.js +81 -0
  28. package/src/packages/downSelect/index.scss +82 -0
  29. package/src/packages/downSelect/index.vue +54 -0
  30. package/src/packages/index.js +6 -0
  31. package/src/packages/popup/index.js +61 -0
  32. package/src/packages/popup/index.scss +174 -0
  33. package/src/packages/popup/index.vue +79 -0
  34. package/src/packages/preview/index.js +36 -0
  35. package/src/packages/preview/index.vue +15 -0
  36. package/src/packages/previewImage/index.js +158 -0
  37. package/src/packages/previewImage/index.scss +59 -0
  38. package/src/packages/previewImage/index.vue +32 -0
  39. package/{packages/components/process/src/process.vue → src/packages/process/index.js} +219 -440
  40. package/src/packages/process/index.scss +164 -0
  41. package/src/packages/process/index.vue +189 -0
  42. package/src/packages/process/operation/backNode.vue +393 -0
  43. package/src/packages/process/operation/cancel.vue +399 -0
  44. package/src/packages/process/operation/ccTask.vue +461 -0
  45. package/src/packages/process/operation/complete.vue +488 -0
  46. package/src/packages/process/operation/counterSign.vue +485 -0
  47. package/src/packages/process/operation/delegateTask.vue +480 -0
  48. package/src/packages/process/operation/restart.vue +305 -0
  49. package/src/packages/submitPopup/index.js +296 -0
  50. package/src/packages/submitPopup/index.scss +83 -0
  51. package/src/packages/submitPopup/index.vue +138 -0
  52. package/src/packages/tab/index.js +207 -0
  53. package/src/packages/tab/index.scss +176 -0
  54. package/src/packages/tab/index.vue +155 -0
  55. package/src/packages/tip/index.js +74 -0
  56. package/src/packages/tip/index.scss +82 -0
  57. package/src/packages/tip/index.vue +57 -0
  58. package/src/packages/viewAttchList/index.js +132 -0
  59. package/src/packages/viewAttchList/index.scss +76 -0
  60. package/src/packages/viewAttchList/index.vue +112 -0
  61. package/src/style.css +80 -0
  62. package/ui-process-h5/README.md +171 -0
  63. package/ui-process-h5/package.json +27 -0
  64. package/ui-process-h5/scripts/postinstall.mjs +14 -0
  65. package/ui-process-h5/scripts/switch-cli.mjs +4 -0
  66. package/ui-process-h5/scripts/utils.mjs +60 -0
  67. package/ui-process-h5/v2/style.css +1 -0
  68. package/ui-process-h5/v2/ui-process-h5.js +13467 -0
  69. package/ui-process-h5/v2/ui-process-h5.umd.cjs +67 -0
  70. package/ui-process-h5/v2.7/style.css +1 -0
  71. package/ui-process-h5/v2.7/ui-process-h5.js +12844 -0
  72. package/ui-process-h5/v2.7/ui-process-h5.umd.cjs +67 -0
  73. package/ui-process-h5/v3/style.css +1 -0
  74. package/ui-process-h5/v3/ui-process-h5.js +10336 -0
  75. package/ui-process-h5/v3/ui-process-h5.umd.cjs +55 -0
  76. package/vite.config.ts +78 -0
  77. package/packages/components/approval/index.js +0 -0
  78. package/packages/components/process/index.js +0 -8
  79. package/packages/components/process/src/attchlist-upload.vue +0 -585
  80. package/packages/components/process/src/operation/backNode.vue +0 -141
  81. package/packages/components/process/src/operation/cancel.vue +0 -170
  82. package/packages/components/process/src/operation/ccTask.vue +0 -170
  83. package/packages/components/process/src/operation/complete.vue +0 -224
  84. package/packages/components/process/src/operation/counterSign.vue +0 -178
  85. package/packages/components/process/src/operation/delegateTask.vue +0 -168
  86. package/packages/components/process/src/operation/restart.vue +0 -172
  87. package/packages/components/process/src/popup.vue +0 -230
  88. package/packages/components/process/src/tab.vue +0 -459
  89. package/packages/components/process/src/tip.vue +0 -207
  90. package/packages/index.js +0 -4
  91. /package/{packages/components/process/theme → src/assets}/img/add-file.png +0 -0
  92. /package/{packages/components/process/theme → src/assets}/img/del.png +0 -0
  93. /package/{packages/components/process/theme → src/assets}/img/doc.png +0 -0
  94. /package/{packages/components/process/theme → src/assets}/img/file.png +0 -0
  95. /package/{packages/components/process/theme → src/assets}/img/image.png +0 -0
  96. /package/{packages/components/process/theme → src/assets}/img/pdf.png +0 -0
  97. /package/{packages/components/process/theme → src/assets}/img/xls.png +0 -0
  98. /package/{packages/components/process/theme → src/assets}/img/zip.png +0 -0
  99. /package/{packages/components/process/theme → src/assets}/status/error.png +0 -0
  100. /package/{packages/components/process/theme → src/assets}/status/loading.png +0 -0
  101. /package/{packages/components/process/theme → src/assets}/status/success.png +0 -0
  102. /package/{packages/components/process/src → src/packages/process}/operation/index.js +0 -0
package/vite.config.ts ADDED
@@ -0,0 +1,78 @@
1
+ import { defineConfig } from 'vite'
2
+ import { createVuePlugin } from 'vite-plugin-vue2'
3
+ import * as compiler from '@vue/compiler-sfc'
4
+ import vue3 from '@vitejs/plugin-vue'
5
+ import path from 'path'
6
+ import { getLibDir } from './build/scripts/utils.mjs'
7
+ import { isVue2, version } from 'vue-demi'
8
+ import { baseConfig } from './src/assets/js/utils.js'
9
+ import copy from 'rollup-plugin-copy'
10
+ import relaxedUnit from 'postcss-relaxed-unit'
11
+ console.log({ version })
12
+ const resolve = (str) => {
13
+ return path.resolve(__dirname, str)
14
+ }
15
+ let isVueCode = 1
16
+ if (version.startsWith('2.7.')) isVueCode = 2
17
+ else if (version.startsWith('2.')) isVueCode = 1
18
+ else isVueCode = 3
19
+
20
+ // https://vitejs.dev/config/
21
+ export default defineConfig({
22
+ resolve: {
23
+ alias: {
24
+ '@': resolve('src'),
25
+ vue: isVueCode === 1 ? path.resolve('./node_modules/vue2')
26
+ : isVueCode === 2 ? path.resolve('./node_modules/vue2.7')
27
+ : path.resolve('./node_modules/vue3'),
28
+ '@vue/composition-api': resolve('./node_modules/@vue/composition-api')
29
+ }
30
+ },
31
+ build: {
32
+ lib: {
33
+ entry: resolve('./src/packages/index.js'),
34
+ name: 'ui-process-h5',
35
+ fileName: 'ui-process-h5'
36
+ },
37
+ cssTarget: 'chrome61',
38
+ rollupOptions: {
39
+ // external: ['vue-demi', 'vue'],
40
+ external: ['vue'],
41
+ output: {
42
+ dir: getLibDir(version),
43
+ globals: {
44
+ vue: 'Vue',
45
+ // 'vue-demi': 'VueDemi'
46
+ }
47
+ }
48
+ }
49
+ },
50
+ optimizeDeps: {
51
+ // exclude: ['vue-demi']
52
+ },
53
+ plugins: [
54
+ isVue2 ? createVuePlugin() : vue3({ compiler: compiler }),
55
+ copy({
56
+ targets: [
57
+ { src: './build/configure/*', dest: './ui-process-h5' },
58
+ { src: './build/scripts/*', dest: './ui-process-h5/scripts' },
59
+ ]
60
+ })
61
+ ],
62
+ css: {
63
+ postcss: { // 配置自定义组件插件
64
+ plugins: [
65
+ relaxedUnit({ rules: { rpx: "div(2).unit(px)" } }),
66
+ ]
67
+ }
68
+ },
69
+ server: {
70
+ proxy: {
71
+ [baseConfig.apiUrl]: {
72
+ target: process.env.domain || `http://59.53.91.231:2100`,
73
+ changeOrigin: true,
74
+ //rewrite: (path) => path.replace(/^\/api/, ""),
75
+ },
76
+ },
77
+ },
78
+ })
File without changes
@@ -1,8 +0,0 @@
1
- import TopProcess from "./src/process.vue";
2
-
3
- TopProcess.install = function (app) {
4
- // 组件注册,按需引入
5
- app.component(TopProcess.name, TopProcess);
6
- return app;
7
- };
8
- export default TopProcess;
@@ -1,585 +0,0 @@
1
- <template>
2
- <div class="attch-upload">
3
- <div class="attch-upload-mask" v-if="buttonLoading"></div>
4
- <div class="attch-upload-body">
5
- <div class="upload-header">
6
- <div class="upload-header-title">
7
- 附件
8
- <span v-if="require" class="upload-header-title--re"
9
- >*</span
10
- >
11
- </div>
12
- <div class="upload-header-upload">
13
- <div
14
- v-if="!onlyShow"
15
- class="upload-header-upload--item"
16
- id="inputfile"
17
- @click="handleClick"
18
- >
19
- <!-- <input
20
- v-if="haveCount > 0"
21
- class="upload-input"
22
- type="file"
23
- multiple
24
- @change="handleSelect($event, item)"
25
- /> -->
26
- <img src="../theme/img/add-file.png" />上传附件
27
- </div>
28
- </div>
29
- </div>
30
-
31
- <div class="upload-body">
32
- <div class="upload-list" v-if="filesArr.length > 0">
33
- <div
34
- class="list-items"
35
- v-for="(v, i) of filesArr"
36
- :key="v.uuid"
37
- >
38
- <div class="list-items-icon">
39
- <img
40
- v-if="
41
- xlsIcon.includes(
42
- v.name.substring(
43
- v.name.lastIndexOf('.') + 1
44
- )
45
- )
46
- "
47
- class="icon-img"
48
- src="../theme/img/xls.png"
49
- />
50
- <img
51
- v-else-if="
52
- imgIcon.includes(
53
- v.name.substring(
54
- v.name.lastIndexOf('.') + 1
55
- )
56
- )
57
- "
58
- class="icon-img"
59
- src="../theme/img/image.png"
60
- />
61
- <img
62
- v-else-if="
63
- v.name.substring(
64
- v.name.lastIndexOf('.') + 1
65
- ) == 'pdf'
66
- "
67
- class="icon-img"
68
- src="../theme/img/pdf.png"
69
- />
70
- <img
71
- v-else-if="
72
- docIcon.includes(
73
- v.name.substring(
74
- v.name.lastIndexOf('.') + 1
75
- )
76
- )
77
- "
78
- class="icon-img"
79
- src="../theme/img/doc.png"
80
- />
81
- <img
82
- v-else-if="
83
- zipIcon.includes(
84
- v.name.substring(
85
- v.name.lastIndexOf('.') + 1
86
- )
87
- )
88
- "
89
- class="icon-img"
90
- src="../theme/img/zip.png"
91
- />
92
- <img
93
- v-else
94
- class="icon-img"
95
- src="../theme/img/file.png"
96
- />
97
- </div>
98
- <div class="list-items-info">
99
- <div class="info-name">
100
- {{ v.originFileName }}
101
- </div>
102
- <div class="info-attribute">
103
- <span class="info-attribute-size"
104
- >{{
105
- v.fileSize < 1024
106
- ? v.fileSize
107
- : v.fileSize / 1024 > 1024
108
- ? parseFloat(
109
- (
110
- v.fileSize /
111
- 1024 /
112
- 1024
113
- ).toFixed(2)
114
- )
115
- : parseFloat(
116
- (v.fileSize / 1024).toFixed(2)
117
- )
118
- }}{{
119
- v.fileSize < 1024
120
- ? "b"
121
- : parseFloat(
122
- (v.fileSize / 1024).toFixed(2)
123
- ) < 1024
124
- ? "kb"
125
- : "M"
126
- }}
127
- </span>
128
- <span
129
- class="info-attribute-views"
130
- @click="viewFile(v, i)"
131
- >
132
- 预览
133
- </span>
134
- </div>
135
- </div>
136
- <div class="list-items-operation" v-if="!onlyShow">
137
- <div
138
- @click="handleDel(i, v)"
139
- class="list-items-operation-img"
140
- >
141
- <img src="../theme/img/del.png" />
142
- </div>
143
- </div>
144
- </div>
145
- </div>
146
- </div>
147
- </div>
148
- </div>
149
- </template>
150
- <script>
151
- /* props */
152
- export default {
153
- name: "attchViews",
154
- props: {
155
- api: {
156
- type: Object,
157
- defalut: () => {},
158
- },
159
- // 最大上传数
160
- limit: {
161
- type: Number | String,
162
- default: 4,
163
- },
164
- //返回上传数据url
165
- changeFn: {
166
- type: Function,
167
- default: null,
168
- },
169
- require: {
170
- default: false,
171
- },
172
- inComing: {
173
- type: Array,
174
- defalut: () => [],
175
- },
176
- deletFn: {
177
- type: Function,
178
- },
179
- onlyShow: {
180
- type: Boolean,
181
- default: false,
182
- },
183
- },
184
-
185
- data() {
186
- return {
187
- // 列表展示 已选择文件列表
188
- lists: [],
189
- filesArr: [],
190
- imgIcon: ["jpg", "jpeg", "png", "gif"],
191
- docIcon: ["doc", "docx"],
192
- xlsIcon: ["xls", "xlsx"],
193
- zipIcon: ["zip", "rar", "7z"],
194
- extension: [
195
- "bmp",
196
- "gif",
197
- "jpg",
198
- "jpeg",
199
- "png",
200
- "doc",
201
- "docx",
202
- "xls",
203
- "xlsx",
204
- "ppt",
205
- "pptx",
206
- "html",
207
- "htm",
208
- "txt",
209
- "wps",
210
- "rar",
211
- "zip",
212
- "gz",
213
- "bz2",
214
- "mp4",
215
- "avi",
216
- "rmvb",
217
- "pdf",
218
- ],
219
- // ----
220
- current: "",
221
-
222
- buttonLoading: false,
223
- handleCloseType: true,
224
- uploadState: true,
225
- };
226
- },
227
-
228
- watch: {
229
- inComing: {
230
- handler(val, preval) {
231
- if (val) {
232
- // 传入附件列表前预处理 originFileName fileSize , name与 size 无法渲染
233
- this.filesArr = [].concat(val);
234
- this.emitView();
235
- }
236
- },
237
-
238
- //如果加了这个参数,值为true的话,就消除了惰性,watch会在创建后立即执行一次
239
- //那么首次执行,val为默认值,preVal为undefined
240
- immediate: true,
241
- //这个参数代表监听对象时,可以监听深度嵌套的对象属性
242
- deep: true,
243
- },
244
- },
245
-
246
- computed: {
247
- haveCount() {
248
- if (this.limit == -1) return 100;
249
- return this.limit - this.filesArr.length;
250
- },
251
- },
252
-
253
- mounted() {
254
- // 兼容uni(uni编译会修改input属性,在点击上传时创建dom) upload-header-upload--item
255
- let input = document.createElement("input");
256
- input.type = "file";
257
- input.className = "upload-input";
258
- input.style = "opacity: 0;position: absolute;";
259
- input.multiple = true
260
- input.addEventListener("change", this.handleSelect);
261
- document.getElementById("inputfile").appendChild(input);
262
- },
263
-
264
- methods: {
265
- // 拦截
266
- handleClick() {
267
- console.log("拦截", this.haveCount, this.limit);
268
- if (this.haveCount <= 0) {
269
- // Toast(`最多上传${props.limit}个文件`);
270
- return;
271
- }
272
- if (
273
- "undefined" != typeof nativeMethod &&
274
- nativeMethod.vueSelectFile
275
- ) {
276
- nativeMethod.vueSelectFile(2, "*", this.limit || 1);
277
- }
278
- },
279
- // 上传选择
280
- async handleSelect(value, items) {
281
- // loadingToast("loading");
282
- const files = Array.from(value.target.files);
283
- let num = 0;
284
- let numLength =
285
- this.haveCount > files.length ? files.length : this.haveCount;
286
- try {
287
- for (let i = 0; i < numLength; i++) {
288
- if (
289
- this.extension.includes(
290
- files[i].name.substring(
291
- files[i].name.lastIndexOf(".") + 1
292
- )
293
- )
294
- ) {
295
- const formData = new FormData();
296
- formData.append("file", files[i]);
297
- const res = await this.api.upload(formData);
298
- if (res.code === 200) {
299
- if (this.filesArr.length > 0) {
300
- for (
301
- let indexs = 0;
302
- indexs < this.filesArr.length;
303
- indexs++
304
- ) {
305
- // 导入文件是否重名
306
- if (
307
- res.originFileName ==
308
- this.filesArr[indexs].originFileName
309
- ) {
310
- num++;
311
- }
312
-
313
- // 导入文件已存在重名
314
- if (
315
- this.filesArr[
316
- indexs
317
- ].originFileName.includes(`(${num})`)
318
- ) {
319
- num++;
320
- }
321
-
322
- if (num > 0) {
323
- let nameIndex = res.originFileName.lastIndexOf(
324
- "."
325
- );
326
- res.originFileName = `${res.originFileName.substring(
327
- 0,
328
- nameIndex
329
- )} (${num}) .${res.originFileName.substring(
330
- res.originFileName.lastIndexOf(
331
- "."
332
- ) + 1
333
- )}`;
334
- }
335
- }
336
- }
337
-
338
- this.filesArr.push(res.data);
339
- } else {
340
- // loadingToast("fail");
341
- this.viewImage();
342
- return;
343
- }
344
- } else {
345
- // Toast.clear();
346
- // Toast.fail(`文件${files[i].name}格式错误,请重新上传`);
347
- return;
348
- }
349
- }
350
- // loadingToast("success");
351
- this.viewImage();
352
- console.log("当前已上传", this.filesArr);
353
- this.emitView();
354
- } catch (err) {
355
- // console.log("失败", err);
356
- // loadingToast("fail");
357
- }
358
- },
359
- // 删除节点
360
- handleDel(index, items) {
361
- let delet;
362
- if (this.deletFn) {
363
- let delet = this.deletFn(items);
364
- if (delet === false) {
365
- // Toast.fail("删除失败");
366
- return;
367
- }
368
- this.filesArr.splice(index, 1);
369
- this.emitView();
370
- } else {
371
- this.filesArr.splice(index, 1);
372
- this.emitView();
373
- }
374
- },
375
- // 预览
376
- viewFile(data, index) {
377
- console.log("data", data);
378
- /* if (
379
- this.imgIcon.includes(
380
- data.name.substring(data.name.lastIndexOf(".") + 1)
381
- )
382
- ) {
383
- ImagePreview({
384
- images: this.lists,
385
- startPosition: this.lists.indexOf(data.url),
386
- });
387
- } else {
388
- if (data.url) {
389
- // router.push(`/webview?src=${data.url}`);
390
- }
391
- } */
392
- },
393
- // 预览图片 数组生成
394
- viewImage() {
395
- this.lists = [];
396
- let arr = [];
397
- this.filesArr.map((v, i) => {
398
- if (
399
- this.imgIcon.includes(
400
- v.name.substring(v.name.lastIndexOf(".") + 1)
401
- )
402
- ) {
403
- }
404
- });
405
- arr = this.filesArr.filter((value) => {
406
- return this.imgIcon.includes(
407
- value.name.substring(value.name.lastIndexOf(".") + 1)
408
- );
409
- });
410
- arr.forEach((v, i) => {
411
- this.lists.push(v.url);
412
- });
413
- },
414
- // 加载中
415
- loadingToast(type, text) {
416
- if (type == "loading") {
417
- /* Toast.loading({
418
- message: "文件上传中",
419
- forbidClick: true,
420
- duration: 0,
421
- }); */
422
- } else if (type == "success") {
423
- /* Toast.clear();
424
- Toast.success("上传成功"); */
425
- } else if (type == "fail") {
426
- /* Toast.clear();
427
- Toast.fail("上传失败"); */
428
- }
429
- },
430
- // 发送数据
431
- emitView() {
432
- console.log("已发送数据:", this.filesArr);
433
- this.$emit("getValue", this.filesArr);
434
- },
435
- // clear node
436
- clearData() {
437
- this.filesArr = [];
438
- console.log("clear!!!!!");
439
- },
440
- },
441
- };
442
-
443
- /* defineEmits */
444
- // const emit = defineEmits(["getValue"]);
445
-
446
- // defineExpose({ clearData });
447
- </script>
448
- <style scoped>
449
- .attch-upload-mask {
450
- width: 100vw;
451
- height: 100vh;
452
- position: fixed;
453
- top: 0;
454
- left: 0;
455
- background-color: #999;
456
- opacity: 0.5;
457
- overflow-x: hidden;
458
- }
459
- .attch-upload-body {
460
- width: 100%;
461
- position: relative;
462
- }
463
- .upload-close {
464
- box-sizing: border-box;
465
- width: 100%;
466
- height: 20px;
467
- padding: 5px;
468
- text-align: right;
469
- }
470
- .upload-close-img {
471
- width: 18px;
472
- height: 18px;
473
- }
474
- .upload-header {
475
- width: 100%;
476
- /* position: fixed;
477
- top: 0; */
478
- height: 44px;
479
- font-size: 14px;
480
- display: flex;
481
- justify-content: space-between;
482
- box-sizing: border-box;
483
- align-items: center;
484
- overflow-x: hidden;
485
- }
486
-
487
- .upload-header-title--re {
488
- color: #ee0000;
489
- }
490
-
491
- .upload-header-close {
492
- width: 18px;
493
- height: 18px;
494
- }
495
-
496
- .upload-header-upload {
497
- height: 18px;
498
-
499
- font-size: 14px;
500
- color: #1389ff;
501
- }
502
-
503
- .upload-input {
504
- opacity: 0;
505
- position: absolute;
506
- }
507
- .upload-header-upload--item {
508
- display: flex;
509
- align-items: center;
510
- }
511
-
512
- .upload-header-upload--item img {
513
- width: 18px;
514
- height: 18px;
515
- margin-right: 4px;
516
- }
517
-
518
- .upload-list {
519
- padding-bottom: 20px;
520
- }
521
- .list-items {
522
- display: flex;
523
- margin-top: 18px;
524
- }
525
-
526
- .list-items-icon {
527
- width: 36px;
528
- height: 40px;
529
- margin-right: 10px;
530
- line-height: 44px;
531
- }
532
- .icon-img {
533
- width: 100%;
534
- height: 100%;
535
- }
536
-
537
- .list-items-info {
538
- width: 225px;
539
- }
540
-
541
- .info-name {
542
- width: 100%;
543
- font-size: 15px;
544
- color: #333;
545
- word-wrap: break-word;
546
- word-break: break-all;
547
- }
548
- .info-attribute {
549
- color: #999;
550
- font-size: 13px;
551
- }
552
- .info-attribute-time {
553
- margin-right: 10px;
554
- }
555
- .info-attribute-views {
556
- color: #1389ff;
557
- }
558
-
559
- .list-items-operation {
560
- flex: 1;
561
- }
562
- .list-items-operation-img {
563
- width: 18px;
564
- height: 18px;
565
- margin-left: auto;
566
- line-height: 44px;
567
- }
568
- .list-items-operation-img img {
569
- width: 100%;
570
- height: 100%;
571
- }
572
-
573
- .upload-footer {
574
- width: 100%;
575
- position: fixed;
576
- bottom: 0;
577
- }
578
-
579
- .attchlist-wrap {
580
- width: 100%;
581
- height: 100dvh;
582
- display: flex;
583
- flex-direction: column;
584
- }
585
- </style>