@gsp-svc/formdoc-upload-vue 1.0.2 → 1.0.3
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.
@@ -87,7 +87,7 @@ var __yieldStar = (value) => {
|
|
87
87
|
};
|
88
88
|
var __forAwait = (obj, it, method) => (it = obj[__knownSymbol("asyncIterator")]) ? it.call(obj) : (obj = obj[__knownSymbol("iterator")](), it = {}, method = (key, fn) => (fn = obj[key]) && (it[key] = (arg) => new Promise((yes, no, done) => (arg = fn.call(obj, arg), done = arg.done, Promise.resolve(arg.value).then((value) => yes({ value, done }), no)))), method("next"), method("return"), it);
|
89
89
|
import { defineComponent, inject, ref, onMounted, resolveComponent, createElementBlock, openBlock, Fragment, createCommentVNode, createElementVNode, createVNode, createBlock, unref, toDisplayString, withCtx, createTextVNode, renderList, normalizeStyle, withDirectives, vModelCheckbox, normalizeClass } from "vue";
|
90
|
-
import {
|
90
|
+
import { ViewModel, Injector, HttpClient } from "@farris/devkit-vue";
|
91
91
|
import { MODAL_SERVICE_TOKEN } from "@farris/command-services-vue";
|
92
92
|
const withInstall = (component) => {
|
93
93
|
const c = component;
|
@@ -3024,9 +3024,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
3024
3024
|
const props = __props;
|
3025
3025
|
const uploadIconAddress = convertPath("/platform/runtime/dfs/images/upload.svg");
|
3026
3026
|
const uploadLittleIconAddress = convertPath("/platform/runtime/dfs/images/uploadIcon.svg");
|
3027
|
-
const
|
3028
|
-
const rootViewModel = module.getRootViewModel();
|
3029
|
-
const localePipe = rootViewModel.getInjector().get(LocalLangPipe);
|
3027
|
+
const localePipe = new LocalLangPipe();
|
3030
3028
|
const files = ref([]);
|
3031
3029
|
const metadataIdList = ref([]);
|
3032
3030
|
const uploadFileInfoList = ref([]);
|
@@ -4410,7 +4408,7 @@ const _export_sfc = (sfc, props) => {
|
|
4410
4408
|
}
|
4411
4409
|
return target;
|
4412
4410
|
};
|
4413
|
-
const FileUpload$1 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
4411
|
+
const FileUpload$1 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-feecb649"]]);
|
4414
4412
|
const FileUpload = withInstall(FileUpload$1);
|
4415
4413
|
const EDP_BIF_VIEWMODEL_INJECTION_TOKEN = Symbol("EDP_BIF_VIEWMODEL");
|
4416
4414
|
class ChangeInstanceRequest {
|
@@ -3025,9 +3025,7 @@ var __forAwait = (obj, it, method) => (it = obj[__knownSymbol("asyncIterator")])
|
|
3025
3025
|
const props = __props;
|
3026
3026
|
const uploadIconAddress = convertPath("/platform/runtime/dfs/images/upload.svg");
|
3027
3027
|
const uploadLittleIconAddress = convertPath("/platform/runtime/dfs/images/uploadIcon.svg");
|
3028
|
-
const
|
3029
|
-
const rootViewModel = module2.getRootViewModel();
|
3030
|
-
const localePipe = rootViewModel.getInjector().get(LocalLangPipe);
|
3028
|
+
const localePipe = new LocalLangPipe();
|
3031
3029
|
const files = vue.ref([]);
|
3032
3030
|
const metadataIdList = vue.ref([]);
|
3033
3031
|
const uploadFileInfoList = vue.ref([]);
|
@@ -4411,7 +4409,7 @@ var __forAwait = (obj, it, method) => (it = obj[__knownSymbol("asyncIterator")])
|
|
4411
4409
|
}
|
4412
4410
|
return target;
|
4413
4411
|
};
|
4414
|
-
const FileUpload$1 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
4412
|
+
const FileUpload$1 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-feecb649"]]);
|
4415
4413
|
const FileUpload = withInstall(FileUpload$1);
|
4416
4414
|
const EDP_BIF_VIEWMODEL_INJECTION_TOKEN = Symbol("EDP_BIF_VIEWMODEL");
|
4417
4415
|
class ChangeInstanceRequest {
|
package/package.json
CHANGED
package/style.css
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
|
2
2
|
/* 样式可以参考原有的 CSS 文件 */
|
3
|
-
.pic_list ul li div img[data-v-
|
3
|
+
.pic_list ul li div img[data-v-feecb649] {
|
4
4
|
max-width: 60px;
|
5
5
|
max-height: 60px;
|
6
6
|
align-items: center;
|
@@ -8,24 +8,24 @@
|
|
8
8
|
vertical-align: middle;
|
9
9
|
text-align: center;
|
10
10
|
}
|
11
|
-
.pic_list ul li span.filename[data-v-
|
11
|
+
.pic_list ul li span.filename[data-v-feecb649] {
|
12
12
|
width: 100px;
|
13
13
|
text-align: center;
|
14
14
|
overflow: hidden;
|
15
15
|
text-overflow: ellipsis;
|
16
16
|
white-space: nowrap;
|
17
17
|
}
|
18
|
-
.home_page[data-v-
|
18
|
+
.home_page[data-v-feecb649] {
|
19
19
|
text-align: center;
|
20
20
|
}
|
21
|
-
.home_page img[data-v-
|
21
|
+
.home_page img[data-v-feecb649] {
|
22
22
|
position: absolute;
|
23
23
|
top: 180px;
|
24
24
|
margin-left: -35px;
|
25
25
|
width: 70px;
|
26
26
|
height: 56px;
|
27
27
|
}
|
28
|
-
.home_page div[data-v-
|
28
|
+
.home_page div[data-v-feecb649] {
|
29
29
|
position: absolute;
|
30
30
|
left: 50%;
|
31
31
|
top: 255px;
|
@@ -34,7 +34,7 @@
|
|
34
34
|
height: 32px;
|
35
35
|
overflow: hidden;
|
36
36
|
}
|
37
|
-
.home_page div span[data-v-
|
37
|
+
.home_page div span[data-v-feecb649] {
|
38
38
|
/* position: absolute;
|
39
39
|
top:255px;
|
40
40
|
margin-left: -75px; */
|
@@ -44,7 +44,7 @@
|
|
44
44
|
z-index: 10;
|
45
45
|
left: 0px;
|
46
46
|
}
|
47
|
-
.home_page div input[data-v-
|
47
|
+
.home_page div input[data-v-feecb649] {
|
48
48
|
position: absolute;
|
49
49
|
left: 0px;
|
50
50
|
top: 0px;
|
@@ -52,12 +52,12 @@
|
|
52
52
|
filter: "alpha(opacity=0)";
|
53
53
|
z-index: 11;
|
54
54
|
}
|
55
|
-
.upload_button[data-v-
|
55
|
+
.upload_button[data-v-feecb649] {
|
56
56
|
width: 110px;
|
57
57
|
height: 32px;
|
58
58
|
overflow: hidden;
|
59
59
|
}
|
60
|
-
.upload_button span[data-v-
|
60
|
+
.upload_button span[data-v-feecb649] {
|
61
61
|
position: relative;
|
62
62
|
right: -4px;
|
63
63
|
top: 4px;
|
@@ -65,7 +65,7 @@
|
|
65
65
|
height: 22px;
|
66
66
|
font-size: 14px;
|
67
67
|
}
|
68
|
-
.upload_button input[data-v-
|
68
|
+
.upload_button input[data-v-feecb649] {
|
69
69
|
height: 32px;
|
70
70
|
width: 110px;
|
71
71
|
position: absolute;
|
@@ -75,25 +75,25 @@
|
|
75
75
|
filter: "alpha(opacity=0)";
|
76
76
|
overflow: hidden;
|
77
77
|
}
|
78
|
-
.upload_button img[data-v-
|
78
|
+
.upload_button img[data-v-feecb649] {
|
79
79
|
position: relative;
|
80
80
|
left: -6px;
|
81
81
|
top: 3px;
|
82
82
|
width: 14px;
|
83
83
|
height: 14px;
|
84
84
|
}
|
85
|
-
.button_group_upload[data-v-
|
85
|
+
.button_group_upload[data-v-feecb649] {
|
86
86
|
position: absolute;
|
87
87
|
right: 18px;
|
88
88
|
top: 12px;
|
89
89
|
height: 26px;
|
90
90
|
width: 92px;
|
91
91
|
}
|
92
|
-
.button_group_upload button[data-v-
|
92
|
+
.button_group_upload button[data-v-feecb649] {
|
93
93
|
height: 26px;
|
94
94
|
width: 26px;
|
95
95
|
}
|
96
|
-
.fileinput-button[data-v-
|
96
|
+
.fileinput-button[data-v-feecb649] {
|
97
97
|
position: absolute;
|
98
98
|
right: 60px;
|
99
99
|
bottom: 40px;
|
@@ -108,34 +108,34 @@
|
|
108
108
|
-o-transform: scale(2.5);
|
109
109
|
color: rgb(6, 134, 253);
|
110
110
|
}
|
111
|
-
.fileinput-button input[data-v-
|
111
|
+
.fileinput-button input[data-v-feecb649] {
|
112
112
|
position: absolute;
|
113
113
|
left: 0px;
|
114
114
|
top: 0px;
|
115
115
|
opacity: 0;
|
116
116
|
filter: "alpha(opacity=0)";
|
117
117
|
}
|
118
|
-
.pic-droplist[data-v-
|
118
|
+
.pic-droplist[data-v-feecb649] {
|
119
119
|
height: 24px;
|
120
120
|
color: #e0e1e2;
|
121
121
|
background-color: #e0e1e2;
|
122
122
|
}
|
123
|
-
.pic-droplist input-group[data-v-
|
123
|
+
.pic-droplist input-group[data-v-feecb649] {
|
124
124
|
display: table-cell;
|
125
125
|
width: 100px;
|
126
126
|
text-align: center;
|
127
127
|
border: 0;
|
128
128
|
}
|
129
|
-
.pic-droplist input-group div[data-v-
|
129
|
+
.pic-droplist input-group div[data-v-feecb649] {
|
130
130
|
border: 0;
|
131
131
|
}
|
132
|
-
.pic-droplist input-group div input[data-v-
|
132
|
+
.pic-droplist input-group div input[data-v-feecb649] {
|
133
133
|
background-color: #e0e1e2;
|
134
134
|
}
|
135
|
-
.pic-droplist input-group div div[data-v-
|
135
|
+
.pic-droplist input-group div div[data-v-feecb649] {
|
136
136
|
background-color: #e0e1e2;
|
137
137
|
}
|
138
|
-
.pic_list[data-v-
|
138
|
+
.pic_list[data-v-feecb649] {
|
139
139
|
padding: 0;
|
140
140
|
height: 406px;
|
141
141
|
overflow-y: auto;
|
@@ -143,13 +143,13 @@
|
|
143
143
|
/* //border: 1px solid #ddd; */
|
144
144
|
/*多出来的ul要剪掉*/
|
145
145
|
}
|
146
|
-
.pic_list ul[data-v-
|
146
|
+
.pic_list ul[data-v-feecb649] {
|
147
147
|
padding: 0;
|
148
148
|
list-style: none;
|
149
149
|
width: 100%;
|
150
150
|
margin: 20px 0 0 20px;
|
151
151
|
}
|
152
|
-
.pic_list ul li[data-v-
|
152
|
+
.pic_list ul li[data-v-feecb649] {
|
153
153
|
height: 179px;
|
154
154
|
width: 135px;
|
155
155
|
margin: 8px 0 8px 12px;
|
@@ -166,7 +166,7 @@
|
|
166
166
|
width: 24px;
|
167
167
|
height: 24px;
|
168
168
|
} */
|
169
|
-
.pic_list ul li div[data-v-
|
169
|
+
.pic_list ul li div[data-v-feecb649] {
|
170
170
|
width: 135px;
|
171
171
|
height: 159px;
|
172
172
|
margin: 0 0 0 0;
|
@@ -176,7 +176,7 @@
|
|
176
176
|
text-align: center;
|
177
177
|
position: relative;
|
178
178
|
}
|
179
|
-
.pic_list ul li div img[data-v-
|
179
|
+
.pic_list ul li div img[data-v-feecb649] {
|
180
180
|
max-width: 60px;
|
181
181
|
max-height: 60px;
|
182
182
|
align-items: center;
|
@@ -184,26 +184,26 @@
|
|
184
184
|
vertical-align: middle;
|
185
185
|
text-align: center;
|
186
186
|
}
|
187
|
-
.pic_list ul li span.filename[data-v-
|
187
|
+
.pic_list ul li span.filename[data-v-feecb649] {
|
188
188
|
width: 100px;
|
189
189
|
text-align: center;
|
190
190
|
overflow: hidden;
|
191
191
|
text-overflow: ellipsis;
|
192
192
|
white-space: nowrap;
|
193
193
|
}
|
194
|
-
.queue_list[data-v-
|
194
|
+
.queue_list[data-v-feecb649] {
|
195
195
|
display: block;
|
196
196
|
height: 420px;
|
197
197
|
overflow-y: auto;
|
198
198
|
}
|
199
|
-
.file_list[data-v-
|
199
|
+
.file_list[data-v-feecb649] {
|
200
200
|
list-style: none;
|
201
201
|
margin: 0;
|
202
202
|
padding: 0;
|
203
203
|
overflow-x: hidden;
|
204
204
|
overflow-y: auto;
|
205
205
|
}
|
206
|
-
.file_list li[data-v-
|
206
|
+
.file_list li[data-v-feecb649] {
|
207
207
|
/* //background: #e6e6e6;
|
208
208
|
border-bottom: 1px solid #d3d3d3; */
|
209
209
|
height: 50px;
|
@@ -211,31 +211,31 @@
|
|
211
211
|
font-size: 16px;
|
212
212
|
position: relative;
|
213
213
|
}
|
214
|
-
.file_list li button[data-v-
|
214
|
+
.file_list li button[data-v-feecb649] {
|
215
215
|
float: right;
|
216
216
|
top: 6px;
|
217
217
|
right: 10px;
|
218
218
|
width: 20px;
|
219
219
|
}
|
220
|
-
.file_list li p.title[data-v-
|
220
|
+
.file_list li p.title[data-v-feecb649] {
|
221
221
|
padding: 0 0 0 6px;
|
222
222
|
margin: 0 210px 0 0;
|
223
223
|
}
|
224
|
-
.file_list li p.size[data-v-
|
224
|
+
.file_list li p.size[data-v-feecb649] {
|
225
225
|
position: absolute;
|
226
226
|
width: 100px;
|
227
227
|
top: 0;
|
228
228
|
right: 100px;
|
229
229
|
}
|
230
|
-
input#file[data-v-
|
230
|
+
input#file[data-v-feecb649]:disabled {
|
231
231
|
cursor: not-allowed;
|
232
232
|
}
|
233
|
-
.help_text[data-v-
|
233
|
+
.help_text[data-v-feecb649] {
|
234
234
|
color: rgba(0, 0, 0, 0.35);
|
235
235
|
position: absolute;
|
236
236
|
top: 16px;
|
237
237
|
right: 120px;
|
238
238
|
}
|
239
|
-
.farris-header[data-v-
|
239
|
+
.farris-header[data-v-feecb649] {
|
240
240
|
box-shadow: 0 2px 4px 0 rgba(57, 66, 100, 0.08);
|
241
241
|
}
|