Browse Source

多规格编辑

cr 4 years ago
parent
commit
06b42b2977

+ 3 - 0
releaselog.md

@@ -1,4 +1,7 @@
1 1
 
2
+# 0.2.4 (20.11.18 19:00)
3
+### 多规格编辑
4
+
2 5
 # 0.2.3 (20.11.17 19:00)
3 6
 ### 修改bug
4 7
 

+ 10 - 0
src/common/js/function.js

@@ -358,4 +358,14 @@ export default {
358 358
 
359 359
         return groups
360 360
     },
361
+
362
+    /**
363
+     * guid
364
+     */
365
+    guid() {
366
+        function S4() {
367
+            return (((1 + Math.random()) * 0x10000) | 0).toString(16).substring(1);
368
+        }
369
+        return (S4() + S4() + "-" + S4() + "-" + S4() + "-" + S4() + "-" + S4() + S4() + S4());
370
+    },
361 371
 }

+ 1 - 0
src/common/store/common.js

@@ -11,6 +11,7 @@ const module = {
11 11
         tabIndex:0,
12 12
         editClassify:null,  // manage/classify-form 编辑时保存的临时数据
13 13
         specData: null,   // manage/spec-edit 编辑时零时保存
14
+        skuItem: null,   // manage/spec-item-form 编辑时零时保存
14 15
     },
15 16
 
16 17
     // 同步方法

+ 5 - 0
src/components/easy-upload/easy-upload.vue

@@ -106,9 +106,14 @@ export default {
106 106
             uploadUrl: process.env.VUE_APP_API_BASE_URL + "/Upload/Image",
107 107
         };
108 108
     },
109
+    mounted() {
110
+        this.uploads = [];
111
+        console.log(1);
112
+    },
109 113
     watch: {
110 114
         value: {
111 115
             handler(val) {
116
+                console.log("12", val);
112 117
                 this.uploads = val;
113 118
             },
114 119
             immediate: true,

+ 425 - 237
src/pages/manage/add-good-form.vue

@@ -1,141 +1,6 @@
1 1
 <template>
2 2
     <div class="page" :class="{ 'page--iphoneX': iphoneX }">
3
-        <!-- 多规格 -->
4
-        <!-- <div class="form-card sepc-card">
5
-            <div class="head">
6
-                <div class="tit">规格</div>
7
-                <div class="switch">
8
-                </div>
9
-            </div>
10
-            <section class="form-item">
11
-                <div class="label">
12
-                    <span class="required">*</span>
13
-                    规格数目:
14
-                </div>
15
-                <div class="box">
16
-                    <ul class="spec-list">
17
-                        <li
18
-                            :class="{ on: specIndex === 0 }"
19
-                            @click="specClick(0)"
20
-                        >
21
-                            单品
22
-                        </li>
23
-                        <li
24
-                            :class="{ on: specIndex === 1 }"
25
-                            @click="specClick(1)"
26
-                        >
27
-                            一种
28
-                        </li>
29
-                        <li
30
-                            :class="{ on: specIndex === 2 }"
31
-                            @click="specClick(2)"
32
-                        >
33
-                            两种
34
-                        </li>
35
-                        <li
36
-                            :class="{ on: specIndex === 3 }"
37
-                            @click="specClick(3)"
38
-                        >
39
-                            三种
40
-                        </li>
41
-                    </ul>
42
-                </div>
43
-            </section>
44
-            <section
45
-                class="form-item"
46
-                v-if="specIndex === 1 || specIndex === 2 || specIndex === 3"
47
-            >
48
-                <div class="label">
49
-                    <span class="required">*</span>
50
-                    规格一:
51
-                </div>
52
-                <div class="box">
53
-                    <div class="spec-view" @click="specEdit(1)">
54
-                        <span class="text" :class="{ dis: !specData1 }">{{
55
-                            specData1 | arrView
56
-                        }}</span>
57
-                        <my-image
58
-                            class="spec-link"
59
-                            src="/static/common/arrows_left.png"
60
-                        ></my-image>
61
-                    </div>
62
-                </div>
63
-            </section>
64
-            <section
65
-                class="form-item"
66
-                v-if="specIndex === 2 || specIndex === 3"
67
-            >
68
-                <div class="label">
69
-                    <span class="required">*</span>
70
-                    规格二:
71
-                </div>
72
-                <div class="box">
73
-                    <div class="spec-view" @click="specEdit(2)">
74
-                        <span class="text" :class="{ dis: !specData2 }">{{
75
-                            specData2 | arrView
76
-                        }}</span>
77
-                        <my-image
78
-                            class="spec-link"
79
-                            src="/static/common/arrows_left.png"
80
-                        ></my-image>
81
-                    </div>
82
-                </div>
83
-            </section>
84
-            <section class="form-item" v-if="specIndex === 3">
85
-                <div class="label">
86
-                    <span class="required">*</span>
87
-                    规格三:
88
-                </div>
89
-                <div class="box">
90
-                    <div class="spec-view" @click="specEdit(3)">
91
-                        <span class="text" :class="{ dis: !specData3 }">{{
92
-                            specData3 | arrView
93
-                        }}</span>
94
-                        <my-image
95
-                            class="spec-link"
96
-                            src="/static/common/arrows_left.png"
97
-                        ></my-image>
98
-                    </div>
99
-                </div>
100
-            </section>
101
-
102
-            <section class="spec-item">
103
-                <div class="spec-head" @click="specForm()">
104
-                    <span class="name">组合一:红色,甜的</span>
105
-                    <my-image
106
-                        class="img"
107
-                        src="/static/common/arrows_left.png"
108
-                    ></my-image>
109
-                </div>
110
-                <div class="con">
111
-                    <div class="con-item">
112
-                        价格<span class="required">*</span>:10.0
113
-                    </div>
114
-                    <div class="con-item">
115
-                        库存<span class="required">*</span>:100
116
-                    </div>
117
-                </div>
118
-            </section>
119
-
120
-            <section class="spec-item">
121
-                <div class="spec-head" @click="specForm()">
122
-                    <span class="name">组合二:红色,甜的</span>
123
-                    <my-image
124
-                        class="img"
125
-                        src="/static/common/arrows_left.png"
126
-                    ></my-image>
127
-                </div>
128
-                <div class="con">
129
-                    <div class="con-item">
130
-                        价格<span class="required">*</span>:10.0
131
-                    </div>
132
-                    <div class="con-item">
133
-                        库存<span class="required">*</span>:100
134
-                    </div>
135
-                </div>
136
-            </section>
137
-        </div> -->
138
-
3
+        <!-- 基本信息 -->
139 4
         <div class="form-card">
140 5
             <div class="head">
141 6
                 <div class="tit">基本信息</div>
@@ -243,103 +108,222 @@
243 108
                 </div>
244 109
             </section>
245 110
         </div>
246
-        <div class="form-card">
111
+        <!-- 规格 -->
112
+        <div class="form-card sepc-card">
247 113
             <div class="head">
248
-                <div class="tit">规格库存</div>
114
+                <div class="tit">规格</div>
249 115
                 <div class="switch"></div>
250 116
             </div>
251
-
252 117
             <section class="form-item">
253 118
                 <div class="label">
254 119
                     <span class="required">*</span>
255
-                    价格
120
+                    规格数目
256 121
                 </div>
257 122
                 <div class="box">
258
-                    <input type="digit" v-model="baseInfo.price" />
259
-                </div>
260
-                <div class="tool">
261
-                    <span class="">元</span>
123
+                    <ul class="spec-list">
124
+                        <li
125
+                            :class="{ on: specIndex === 0 }"
126
+                            @click="specClick(0)"
127
+                        >
128
+                            单品
129
+                        </li>
130
+                        <li
131
+                            :class="{ on: specIndex === 1 }"
132
+                            @click="specClick(1)"
133
+                        >
134
+                            一种
135
+                        </li>
136
+                        <li
137
+                            :class="{ on: specIndex === 2 }"
138
+                            @click="specClick(2)"
139
+                        >
140
+                            两种
141
+                        </li>
142
+                        <li
143
+                            :class="{ on: specIndex === 3 }"
144
+                            @click="specClick(3)"
145
+                        >
146
+                            三种
147
+                        </li>
148
+                    </ul>
262 149
                 </div>
263 150
             </section>
264
-
265
-            <section class="form-item">
151
+            <section
152
+                class="form-item"
153
+                v-if="specIndex === 1 || specIndex === 2 || specIndex === 3"
154
+            >
266 155
                 <div class="label">
267 156
                     <span class="required">*</span>
268
-                    重量:
157
+                    规格一
269 158
                 </div>
270 159
                 <div class="box">
271
-                    <input type="digit" v-model="baseInfo.weight" />
272
-                </div>
273
-                <div class="tool">
274
-                    <span class="">克</span>
160
+                    <div class="spec-view" @click="specEdit(1)">
161
+                        <span class="text" :class="{ dis: !specData1 }">{{
162
+                            specData1 | arrView
163
+                        }}</span>
164
+                        <my-image
165
+                            class="spec-link"
166
+                            src="/static/common/arrows_left.png"
167
+                        ></my-image>
168
+                    </div>
275 169
                 </div>
276 170
             </section>
277
-
278
-            <section class="form-item">
171
+            <section
172
+                class="form-item"
173
+                v-if="specIndex === 2 || specIndex === 3"
174
+            >
279 175
                 <div class="label">
280 176
                     <span class="required">*</span>
281
-                    库存:
177
+                    规格二
282 178
                 </div>
283 179
                 <div class="box">
284
-                    <input type="digit" v-model="baseInfo.stock" />
180
+                    <div class="spec-view" @click="specEdit(2)">
181
+                        <span class="text" :class="{ dis: !specData2 }">{{
182
+                            specData2 | arrView
183
+                        }}</span>
184
+                        <my-image
185
+                            class="spec-link"
186
+                            src="/static/common/arrows_left.png"
187
+                        ></my-image>
188
+                    </div>
285 189
                 </div>
286 190
             </section>
287
-
288
-            <section class="form-item">
191
+            <section class="form-item" v-if="specIndex === 3">
289 192
                 <div class="label">
290 193
                     <span class="required">*</span>
291
-                    sku编码:
194
+                    规格三
292 195
                 </div>
293 196
                 <div class="box">
294
-                    <input type="digit" v-model="baseInfo.skuCode" />
295
-                </div>
296
-                <div class="tool code-tool">
297
-                    <span class="generate" @click="generateCode('skuCode')"
298
-                        >生成</span
299
-                    >
197
+                    <div class="spec-view" @click="specEdit(3)">
198
+                        <span class="text" :class="{ dis: !specData3 }">{{
199
+                            specData3 | arrView
200
+                        }}</span>
201
+                        <my-image
202
+                            class="spec-link"
203
+                            src="/static/common/arrows_left.png"
204
+                        ></my-image>
205
+                    </div>
300 206
                 </div>
301 207
             </section>
302 208
 
303
-            <section class="form-item">
304
-                <div class="label">
305
-                    <span class="required hide">*</span>
306
-                    进货价:
307
-                </div>
308
-                <div class="box">
309
-                    <input type="digit" v-model="baseInfo.supplyPrice" />
310
-                </div>
311
-                <div class="tool">
312
-                    <span class="">元</span>
313
-                </div>
314
-            </section>
209
+            <!-- 单品 -->
210
+            <black v-if="specIndex === 0">
211
+                <section class="form-item">
212
+                    <div class="label">
213
+                        <span class="required">*</span>
214
+                        价格:
215
+                    </div>
216
+                    <div class="box">
217
+                        <input type="digit" v-model="baseInfo.price" />
218
+                    </div>
219
+                    <div class="tool">
220
+                        <span class="">元</span>
221
+                    </div>
222
+                </section>
223
+                <section class="form-item">
224
+                    <div class="label">
225
+                        <span class="required hide">*</span>
226
+                        进货价:
227
+                    </div>
228
+                    <div class="box">
229
+                        <input type="digit" v-model="baseInfo.supplyPrice" />
230
+                    </div>
231
+                    <div class="tool">
232
+                        <span class="">元</span>
233
+                    </div>
234
+                </section>
315 235
 
316
-            <section class="form-item">
317
-                <div class="label">
318
-                    <span class="required hide">*</span>
319
-                    成本:
320
-                </div>
321
-                <div class="box">
322
-                    <input type="digit" v-model="baseInfo.cost" />
323
-                </div>
324
-                <div class="tool">
325
-                    <span class="">元</span>
326
-                </div>
327
-            </section>
236
+                <section class="form-item">
237
+                    <div class="label">
238
+                        <span class="required hide">*</span>
239
+                        成本:
240
+                    </div>
241
+                    <div class="box">
242
+                        <input type="digit" v-model="baseInfo.cost" />
243
+                    </div>
244
+                    <div class="tool">
245
+                        <span class="">元</span>
246
+                    </div>
247
+                </section>
248
+                <section class="form-item">
249
+                    <div class="label">
250
+                        <span class="required hide">*</span>
251
+                        划线价:
252
+                    </div>
253
+                    <div class="box">
254
+                        <input type="digit" v-model="baseInfo.tagPrice" />
255
+                    </div>
256
+                    <div class="tool">
257
+                        <span class="">元</span>
258
+                    </div>
259
+                </section>
260
+                <section class="form-item">
261
+                    <div class="label">
262
+                        <span class="required">*</span>
263
+                        重量:
264
+                    </div>
265
+                    <div class="box">
266
+                        <input type="digit" v-model="baseInfo.weight" />
267
+                    </div>
268
+                    <div class="tool">
269
+                        <span class="">克</span>
270
+                    </div>
271
+                </section>
328 272
 
329
-            <section class="form-item">
330
-                <div class="label">
331
-                    <span class="required hide">*</span>
332
-                    划线价:
333
-                </div>
334
-                <div class="box">
335
-                    <input type="digit" v-model="baseInfo.tagPrice" />
336
-                </div>
337
-                <div class="tool">
338
-                    <span class="">元</span>
339
-                </div>
340
-            </section>
341
-        </div>
273
+                <section class="form-item">
274
+                    <div class="label">
275
+                        <span class="required">*</span>
276
+                        库存:
277
+                    </div>
278
+                    <div class="box">
279
+                        <input type="number" v-model="baseInfo.stock" />
280
+                    </div>
281
+                </section>
342 282
 
283
+                <section class="form-item">
284
+                    <div class="label">
285
+                        <span class="required">*</span>
286
+                        sku编码:
287
+                    </div>
288
+                    <div class="box">
289
+                        <input type="digit" v-model="baseInfo.skuCode" />
290
+                    </div>
291
+                    <div class="tool code-tool">
292
+                        <span class="generate" @click="generateCode('skuCode')"
293
+                            >生成</span
294
+                        >
295
+                    </div>
296
+                </section>
297
+            </black>
298
+            <black v-if="specIndex !== 0">
299
+                <section
300
+                    class="spec-item"
301
+                    v-for="item of skuTableData"
302
+                    :key="item.key"
303
+                >
304
+                    <div class="spec-head" @click="specForm(item)">
305
+                        <span class="name">组合一:{{ item.key }}</span>
306
+                        <my-image
307
+                            class="img"
308
+                            src="/static/common/arrows_left.png"
309
+                        ></my-image>
310
+                    </div>
311
+                    <div class="con">
312
+                        <div class="con-item">
313
+                            价格<span class="required">*</span>:{{
314
+                                item.price
315
+                            }}
316
+                        </div>
317
+                        <div class="con-item">
318
+                            库存<span class="required">*</span>:{{
319
+                                item.stock
320
+                            }}
321
+                        </div>
322
+                    </div>
323
+                </section>
324
+            </black>
325
+        </div>
326
+        <!-- 图片 -->
343 327
         <div class="form-card img-card">
344 328
             <section class="form-img-item">
345 329
                 <div class="tit"><span class="required">*</span>封面图</div>
@@ -377,7 +361,7 @@
377 361
                 </div>
378 362
             </section>
379 363
         </div>
380
-
364
+        <!-- 其他 -->
381 365
         <div class="form-card">
382 366
             <div class="head">
383 367
                 <div class="tit">其他信息</div>
@@ -574,10 +558,12 @@ export default {
574 558
 
575 559
             // 规格
576 560
             specIndex: 0,
577
-            specData1: null, // {name,list}
578
-            specData2: null, // {name,list}
579
-            specData3: null, // {name,list}
561
+            specData1: null, // {name,list,columnName}
562
+            specData2: null, // {name,list,columnName}
563
+            specData3: null, // {name,list,columnName}
580 564
             curSpecIndex: 0, // 当前编辑specData
565
+            skuTableData: [], // sku表格数据  详情见initSkuTable
566
+            skuAttrs: {}, // sku后台保存用
581 567
         };
582 568
     },
583 569
     onLoad() {
@@ -595,7 +581,7 @@ export default {
595 581
 
596 582
     async onShow() {
597 583
         // 规格设置
598
-        console.log(this.$store.state.common.specData);
584
+        console.log("specData", this.$store.state.common.specData);
599 585
         if (this.$store.state.common.specData) {
600 586
             switch (this.curSpecIndex) {
601 587
                 case 1:
@@ -608,6 +594,28 @@ export default {
608 594
                     this.specData3 = this.$store.state.common.specData;
609 595
                     break;
610 596
             }
597
+            this.$store.commit("common/update", {
598
+                specData: null,
599
+            });
600
+            this.initSkuTable();
601
+        }
602
+
603
+        // sku值
604
+        console.log("skuItem", this.$store.state.common.skuItem);
605
+        if (this.$store.state.common.skuItem) {
606
+            let d = this.$store.state.common.skuItem;
607
+            let arr = [];
608
+            for (let item of this.skuTableData) {
609
+                if (item.key === d.key) {
610
+                    arr.push(d);
611
+                } else {
612
+                    arr.push(item);
613
+                }
614
+            }
615
+            this.$store.commit("common/update", {
616
+                skuItem: null,
617
+            });
618
+            this.skuTableData = arr;
611 619
         }
612 620
     },
613 621
 
@@ -652,14 +660,18 @@ export default {
652 660
                 scanType: "barCode",
653 661
                 success(res) {
654 662
                     console.log("扫码", res);
655
-                    let code = res.result;
656
-                    self.baseInfo.barCode = code;
657
-                    self.baseInfo.code = code;
658
-                    self.baseInfo.skuCode = code;
659
-                    uni.showLoading({
660
-                        title: "识别条码中...",
661
-                    });
662
-                    self.getBarCodeGood();
663
+                    if (res.scanType === "EAN_13") {
664
+                        let code = res.result;
665
+                        self.baseInfo.barCode = code;
666
+                        self.baseInfo.code = code;
667
+                        self.baseInfo.skuCode = code;
668
+                        uni.showLoading({
669
+                            title: "识别条码中...",
670
+                        });
671
+                        self.getBarCodeGood();
672
+                    } else {
673
+                        self.fn.showToast("扫码失败,不是有效条码,请重新扫描");
674
+                    }
663 675
                 },
664 676
                 fail(res) {
665 677
                     self.fn.showToast("扫码失败");
@@ -763,6 +775,17 @@ export default {
763 775
                 this.baseInfo.skuCode = this.baseInfo.barCode;
764 776
             }
765 777
 
778
+            // 多规格还原
779
+            this.specClick(0);
780
+            this.specData1 = null;
781
+            this.specData2 = null;
782
+            this.specData3 = null;
783
+            this.curSpecIndex = 0;
784
+            this.skuTableData = [];
785
+            this.skuAttrs = {};
786
+
787
+            console.log(this.baseInfo);
788
+
766 789
             this.$forceUpdate();
767 790
         },
768 791
 
@@ -898,6 +921,12 @@ export default {
898 921
                     type: "array",
899 922
                     msg: "请选择分类",
900 923
                 },
924
+                {
925
+                    key: "mainImage",
926
+                    msg: "请上传封面图",
927
+                },
928
+            ];
929
+            let requiredSku = [
901 930
                 {
902 931
                     key: "price",
903 932
                     msg: "请输入价格",
@@ -916,10 +945,6 @@ export default {
916 945
                     key: "skuCode",
917 946
                     msg: "请输入sku编码",
918 947
                 },
919
-                {
920
-                    key: "mainImage",
921
-                    msg: "请上传封面图",
922
-                },
923 948
             ];
924 949
             let requiredFile2 = [
925 950
                 {
@@ -940,11 +965,10 @@ export default {
940 965
                         return this.fn.showToast(item.msg);
941 966
                     }
942 967
                 } else if (item.type === "number") {
943
-                    if (
944
-                        !this.baseInfo[item.key] &&
945
-                        this.baseInfo[item.key] != 0
946
-                    ) {
947
-                        return this.fn.showToast(item.msg);
968
+                    if (!this.baseInfo[item.key]) {
969
+                        if (String(this.baseInfo[item.key]) !== "0") {
970
+                            return this.fn.showToast(item.msg);
971
+                        }
948 972
                     }
949 973
                 } else {
950 974
                     if (!this.baseInfo[item.key]) {
@@ -959,11 +983,10 @@ export default {
959 983
                         return this.fn.showToast(item.msg);
960 984
                     }
961 985
                 } else if (item.type === "number") {
962
-                    if (
963
-                        !this.baseInfo[item.key] &&
964
-                        this.baseInfo[item.key] != 0
965
-                    ) {
966
-                        return this.fn.showToast(item.msg);
986
+                    if (!this.productForm[item.key]) {
987
+                        if (String(this.productForm[item.key]) !== "0") {
988
+                            return this.fn.showToast(item.msg);
989
+                        }
967 990
                     }
968 991
                 } else {
969 992
                     if (!this.productForm[item.key]) {
@@ -971,6 +994,43 @@ export default {
971 994
                     }
972 995
                 }
973 996
             }
997
+            // 规格判断
998
+            let skuInfo = "";
999
+            if (this.specIndex === 0) {
1000
+                for (let item of requiredSku) {
1001
+                    if (item.type === "array") {
1002
+                        if (this.productForm[item.key].length === 0) {
1003
+                            return this.fn.showToast(item.msg);
1004
+                        }
1005
+                    } else if (item.type === "number") {
1006
+                        if (!this.baseInfo[item.key]) {
1007
+                            if (String(this.baseInfo[item.key]) !== "0") {
1008
+                                return this.fn.showToast(item.msg);
1009
+                            }
1010
+                        }
1011
+                    } else {
1012
+                        if (!this.productForm[item.key]) {
1013
+                            return this.fn.showToast(item.msg);
1014
+                        }
1015
+                    }
1016
+                }
1017
+            } else {
1018
+                if (this.skuTableData.length === 0) {
1019
+                    return this.fn.showToast("请先选择规格");
1020
+                }
1021
+                // 价格转换
1022
+                let arr = JSON.parse(JSON.stringify(this.skuTableData));
1023
+                for (let item of arr) {
1024
+                    item.price = parseInt(Number(item.price) * 100);
1025
+                    item.supplyPrice = parseInt(Number(item.supplyPrice) * 100);
1026
+                    item.cost = parseInt(Number(item.cost) * 100);
1027
+                    item.tagPrice = parseInt(Number(item.tagPrice) * 100);
1028
+                }
1029
+                skuInfo = JSON.stringify({
1030
+                    skuAttrs: this.skuAttrs,
1031
+                    skus: arr,
1032
+                });
1033
+            }
974 1034
 
975 1035
             let sendData = {
976 1036
                 baseInfo: {
@@ -981,14 +1041,24 @@ export default {
981 1041
                 businessRecommendIds: [],
982 1042
                 participated: false,
983 1043
                 video: "",
1044
+                skuInfo: skuInfo,
984 1045
             };
1046
+            //规格判断
1047
+            if (this.specIndex === 0) {
1048
+                sendData.baseInfo.price = parseInt(
1049
+                    Number(sendData.baseInfo.price) * 100
1050
+                );
1051
+                sendData.baseInfo.supplyPrice = parseInt(
1052
+                    Number(sendData.baseInfo.supplyPrice) * 100
1053
+                );
1054
+                sendData.baseInfo.cost = parseInt(
1055
+                    Number(sendData.baseInfo.cost) * 100
1056
+                );
1057
+                sendData.baseInfo.tagPrice = parseInt(
1058
+                    Number(sendData.baseInfo.tagPrice) * 100
1059
+                );
1060
+            }
985 1061
 
986
-            sendData.baseInfo.price = Number(sendData.baseInfo.price) * 100;
987
-            sendData.baseInfo.supplyPrice =
988
-                Number(sendData.baseInfo.supplyPrice) * 100;
989
-            sendData.baseInfo.cost = Number(sendData.baseInfo.cost) * 100;
990
-            sendData.baseInfo.tagPrice =
991
-                Number(sendData.baseInfo.tagPrice) * 100;
992 1062
             this.api.post("/product/SaveEdit", sendData).then((res) => {
993 1063
                 if (res.success) {
994 1064
                     if (type === "next") {
@@ -1049,6 +1119,15 @@ export default {
1049 1119
                 this.baseInfo.storeId = this.$store.state.common.manageShop.id;
1050 1120
                 this.baseInfo._storeName = this.$store.state.common.manageShop.name;
1051 1121
             }
1122
+
1123
+            this.specIndex = 0;
1124
+            this.specData1 = null;
1125
+            this.specData2 = null;
1126
+            this.specData3 = null;
1127
+            this.curSpecIndex = 0;
1128
+            this.skuTableData = [];
1129
+            this.skuAttrs = {};
1130
+
1052 1131
             uni.pageScrollTo({
1053 1132
                 scrollTop: 0,
1054 1133
             });
@@ -1063,6 +1142,9 @@ export default {
1063 1142
                     this.specData1 = null;
1064 1143
                     this.specData2 = null;
1065 1144
                     this.specData3 = null;
1145
+                    this.skuTableData = [];
1146
+                    this.skuAttrs = {};
1147
+                    this.curSpecIndex = 0;
1066 1148
                     break;
1067 1149
                 case 1:
1068 1150
                     this.specData2 = null;
@@ -1072,6 +1154,15 @@ export default {
1072 1154
                     this.specData3 = null;
1073 1155
                     break;
1074 1156
             }
1157
+            if (index !== 0) {
1158
+                this.baseInfo.price = 0;
1159
+                this.baseInfo.supplyPrice = 0;
1160
+                this.baseInfo.cost = 0;
1161
+                this.baseInfo.tagPrice = 0;
1162
+                this.baseInfo.weight = 0;
1163
+                this.baseInfo.stock = 0;
1164
+                this.baseInfo.skuCode = "";
1165
+            }
1075 1166
         },
1076 1167
 
1077 1168
         // 规格设置
@@ -1098,9 +1189,106 @@ export default {
1098 1189
         },
1099 1190
 
1100 1191
         // 规格表单
1101
-        specForm(){
1192
+        specForm(item) {
1193
+            console.log(item);
1194
+            this.$store.commit("common/update", {
1195
+                skuItem: item,
1196
+            });
1102 1197
             this.router.push("/pages/manage/spec-item-form");
1103
-        }
1198
+        },
1199
+
1200
+        // 生成skuTable
1201
+        initSkuTable() {
1202
+            let arr = [];
1203
+            let skuAttrs = {};
1204
+            if (this.specData1) {
1205
+                for (let item of this.specData1.list) {
1206
+                    if (this.specData2) {
1207
+                        for (let item2 of this.specData2.list) {
1208
+                            if (this.specData3) {
1209
+                                for (let item3 of this.specData3.list) {
1210
+                                    let tabItem = this.initSkuItem({
1211
+                                        key: item + "-" + item2 + "-" + item3,
1212
+                                        [this.specData1.columnName]: item,
1213
+                                        [this.specData2.columnName]: item2,
1214
+                                        [this.specData3.columnName]: item3,
1215
+                                    });
1216
+                                    skuAttrs[
1217
+                                        this.specData1.columnName
1218
+                                    ] = this.specData1.name;
1219
+                                    skuAttrs[
1220
+                                        this.specData2.columnName
1221
+                                    ] = this.specData2.name;
1222
+                                    skuAttrs[
1223
+                                        this.specData3.columnName
1224
+                                    ] = this.specData3.name;
1225
+                                    arr.push(tabItem);
1226
+                                }
1227
+                            } else {
1228
+                                let tabItem = this.initSkuItem({
1229
+                                    key: item + "-" + item2,
1230
+                                    [this.specData1.columnName]: item,
1231
+                                    [this.specData2.columnName]: item2,
1232
+                                });
1233
+                                skuAttrs[
1234
+                                    this.specData1.columnName
1235
+                                ] = this.specData1.name;
1236
+                                skuAttrs[
1237
+                                    this.specData2.columnName
1238
+                                ] = this.specData2.name;
1239
+                                arr.push(tabItem);
1240
+                            }
1241
+                        }
1242
+                    } else {
1243
+                        let tabItem = this.initSkuItem({
1244
+                            key: item,
1245
+                            [this.specData1.columnName]: item,
1246
+                        });
1247
+                        skuAttrs[
1248
+                            this.specData1.columnName
1249
+                        ] = this.specData1.name;
1250
+                        arr.push(tabItem);
1251
+                    }
1252
+                }
1253
+            }
1254
+
1255
+            let arr2 = [];
1256
+            for (let item of arr) {
1257
+                let f = false;
1258
+                for (let skuItem of this.skuTableData) {
1259
+                    if (item.key === skuItem.key) {
1260
+                        arr2.push(skuItem);
1261
+                        f = true;
1262
+                    }
1263
+                }
1264
+                if (!f) {
1265
+                    arr2.push(item);
1266
+                }
1267
+            }
1268
+            this.skuTableData = arr2;
1269
+            this.skuAttrs = skuAttrs;
1270
+        },
1271
+
1272
+        // 生成sku某一项
1273
+        initSkuItem(obj = {}) {
1274
+            //
1275
+            //this.fn.guid()
1276
+            return {
1277
+                code: String(Date.now()), // 编码
1278
+                cost: 0, // 成本
1279
+                img:
1280
+                    "https://oss.ixiaokejia.com/images/common/20201021094129.png", // sku图
1281
+                key: "", //关键字
1282
+                order: 0, // 顺序
1283
+                price: 0,
1284
+                skuId: "",
1285
+                stock: 0, // 库存
1286
+                supplyPrice: 0, // 进货价
1287
+                tagPrice: 0, // 标签价
1288
+                weight: 0, // 重量
1289
+                ...obj,
1290
+            };
1291
+        },
1104 1292
     },
1105 1293
 
1106 1294
     // 数据计算
@@ -1363,7 +1551,7 @@ button::before {
1363 1551
         color: #333;
1364 1552
     }
1365 1553
 }
1366
-.sepc-card{
1554
+.sepc-card {
1367 1555
     padding-bottom: px(30);
1368 1556
 }
1369 1557
 </style>

+ 622 - 99
src/pages/manage/edit-good-form.vue

@@ -1,5 +1,6 @@
1 1
 <template>
2 2
     <div class="page" :class="{ 'page--iphoneX': iphoneX }">
3
+        <!-- 基本 -->
3 4
         <div class="form-card">
4 5
             <div class="head">
5 6
                 <div class="tit">基本信息</div>
@@ -107,103 +108,222 @@
107 108
                 </div>
108 109
             </section>
109 110
         </div>
110
-        <div class="form-card">
111
+        <!-- 规格 -->
112
+        <div class="form-card sepc-card">
111 113
             <div class="head">
112
-                <div class="tit">规格库存</div>
114
+                <div class="tit">规格</div>
113 115
                 <div class="switch"></div>
114 116
             </div>
115
-
116 117
             <section class="form-item">
117 118
                 <div class="label">
118 119
                     <span class="required">*</span>
119
-                    价格
120
+                    规格数目
120 121
                 </div>
121 122
                 <div class="box">
122
-                    <input type="digit" v-model="baseInfo.price" />
123
-                </div>
124
-                <div class="tool">
125
-                    <span class="">元</span>
123
+                    <ul class="spec-list">
124
+                        <li
125
+                            :class="{ on: specIndex === 0 }"
126
+                            @click="specClick(0)"
127
+                        >
128
+                            单品
129
+                        </li>
130
+                        <li
131
+                            :class="{ on: specIndex === 1 }"
132
+                            @click="specClick(1)"
133
+                        >
134
+                            一种
135
+                        </li>
136
+                        <li
137
+                            :class="{ on: specIndex === 2 }"
138
+                            @click="specClick(2)"
139
+                        >
140
+                            两种
141
+                        </li>
142
+                        <li
143
+                            :class="{ on: specIndex === 3 }"
144
+                            @click="specClick(3)"
145
+                        >
146
+                            三种
147
+                        </li>
148
+                    </ul>
126 149
                 </div>
127 150
             </section>
128
-
129
-            <section class="form-item">
151
+            <section
152
+                class="form-item"
153
+                v-if="specIndex === 1 || specIndex === 2 || specIndex === 3"
154
+            >
130 155
                 <div class="label">
131 156
                     <span class="required">*</span>
132
-                    重量:
157
+                    规格一
133 158
                 </div>
134 159
                 <div class="box">
135
-                    <input type="digit" v-model="baseInfo.weight" />
136
-                </div>
137
-                <div class="tool">
138
-                    <span class="">克</span>
160
+                    <div class="spec-view" @click="specEdit(1)">
161
+                        <span class="text" :class="{ dis: !specData1 }">{{
162
+                            specData1 | arrView
163
+                        }}</span>
164
+                        <my-image
165
+                            class="spec-link"
166
+                            src="/static/common/arrows_left.png"
167
+                        ></my-image>
168
+                    </div>
139 169
                 </div>
140 170
             </section>
141
-
142
-            <section class="form-item">
171
+            <section
172
+                class="form-item"
173
+                v-if="specIndex === 2 || specIndex === 3"
174
+            >
143 175
                 <div class="label">
144 176
                     <span class="required">*</span>
145
-                    库存:
177
+                    规格二
146 178
                 </div>
147 179
                 <div class="box">
148
-                    <input type="digit" v-model="baseInfo.stock" />
180
+                    <div class="spec-view" @click="specEdit(2)">
181
+                        <span class="text" :class="{ dis: !specData2 }">{{
182
+                            specData2 | arrView
183
+                        }}</span>
184
+                        <my-image
185
+                            class="spec-link"
186
+                            src="/static/common/arrows_left.png"
187
+                        ></my-image>
188
+                    </div>
149 189
                 </div>
150 190
             </section>
151
-
152
-            <section class="form-item">
191
+            <section class="form-item" v-if="specIndex === 3">
153 192
                 <div class="label">
154 193
                     <span class="required">*</span>
155
-                    sku编码:
194
+                    规格三
156 195
                 </div>
157 196
                 <div class="box">
158
-                    <input type="digit" v-model="baseInfo.skuCode" />
159
-                </div>
160
-                <div class="tool code-tool">
161
-                    <span class="generate" @click="generateCode('skuCode')"
162
-                        >生成</span
163
-                    >
197
+                    <div class="spec-view" @click="specEdit(3)">
198
+                        <span class="text" :class="{ dis: !specData3 }">{{
199
+                            specData3 | arrView
200
+                        }}</span>
201
+                        <my-image
202
+                            class="spec-link"
203
+                            src="/static/common/arrows_left.png"
204
+                        ></my-image>
205
+                    </div>
164 206
                 </div>
165 207
             </section>
166 208
 
167
-            <section class="form-item">
168
-                <div class="label">
169
-                    <span class="required hide">*</span>
170
-                    进货价:
171
-                </div>
172
-                <div class="box">
173
-                    <input type="digit" v-model="baseInfo.supplyPrice" />
174
-                </div>
175
-                <div class="tool">
176
-                    <span class="">元</span>
177
-                </div>
178
-            </section>
209
+            <!-- 单品 -->
210
+            <black v-if="specIndex === 0">
211
+                <section class="form-item">
212
+                    <div class="label">
213
+                        <span class="required">*</span>
214
+                        价格:
215
+                    </div>
216
+                    <div class="box">
217
+                        <input type="digit" v-model="baseInfo.price" />
218
+                    </div>
219
+                    <div class="tool">
220
+                        <span class="">元</span>
221
+                    </div>
222
+                </section>
223
+                <section class="form-item">
224
+                    <div class="label">
225
+                        <span class="required hide">*</span>
226
+                        进货价:
227
+                    </div>
228
+                    <div class="box">
229
+                        <input type="digit" v-model="baseInfo.supplyPrice" />
230
+                    </div>
231
+                    <div class="tool">
232
+                        <span class="">元</span>
233
+                    </div>
234
+                </section>
179 235
 
180
-            <section class="form-item">
181
-                <div class="label">
182
-                    <span class="required hide">*</span>
183
-                    成本:
184
-                </div>
185
-                <div class="box">
186
-                    <input type="digit" v-model="baseInfo.cost" />
187
-                </div>
188
-                <div class="tool">
189
-                    <span class="">元</span>
190
-                </div>
191
-            </section>
236
+                <section class="form-item">
237
+                    <div class="label">
238
+                        <span class="required hide">*</span>
239
+                        成本:
240
+                    </div>
241
+                    <div class="box">
242
+                        <input type="digit" v-model="baseInfo.cost" />
243
+                    </div>
244
+                    <div class="tool">
245
+                        <span class="">元</span>
246
+                    </div>
247
+                </section>
248
+                <section class="form-item">
249
+                    <div class="label">
250
+                        <span class="required hide">*</span>
251
+                        划线价:
252
+                    </div>
253
+                    <div class="box">
254
+                        <input type="digit" v-model="baseInfo.tagPrice" />
255
+                    </div>
256
+                    <div class="tool">
257
+                        <span class="">元</span>
258
+                    </div>
259
+                </section>
260
+                <section class="form-item">
261
+                    <div class="label">
262
+                        <span class="required">*</span>
263
+                        重量:
264
+                    </div>
265
+                    <div class="box">
266
+                        <input type="digit" v-model="baseInfo.weight" />
267
+                    </div>
268
+                    <div class="tool">
269
+                        <span class="">克</span>
270
+                    </div>
271
+                </section>
192 272
 
193
-            <section class="form-item">
194
-                <div class="label">
195
-                    <span class="required hide">*</span>
196
-                    划线价:
197
-                </div>
198
-                <div class="box">
199
-                    <input type="digit" v-model="baseInfo.tagPrice" />
200
-                </div>
201
-                <div class="tool">
202
-                    <span class="">元</span>
203
-                </div>
204
-            </section>
205
-        </div>
273
+                <section class="form-item">
274
+                    <div class="label">
275
+                        <span class="required">*</span>
276
+                        库存:
277
+                    </div>
278
+                    <div class="box">
279
+                        <input type="number" v-model="baseInfo.stock" />
280
+                    </div>
281
+                </section>
206 282
 
283
+                <section class="form-item">
284
+                    <div class="label">
285
+                        <span class="required">*</span>
286
+                        sku编码:
287
+                    </div>
288
+                    <div class="box">
289
+                        <input type="digit" v-model="baseInfo.skuCode" />
290
+                    </div>
291
+                    <div class="tool code-tool">
292
+                        <span class="generate" @click="generateCode('skuCode')"
293
+                            >生成</span
294
+                        >
295
+                    </div>
296
+                </section>
297
+            </black>
298
+            <black v-if="specIndex !== 0">
299
+                <section
300
+                    class="spec-item"
301
+                    v-for="item of skuTableData"
302
+                    :key="item.key"
303
+                >
304
+                    <div class="spec-head" @click="specForm(item)">
305
+                        <span class="name">组合一:{{ item.key }}</span>
306
+                        <my-image
307
+                            class="img"
308
+                            src="/static/common/arrows_left.png"
309
+                        ></my-image>
310
+                    </div>
311
+                    <div class="con">
312
+                        <div class="con-item">
313
+                            价格<span class="required">*</span>:{{
314
+                                item.price
315
+                            }}
316
+                        </div>
317
+                        <div class="con-item">
318
+                            库存<span class="required">*</span>:{{
319
+                                item.stock
320
+                            }}
321
+                        </div>
322
+                    </div>
323
+                </section>
324
+            </black>
325
+        </div>
326
+        <!-- 图片 -->
207 327
         <div class="form-card img-card">
208 328
             <section class="form-img-item">
209 329
                 <div class="tit"><span class="required">*</span>封面图</div>
@@ -241,7 +361,7 @@
241 361
                 </div>
242 362
             </section>
243 363
         </div>
244
-
364
+        <!-- 其他 -->
245 365
         <div class="form-card">
246 366
             <div class="head">
247 367
                 <div class="tit">其他信息</div>
@@ -368,6 +488,19 @@ import easyUpload from "../../components/easy-upload/easy-upload";
368 488
 export default {
369 489
     name: "",
370 490
     components: { MyImage, easyUpload },
491
+    filters: {
492
+        arrView(val) {
493
+            let str = "";
494
+            if (val) {
495
+                str += val.name + ": ";
496
+                for (let item of val.list) {
497
+                    str += item + ",";
498
+                }
499
+                str = str.replace(/,$/, "");
500
+            }
501
+            return str;
502
+        },
503
+    },
371 504
 
372 505
     // 数据
373 506
     data() {
@@ -422,6 +555,15 @@ export default {
422 555
             },
423 556
 
424 557
             mainImage: [],
558
+
559
+            // 规格
560
+            specIndex: 0,
561
+            specData1: null, // {name,list}
562
+            specData2: null, // {name,list}
563
+            specData3: null, // {name,list}
564
+            curSpecIndex: 0, // 当前编辑specData
565
+            skuTableData: [], // sku表格数据  详情见initSkuTable
566
+            skuAttrs: {}, // sku后台保存用
425 567
         };
426 568
     },
427 569
     onLoad(opts) {
@@ -430,7 +572,45 @@ export default {
430 572
         this.getData();
431 573
     },
432 574
 
433
-    async onShow() {},
575
+    async onShow() {
576
+        // 规格设置
577
+        console.log("specData", this.$store.state.common.specData);
578
+        if (this.$store.state.common.specData) {
579
+            switch (this.curSpecIndex) {
580
+                case 1:
581
+                    this.specData1 = this.$store.state.common.specData;
582
+                    break;
583
+                case 2:
584
+                    this.specData2 = this.$store.state.common.specData;
585
+                    break;
586
+                case 3:
587
+                    this.specData3 = this.$store.state.common.specData;
588
+                    break;
589
+            }
590
+            this.$store.commit("common/update", {
591
+                specData: null,
592
+            });
593
+            this.initSkuTable();
594
+        }
595
+
596
+        // sku值
597
+        console.log("skuItem", this.$store.state.common.skuItem);
598
+        if (this.$store.state.common.skuItem) {
599
+            let d = this.$store.state.common.skuItem;
600
+            let arr = [];
601
+            for (let item of this.skuTableData) {
602
+                if (item.key === d.key) {
603
+                    arr.push(d);
604
+                } else {
605
+                    arr.push(item);
606
+                }
607
+            }
608
+            this.$store.commit("common/update", {
609
+                skuItem: null,
610
+            });
611
+            this.skuTableData = arr;
612
+        }
613
+    },
434 614
 
435 615
     // 函数
436 616
     methods: {
@@ -448,7 +628,11 @@ export default {
448 628
 
449 629
         // 获取详情
450 630
         getData() {
631
+            uni.showLoading({
632
+                title: "加载中...",
633
+            });
451 634
             this.api.get("/Product/Detail", { id: this.dataId }).then((res) => {
635
+                uni.hideLoading();
452 636
                 this.oldData = res.data;
453 637
                 this.baseInfo = {
454 638
                     ...this.oldData.baseInfo,
@@ -469,13 +653,60 @@ export default {
469 653
                     this.baseInfo._statusName = "立即出售";
470 654
                 }
471 655
 
472
-                this.$forceUpdate();
473
-
474 656
                 this.getStore();
475 657
                 this.getClassify(res.data.storeId);
658
+                // 是否为多规格
659
+                if (this.oldData.skuInfo) {
660
+                    this.pullSku();
661
+                }
662
+                this.$forceUpdate();
476 663
             });
477 664
         },
478 665
 
666
+        // 赋值sku
667
+        pullSku() {
668
+            let skuInfo = JSON.parse(this.oldData.skuInfo);
669
+            let arr = [];
670
+            for (let n in skuInfo.skuAttrs) {
671
+                arr.push({
672
+                    columnName: n,
673
+                    name: skuInfo.skuAttrs[n],
674
+                    list: [],
675
+                });
676
+            }
677
+
678
+            for (let item of arr) {
679
+                for (let sku of skuInfo.skus) {
680
+                    let name = sku[item.columnName];
681
+                    if (item.list.indexOf(name) === -1) {
682
+                        item.list.push(name);
683
+                    }
684
+                }
685
+            }
686
+
687
+            this.specClick(arr.length);
688
+            if (arr.length === 1) {
689
+                this.specData1 = arr[0];
690
+            } else if (arr.length === 2) {
691
+                this.specData1 = arr[0];
692
+                this.specData2 = arr[1];
693
+            } else if (arr.length === 3) {
694
+                this.specData1 = arr[0];
695
+                this.specData2 = arr[1];
696
+                this.specData3 = arr[2];
697
+            }
698
+
699
+            let skuTableData = [...skuInfo.skus];
700
+            for (let item of skuTableData) {
701
+                item.price = Number(item.price) / 100;
702
+                item.supplyPrice = Number(item.supplyPrice) / 100;
703
+                item.cost = Number(item.cost) / 100;
704
+                item.tagPrice = Number(item.tagPrice) / 100;
705
+            }
706
+            this.skuTableData = skuTableData;
707
+            this.skuAttrs = skuInfo.skuAttrs;
708
+        },
709
+
479 710
         // 获取分类
480 711
         getClassify(storeId) {
481 712
             this.api
@@ -542,14 +773,18 @@ export default {
542 773
                 scanType: "barCode",
543 774
                 success(res) {
544 775
                     console.log("扫码", res);
545
-                    let code = res.result;
546
-                    self.baseInfo.barCode = code;
547
-                    self.baseInfo.code = code;
548
-                    self.baseInfo.skuCode = code;
549
-                    uni.showLoading({
550
-                        title: "识别条码中...",
551
-                    });
552
-                    self.getBarCodeGood();
776
+                    if (res.scanType === "EAN_13") {
777
+                        let code = res.result;
778
+                        self.baseInfo.barCode = code;
779
+                        self.baseInfo.code = code;
780
+                        self.baseInfo.skuCode = code;
781
+                        uni.showLoading({
782
+                            title: "识别条码中...",
783
+                        });
784
+                        self.getBarCodeGood();
785
+                    } else {
786
+                        self.fn.showToast("扫码失败,不是有效条码,请重新扫描");
787
+                    }
553 788
                 },
554 789
                 fail(res) {
555 790
                     self.fn.showToast("扫码失败");
@@ -806,6 +1041,12 @@ export default {
806 1041
                     type: "array",
807 1042
                     msg: "请选择分类",
808 1043
                 },
1044
+                {
1045
+                    key: "mainImage",
1046
+                    msg: "请上传封面图",
1047
+                },
1048
+            ];
1049
+            let requiredSku = [
809 1050
                 {
810 1051
                     key: "price",
811 1052
                     msg: "请输入价格",
@@ -824,10 +1065,6 @@ export default {
824 1065
                     key: "skuCode",
825 1066
                     msg: "请输入sku编码",
826 1067
                 },
827
-                {
828
-                    key: "mainImage",
829
-                    msg: "请上传封面图",
830
-                },
831 1068
             ];
832 1069
             let requiredFile2 = [
833 1070
                 {
@@ -839,20 +1076,18 @@ export default {
839 1076
                 //     key: "detailImages",
840 1077
                 //     type: "array",
841 1078
                 //     msg: "请上传详情图",
842
-                // },
1079
+                // }
843 1080
             ];
844
-
845 1081
             for (let item of requiredFile1) {
846 1082
                 if (item.type === "array") {
847 1083
                     if (this.baseInfo[item.key].length === 0) {
848 1084
                         return this.fn.showToast(item.msg);
849 1085
                     }
850 1086
                 } else if (item.type === "number") {
851
-                    if (
852
-                        !this.baseInfo[item.key] &&
853
-                        this.baseInfo[item.key] != 0
854
-                    ) {
855
-                        return this.fn.showToast(item.msg);
1087
+                    if (!this.baseInfo[item.key]) {
1088
+                        if (String(this.baseInfo[item.key]) !== "0") {
1089
+                            return this.fn.showToast(item.msg);
1090
+                        }
856 1091
                     }
857 1092
                 } else {
858 1093
                     if (!this.baseInfo[item.key]) {
@@ -867,11 +1102,10 @@ export default {
867 1102
                         return this.fn.showToast(item.msg);
868 1103
                     }
869 1104
                 } else if (item.type === "number") {
870
-                    if (
871
-                        !this.baseInfo[item.key] &&
872
-                        this.baseInfo[item.key] != 0
873
-                    ) {
874
-                        return this.fn.showToast(item.msg);
1105
+                    if (!this.productForm[item.key]) {
1106
+                        if (String(this.productForm[item.key]) !== "0") {
1107
+                            return this.fn.showToast(item.msg);
1108
+                        }
875 1109
                     }
876 1110
                 } else {
877 1111
                     if (!this.productForm[item.key]) {
@@ -879,22 +1113,69 @@ export default {
879 1113
                     }
880 1114
                 }
881 1115
             }
1116
+            // 规格判断
1117
+            let skuInfo = "";
1118
+            if (this.specIndex === 0) {
1119
+                for (let item of requiredSku) {
1120
+                    if (item.type === "array") {
1121
+                        if (this.productForm[item.key].length === 0) {
1122
+                            return this.fn.showToast(item.msg);
1123
+                        }
1124
+                    } else if (item.type === "number") {
1125
+                        if (!this.baseInfo[item.key]) {
1126
+                            if (String(this.baseInfo[item.key]) !== "0") {
1127
+                                return this.fn.showToast(item.msg);
1128
+                            }
1129
+                        }
1130
+                    } else {
1131
+                        if (!this.productForm[item.key]) {
1132
+                            return this.fn.showToast(item.msg);
1133
+                        }
1134
+                    }
1135
+                }
1136
+            } else {
1137
+                if (this.skuTableData.length === 0) {
1138
+                    return this.fn.showToast("请先选择规格");
1139
+                }
1140
+                // 价格转换
1141
+                let arr = JSON.parse(JSON.stringify(this.skuTableData));
1142
+                for (let item of arr) {
1143
+                    item.price = parseInt(Number(item.price) * 100);
1144
+                    item.supplyPrice = parseInt(Number(item.supplyPrice) * 100);
1145
+                    item.cost = parseInt(Number(item.cost) * 100);
1146
+                    item.tagPrice = parseInt(Number(item.tagPrice) * 100);
1147
+                }
1148
+                skuInfo = JSON.stringify({
1149
+                    skuAttrs: this.skuAttrs,
1150
+                    skus: arr,
1151
+                });
1152
+            }
882 1153
 
883 1154
             let sendData = JSON.parse(JSON.stringify(this.oldData));
884 1155
             sendData = {
885 1156
                 ...sendData,
886 1157
                 ...this.productForm,
1158
+                skuInfo: skuInfo,
887 1159
             };
888 1160
             sendData.baseInfo = {
889 1161
                 ...sendData.baseInfo,
890 1162
                 ...this.baseInfo,
891 1163
             };
892
-            sendData.baseInfo.price = Number(sendData.baseInfo.price) * 100;
893
-            sendData.baseInfo.supplyPrice =
894
-                Number(sendData.baseInfo.supplyPrice) * 100;
895
-            sendData.baseInfo.cost = Number(sendData.baseInfo.cost) * 100;
896
-            sendData.baseInfo.tagPrice =
897
-                Number(sendData.baseInfo.tagPrice) * 100;
1164
+            //规格判断
1165
+            if (this.specIndex === 0) {
1166
+                sendData.baseInfo.price = parseInt(
1167
+                    Number(sendData.baseInfo.price) * 100
1168
+                );
1169
+                sendData.baseInfo.supplyPrice = parseInt(
1170
+                    Number(sendData.baseInfo.supplyPrice) * 100
1171
+                );
1172
+                sendData.baseInfo.cost = parseInt(
1173
+                    Number(sendData.baseInfo.cost) * 100
1174
+                );
1175
+                sendData.baseInfo.tagPrice = parseInt(
1176
+                    Number(sendData.baseInfo.tagPrice) * 100
1177
+                );
1178
+            }
898 1179
             this.api.post("/product/SaveEdit", sendData).then((res) => {
899 1180
                 if (res.success) {
900 1181
                     if (type === "next") {
@@ -909,6 +1190,162 @@ export default {
909 1190
                 }
910 1191
             });
911 1192
         },
1193
+
1194
+        // 规格点击
1195
+        specClick(index) {
1196
+            this.specIndex = index;
1197
+            switch (index) {
1198
+                case 0:
1199
+                    this.specData1 = null;
1200
+                    this.specData2 = null;
1201
+                    this.specData3 = null;
1202
+                    this.skuTableData = [];
1203
+                    this.skuAttrs = {};
1204
+                    this.curSpecIndex = 0;
1205
+                    break;
1206
+                case 1:
1207
+                    this.specData2 = null;
1208
+                    this.specData3 = null;
1209
+                    break;
1210
+                case 2:
1211
+                    this.specData3 = null;
1212
+                    break;
1213
+            }
1214
+            if (index !== 0) {
1215
+                this.baseInfo.price = 0;
1216
+                this.baseInfo.supplyPrice = 0;
1217
+                this.baseInfo.cost = 0;
1218
+                this.baseInfo.tagPrice = 0;
1219
+                this.baseInfo.weight = 0;
1220
+                this.baseInfo.stock = 0;
1221
+                this.baseInfo.skuCode = "";
1222
+            }
1223
+        },
1224
+
1225
+        // 规格设置
1226
+        specEdit(index) {
1227
+            switch (index) {
1228
+                case 1:
1229
+                    this.$store.commit("common/update", {
1230
+                        specData: this.specData1,
1231
+                    });
1232
+                    break;
1233
+                case 2:
1234
+                    this.$store.commit("common/update", {
1235
+                        specData: this.specData2,
1236
+                    });
1237
+                    break;
1238
+                case 3:
1239
+                    this.$store.commit("common/update", {
1240
+                        specData: this.specData3,
1241
+                    });
1242
+                    break;
1243
+            }
1244
+            this.curSpecIndex = index;
1245
+            this.router.push("/pages/manage/spec-edit");
1246
+        },
1247
+
1248
+        // 规格表单
1249
+        specForm(item) {
1250
+            console.log(item);
1251
+            this.$store.commit("common/update", {
1252
+                skuItem: item,
1253
+            });
1254
+            this.router.push("/pages/manage/spec-item-form");
1255
+        },
1256
+
1257
+        // 生成skuTable
1258
+        initSkuTable() {
1259
+            let arr = [];
1260
+            let skuAttrs = {};
1261
+            if (this.specData1) {
1262
+                for (let item of this.specData1.list) {
1263
+                    if (this.specData2) {
1264
+                        for (let item2 of this.specData2.list) {
1265
+                            if (this.specData3) {
1266
+                                for (let item3 of this.specData3.list) {
1267
+                                    let tabItem = this.initSkuItem({
1268
+                                        key: item + "-" + item2 + "-" + item3,
1269
+                                        [this.specData1.columnName]: item,
1270
+                                        [this.specData2.columnName]: item2,
1271
+                                        [this.specData3.columnName]: item3,
1272
+                                    });
1273
+                                    skuAttrs[
1274
+                                        this.specData1.columnName
1275
+                                    ] = this.specData1.name;
1276
+                                    skuAttrs[
1277
+                                        this.specData2.columnName
1278
+                                    ] = this.specData2.name;
1279
+                                    skuAttrs[
1280
+                                        this.specData3.columnName
1281
+                                    ] = this.specData3.name;
1282
+                                    arr.push(tabItem);
1283
+                                }
1284
+                            } else {
1285
+                                let tabItem = this.initSkuItem({
1286
+                                    key: item + "-" + item2,
1287
+                                    [this.specData1.columnName]: item,
1288
+                                    [this.specData2.columnName]: item2,
1289
+                                });
1290
+                                skuAttrs[
1291
+                                    this.specData1.columnName
1292
+                                ] = this.specData1.name;
1293
+                                skuAttrs[
1294
+                                    this.specData2.columnName
1295
+                                ] = this.specData2.name;
1296
+                                arr.push(tabItem);
1297
+                            }
1298
+                        }
1299
+                    } else {
1300
+                        let tabItem = this.initSkuItem({
1301
+                            key: item,
1302
+                            [this.specData1.columnName]: item,
1303
+                        });
1304
+                        skuAttrs[
1305
+                            this.specData1.columnName
1306
+                        ] = this.specData1.name;
1307
+                        arr.push(tabItem);
1308
+                    }
1309
+                }
1310
+            }
1311
+
1312
+            let arr2 = [];
1313
+            for (let item of arr) {
1314
+                let f = false;
1315
+                for (let skuItem of this.skuTableData) {
1316
+                    if (item.key === skuItem.key) {
1317
+                        arr2.push(skuItem);
1318
+                        f = true;
1319
+                    }
1320
+                }
1321
+                if (!f) {
1322
+                    arr2.push(item);
1323
+                }
1324
+            }
1325
+            this.skuTableData = arr2;
1326
+            this.skuAttrs = skuAttrs;
1327
+        },
1328
+
1329
+        // 生成sku某一项
1330
+        initSkuItem(obj = {}) {
1331
+            //
1332
+            //this.fn.guid()
1333
+            return {
1334
+                code: String(Date.now()), // 编码
1335
+                cost: 0, // 成本
1336
+                img:
1337
+                    "https://oss.ixiaokejia.com/images/common/20201021094129.png", // sku图
1338
+                key: "", //关键字
1339
+                order: 0, // 顺序
1340
+                price: 0,
1341
+                skuId: "",
1342
+                stock: 0, // 库存
1343
+                supplyPrice: 0, // 进货价
1344
+                tagPrice: 0, // 标签价
1345
+                weight: 0, // 重量
1346
+                ...obj,
1347
+            };
1348
+        },
912 1349
     },
913 1350
 
914 1351
     // 数据计算
@@ -1088,4 +1525,90 @@ button::before {
1088 1525
     align-items: center;
1089 1526
     pointer-events: none;
1090 1527
 }
1528
+.min-radio {
1529
+    transform: scale(0.8);
1530
+}
1531
+.spec-list {
1532
+    width: 100%;
1533
+    display: flex;
1534
+    justify-content: space-between;
1535
+    align-items: center;
1536
+    li {
1537
+        width: 25%;
1538
+        font-size: px(40);
1539
+        height: px(100);
1540
+        border: 1px solid #f1f1f1;
1541
+        display: flex;
1542
+        align-items: center;
1543
+        justify-content: center;
1544
+        color: #999;
1545
+        & ~ li {
1546
+            // border-left: none;
1547
+        }
1548
+        &.on {
1549
+            color: rgb(0, 188, 38);
1550
+            border-color: rgb(0, 188, 38);
1551
+        }
1552
+    }
1553
+}
1554
+.spec-view {
1555
+    display: flex;
1556
+    justify-content: flex-end;
1557
+    align-items: center;
1558
+    .text {
1559
+        font-size: px(40);
1560
+        &.dis {
1561
+            color: #999;
1562
+        }
1563
+    }
1564
+    .spec-link {
1565
+        width: px(50);
1566
+        height: px(50);
1567
+        margin-left: px(20);
1568
+        transform: rotate(180deg);
1569
+        /deep/ img {
1570
+            width: px(50);
1571
+            height: px(50);
1572
+        }
1573
+    }
1574
+}
1575
+.spec-item {
1576
+    border: 1px solid #f1f1f1;
1577
+    margin-top: px(30);
1578
+    .spec-head {
1579
+        display: flex;
1580
+        justify-content: space-between;
1581
+        align-items: center;
1582
+        background-color: #f9f9f9;
1583
+        border-bottom: 1px solid #f1f1f1;
1584
+        padding: px(0) px(30);
1585
+        height: px(120);
1586
+        line-height: px(100);
1587
+        font-size: px(44);
1588
+
1589
+        .img {
1590
+            width: px(40);
1591
+            height: px(40);
1592
+            transform: rotate(180deg);
1593
+            /deep/ img {
1594
+                width: px(40);
1595
+                height: px(40);
1596
+            }
1597
+        }
1598
+    }
1599
+    .con {
1600
+        display: flex;
1601
+        justify-content: space-between;
1602
+        align-items: center;
1603
+        padding: px(30) px(30);
1604
+    }
1605
+    .con-item {
1606
+        width: 50%;
1607
+        font-size: px(44);
1608
+        color: #333;
1609
+    }
1610
+}
1611
+.sepc-card {
1612
+    padding-bottom: px(30);
1613
+}
1091 1614
 </style>

+ 1 - 0
src/pages/manage/good-list.vue

@@ -612,6 +612,7 @@ export default {
612 612
                     return;
613 613
                 }
614 614
                 num *= 100;
615
+                num = parseInt(num);
615 616
                 this.api
616 617
                     .post("/Product/UpPrice", {
617 618
                         id: this.rePriceData.id,

+ 1 - 1
src/pages/manage/index.vue

@@ -48,7 +48,7 @@
48 48
 
49 49
         <button class="btn" @click="layout">退出登录</button>
50 50
 
51
-        <div class="ver">0.2.3</div>
51
+        <div class="ver">0.2.4</div>
52 52
     </div>
53 53
 </template>
54 54
 

+ 36 - 12
src/pages/manage/spec-edit.vue

@@ -50,6 +50,7 @@
50 50
                 mode="input"
51 51
                 :title="'规格名称'"
52 52
                 :content="false"
53
+                :inputType="'text'"
53 54
                 :value="editVal"
54 55
                 placeholder="请输入规格名称"
55 56
                 @confirm="popupConfirm"
@@ -69,11 +70,9 @@ export default {
69 70
     // 数据
70 71
     data() {
71 72
         return {
72
-            specNameList: [
73
-                { key: "颜色", value: 1 },
74
-                { key: "尺码", value: 0 },
75
-            ], // 出售方式
73
+            specNameList: [], // 出售方式
76 74
             specName: "",
75
+            specColumnName: "",
77 76
             specList: [],
78 77
             type: "add", // 编辑方式 add edit
79 78
             editIndex: 0,
@@ -81,17 +80,32 @@ export default {
81 80
         };
82 81
     },
83 82
 
84
-    onLoad() {
83
+    onLoad() {},
84
+
85
+    onShow() {
85 86
         if (this.$store.state.common.specData) {
86 87
             this.specList = this.$store.state.common.specData.list;
87 88
             this.specName = this.$store.state.common.specData.name;
89
+            this.specColumnName = this.$store.state.common.specData.columnName;
90
+            this.$store.commit("common/update", {
91
+                specData: null,
92
+            });
88 93
         }
94
+        this.getSpec();
89 95
     },
90 96
 
91
-    onShow() {},
92
-
93 97
     // 函数
94 98
     methods: {
99
+        getSpec() {
100
+            this.api.get("/Product/GetSpecDropdownList").then((res) => {
101
+                for (let item of res.data) {
102
+                    item.key = item.name;
103
+                    item.value = item.id;
104
+                }
105
+                this.specNameList = res.data;
106
+            });
107
+        },
108
+
95 109
         remove(i) {
96 110
             this.specList.splice(i, 1);
97 111
             this.specList = [...this.specList];
@@ -102,9 +116,7 @@ export default {
102 116
             this.type = "edit";
103 117
             this.editVal = val;
104 118
             this.$refs.popup.open({
105
-                type: "dialog",
106
-                inputType: "text",
107
-                value: val,
119
+                type: "dialog"
108 120
             });
109 121
         },
110 122
 
@@ -112,7 +124,6 @@ export default {
112 124
             this.type = "add";
113 125
             this.$refs.popup.open({
114 126
                 type: "dialog",
115
-                inputType: "text",
116 127
             });
117 128
         },
118 129
 
@@ -136,13 +147,14 @@ export default {
136 147
             if (!this.specList === 0) {
137 148
                 return this.fn.showToast("请设置规格值");
138 149
             }
139
-            this.router.back();
140 150
             this.$store.commit("common/update", {
141 151
                 specData: {
142 152
                     name: this.specName,
143 153
                     list: this.specList,
154
+                    columnName: this.specColumnName,
144 155
                 },
145 156
             });
157
+            this.router.back();
146 158
         },
147 159
 
148 160
         pickerChange(e) {
@@ -150,6 +162,7 @@ export default {
150 162
             var name = this.specNameList[index].key;
151 163
             if (name != this.specName) {
152 164
                 this.specName = name;
165
+                this.specColumnName = this.specNameList[index].columnName;
153 166
                 this.specList = [];
154 167
             }
155 168
         },
@@ -241,6 +254,10 @@ export default {
241 254
         justify-content: space-between;
242 255
         align-items: center;
243 256
     }
257
+    .name {
258
+        max-width: 75%;
259
+        @include omit(75%);
260
+    }
244 261
     .tools {
245 262
         display: flex;
246 263
         align-items: center;
@@ -287,4 +304,11 @@ export default {
287 304
     border: 1px solid #ccc;
288 305
     border-radius: px(10);
289 306
 }
307
+.required {
308
+    color: #f00;
309
+    font-size: px(44);
310
+    &.hide {
311
+        visibility: hidden;
312
+    }
313
+}
290 314
 </style>

+ 159 - 86
src/pages/manage/spec-item-form.vue

@@ -3,20 +3,16 @@
3 3
         <div class="form-card">
4 4
             <section class="form-item">
5 5
                 <div class="label">
6
-                    <span class="required">*</span>
7
-                    口味:
8
-                </div>
9
-                <div class="box">
10
-                    <input type="text" :placeholder="' '" :value="'酸的'" :disabled="true"/>
11
-                </div>
12
-            </section>
13
-            <section class="form-item">
14
-                <div class="label">
15
-                    <span class="required">*</span>
16
-                    颜色:
6
+                    <span class="required hide">*</span>
7
+                    规格:
17 8
                 </div>
18 9
                 <div class="box">
19
-                    <input type="text" :placeholder="' '" :value="'红色'" :disabled="true"/>
10
+                    <input
11
+                        type="text"
12
+                        class="inp-dis"
13
+                        v-model="form.key"
14
+                        :disabled="true"
15
+                    />
20 16
                 </div>
21 17
             </section>
22 18
 
@@ -26,7 +22,10 @@
26 22
                     价格:
27 23
                 </div>
28 24
                 <div class="box">
29
-                    <input type="text" :placeholder="' '" />
25
+                    <input type="digit" v-model="form.price" />
26
+                </div>
27
+                <div class="tool">
28
+                    <span class="">元</span>
30 29
                 </div>
31 30
             </section>
32 31
             <section class="form-item">
@@ -35,7 +34,10 @@
35 34
                     进货价:
36 35
                 </div>
37 36
                 <div class="box">
38
-                    <input type="text" :placeholder="' '" />
37
+                    <input type="digit" v-model="form.supplyPrice" />
38
+                </div>
39
+                <div class="tool">
40
+                    <span class="">元</span>
39 41
                 </div>
40 42
             </section>
41 43
             <section class="form-item">
@@ -44,7 +46,7 @@
44 46
                     成本:
45 47
                 </div>
46 48
                 <div class="box">
47
-                    <input type="text" :placeholder="' '" />
49
+                    <input type="digit" v-model="form.cost" />
48 50
                 </div>
49 51
             </section>
50 52
             <section class="form-item">
@@ -53,7 +55,10 @@
53 55
                     划线价:
54 56
                 </div>
55 57
                 <div class="box">
56
-                    <input type="text" :placeholder="' '" />
58
+                    <input type="digit" v-model="form.tagPrice" />
59
+                </div>
60
+                <div class="tool">
61
+                    <span class="">元</span>
57 62
                 </div>
58 63
             </section>
59 64
             <section class="form-item">
@@ -62,7 +67,10 @@
62 67
                     重量:
63 68
                 </div>
64 69
                 <div class="box">
65
-                    <input type="text" :placeholder="' '" />
70
+                    <input type="digit" v-model="form.weight" />
71
+                </div>
72
+                <div class="tool">
73
+                    <span class="">克</span>
66 74
                 </div>
67 75
             </section>
68 76
             <section class="form-item">
@@ -71,7 +79,7 @@
71 79
                     库存:
72 80
                 </div>
73 81
                 <div class="box">
74
-                    <input type="text" :placeholder="' '" />
82
+                    <input type="number" v-model="form.stock" />
75 83
                 </div>
76 84
             </section>
77 85
             <section class="form-item">
@@ -80,7 +88,26 @@
80 88
                     sku码:
81 89
                 </div>
82 90
                 <div class="box">
83
-                    <input type="text" :placeholder="' '" />
91
+                    <input type="text" v-model="form.code" />
92
+                </div>
93
+                <div class="tool code-tool">
94
+                    <span class="generate" @click="generateCode('skuCode')"
95
+                        >生成</span
96
+                    >
97
+                </div>
98
+            </section>
99
+        </div>
100
+        <!-- 图片 -->
101
+        <div class="form-card img-card">
102
+            <section class="form-img-item">
103
+                <div class="tit"><span class="required">*</span>sku图</div>
104
+                <div class="list">
105
+                    <easy-upload
106
+                        :types="'image'"
107
+                        v-model="skuImg"
108
+                        :uploadCount="1"
109
+                        @change="skuImgChange"
110
+                    ></easy-upload>
84 111
                 </div>
85 112
             </section>
86 113
         </div>
@@ -97,89 +124,95 @@ export default {
97 124
     // 数据
98 125
     data() {
99 126
         return {
100
-            specNameList: [
101
-                { key: "颜色", value: 1 },
102
-                { key: "尺码", value: 0 },
103
-            ], // 出售方式
104
-            specName: "",
105
-            specList: [],
106
-            type: "add", // 编辑方式 add edit
107
-            editIndex: 0,
108
-            editVal: "",
127
+            form: {
128
+                key: "",
129
+                price: 0,
130
+                supplyPrice: 0,
131
+                cost: 0,
132
+                tagPrice: 0,
133
+                weight: 0,
134
+                stock: 0,
135
+                code: "",
136
+            },
137
+            skuImg: [],
138
+            oldData: {},
139
+            index: 0, // 判断进入的
109 140
         };
110 141
     },
111 142
 
112
-    onLoad() {
113
-        if (this.$store.state.common.specData) {
114
-            this.specList = this.$store.state.common.specData.list;
115
-            this.specName = this.$store.state.common.specData.name;
143
+    onLoad() {},
144
+
145
+    onShow() {
146
+        console.log(this.$store.state.common.skuItem);
147
+        if (this.index !== 0) {
148
+            return;
149
+        }
150
+        if (this.$store.state.common.skuItem) {
151
+            this.index = 1;
152
+            let d = this.$store.state.common.skuItem;
153
+            this.oldData = d;
154
+            this.form.key = d.key;
155
+            this.form.price = d.price;
156
+            this.form.supplyPrice = d.supplyPrice;
157
+            this.form.cost = d.cost;
158
+            this.form.tagPrice = d.tagPrice;
159
+            this.form.weight = d.weight;
160
+            this.form.stock = d.stock;
161
+            this.form.code = d.code;
162
+            this.form.img = d.img;
163
+            setTimeout(() => {
164
+                this.skuImg = [this.form.img];
165
+            }, 100);
166
+            // this.$store.commit("common/update", {
167
+            //     skuItem: null,
168
+            // });
169
+        } else {
170
+            this.router.back();
116 171
         }
117 172
     },
118 173
 
119
-    onShow() {},
120
-
121 174
     // 函数
122 175
     methods: {
123
-        remove(i) {
124
-            this.specList.splice(i, 1);
125
-            this.specList = [...this.specList];
176
+        // 图
177
+        skuImgChange(e) {
178
+            this.form.img = e[0] || "";
126 179
         },
127
-
128
-        edit(val, index) {
129
-            this.editIndex = index;
130
-            this.type = "edit";
131
-            this.editVal = val;
132
-            this.$refs.popup.open({
133
-                type: "dialog",
134
-                inputType: "text",
135
-                value: val,
136
-            });
180
+        // 生成编码
181
+        generateCode(name) {
182
+            // 后台编码生成方式
183
+            const timestamp = Date.parse(new Date());
184
+            this.baseInfo[name] = timestamp;
137 185
         },
138
-
139
-        add() {
140
-            this.type = "add";
141
-            this.$refs.popup.open({
142
-                type: "dialog",
143
-                inputType: "text",
144
-            });
145
-        },
146
-
147
-        popupConfirm(done, value) {
148
-            if (!value) {
149
-                return this.fn.showToast("请输入规格名");
186
+        saveOk() {
187
+            if (!this.form.price) {
188
+                if (String(this.form.price) !== "0") {
189
+                    return this.fn.showToast("请输入价格");
190
+                }
150 191
             }
151
-            if (this.type === "add") {
152
-                this.specList.push(value);
153
-            } else {
154
-                this.specList.splice(this.editIndex, 1, value);
192
+            if (!this.form.weight) {
193
+                if (String(this.form.weight) !== "0") {
194
+                    return this.fn.showToast("请输入重量");
195
+                }
155 196
             }
156
-            this.specList = [...this.specList];
157
-            done();
158
-        },
159
-
160
-        saveOk() {
161
-            if (!this.specName) {
162
-                return this.fn.showToast("请设置规格名");
197
+            if (!this.form.stock) {
198
+                if (String(this.form.stock) !== "0") {
199
+                    return this.fn.showToast("请输入库存");
200
+                }
163 201
             }
164
-            if (!this.specList === 0) {
165
-                return this.fn.showToast("请设置规格值");
202
+            if (!this.form.code) {
203
+                if (String(this.form.code) !== "0") {
204
+                    return this.fn.showToast("请输入sku码");
205
+                }
166 206
             }
167
-            this.router.back();
207
+            if (!this.form.img) {
208
+                return this.fn.showToast("请上传sku图");
209
+            }
210
+            let data = { ...this.oldData, ...this.form };
211
+            data.stock = Number(data.stock) || 0;
168 212
             this.$store.commit("common/update", {
169
-                specData: {
170
-                    name: this.specName,
171
-                    list: this.specList,
172
-                },
213
+                skuItem: data,
173 214
             });
174
-        },
175
-
176
-        pickerChange(e) {
177
-            var index = e.detail.value;
178
-            var name = this.specNameList[index].key;
179
-            if (name != this.specName) {
180
-                this.specName = name;
181
-                this.specList = [];
182
-            }
215
+            this.router.back();
183 216
         },
184 217
     },
185 218
 
@@ -315,4 +348,44 @@ export default {
315 348
     border: 1px solid #ccc;
316 349
     border-radius: px(10);
317 350
 }
351
+.code-tool {
352
+    display: flex;
353
+    justify-content: flex-start;
354
+    align-items: center;
355
+    .scan-img {
356
+        flex-shrink: 0;
357
+        width: px(80);
358
+        height: px(80);
359
+        /deep/ img {
360
+            width: px(80);
361
+            height: px(80);
362
+        }
363
+    }
364
+    .generate {
365
+        color: #0097d1;
366
+        margin-right: px(30);
367
+        flex-shrink: 0;
368
+    }
369
+}
370
+.required {
371
+    color: #f00;
372
+    font-size: px(44);
373
+    &.hide {
374
+        visibility: hidden;
375
+    }
376
+}
377
+.inp-dis {
378
+    color: #999;
379
+}
380
+
381
+.img-card {
382
+    padding-top: px(30);
383
+    padding-bottom: px(30);
384
+}
385
+.form-img-item {
386
+    .tit {
387
+        padding: px(30);
388
+        font-size: px(44);
389
+    }
390
+}
318 391
 </style>