Browse Source

多规格编辑

cr 4 years ago
parent
commit
c3dda9856c

+ 3 - 0
releaselog.md

@@ -1,4 +1,7 @@
1 1
 
2
+# 0.2.5 (20.11.19 15:00)
3
+### 多规格列表快捷编辑
4
+
2 5
 # 0.2.4 (20.11.18 19:00)
3 6
 ### 多规格编辑
4 7
 

+ 3 - 0
src/components/uni-popup/uni-popup-dialog.vue

@@ -197,6 +197,7 @@
197 197
 	.uni-dialog-content-text {
198 198
 		font-size: 14px;
199 199
 		color: #6e6e6e;
200
+        @include omits(2);
200 201
 	}
201 202
 
202 203
 	.uni-dialog-button-group {
@@ -238,6 +239,8 @@
238 239
 	.uni-dialog-input {
239 240
 		flex: 1;
240 241
 		font-size: 14px;
242
+		border: 1px solid #f1f1f1;
243
+		padding: 0 5px;
241 244
 	}
242 245
 
243 246
 	.uni-popup__success {

+ 320 - 0
src/components/uni-popup/uni-popup-spec.vue

@@ -0,0 +1,320 @@
1
+<template>
2
+    <view class="uni-popup-dialog">
3
+        <view class="uni-dialog-title">
4
+            <text
5
+                class="uni-dialog-title-text"
6
+                :class="['uni-popup__' + dialogType]"
7
+                >{{ title }}</text
8
+            >
9
+        </view>
10
+        <view class="uni-dialog-content">
11
+            <text class="uni-dialog-content-text" v-if="content">{{
12
+                content
13
+            }}</text>
14
+            <!-- <input  class="uni-dialog-input" v-model="val" :type="inputType" :placeholder="placeholder" :focus="focus" > -->
15
+			
16
+        <view class="sku-item" v-for="item of skuData.skus" :key="item.skuId">
17
+            <text>{{ item.key }}:</text>
18
+            <input  v-model="item[nameType]" :type="inputType" :placeholder="placeholder"/>
19
+        </view>
20
+        </view>
21
+        <view class="uni-dialog-button-group">
22
+            <view class="uni-dialog-button" @click="close">
23
+                <text class="uni-dialog-button-text">取消</text>
24
+            </view>
25
+            <view class="uni-dialog-button uni-border-left" @click="onOk">
26
+                <text class="uni-dialog-button-text uni-button-color"
27
+                    >确定</text
28
+                >
29
+            </view>
30
+        </view>
31
+    </view>
32
+</template>
33
+
34
+<script>
35
+/**
36
+ * PopUp 弹出层-对话框样式
37
+ * @description 弹出层-对话框样式
38
+ * @tutorial https://ext.dcloud.net.cn/plugin?id=329
39
+ * @property {String} value input 模式下的默认值
40
+ * @property {String} placeholder input 模式下输入提示
41
+ * @property {String} type = [success|warning|info|error] 主题样式
42
+ *  @value success 成功
43
+ * 	@value warning 提示
44
+ * 	@value info 消息
45
+ * 	@value error 错误
46
+ * @property {String} mode = [base|input] 模式、
47
+ * 	@value base 基础对话框
48
+ * 	@value input 可输入对话框
49
+ * @property {String} content 对话框内容
50
+ * @property {Boolean} beforeClose 是否拦截取消事件
51
+ * @event {Function} confirm 点击确认按钮触发
52
+ * @event {Function} close 点击取消按钮触发
53
+ */
54
+
55
+export default {
56
+    name: "uniPopupSpec",
57
+    props: {
58
+        value: {
59
+            type: [String, Number],
60
+            default: "",
61
+        },
62
+        placeholder: {
63
+            type: [String, Number],
64
+            default: "请输入内容",
65
+        },
66
+        /**
67
+         * 对话框主题 success/warning/info/error	  默认 success
68
+         */
69
+        type: {
70
+            type: String,
71
+            default: "error",
72
+        },
73
+        /**
74
+         * 对话框模式 base/input
75
+         */
76
+        mode: {
77
+            type: String,
78
+            default: "base",
79
+        },
80
+        /**
81
+         * 对话框标题
82
+         */
83
+        title: {
84
+            type: String,
85
+            default: "提示",
86
+        },
87
+        /**
88
+         * 对话框内容
89
+         */
90
+        content: {
91
+            type: [String, Boolean],
92
+            default: false,
93
+        },
94
+        /**
95
+         * 拦截取消事件 ,如果拦截取消事件,必须监听close事件,执行 done()
96
+         */
97
+        beforeClose: {
98
+            type: Boolean,
99
+            default: false,
100
+        },
101
+        /**
102
+         * 输入框type
103
+         */
104
+        inputType: {
105
+            type: String,
106
+            default: "digit",
107
+        },
108
+        /**
109
+         * skus
110
+         */
111
+        skuData: {
112
+            type: Object,
113
+            default: () => {
114
+                return {};
115
+            },
116
+        },
117
+        /**
118
+         * 绑定字段名
119
+         */
120
+        nameType: {
121
+            type: String,
122
+            default: 'price'
123
+        },
124
+    },
125
+    data() {
126
+        return {
127
+            dialogType: "error",
128
+            focus: false,
129
+            val: "",
130
+        };
131
+    },
132
+    inject: ["popup"],
133
+    watch: {
134
+        type(val) {
135
+            this.dialogType = val;
136
+        },
137
+        mode(val) {
138
+            if (val === "input") {
139
+                this.dialogType = "info";
140
+            }
141
+        },
142
+        value(val) {
143
+            this.val = val;
144
+        },
145
+        skuData(v) {
146
+            console.log(v);
147
+        },
148
+    },
149
+    created() {
150
+        // 对话框遮罩不可点击
151
+        this.popup.mkclick = false;
152
+        if (this.mode === "input") {
153
+            this.dialogType = "info";
154
+            this.val = this.value;
155
+        } else {
156
+            this.dialogType = this.type;
157
+        }
158
+    },
159
+    mounted() {
160
+        this.focus = true;
161
+    },
162
+    methods: {
163
+        /**
164
+         * 点击确认按钮
165
+         */
166
+        onOk() {
167
+			for(let item of this.skuData.skus){
168
+				if(!item[this.nameType]){
169
+					return this.fn.showToast("请输入修改后值");
170
+				}
171
+			}
172
+            this.$emit(
173
+                "confirm",
174
+                () => {
175
+                    this.popup.close();
176
+                    if (this.mode === "input") this.val = this.value;
177
+                },
178
+                this.skuData
179
+            );
180
+        },
181
+        /**
182
+         * 点击取消按钮
183
+         */
184
+        close() {
185
+            if (this.beforeClose) {
186
+                this.$emit("close", () => {
187
+                    this.popup.close();
188
+                });
189
+                return;
190
+            }
191
+            this.popup.close();
192
+        },
193
+    },
194
+};
195
+</script>
196
+
197
+<style lang="scss" scoped>
198
+.uni-popup-dialog {
199
+    width: 300px;
200
+    border-radius: 15px;
201
+    background-color: #fff;
202
+}
203
+
204
+.uni-dialog-title {
205
+    /* #ifndef APP-NVUE */
206
+    display: flex;
207
+    /* #endif */
208
+    flex-direction: row;
209
+    justify-content: center;
210
+    padding-top: 15px;
211
+    padding-bottom: 5px;
212
+}
213
+
214
+.uni-dialog-title-text {
215
+    font-size: 16px;
216
+    font-weight: 500;
217
+}
218
+
219
+.uni-dialog-content {
220
+    /* #ifndef APP-NVUE */
221
+    display: flex;
222
+    /* #endif */
223
+    flex-direction: row;
224
+    justify-content: center;
225
+    align-items: center;
226
+    padding: 5px 15px 15px 15px;
227
+    flex-direction: column;
228
+    text,
229
+    input {
230
+        width: 100%;
231
+    }
232
+    text {
233
+        text-align: center;
234
+        padding-bottom: 10px;
235
+    }
236
+}
237
+
238
+.uni-dialog-content-text {
239
+    font-size: 14px;
240
+    color: #6e6e6e;
241
+        @include omits(2);
242
+}
243
+
244
+.uni-dialog-button-group {
245
+    /* #ifndef APP-NVUE */
246
+    display: flex;
247
+    /* #endif */
248
+    flex-direction: row;
249
+    border-top-color: #f5f5f5;
250
+    border-top-style: solid;
251
+    border-top-width: 1px;
252
+}
253
+
254
+.uni-dialog-button {
255
+    /* #ifndef APP-NVUE */
256
+    display: flex;
257
+    /* #endif */
258
+
259
+    flex: 1;
260
+    flex-direction: row;
261
+    justify-content: center;
262
+    align-items: center;
263
+    height: 45px;
264
+}
265
+
266
+.uni-border-left {
267
+    border-left-color: #f0f0f0;
268
+    border-left-style: solid;
269
+    border-left-width: 1px;
270
+}
271
+
272
+.uni-dialog-button-text {
273
+    font-size: 14px;
274
+}
275
+
276
+.uni-button-color {
277
+    color: #27a34f;
278
+}
279
+
280
+.uni-dialog-input {
281
+    flex: 1;
282
+    font-size: 14px;
283
+}
284
+
285
+.uni-popup__success {
286
+    color: #4cd964;
287
+}
288
+
289
+.uni-popup__warn {
290
+    color: #f0ad4e;
291
+}
292
+
293
+.uni-popup__error {
294
+    color: #dd524d;
295
+}
296
+
297
+.uni-popup__info {
298
+    color: #909399;
299
+}
300
+.sku-item {
301
+	width: 100%;
302
+	&~.sku-item{
303
+		margin-top: 10px;
304
+	}
305
+    text {
306
+        display: block;
307
+        width: 100%;
308
+        font-size: 14px;
309
+		padding: 0;
310
+	text-align: left;
311
+    }
312
+    input {
313
+        display: block;
314
+		border: 1px solid #f1f1f1;
315
+        width: 100%;
316
+        margin-top: 5px;
317
+		padding: 0 5px;
318
+    }
319
+}
320
+</style>

+ 124 - 10
src/pages/manage/good-list.vue

@@ -1,6 +1,7 @@
1 1
 <template>
2 2
     <div class="page shop-cart-page" :class="{ page_red: theme === 1 }">
3 3
         <div class="page__top">
4
+            <span class="quick-add" @click="jump('/pages/manage/add-good-form')">新增</span>
4 5
             <div class="search">
5 6
                 <i class="iconfont icontubiao- search__icon"></i>
6 7
                 <input
@@ -279,25 +280,52 @@
279 280
                 </div>
280 281
             </div>
281 282
         </div>
283
+        <!-- 单商品价格 -->
282 284
         <uni-popup ref="popup" type="dialog">
283 285
             <uni-popup-dialog
284 286
                 mode="input"
285 287
                 :title="'修改价格'"
286 288
                 :content="rePriceText"
289
+                :value="rePriceValue"
287 290
                 placeholder="请输入修改后的价格"
288 291
                 @confirm="setPriceConfirm"
289 292
             ></uni-popup-dialog>
290 293
         </uni-popup>
291
-
294
+        <!-- 多规格商品价格 -->
295
+        <uni-popup ref="popupPriceSkus" type="dialog">
296
+            <uni-popup-spec
297
+                mode="input"
298
+                :title="'修改价格'"
299
+                :content="rePriceText"
300
+                :skuData="rePriceSkuData"
301
+                :nameType="'price'"
302
+                placeholder="请输入修改后的价格"
303
+                @confirm="setSkusPriceConfirm"
304
+            ></uni-popup-spec>
305
+        </uni-popup>
306
+        <!-- 单规格库存 -->
292 307
         <uni-popup ref="dialogPopup" type="dialog">
293 308
             <uni-popup-dialog
294 309
                 mode="input"
295 310
                 :title="'修改库存'"
296 311
                 :content="reStockText"
312
+                :value="reStockValue"
297 313
                 placeholder="请输入修改后的库存"
298 314
                 @confirm="setStockConfirm"
299 315
             ></uni-popup-dialog>
300 316
         </uni-popup>
317
+        <!-- 多规格商品库存 -->
318
+        <uni-popup ref="popupStockSkus" type="dialog">
319
+            <uni-popup-spec
320
+                mode="input"
321
+                :title="'修改库存'"
322
+                :content="reStockText"
323
+                :skuData="reStockSkuData"
324
+                :nameType="'stock'"
325
+                placeholder="请输入修改后的库存"
326
+                @confirm="setSkusStockConfirm"
327
+            ></uni-popup-spec>
328
+        </uni-popup>
301 329
 
302 330
         <div
303 331
             class="canvas"
@@ -330,11 +358,12 @@
330 358
 import MyImage from "../../components/image/index";
331 359
 import uniPopup from "../../components/uni-popup/uni-popup";
332 360
 import uniPopupDialog from "../../components/uni-popup/uni-popup-dialog";
361
+import uniPopupSpec from "../../components/uni-popup/uni-popup-spec";
333 362
 import config from "../../common/js/config";
334 363
 import MyShare from "../../components/share/index";
335 364
 export default {
336 365
     name: "",
337
-    components: { MyImage, uniPopup, uniPopupDialog, MyShare },
366
+    components: { MyImage, uniPopup, uniPopupDialog, MyShare, uniPopupSpec },
338 367
     // 数据
339 368
     data() {
340 369
         return {
@@ -357,10 +386,14 @@ export default {
357 386
 
358 387
             // 修改价格文字
359 388
             rePriceText: "",
389
+            rePriceValue: "",
360 390
             rePriceData: {},
391
+            rePriceSkuData: {},
361 392
             // 修改库存文字
362 393
             reStockText: "",
394
+            reStockValue: "",
363 395
             reStockData: {},
396
+            reStockSkuData: {},
364 397
             // 上下架状态
365 398
             typeStatus: 1,
366 399
             // 搜索
@@ -597,10 +630,33 @@ export default {
597 630
 
598 631
         // 改价
599 632
         setPrice(val) {
600
-            this.rePriceText = "当前价格:" + val.price / 100 + "元";
601
-            this.rePriceData = val;
602
-            this.$refs.popup.open({
603
-                type: "dialog",
633
+            uni.showLoading({
634
+                title: "加载中...",
635
+            });
636
+            this.api.get("/Product/Detail", { id: val.id }).then((res) => {
637
+                uni.hideLoading();
638
+                console.log(res.data);
639
+                if (!res.data.skuInfo) {
640
+                    // 单商品
641
+                    this.rePriceText = val.name;
642
+                    this.rePriceValue = val.price / 100;
643
+                    this.rePriceData = val;
644
+                    this.$refs.popup.open({
645
+                        type: "dialog",
646
+                    });
647
+                } else {
648
+                    // 多商品
649
+                    this.rePriceData = res.data;
650
+                    this.rePriceText = val.name;
651
+                    let data = JSON.parse(res.data.skuInfo);
652
+                    for (let item of data.skus) {
653
+                        item.price /= 100;
654
+                    }
655
+                    this.rePriceSkuData = data;
656
+                    this.$refs.popupPriceSkus.open({
657
+                        type: "dialog",
658
+                    });
659
+                }
604 660
             });
605 661
         },
606 662
 
@@ -636,12 +692,48 @@ export default {
636 692
             }
637 693
         },
638 694
 
695
+        setSkusPriceConfirm(done, value) {
696
+            console.log(value);
697
+            for (let item of value.skus) {
698
+                item.price = parseInt(Number(item.price) * 100);
699
+            }
700
+            this.rePriceData.skuInfo = JSON.stringify(value);
701
+            this.api.post("/product/SaveEdit", this.rePriceData).then((res) => {
702
+                if (res.success) {
703
+                    this.fn.showToast("修改成功");
704
+                    done();
705
+                } else {
706
+                    this.fn.showToast("修改失败");
707
+                }
708
+            });
709
+        },
710
+
639 711
         // 改库存
640 712
         setStock(val) {
641
-            this.reStockText = "当前库存:" + val.stock;
642
-            this.reStockData = val;
643
-            this.$refs.dialogPopup.open({
644
-                type: "dialog",
713
+            uni.showLoading({
714
+                title: "加载中...",
715
+            });
716
+            this.api.get("/Product/Detail", { id: val.id }).then((res) => {
717
+                uni.hideLoading();
718
+                console.log(res.data);
719
+                if (!res.data.skuInfo) {
720
+                    // 单商品
721
+                    this.reStockText = val.name;
722
+                    this.reStockValue = val.stock;
723
+                    this.reStockData = val;
724
+                    this.$refs.dialogPopup.open({
725
+                        type: "dialog",
726
+                    });
727
+                } else {
728
+                    // 多商品
729
+                    this.reStockData = res.data;
730
+                    this.reStockText = val.name;
731
+                    let data = JSON.parse(res.data.skuInfo);
732
+                    this.reStockSkuData = data;
733
+                    this.$refs.popupStockSkus.open({
734
+                        type: "dialog",
735
+                    });
736
+                }
645 737
             });
646 738
         },
647 739
 
@@ -675,6 +767,22 @@ export default {
675 767
             }
676 768
         },
677 769
 
770
+        setSkusStockConfirm(done, value) {
771
+            // console.log(value);
772
+            for (let item of value.skus) {
773
+                item.stock = Number(item.stock);
774
+            }
775
+            this.reStockData.skuInfo = JSON.stringify(value);
776
+            this.api.post("/product/SaveEdit", this.reStockData).then((res) => {
777
+                if (res.success) {
778
+                    this.fn.showToast("修改成功");
779
+                    done();
780
+                } else {
781
+                    this.fn.showToast("修改失败");
782
+                }
783
+            });
784
+        },
785
+
678 786
         shareLoading(id, status) {
679 787
             for (let item of this.goodsList) {
680 788
                 if (item.id === id) {
@@ -1808,4 +1916,10 @@ page {
1808 1916
 .remove-icon {
1809 1917
     padding-left: px(20);
1810 1918
 }
1919
+.quick-add{
1920
+    font-size: px(44);
1921
+    color:  rgb(0, 188, 38);
1922
+    flex-shrink: 0;
1923
+    margin-right: px(30);
1924
+}
1811 1925
 </style>

+ 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.4</div>
51
+        <div class="ver">0.2.5</div>
52 52
     </div>
53 53
 </template>
54 54