cr 4 år sedan
förälder
incheckning
f511ec686c
7 ändrade filer med 951 tillägg och 367 borttagningar
  1. 2 2
      .env
  2. 2 2
      .env.develop
  3. 2 2
      .env.production
  4. 1 0
      a.txt
  5. 413 276
      src/components/easy-upload/easy-upload.vue
  6. 531 85
      src/pages/manage/add-good-form.vue
  7. BIN
      src/static/icon/loading.gif

+ 2 - 2
.env

@@ -7,13 +7,13 @@ NODE_ENV = 'production'
7 7
 VUE_APP_ENV = develop
8 8
 
9 9
 # 接口请求基地址
10
-VUE_APP_API_BASE_URL = https://delivery.ixiaokejia.com
10
+VUE_APP_API_BASE_URL = http://localhost:59982
11 11
 
12 12
 # 接口请求基地址
13 13
 VUE_APP_WEBSOCKET_BASE_URL = 
14 14
 
15 15
 # 图片基地址
16
-VUE_APP_IMAGE_BASE_URL = https://delivery.ixiaokejia.com
16
+VUE_APP_IMAGE_BASE_URL = http://localhost:59982
17 17
 VUE_APP_IMAGE_RESOURCE_URL = 
18 18
 
19 19
 # 微信小程序appId

+ 2 - 2
.env.develop

@@ -7,13 +7,13 @@ NODE_ENV = 'production'
7 7
 VUE_APP_ENV = production
8 8
 
9 9
 # 接口请求基地址
10
-VUE_APP_API_BASE_URL = https://delivery.ixiaokejia.com
10
+VUE_APP_API_BASE_URL = http://localhost:59982
11 11
 
12 12
 # 接口请求基地址
13 13
 VUE_APP_WEBSOCKET_BASE_URL = 
14 14
 
15 15
 # 图片基地址
16
-VUE_APP_IMAGE_BASE_URL = https://delivery.ixiaokejia.com
16
+VUE_APP_IMAGE_BASE_URL = http://localhost:59982
17 17
 VUE_APP_IMAGE_RESOURCE_URL = 
18 18
 
19 19
 # 微信小程序appId

+ 2 - 2
.env.production

@@ -7,13 +7,13 @@ NODE_ENV = 'production'
7 7
 VUE_APP_ENV = production
8 8
 
9 9
 # 接口请求基地址
10
-VUE_APP_API_BASE_URL = https://delivery.ixiaokejia.com
10
+VUE_APP_API_BASE_URL = http://localhost:59982
11 11
 
12 12
 # 接口请求基地址
13 13
 VUE_APP_WEBSOCKET_BASE_URL = 
14 14
 
15 15
 # 图片基地址
16
-VUE_APP_IMAGE_BASE_URL = https://delivery.ixiaokejia.com
16
+VUE_APP_IMAGE_BASE_URL = http://localhost:59982
17 17
 VUE_APP_IMAGE_RESOURCE_URL = 
18 18
 
19 19
 # 微信小程序appId

+ 1 - 0
a.txt

@@ -0,0 +1 @@
1
+VUE_APP_API_BASE_URL = https://delivery.ixiaokejia.com

+ 413 - 276
src/components/easy-upload/easy-upload.vue

@@ -1,286 +1,423 @@
1 1
 <template>
2
-	<view>
3
-		<view class="upload">
4
-			<block v-for="(upload,index) in uploads" :key="index">
5
-				<view class="uplode-file">
6
-					<image v-if="types == 'image'" class="uploade-img" :src="upload" :data-src="upload" @tap="previewImage"></image>
7
-					<image v-if="types == 'image'" class="clear-one-icon" :src="clearIcon" @tap="delImage(index)"></image>
8
-					<video v-if="types == 'video'" class="uploade-img" :src="upload" controls>
9
-						<cover-image v-if="types == 'video'" class="clear-one-icon" :src="clearIcon" @tap="delImage(index)"></cover-image>
10
-					</video>
11
-				</view>
12
-			</block>
13
-			<view v-if="uploads.length < uploadCount" :class="uploadIcon ? 'uploader-icon' : 'uploader-input-box'">
14
-				<view v-if="!uploadIcon" class="uploader-input" @tap="chooseUploads"></view>
15
-				<image v-else class="image-cion" :src="uploadIcon" @tap="chooseUploads"></image>
16
-			</view>
17
-		</view>	
18
-		<!-- <button type="primary" v-if="types == 'image'" @tap="upload">上传</button> -->
19
-	</view>
2
+    <view>
3
+        <view class="upload">
4
+            <block v-for="(upload, index) in uploads" :key="index">
5
+                <view class="uplode-file">
6
+                    <image
7
+                        v-if="types == 'image'"
8
+                        class="uploade-img"
9
+                        :src="upload"
10
+                        :data-src="upload"
11
+                        @tap="previewImage"
12
+                    ></image>
13
+                    <image
14
+                        v-if="types == 'image'"
15
+                        class="clear-one-icon"
16
+                        :src="clearIcon"
17
+                        @tap="delImage(index)"
18
+                    ></image>
19
+                    <view class="load-box" v-if="viewLoading(upload)">
20
+                        <image src="/static/icon/loading.gif"></image>
21
+                    </view>
22
+                    <video
23
+                        v-if="types == 'video'"
24
+                        class="uploade-img"
25
+                        :src="upload"
26
+                        controls
27
+                    >
28
+                        <cover-image
29
+                            v-if="types == 'video'"
30
+                            class="clear-one-icon"
31
+                            :src="clearIcon"
32
+                            @tap="delImage(index)"
33
+                        ></cover-image>
34
+                    </video>
35
+                </view>
36
+            </block>
37
+            <view
38
+                v-if="uploads.length < uploadCount"
39
+                :class="uploadIcon ? 'uploader-icon' : 'uploader-input-box'"
40
+            >
41
+                <view
42
+                    v-if="!uploadIcon"
43
+                    class="uploader-input"
44
+                    @tap="chooseUploads"
45
+                ></view>
46
+                <image
47
+                    v-else
48
+                    class="image-cion"
49
+                    :src="uploadIcon"
50
+                    @tap="chooseUploads"
51
+                ></image>
52
+            </view>
53
+        </view>
54
+        <!-- <button type="primary" v-if="types == 'image'" @tap="upload">上传</button> -->
55
+    </view>
20 56
 </template>
21 57
 
22 58
 <script>
23
-	export default{
24
-		props: {
25
-			types: {
26
-				type: String,
27
-				default: 'image'
28
-			},
29
-			dataList: {
30
-				type: Array,
31
-				default: function() {
32
-					return []
33
-				}
34
-			},
35
-			clearIcon: {
36
-				type: String,
37
-				default: 'http://img1.imgtn.bdimg.com/it/u=451604666,2295832001&fm=26&gp=0.jpg'
38
-			},
39
-			uploadIcon: {
40
-				type: String,
41
-				default: ''
42
-			},
43
-			uploadUrl: {
44
-				type: String,
45
-				default: ''
46
-			},
47
-			deleteUrl: {
48
-				type: String,
49
-				default: ''
50
-			},
51
-			uploadCount: {
52
-				type: Number,
53
-				default: 1
54
-			},
55
-			//上传图片大小 默认3M
56
-			upload_max: {
57
-				type: Number,
58
-				default: 3
59
-			}
60
-		},
61
-		data(){
62
-			return {
63
-				//上传的图片地址
64
-				uploadImages: [],
65
-				//展示的图片地址
66
-				uploads: [],
67
-				// 超出限制数组
68
-				exceeded_list: [],
69
-			}
70
-		},
71
-		watch:{
72
-			dataList:{
73
-				handler(val){
74
-					this.uploads = val;
75
-				},
76
-				immediate: true
77
-			}
78
-		},
79
-		methods:{
80
-			previewImage (e) {
81
-				var current = e.target.dataset.src
82
-				uni.previewImage({
83
-					current: current,
84
-					urls: this.dataList
85
-				})
86
-			},
87
-			chooseUploads(){
88
-				switch (this.types){
89
-					case 'image': 
90
-						uni.chooseImage({
91
-							count: this.uploadCount - this.uploads.length, //默认9
92
-							sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
93
-							sourceType: ['album', 'camera'], //从相册选择
94
-							success: (res) => {
95
-								for(let i = 0; i< res.tempFiles.length; i++){
96
-									if(Math.ceil(res.tempFiles[i].size / 1024) < this.upload_max * 1024){
97
-										this.uploads.push(res.tempFiles[i].path)
98
-										this.uploadImages.push(res.tempFiles[i].path)
99
-									}else {
100
-										this.exceeded_list.push(i === 0 ? 1 : i + 1);
101
-										uni.showModal({
102
-											title: '提示',
103
-											content: `第${[...new Set(this.exceeded_list)].join(',')}张图片超出限制${this.upload_max}MB,已过滤`
104
-										});
105
-									}
106
-								}
107
-								this.upload();
108
-							},
109
-							fail: (err) => {
110
-								uni.showModal({
111
-									content: JSON.stringify(err)
112
-								});
113
-							}
114
-						});
115
-					break;
116
-					case 'video' :
117
-						uni.chooseVideo({
118
-							sourceType: ['camera', 'album'],
119
-							success: (res) => {
120
-								if(Math.ceil(res.size / 1024) < this.upload_max * 1024){
121
-									this.uploads.push(res.tempFilePath)
122
-									uni.uploadFile({
123
-										url: this.uploadUrl, //仅为示例,非真实的接口地址
124
-										filePath: res.tempFilePath,
125
-										name: 'file',
126
-										//请求参数
127
-										formData: {
128
-											'user': 'test'
129
-										},
130
-										success: (uploadFileRes) => {
131
-											this.$emit('successVideo',uploadFileRes)
132
-										}
133
-									});
134
-								}else {
135
-									uni.showModal({
136
-										title: '提示',
137
-										content: `第${[...new Set(this.exceeded_list)].join(',')}张视频超出限制${this.upload_max}MB,已过滤`
138
-									});
139
-								}
140
-							},
141
-							fail: (err) => {
142
-								uni.showModal({
143
-									content: JSON.stringify(err)
144
-								});
145
-							}
146
-						});
147
-					break;
148
-				}
149
-			},
150
-			delImage(index){
151
-				//第一个是判断app或者h5的 第二个是判断小程序的
152
-				if(this.uploads[index].substring(0,4) !== 'http' || this.uploads[index].substring(0,11) == 'http://tmp/'){
153
-					this.uploads.splice(index,1)
154
-					return;
155
-				};
156
-				if(!this.deleteUrl) {
157
-					uni.showModal({
158
-						content: '请填写删除接口'
159
-					});
160
-					return;
161
-				};
162
-				uni.request({
163
-					url: this.deleteUrl,
164
-					method: 'DELETE',
165
-					data: {
166
-						image: this.dataList[index]
167
-					},
168
-					success: res => {
169
-						if(res.data.status == 1) {
170
-							uni.showToast({
171
-								title: '删除成功'
172
-							})
173
-							this.uploads.splice(index,1)
174
-						}
175
-					},
176
-				});
177
-			},
178
-			upload(){
179
-				console.log(this.uploadUrl);
180
-				if(!this.uploadUrl) {
181
-					uni.showModal({
182
-						content: '请填写上传接口'
183
-					});
184
-					return;
185
-				};
186
-				for (let i of this.uploadImages) {
187
-					uni.uploadFile({
188
-						url: this.uploadUrl, //仅为示例,非真实的接口地址
189
-						filePath: i,
190
-						name: 'file',
191
-						//请求参数
192
-						formData: {
193
-							'user': 'test'
194
-						},
195
-						success: (uploadFileRes) => {
196
-							this.$emit('successImage',uploadFileRes)
197
-						}
198
-					});
59
+export default {
60
+    props: {
61
+        types: {
62
+            type: String,
63
+            default: "image",
64
+        },
65
+        value: {
66
+            type: Array,
67
+            default: function () {
68
+                return [];
69
+            },
70
+        },
71
+        clearIcon: {
72
+            type: String,
73
+            default:
74
+                "http://img1.imgtn.bdimg.com/it/u=451604666,2295832001&fm=26&gp=0.jpg",
75
+        },
76
+        uploadIcon: {
77
+            type: String,
78
+            default: "",
79
+        },
80
+        // uploadUrl: {
81
+        // 	type: String,
82
+        // 	default: ''
83
+        // },
84
+        deleteUrl: {
85
+            type: String,
86
+            default: "",
87
+        },
88
+        uploadCount: {
89
+            type: Number,
90
+            default: 1,
91
+        },
92
+        //上传图片大小 默认5M
93
+        upload_max: {
94
+            type: Number,
95
+            default: 5,
96
+        },
97
+    },
98
+    data() {
99
+        return {
100
+            // //上传的图片地址
101
+            // uploadImages: [],
102
+            //展示的图片地址
103
+            uploads: [],
104
+            // 超出限制数组
105
+            exceeded_list: [],
106
+
107
+            uploadUrl: "http://localhost:59982/Upload/Image",
108
+        };
109
+    },
110
+    watch: {
111
+        value: {
112
+            handler(val) {
113
+                this.uploads = val;
114
+            },
115
+            immediate: true,
116
+        },
117
+    },
118
+    methods: {
119
+        previewImage(e) {
120
+            var current = e.target.dataset.src;
121
+            uni.previewImage({
122
+                current: current,
123
+                urls: this.value,
124
+            });
125
+        },
126
+
127
+        viewLoading(str) {
128
+            if (str.indexOf("http://tmp/") !== -1) {
129
+                return true;
130
+            } else {
131
+                return false;
132
+            }
133
+        },
134
+
135
+        chooseUploads() {
136
+            switch (this.types) {
137
+                case "image":
138
+                    uni.chooseImage({
139
+                        count: this.uploadCount - this.uploads.length, //默认9
140
+                        sizeType: ["original", "compressed"], //可以指定是原图还是压缩图,默认二者都有
141
+                        sourceType: ["album", "camera"], //从相册选择
142
+                        success: (res) => {
143
+                            for (let i = 0; i < res.tempFiles.length; i++) {
144
+                                if (
145
+                                    Math.ceil(res.tempFiles[i].size / 1024) <
146
+                                    this.upload_max * 1024
147
+                                ) {
148
+                                    let tempUrl = res.tempFiles[i].path;
149
+                                    this.uploads.push(tempUrl);
150
+                                    this.upload(tempUrl, (newUrl) => {
151
+                                        if (newUrl) {
152
+                                            let arr = [];
153
+                                            for (let item of this.uploads) {
154
+                                                if (item === tempUrl) {
155
+                                                    arr.push(newUrl);
156
+                                                } else {
157
+                                                    arr.push(item);
158
+                                                }
159
+                                            }
160
+                                            this.uploads = arr;
161
+                                            this.output();
162
+                                        } else {
163
+                                        }
164
+                                    });
165
+                                } else {
166
+                                    this.exceeded_list.push(
167
+                                        i === 0 ? 1 : i + 1
168
+                                    );
169
+                                    uni.showModal({
170
+                                        title: "提示",
171
+                                        content: `第${[
172
+                                            ...new Set(this.exceeded_list),
173
+                                        ].join(",")}张图片超出限制${
174
+                                            this.upload_max
175
+                                        }MB,已过滤`,
176
+                                    });
177
+                                }
178
+                            }
179
+                        },
180
+                        fail: (err) => {
181
+                            // uni.showModal({
182
+                            //     content: JSON.stringify(err),
183
+                            // });
184
+                        },
185
+                    });
186
+                    break;
187
+                case "video":
188
+                    uni.chooseVideo({
189
+                        sourceType: ["camera", "album"],
190
+                        success: (res) => {
191
+                            if (
192
+                                Math.ceil(res.size / 1024) <
193
+                                this.upload_max * 1024
194
+                            ) {
195
+                                this.uploads.push(res.tempFilePath);
196
+                                uni.uploadFile({
197
+                                    url: this.uploadUrl, //仅为示例,非真实的接口地址
198
+                                    filePath: res.tempFilePath,
199
+                                    name: "file",
200
+                                    //请求参数
201
+                                    formData: {
202
+                                        user: "test",
203
+                                    },
204
+                                    success: (uploadFileRes) => {
205
+                                        this.$emit(
206
+                                            "successVideo",
207
+                                            uploadFileRes
208
+                                        );
209
+                                    },
210
+                                });
211
+                            } else {
212
+                                uni.showModal({
213
+                                    title: "提示",
214
+                                    content: `第${[
215
+                                        ...new Set(this.exceeded_list),
216
+                                    ].join(",")}张视频超出限制${
217
+                                        this.upload_max
218
+                                    }MB,已过滤`,
219
+                                });
220
+                            }
221
+                        },
222
+                        fail: (err) => {
223
+                            // uni.showModal({
224
+                            //     content: JSON.stringify(err),
225
+                            // });
226
+                        },
227
+                    });
228
+                    break;
229
+            }
230
+        },
231
+        delImage(index) {
232
+            //第一个是判断app或者h5的 第二个是判断小程序的
233
+            if (
234
+                this.uploads[index].substring(0, 4) !== "http" ||
235
+                this.uploads[index].substring(0, 11) == "http://tmp/"
236
+            ) {
237
+                this.uploads.splice(index, 1);
238
+                return;
239
+            }
240
+            // if (!this.deleteUrl) {
241
+            //     uni.showModal({
242
+            //         content: "请填写删除接口",
243
+            //     });
244
+            //     return;
245
+			// }
246
+			this.uploads.splice(index, 1);
247
+            this.output();
248
+            // uni.request({
249
+            //     url: this.deleteUrl,
250
+            //     method: "DELETE",
251
+            //     data: {
252
+            //         image: this.value[index],
253
+            //     },
254
+            //     success: (res) => {
255
+            //         if (res.data.status == 1) {
256
+            //             uni.showToast({
257
+            //                 title: "删除成功",
258
+            //             });
259
+            //             this.uploads.splice(index, 1);
260
+            //             this.output();
261
+            //         }
262
+            //     },
263
+            // });
264
+        },
265
+        upload(file, callback) {
266
+            let self = this;
267
+            if (!this.uploadUrl) {
268
+                uni.showModal({
269
+                    content: "请填写上传接口",
270
+                });
271
+                return;
272
+            }
273
+
274
+            uni.uploadFile({
275
+                header: {
276
+                    appId: self.config.appId,
277
+                    companyId: self.$store.state.user.user.companyId,
278
+                    userId: self.$store.state.user.user.id,
279
+                    Authorization: "Bearer " + self.token,
280
+                    StoreId: self.$store.state.common.curShop.id || "",
281
+                },
282
+                url: this.uploadUrl, //仅为示例,非真实的接口地址
283
+                filePath: file,
284
+                name: "file",
285
+                //请求参数
286
+                // formData: {
287
+                // 	'user': 'test'
288
+                // },
289
+                success: (uploadFileRes) => {
290
+                    let data = JSON.parse(uploadFileRes.data);
291
+                    if (data.success) {
292
+                        if (callback) {
293
+                            callback(data.data);
294
+                        }
295
+                        this.$emit("successImage", uploadFileRes);
296
+                    }
297
+                },
298
+                fail: () => {
299
+                    if (callback) {
300
+                        callback(false);
301
+                    }
302
+                },
303
+            });
304
+            // }
305
+        },
306
+
307
+        // 传输给父组件
308
+        output() {
309
+			const self = this;
310
+			let arr = [];
311
+			for(let item of self.uploads){
312
+				if(self.viewLoading(item)){
313
+
314
+				}else{
315
+					arr.push(item);
199 316
 				}
200 317
 			}
201
-		}
202
-	}
318
+            self.$emit("change", arr);
319
+        },
320
+    },
321
+    computed: {
322
+        token() {
323
+            return this.$store.state.user.token;
324
+        },
325
+    },
326
+};
203 327
 </script>
204 328
 
205 329
 <style scoped>
206
-	.upload {
207
-		display: flex;
208
-		flex-direction: row;
209
-		flex-wrap: wrap;
210
-	}
211
-	.uplode-file {
212
-		margin: 10upx;
213
-		width: 210upx;
214
-		height: 210upx;
215
-		position: relative;
216
-	}
217
-	.uploade-img {
218
-		display: block;
219
-		width: 210upx;
220
-		height: 210upx;
221
-	}
222
-	.clear-one{
223
-		position: absolute;
224
-		top: -10rpx;
225
-		right: 0;
226
-	}
227
-	.clear-one-icon{
228
-		position: absolute;
229
-		width: 20px;
230
-		height: 20px;
231
-		top: 0;
232
-		right: 0;
233
-		z-index: 9;
234
-	}
235
-	.uploader-input-box {
236
-		position: relative;
237
-		margin:10upx;
238
-		width: 208upx;
239
-		height: 208upx;
240
-		border: 2upx solid #D9D9D9;
241
-	}
242
-	.uploader-input-box:before,
243
-	.uploader-input-box:after {
244
-		content: " ";
245
-		position: absolute;
246
-		top: 50%;
247
-		left: 50%;
248
-		-webkit-transform: translate(-50%, -50%);
249
-		transform: translate(-50%, -50%);
250
-		background-color: #D9D9D9;
251
-	}
252
-	.uploader-input-box:before {
253
-		width: 4upx;
254
-		height: 79upx;
255
-	}
256
-	.uploader-input-box:after {
257
-		width: 79upx;
258
-		height: 4upx;
259
-	}
260
-	.uploader-input-box:active {
261
-		border-color: #999999;
262
-	}
263
-	.uploader-input-box:active:before,
264
-	.uploader-input-box:active:after {
265
-		background-color: #999999;
266
-	}
267
-	.uploader-input {
268
-		position: absolute;
269
-		z-index: 1;
270
-		top: 0;
271
-		left: 0;
272
-		width: 100%;
273
-		height: 100%;
274
-		opacity: 0;
275
-	}
276
-	.uploader-icon{
277
-		position: relative;
278
-		margin:10upx;
279
-		width: 208upx;
280
-		height: 208upx;
281
-	}
282
-	.uploader-icon .image-cion{
283
-		width: 100%;
284
-		height: 100%;
285
-	}
330
+.upload {
331
+    display: flex;
332
+    flex-direction: row;
333
+    flex-wrap: wrap;
334
+}
335
+.uplode-file {
336
+    margin: 10upx;
337
+    width: 210upx;
338
+    height: 210upx;
339
+    position: relative;
340
+}
341
+.uploade-img {
342
+    display: block;
343
+    width: 210upx;
344
+    height: 210upx;
345
+}
346
+.clear-one {
347
+    position: absolute;
348
+    top: -10rpx;
349
+    right: 0;
350
+}
351
+.load-box {
352
+    position: absolute;
353
+    top: 0;
354
+    left: 0;
355
+    width: 100%;
356
+    height: 100%;
357
+    z-index: 1;
358
+    background-color: rgba(0, 0, 0, 0.4);
359
+}
360
+.load-box image {
361
+    width: 100%;
362
+    height: 100%;
363
+}
364
+.clear-one-icon {
365
+    position: absolute;
366
+    width: 20px;
367
+    height: 20px;
368
+    top: 0;
369
+    right: 0;
370
+    z-index: 9;
371
+}
372
+.uploader-input-box {
373
+    position: relative;
374
+    margin: 10upx;
375
+    width: 208upx;
376
+    height: 208upx;
377
+    border: 2upx solid #d9d9d9;
378
+}
379
+.uploader-input-box:before,
380
+.uploader-input-box:after {
381
+    content: " ";
382
+    position: absolute;
383
+    top: 50%;
384
+    left: 50%;
385
+    -webkit-transform: translate(-50%, -50%);
386
+    transform: translate(-50%, -50%);
387
+    background-color: #d9d9d9;
388
+}
389
+.uploader-input-box:before {
390
+    width: 4upx;
391
+    height: 79upx;
392
+}
393
+.uploader-input-box:after {
394
+    width: 79upx;
395
+    height: 4upx;
396
+}
397
+.uploader-input-box:active {
398
+    border-color: #999999;
399
+}
400
+.uploader-input-box:active:before,
401
+.uploader-input-box:active:after {
402
+    background-color: #999999;
403
+}
404
+.uploader-input {
405
+    position: absolute;
406
+    z-index: 1;
407
+    top: 0;
408
+    left: 0;
409
+    width: 100%;
410
+    height: 100%;
411
+    opacity: 0;
412
+}
413
+.uploader-icon {
414
+    position: relative;
415
+    margin: 10upx;
416
+    width: 208upx;
417
+    height: 208upx;
418
+}
419
+.uploader-icon .image-cion {
420
+    width: 100%;
421
+    height: 100%;
422
+}
286 423
 </style>

+ 531 - 85
src/pages/manage/add-good-form.vue

@@ -1,16 +1,40 @@
1 1
 <template>
2
-    <div class="page" :class="{'page--iphoneX': iphoneX}">
2
+    <div class="page" :class="{ 'page--iphoneX': iphoneX }">
3 3
         <div class="form-card">
4
+            <div class="head">
5
+                <div class="tit">基本信息</div>
6
+                <div class="switch"></div>
7
+            </div>
4 8
             <section class="form-item">
5 9
                 <div class="label">
6 10
                     <span class="required">*</span>
11
+                    店铺:
12
+                </div>
13
+                <div class="box">
14
+                    <picker
15
+                        :mode="'selector'"
16
+                        :range="storeList"
17
+                        :range-key="'name'"
18
+                        @change="pickerStoreChange"
19
+                    >
20
+                        <input
21
+                            type="text"
22
+                            v-model="baseInfo._storeName"
23
+                            :disabled="true"
24
+                            placeholder="请选择"
25
+                        />
26
+                    </picker>
27
+                </div>
28
+            </section>
29
+            <section class="form-item">
30
+                <div class="label">
31
+                    <span class="required hide">*</span>
7 32
                     商品条码:
8 33
                 </div>
9 34
                 <div class="box">
10
-                    <input type="text" />
35
+                    <input type="text" v-model="baseInfo.barCode" />
11 36
                 </div>
12 37
                 <div class="tool code-tool">
13
-                    <span class="generate">生成</span>
14 38
                     <my-image
15 39
                         class="scan-img"
16 40
                         @click="scan"
@@ -18,73 +42,215 @@
18 42
                     ></my-image>
19 43
                 </div>
20 44
             </section>
45
+
46
+            <section class="form-item">
47
+                <div class="label">
48
+                    <span class="required">*</span>
49
+                    商品标题:
50
+                </div>
51
+                <div class="box">
52
+                    <input type="text" v-model="baseInfo.name" />
53
+                </div>
54
+            </section>
55
+
21 56
             <section class="form-item">
22 57
                 <div class="label">
23 58
                     <span class="required">*</span>
24
-                    商品名称:
59
+                    商品编码:
60
+                </div>
61
+                <div class="box">
62
+                    <input type="text" v-model="baseInfo.code" />
63
+                </div>
64
+                <div class="tool code-tool">
65
+                    <span class="generate" @click="generateCode('code')"
66
+                        >生成</span
67
+                    >
68
+                </div>
69
+            </section>
70
+
71
+            <section class="form-item">
72
+                <div class="label">
73
+                    <span class="required hide">*</span>
74
+                    商品描述:
25 75
                 </div>
26 76
                 <div class="box">
27
-                    <input type="text" />
77
+                    <textarea
78
+                        v-model="baseInfo.description"
79
+                        :maxlength="1048"
80
+                        :auto-height="true"
81
+                    ></textarea>
28 82
                 </div>
29 83
             </section>
84
+
30 85
             <section class="form-item">
31 86
                 <div class="label">
32 87
                     <span class="required">*</span>
33 88
                     分类:
34 89
                 </div>
35 90
                 <div class="box">
36
-                    <picker :mode="'multiSelector'" :range="cateList">
37
-                        <input
38
-                            type="text"
39
-                            :disabled="true"
40
-                            placeholder="请选择"
41
-                        />
42
-                    </picker>
91
+                    <div
92
+                        class="type-tip"
93
+                        v-if="cateList.length === 0"
94
+                        @touchstart.stop
95
+                    >
96
+                        请先选择店铺
97
+                    </div>
98
+                    <div
99
+                        class="type-item"
100
+                        v-for="(item, index) of typeList"
101
+                        :key="index"
102
+                    >
103
+                        <picker
104
+                            :mode="'multiSelector'"
105
+                            :range="cateList"
106
+                            :range-key="'name'"
107
+                            @columnchange="typeColumnchange"
108
+                            @change="pickerTypeChange($event, index)"
109
+                        >
110
+                            <input
111
+                                type="text"
112
+                                :disabled="true"
113
+                                :value="item.name"
114
+                                placeholder="请选择"
115
+                            />
116
+                        </picker>
117
+                        <span class="remove-text" @click="typeRemove(index)"
118
+                            >删除</span
119
+                        >
120
+                    </div>
121
+                    <div class="add-type" @click="addType">增加分类</div>
43 122
                 </div>
44 123
             </section>
124
+        </div>
125
+        <div class="form-card">
126
+            <div class="head">
127
+                <div class="tit">规格库存</div>
128
+                <div class="switch"></div>
129
+            </div>
130
+
45 131
             <section class="form-item">
46 132
                 <div class="label">
47 133
                     <span class="required">*</span>
48
-                    重量:
134
+                    价格
49 135
                 </div>
50 136
                 <div class="box">
51
-                    <input type="digit" />
137
+                    <input type="digit" v-model="baseInfo.price" />
52 138
                 </div>
53 139
                 <div class="tool">
54
-                    <span class="">kg</span>
140
+                    <span class=""></span>
55 141
                 </div>
56 142
             </section>
143
+
57 144
             <section class="form-item">
58 145
                 <div class="label">
59
-                    <span class="required">*</span>
60
-                    售价:
146
+                    <span class="required hide">*</span>
147
+                    进货价:
61 148
                 </div>
62 149
                 <div class="box">
63
-                    <input type="digit" />
150
+                    <input type="digit" v-model="baseInfo.supplyPrice" />
64 151
                 </div>
65 152
                 <div class="tool">
66 153
                     <span class="">元</span>
67 154
                 </div>
68 155
             </section>
156
+
69 157
             <section class="form-item">
70 158
                 <div class="label">
71
-                    <span class="required">*</span>
159
+                    <span class="required hide">*</span>
160
+                    成本:
161
+                </div>
162
+                <div class="box">
163
+                    <input type="digit" v-model="baseInfo.cost" />
164
+                </div>
165
+                <div class="tool">
166
+                    <span class="">元</span>
167
+                </div>
168
+            </section>
169
+
170
+            <section class="form-item">
171
+                <div class="label">
172
+                    <span class="required hide">*</span>
72 173
                     划线价:
73 174
                 </div>
74 175
                 <div class="box">
75
-                    <input type="digit" />
176
+                    <input type="digit" v-model="baseInfo.tagPrice" />
76 177
                 </div>
77 178
                 <div class="tool">
78 179
                     <span class="">元</span>
79 180
                 </div>
80 181
             </section>
182
+
183
+            <section class="form-item">
184
+                <div class="label">
185
+                    <span class="required">*</span>
186
+                    重量:
187
+                </div>
188
+                <div class="box">
189
+                    <input type="digit" v-model="baseInfo.weight" />
190
+                </div>
191
+                <div class="tool">
192
+                    <span class="">克</span>
193
+                </div>
194
+            </section>
195
+
81 196
             <section class="form-item">
82 197
                 <div class="label">
83 198
                     <span class="required">*</span>
84 199
                     库存:
85 200
                 </div>
86 201
                 <div class="box">
87
-                    <input type="number" />
202
+                    <input type="digit" v-model="baseInfo.stock" />
203
+                </div>
204
+            </section>
205
+
206
+            <section class="form-item">
207
+                <div class="label">
208
+                    <span class="required">*</span>
209
+                    sku编码:
210
+                </div>
211
+                <div class="box">
212
+                    <input type="digit" v-model="baseInfo.skuCode" />
213
+                </div>
214
+                <div class="tool code-tool">
215
+                    <span class="generate" @click="generateCode('skuCode')"
216
+                        >生成</span
217
+                    >
218
+                </div>
219
+            </section>
220
+        </div>
221
+
222
+        <div class="form-card img-card">
223
+            <section class="form-img-item">
224
+                <div class="tit"><span class="required">*</span>主图</div>
225
+                <div class="list">
226
+                    <easy-upload
227
+                        :types="'image'"
228
+                        v-model="baseInfo.mainImg"
229
+                        :uploadCount="1"
230
+                        @change="minImgChange"
231
+                    ></easy-upload>
232
+                </div>
233
+            </section>
234
+            <section class="form-img-item">
235
+                <div class="tit"><span class="required">*</span>封面图</div>
236
+                <div class="list">
237
+                    <easy-upload
238
+                        :types="'image'"
239
+                        v-model="productForm.images"
240
+                        :uploadCount="100"
241
+                        @change="imagesChange"
242
+                    ></easy-upload>
243
+                </div>
244
+            </section>
245
+            <section class="form-img-item">
246
+                <div class="tit"><span class="required">*</span>详情图</div>
247
+                <div class="list">
248
+                    <easy-upload
249
+                        :types="'image'"
250
+                        v-model="productForm.detailImages"
251
+                        :uploadCount="100"
252
+                        @change="detailImagesChange"
253
+                    ></easy-upload>
88 254
                 </div>
89 255
             </section>
90 256
         </div>
@@ -105,11 +271,17 @@
105 271
                     <div class="box">
106 272
                         <radio-group @change="tempChange">
107 273
                             <label>
108
-                                <radio :value="true" />
274
+                                <radio
275
+                                    :value="true"
276
+                                    :checked="productForm.useTemplate === true"
277
+                                />
109 278
                                 <text>是</text>
110 279
                             </label>
111 280
                             <label>
112
-                                <radio :value="false" />
281
+                                <radio
282
+                                    :value="false"
283
+                                    :checked="productForm.useTemplate === false"
284
+                                />
113 285
                                 <text>否</text>
114 286
                             </label>
115 287
                         </radio-group>
@@ -117,11 +289,11 @@
117 289
                 </section>
118 290
                 <section class="form-item">
119 291
                     <div class="label">
120
-                        <span class="required">*</span>
292
+                        <span class="required hide">*</span>
121 293
                         初始销量:
122 294
                     </div>
123 295
                     <div class="box">
124
-                        <input type="number" />
296
+                        <input type="number" v-model="baseInfo.initialSale" />
125 297
                     </div>
126 298
                 </section>
127 299
                 <section class="form-item">
@@ -130,56 +302,52 @@
130 302
                         出售方式:
131 303
                     </div>
132 304
                     <div class="box">
133
-                        <picker :mode="'selector'" :range="sellType">
134
-                            <input type="text" :disabled="true"  placeholder="请选择"/>
305
+                        <picker
306
+                            :mode="'selector'"
307
+                            :range="sellType"
308
+                            :range-key="'key'"
309
+                            @change="pickerStatusChange"
310
+                        >
311
+                            <input
312
+                                type="text"
313
+                                :disabled="true"
314
+                                v-model="baseInfo._statusName"
315
+                                placeholder="请选择"
316
+                            />
135 317
                         </picker>
136 318
                     </div>
137 319
                 </section>
138 320
                 <section class="form-item">
139 321
                     <div class="label">
140
-                        <span class="required">*</span>
322
+                        <span class="required hide">*</span>
141 323
                         限购数:
142 324
                     </div>
143 325
                     <div class="box">
144
-                        <input type="number" />
326
+                        <input
327
+                            type="number"
328
+                            v-model="baseInfo.maxBuyableCount"
329
+                        />
145 330
                     </div>
146 331
                 </section>
147
-                <section class="form-item">
332
+                <!-- <section class="form-item">
148 333
                     <div class="label">
149 334
                         <span class="required">*</span>
150 335
                         供应商:
151 336
                     </div>
152 337
                     <div class="box">
153 338
                         <picker :mode="'selector'" :range="supplierList">
154
-                            <input type="text" :disabled="true" placeholder="请选择"/>
339
+                            <input
340
+                                type="text"
341
+                                :disabled="true"
342
+                                placeholder="请选择"
343
+                            />
155 344
                         </picker>
156 345
                     </div>
157
-                </section>
346
+                </section> -->
158 347
             </block>
159 348
         </div>
160 349
 
161
-        <div class="form-card img-card">
162
-            <section class="form-img-item">
163
-                <div class="tit">封面图</div>
164
-                <div class="list">
165
-                    <easy-upload :types="'image'" :dataList="coverImg" :uploadUrl="'http://localhost:3000/upload'" :uploadCount="1" @successImage="successImage"></easy-upload>
166
-                </div>
167
-            </section>
168
-            <section class="form-img-item">
169
-                <div class="tit">主图</div>
170
-                <div class="list">
171
-                    <easy-upload :types="'image'" :dataList="mainImg" :uploadUrl="'http://localhost:3000/upload'" :uploadCount="100" @successImage="successImage"></easy-upload>
172
-                </div>
173
-            </section>
174
-            <section class="form-img-item">
175
-                <div class="tit">详情图</div>
176
-                <div class="list">
177
-                    <easy-upload :types="'image'" :dataList="detailImg" :uploadUrl="'http://localhost:3000/upload'" :uploadCount="100" @successImage="successImage"></easy-upload>
178
-                </div>
179
-            </section>
180
-        </div>
181
-
182
-        <button type="button" class="btn">保存</button>
350
+        <button type="button" class="btn" @click="save">保存</button>
183 351
     </div>
184 352
 </template>
185 353
 
@@ -189,30 +357,91 @@ import easyUpload from "../../components/easy-upload/easy-upload";
189 357
 
190 358
 export default {
191 359
     name: "",
192
-    components: { MyImage,easyUpload },
360
+    components: { MyImage, easyUpload },
193 361
 
194 362
     // 数据
195 363
     data() {
196 364
         return {
365
+            sellType: [
366
+                { key: "立即出售", value: 1 },
367
+                { key: "放入仓库", value: 0 },
368
+            ], // 出售方式
369
+            supplierList: ["测试供应商"], // 供应商
370
+            storeList: [], // 店铺列表
197 371
             cateList: [], // 分类列表
198
-            sellType:['立即开售','放入仓库'], // 出售方式
199
-            supplierList:['测试供应商'], // 供应商
200
-            showOther: true,
201
-            mainImg:[],
202
-            coverImg:[],
203
-            detailImg:[],
372
+            showOther: true, // 显示其他
373
+
374
+            // 选中的分类列表
375
+            typeList: [{}],
376
+
377
+            // 基本信息表, _为前端临时用
378
+            baseInfo: {
379
+                storeId: "", // 店铺id
380
+                _storeName: "", // 店铺名 前台显示用
381
+                barCode: "", // 条码
382
+                name: "", // 标题
383
+                code: "", // 编码
384
+                description: "", // 描述
385
+                productTypeIds: [], // 分类
386
+
387
+                price: "", // 价格
388
+                supplyPrice: "", // 进货价
389
+                cost: "", // 成本
390
+                tagPrice: "", //划线价,单位为分
391
+                weight: "", //商品重量,单位为g
392
+                stock: "", // 库存
393
+                skuCode: "", // sku编码
394
+
395
+                initialSale: 0, // 初始销量
396
+                status: 1, // 出售方式 0-放入仓库(即没有上架),1-立即出售(即上架)
397
+                _statusName: "立即出售",
398
+                maxBuyableCount: 0, // 限购数
399
+
400
+                mainImage: "", // 主图 300 *300
401
+            },
402
+            productForm: {
403
+                useTemplate: false, // 是否使用模板
404
+
405
+                images: [], // 封面图
406
+                detailImages: [], // 详情图
407
+            },
408
+            mainImg: [],
409
+            coverImg: [],
410
+            detailImg: [],
204 411
         };
205 412
     },
206
-
207
-    async onShow() {
208
-        this.cateList = [
209
-            [1, 2, 3, 4, 5],
210
-            ["一", "二", "三", "四", "五"],
211
-        ];
413
+    onLoad() {
414
+        this.getStore();
212 415
     },
213 416
 
417
+    async onShow() {},
418
+
214 419
     // 函数
215 420
     methods: {
421
+        // 获取店铺
422
+        getStore() {
423
+            this.api.get("/Store/GetShopList").then((res) => {
424
+                this.storeList = res.data;
425
+            });
426
+        },
427
+
428
+        // 获取分类
429
+        getClassify(storeId) {
430
+            this.api
431
+                .get("/Product/GetProductType", {
432
+                    storeId,
433
+                })
434
+                .then((res) => {
435
+                    let arr = [res.data];
436
+                    if (res.data[0].children) {
437
+                        arr.push(res.data[0].children);
438
+                    } else {
439
+                        arr.push([]);
440
+                    }
441
+                    this.cateList = arr;
442
+                });
443
+        },
444
+
216 445
         // 条码扫描
217 446
         scan() {
218 447
             let self = this;
@@ -226,10 +455,11 @@ export default {
226 455
             });
227 456
         },
228 457
 
229
-        // 生成
230
-        generateBarCode() {
458
+        // 生成
459
+        generateCode(file) {
231 460
             // 后台编码生成方式
232 461
             const timestamp = Date.parse(new Date());
462
+            this.baseInfo[file] = timestamp;
233 463
         },
234 464
 
235 465
         // 其他面板切换
@@ -241,14 +471,186 @@ export default {
241 471
         tempChange(e) {
242 472
             let val = e.target.value;
243 473
             if (val === "true") {
474
+                this.productForm.useTemplate = true;
244 475
             } else {
476
+                this.productForm.useTemplate = false;
245 477
             }
246 478
         },
247 479
 
248
-        // 上传成功
249
-        successImage(e){
250
-            console.log(e);
251
-        }
480
+        // 主图
481
+        minImgChange(e) {
482
+            this.baseInfo.mainImage = e[0] || "";
483
+        },
484
+
485
+        // 封面图
486
+        imagesChange(e) {
487
+            this.productForm.images = e;
488
+        },
489
+
490
+        // 详情图
491
+        detailImagesChange(e) {
492
+            this.productForm.detailImages = e;
493
+        },
494
+
495
+        // picker变化
496
+        // 店铺
497
+        pickerStoreChange(e) {
498
+            let index = e.target.value;
499
+            let val = this.storeList[index];
500
+            this.baseInfo.storeId = val.id;
501
+            this.baseInfo._storeName = val.name;
502
+            this.typeList = [{}];
503
+            this.cateList = [];
504
+            this.getClassify(val.id);
505
+        },
506
+
507
+        // 分类
508
+        addType() {
509
+            this.typeList.push({});
510
+        },
511
+        typeRemove(i) {
512
+            this.typeList.splice(i, 1);
513
+            this.typeList = [...this.typeList];
514
+        },
515
+        pickerTypeChange(e, typeListIndex) {
516
+            console.log(e.detail);
517
+            let index1 = e.detail.value[0] || 0;
518
+            let index2 = e.detail.value[1] || 0;
519
+            let name = this.cateList[0][index1].name;
520
+            let id = this.cateList[0][index1].id;
521
+            if (this.cateList[1].length) {
522
+                name += "/" + this.cateList[1][index2].name;
523
+                id = this.cateList[1][index2].id;
524
+            }
525
+            console.log(name, id);
526
+            this.typeList[typeListIndex].name = name;
527
+            this.typeList[typeListIndex].id = id;
528
+            this.typeList = [...this.typeList];
529
+            let ids = [];
530
+            for (let item of this.typeList) {
531
+                if (item.id) {
532
+                    ids.push(item.id);
533
+                }
534
+            }
535
+            this.baseInfo.productTypeIds = ids;
536
+        },
537
+        typeColumnchange(e) {
538
+            let column = e.detail.column;
539
+            let index = e.detail.value;
540
+            if (column === 0) {
541
+                let val = this.cateList[0][index];
542
+                if (val.children) {
543
+                    this.cateList[1] = val.children;
544
+                } else {
545
+                    this.cateList[1] = [];
546
+                }
547
+                this.$forceUpdate();
548
+            }
549
+        },
550
+
551
+        // 出售方式
552
+        pickerStatusChange(e) {
553
+            let index = e.target.value;
554
+            let val = this.sellType[index];
555
+            this.baseInfo.status = val.value;
556
+            this.baseInfo._statusName = val.key;
557
+        },
558
+
559
+        // 保存
560
+        save() {
561
+            let requiredFile1 = [
562
+                {
563
+                    key: "storeId",
564
+                    msg: "请选择店铺",
565
+                },
566
+                {
567
+                    key: "name",
568
+                    msg: "请输入商品标题",
569
+                },
570
+                {
571
+                    key: "code",
572
+                    msg: "请输入商品编码",
573
+                },
574
+                {
575
+                    key: "productTypeIds",
576
+                    type: "array",
577
+                    msg: "请选择分类",
578
+                },
579
+                {
580
+                    key: "price",
581
+                    msg: "请输入价格",
582
+                },
583
+                {
584
+                    key: "weight",
585
+                    msg: "请输入重量",
586
+                },
587
+                {
588
+                    key: "stock",
589
+                    msg: "请输入库存",
590
+                },
591
+                {
592
+                    key: "skuCode",
593
+                    msg: "请输入sku编码",
594
+                },
595
+                {
596
+                    key: "mainImage",
597
+                    msg: "请上传主图",
598
+                },
599
+            ];
600
+            let requiredFile2 = [
601
+                {
602
+                    key: "images",
603
+                    type: "array",
604
+                    msg: "请上传封面图",
605
+                },
606
+                {
607
+                    key: "detailImages",
608
+                    type: "array",
609
+                    msg: "请上传详情图",
610
+                },
611
+            ];
612
+
613
+            for (let item of requiredFile1) {
614
+                if (item.type === "array") {
615
+                    if (this.baseInfo[item.key].length === 0) {
616
+                        return this.fn.showToast(item.msg);
617
+                    }
618
+                } else {
619
+                    if (!this.baseInfo[item.key]) {
620
+                        return this.fn.showToast(item.msg);
621
+                    }
622
+                }
623
+            }
624
+
625
+            for (let item of requiredFile2) {
626
+                if (item.type === "array") {
627
+                    if (this.productForm[item.key].length === 0) {
628
+                        return this.fn.showToast(item.msg);
629
+                    }
630
+                } else {
631
+                    if (!this.productForm[item.key]) {
632
+                        return this.fn.showToast(item.msg);
633
+                    }
634
+                }
635
+            }
636
+
637
+            let sendData = {
638
+                baseInfo: {
639
+                    ...this.baseInfo,
640
+                    companyId:'0520aa13-517d-4f69-88ef-c0b543372af7'
641
+                },
642
+                ...this.productForm,
643
+                hotSaleRecommendIds:[],
644
+                businessRecommendIds:[],
645
+                participated:false,
646
+                video:''
647
+            };
648
+            sendData.baseInfo.price = Number(sendData.baseInfo.price)* 100;
649
+            sendData.baseInfo.supplyPrice = Number(sendData.baseInfo.supplyPrice)* 100;
650
+            sendData.baseInfo.cost = Number(sendData.baseInfo.cost)* 100;
651
+            sendData.baseInfo.tagPrice = Number(sendData.baseInfo.tagPrice)* 100;
652
+            this.api.post("/product/SaveEdit", sendData).then((res) => {});
653
+        },
252 654
     },
253 655
 
254 656
     // 数据计算
@@ -277,11 +679,20 @@ export default {
277 679
         font-size: px(48);
278 680
     }
279 681
 }
682
+.required {
683
+    color: #f00;
684
+    font-size: px(44);
685
+    &.hide {
686
+        visibility: hidden;
687
+    }
688
+}
280 689
 .form-item {
281 690
     display: flex;
282
-    font-size: px(44);
283
-    height: px(140);
691
+    min-height: px(140);
692
+    padding: px(30) 0;
693
+    box-sizing: border-box;
284 694
     align-items: center;
695
+    font-size: px(44);
285 696
     & ~ .form-item {
286 697
         border-top: 1px solid #f1f1f1;
287 698
     }
@@ -293,6 +704,7 @@ export default {
293 704
     }
294 705
     .box {
295 706
         width: 100%;
707
+        position: relative;
296 708
         input {
297 709
             width: 100%;
298 710
         }
@@ -302,8 +714,10 @@ export default {
302 714
         color: #999;
303 715
         margin-left: px(10);
304 716
     }
305
-    .required {
306
-        color: #f00;
717
+    textarea,
718
+    input {
719
+        max-width: 100%;
720
+        width: 100%;
307 721
     }
308 722
 }
309 723
 .code-tool {
@@ -325,29 +739,61 @@ export default {
325 739
         flex-shrink: 0;
326 740
     }
327 741
 }
328
-radio-group{
329
-    label~label{
742
+radio-group {
743
+    label ~ label {
330 744
         margin-left: px(40);
331 745
     }
332 746
 }
333
-.img-card{
747
+.img-card {
334 748
     padding-top: px(30);
335 749
     padding-bottom: px(30);
336 750
 }
337
-.form-img-item{
338
-    .tit{
751
+.form-img-item {
752
+    .tit {
339 753
         padding: px(30);
340 754
         font-size: px(44);
341 755
     }
342
-    .list{
343
-
756
+    .list {
344 757
     }
345 758
 }
346
-.btn{
759
+.btn {
347 760
     margin-top: px(60);
348 761
     background-color: rgb(0, 188, 38);
349 762
     color: #fff;
350 763
     border-radius: 0;
351 764
     border: none;
352 765
 }
766
+.add-type {
767
+    width: 100%;
768
+    font-size: px(40);
769
+    color: #0097d1;
770
+    padding: px(20) 0;
771
+}
772
+.type-item {
773
+    padding: px(20) 0;
774
+    display: flex;
775
+    justify-content: space-between;
776
+    align-items: center;
777
+    border-bottom: 1px solid #f1f1f1;
778
+    .remove-text {
779
+        color: red;
780
+        flex-shrink: 0;
781
+        margin-left: px(20);
782
+    }
783
+}
784
+.type-tip {
785
+    position: absolute;
786
+    top: 0;
787
+    left: 0;
788
+    width: 100%;
789
+    height: 100%;
790
+    z-index: 100;
791
+    background-color: rgba(0, 0, 0, 0.4);
792
+    color: #fff;
793
+    font-size: px(44);
794
+    display: flex;
795
+    justify-content: center;
796
+    align-items: center;
797
+    pointer-events: none;
798
+}
353 799
 </style>

BIN
src/static/icon/loading.gif