Kaynağa Gözat

Merge branch 'master' into dev

cr 4 yıl önce
ebeveyn
işleme
18b9366928

+ 4 - 1
a.txt

@@ -27,4 +27,7 @@ f68b8e48-c681-467b-af76-e1612c26d62e 主播 主播人员
27 27
 商家端登录密码:60EBMGQCb3
28 28
 
29 29
 测试注册
30
-xkjsglsadmin/xkjsgls2020
30
+xkjsglsadmin/xkjsgls2020
31
+
32
+小客家水果
33
+xkjsgadmin/xkjsg2020

+ 11 - 0
releaselog.md

@@ -1,4 +1,15 @@
1 1
 
2
+# 0.4.5 (21.02.03 18:00) 
3
+### 修改bug
4
+
5
+# 0.4.4 (21.02.02 18:00) 
6
+### 商品编辑页新功能,起购数
7
+
8
+
9
+# 0.4.3 (21.01.27 18:00) 
10
+### 管理员才可以修改门店
11
+
12
+
2 13
 # 0.4.2 (21.01.13 18:00) 
3 14
 ### 增加收银挂单
4 15
 

+ 16 - 0
src/App.vue

@@ -33,6 +33,22 @@ export default {
33 33
                 }
34 34
             },
35 35
         });
36
+
37
+        // 测试
38
+        //   uni.getLocation({
39
+        //         type: "gcj02",
40
+        //         success: function (res) {
41
+        //             // let query = {
42
+        //             //     location: res.longitude + "," + res.latitude,
43
+        //             //     wechatMinaAppId: appConfig.appId,
44
+        //             // };
45
+        //             // self.api.get("/Home/GetShopList", query).then((res) => {
46
+        //             //     uni.hideLoading();
47
+        //             //     self.shopList = self.initData(res.data);
48
+        //             // });
49
+        //             console.log(res);
50
+        //         },
51
+        //     });
36 52
     },
37 53
 
38 54
     onShow: async function (option) {

+ 5 - 0
src/manifest.json

@@ -120,6 +120,11 @@
120 120
         "setting" : {
121 121
             "urlCheck" : false
122 122
         },
123
+        "permission":{
124
+            "scope.userLocation":{
125
+                "desc":"你的位置信息将用于门店定位"
126
+            }
127
+        },
123 128
         "usingComponents" : true
124 129
     },
125 130
     "mp-alipay" : {

+ 84 - 34
src/pages/index/index.vue

@@ -1,7 +1,7 @@
1 1
 <template>
2 2
     <div class="page">
3 3
         <div class="page__top">
4
-            <div class="shop-main">
4
+            <div class="shop-main" v-if="isAdmin">
5 5
                 <div class="name">当前门店:</div>
6 6
                 <div class="shop" @click="goShopSelect">
7 7
                     <div class="shop__name">
@@ -11,6 +11,16 @@
11 11
                     </div>
12 12
                 </div>
13 13
             </div>
14
+            <div class="shop-main" v-else>
15
+                <div class="name">当前门店:</div>
16
+                <div class="shop">
17
+                    <div class="shop__name">
18
+                        <!-- 最多6字 -->
19
+                        {{ user.storeName }}
20
+                        <!-- <i class="iconfont iconyoujiantou shop__arrow"></i> -->
21
+                    </div>
22
+                </div>
23
+            </div>
14 24
             <div class="scan">
15 25
                 <my-image
16 26
                     class="scan-img"
@@ -977,23 +987,34 @@ export default {
977 987
             if (val.loading) {
978 988
                 return;
979 989
             }
980
-            val.loading = true;
981
-            this.api
982
-                .post(
983
-                    "/Order/RejectRefund",
984
-                    {
985
-                        query: true,
986
-                        id: val.id,
987
-                    },
988
-                    { pass: true }
989
-                )
990
+
991
+            this.fn
992
+                .showModal({
993
+                    content: "是否拒绝退款?",
994
+                })
990 995
                 .then((res) => {
991
-                    val.loading = false;
992
-                    if (res.success) {
993
-                        this.fn.showToast("操作成功");
994
-                        this.getList();
995
-                    } else {
996
-                        this.fn.showToast("操作失败:" + res.message);
996
+                    if (res.confirm) {
997
+                        val.loading = true;
998
+                        this.api
999
+                            .post(
1000
+                                "/Order/RejectRefund",
1001
+                                {
1002
+                                    query: true,
1003
+                                    id: val.id,
1004
+                                },
1005
+                                { pass: true }
1006
+                            )
1007
+                            .then((res) => {
1008
+                                val.loading = false;
1009
+                                if (res.success) {
1010
+                                    this.fn.showToast("操作成功");
1011
+                                    this.getList();
1012
+                                } else {
1013
+                                    this.fn.showToast(
1014
+                                        "操作失败:" + res.message
1015
+                                    );
1016
+                                }
1017
+                            });
997 1018
                     }
998 1019
                 });
999 1020
         },
@@ -1003,23 +1024,34 @@ export default {
1003 1024
             if (val.loading) {
1004 1025
                 return;
1005 1026
             }
1006
-            val.loading = true;
1007
-            this.api
1008
-                .post(
1009
-                    "/Order/AgreeRefund",
1010
-                    {
1011
-                        query: true,
1012
-                        id: val.id,
1013
-                    },
1014
-                    { pass: true }
1015
-                )
1027
+
1028
+            this.fn
1029
+                .showModal({
1030
+                    content: "是否同意退款?",
1031
+                })
1016 1032
                 .then((res) => {
1017
-                    val.loading = false;
1018
-                    if (res.success) {
1019
-                        this.fn.showToast("操作成功");
1020
-                        this.getList();
1021
-                    } else {
1022
-                        this.fn.showToast("操作失败:" + res.message);
1033
+                    if (res.confirm) {
1034
+                        val.loading = true;
1035
+                        this.api
1036
+                            .post(
1037
+                                "/Order/AgreeRefund",
1038
+                                {
1039
+                                    query: true,
1040
+                                    id: val.id,
1041
+                                },
1042
+                                { pass: true }
1043
+                            )
1044
+                            .then((res) => {
1045
+                                val.loading = false;
1046
+                                if (res.success) {
1047
+                                    this.fn.showToast("操作成功");
1048
+                                    this.getList();
1049
+                                } else {
1050
+                                    this.fn.showToast(
1051
+                                        "操作失败:" + res.message
1052
+                                    );
1053
+                                }
1054
+                            });
1023 1055
                     }
1024 1056
                 });
1025 1057
         },
@@ -1115,7 +1147,25 @@ export default {
1115 1147
         },
1116 1148
 
1117 1149
         curShopId() {
1118
-            return this.$store.state.common.curShop.id;
1150
+            if (this.isAdmin) {
1151
+                return this.$store.state.common.curShop.id;
1152
+            } else {
1153
+                return this.user && this.user.storeId;
1154
+            }
1155
+        },
1156
+        isAdmin() {
1157
+            //店铺管理员  系统管理员
1158
+            console.log(this.user, 111);
1159
+            if (this.user) {
1160
+                if (
1161
+                    this.user.roleId ===
1162
+                        "50c41c5d-b54c-43ed-b587-10dcb60e72e5" ||
1163
+                    this.user.roleId === "75b71b24-25de-40ac-a866-c8f5555b8b92"
1164
+                ) {
1165
+                    return true;
1166
+                }
1167
+            }
1168
+            return false;
1119 1169
         },
1120 1170
     },
1121 1171
 

+ 3 - 0
src/pages/index/login.vue

@@ -90,6 +90,9 @@ export default {
90 90
                                 } else {
91 91
                                     // 正常用户
92 92
                                     this.$store.commit("user/login", res.data);
93
+                                    this.$store.commit("common/update", {
94
+                                        curShop: {},
95
+                                    });
93 96
                                     this.router.replace({
94 97
                                         isReLaunch: true,
95 98
                                         path: "/pages/index/index",

+ 26 - 16
src/pages/manage/add-good-form.vue

@@ -393,6 +393,19 @@
393 393
                     ></easy-upload>
394 394
                 </div>
395 395
             </section>
396
+            <section class="form-item" style="border-top: 1px solid #f1f1f1;margin-top:10px;">
397
+                <div class="label">
398
+                    <span class="required hide">*</span>
399
+                    商品描述:
400
+                </div>
401
+                <div class="box">
402
+                    <textarea
403
+                        v-model="baseInfo.summary"
404
+                        :maxlength="1048"
405
+                        :auto-height="true"
406
+                    ></textarea>
407
+                </div>
408
+            </section>
396 409
         </div>
397 410
         <!-- 其他 -->
398 411
         <div class="form-card">
@@ -441,19 +454,6 @@
441 454
                         </radio-group>
442 455
                     </div>
443 456
                 </section>
444
-                <section class="form-item">
445
-                    <div class="label">
446
-                        <span class="required hide">*</span>
447
-                        商品描述:
448
-                    </div>
449
-                    <div class="box">
450
-                        <textarea
451
-                            v-model="baseInfo.description"
452
-                            :maxlength="1048"
453
-                            :auto-height="true"
454
-                        ></textarea>
455
-                    </div>
456
-                </section>
457 457
                 <section class="form-item">
458 458
                     <div class="label">
459 459
                         <span class="required">*</span>
@@ -487,6 +487,15 @@
487 487
                         />
488 488
                     </div>
489 489
                 </section>
490
+                <section class="form-item">
491
+                    <div class="label">
492
+                        <span class="required hide">*</span>
493
+                        起购数:
494
+                    </div>
495
+                    <div class="box">
496
+                        <input type="number" v-model="baseInfo.minBuyCount" />
497
+                    </div>
498
+                </section>
490 499
                 <!-- <section class="form-item">
491 500
                     <div class="label">
492 501
                         <span class="required">*</span>
@@ -563,7 +572,7 @@ export default {
563 572
                 barCode: "", // 条码
564 573
                 name: "", // 标题
565 574
                 code: "", // 编码
566
-                description: "", // 描述
575
+                summary: "", // 描述
567 576
                 productTypeIds: [], // 分类
568 577
 
569 578
                 price: 0, // 价格
@@ -578,6 +587,7 @@ export default {
578 587
                 status: 1, // 出售方式 0-放入仓库(即没有上架),1-立即出售(即上架)
579 588
                 _statusName: "立即出售",
580 589
                 maxBuyableCount: 0, // 限购数
590
+                minBuyCount: 0,
581 591
 
582 592
                 mainImage: "", // 封面图 300 *300
583 593
             },
@@ -1161,7 +1171,7 @@ export default {
1161 1171
                 barCode: "", // 条码
1162 1172
                 name: "", // 标题
1163 1173
                 code: "", // 编码
1164
-                description: "", // 描述
1174
+                summary: "", // 描述
1165 1175
                 productTypeIds: [], // 分类
1166 1176
 
1167 1177
                 price: 0, // 价格
@@ -1176,6 +1186,7 @@ export default {
1176 1186
                 status: 1, // 出售方式 0-放入仓库(即没有上架),1-立即出售(即上架)
1177 1187
                 _statusName: "立即出售",
1178 1188
                 maxBuyableCount: 0, // 限购数
1189
+                minBuyCount: 0,
1179 1190
 
1180 1191
                 mainImage: "", // 主图 300 *300
1181 1192
             };
@@ -1633,5 +1644,4 @@ button::before {
1633 1644
     display: inline-block;
1634 1645
     margin-left: px(10);
1635 1646
 }
1636
-
1637 1647
 </style>

+ 64 - 20
src/pages/manage/edit-good-form.vue

@@ -390,6 +390,22 @@
390 390
                     ></easy-upload>
391 391
                 </div>
392 392
             </section>
393
+            <section
394
+                class="form-item"
395
+                style="border-top: 1px solid #f1f1f1; margin-top: 10px"
396
+            >
397
+                <div class="label">
398
+                    <span class="required hide">*</span>
399
+                    商品描述:
400
+                </div>
401
+                <div class="box">
402
+                    <textarea
403
+                        v-model="baseInfo.summary"
404
+                        :maxlength="1048"
405
+                        :auto-height="true"
406
+                    ></textarea>
407
+                </div>
408
+            </section>
393 409
         </div>
394 410
         <!-- 其他 -->
395 411
         <div class="form-card">
@@ -438,20 +454,6 @@
438 454
                         </radio-group>
439 455
                     </div>
440 456
                 </section>
441
-
442
-                <section class="form-item">
443
-                    <div class="label">
444
-                        <span class="required hide">*</span>
445
-                        商品描述:
446
-                    </div>
447
-                    <div class="box">
448
-                        <textarea
449
-                            v-model="baseInfo.description"
450
-                            :maxlength="1048"
451
-                            :auto-height="true"
452
-                        ></textarea>
453
-                    </div>
454
-                </section>
455 457
                 <section class="form-item">
456 458
                     <div class="label">
457 459
                         <span class="required">*</span>
@@ -485,6 +487,15 @@
485 487
                         />
486 488
                     </div>
487 489
                 </section>
490
+                <section class="form-item">
491
+                    <div class="label">
492
+                        <span class="required hide">*</span>
493
+                        起购数:
494
+                    </div>
495
+                    <div class="box">
496
+                        <input type="number" v-model="baseInfo.minBuyCount" />
497
+                    </div>
498
+                </section>
488 499
                 <!-- <section class="form-item">
489 500
                     <div class="label">
490 501
                         <span class="required">*</span>
@@ -507,6 +518,9 @@
507 518
             <button type="button" class="btn" @click="save('back')">
508 519
                 保存
509 520
             </button>
521
+            <button type="button" class="btn" @click="save('send')" :class="{dis:baseInfo.status ===0}">
522
+                保存并推送
523
+            </button>
510 524
         </div>
511 525
     </div>
512 526
 </template>
@@ -559,7 +573,7 @@ export default {
559 573
                 barCode: "", // 条码
560 574
                 name: "", // 标题
561 575
                 code: "", // 编码
562
-                description: "", // 描述
576
+                summary: "", // 描述
563 577
                 productTypeIds: [], // 分类
564 578
 
565 579
                 price: 0, // 价格
@@ -574,6 +588,7 @@ export default {
574 588
                 status: 1, // 出售方式 0-放入仓库(即没有上架),1-立即出售(即上架)
575 589
                 _statusName: "立即出售",
576 590
                 maxBuyableCount: 0, // 限购数
591
+                minBuyCount: 0,
577 592
 
578 593
                 mainImage: "", // 主图 300 *300
579 594
             },
@@ -1250,18 +1265,18 @@ export default {
1250 1265
             this.submitLoading = true;
1251 1266
             uni.showLoading({
1252 1267
                 title: "提交中...",
1253
-                mask:true
1268
+                mask: true,
1254 1269
             });
1255 1270
             this.api
1256 1271
                 .post("/product/SaveEdit", sendData, { pass: true })
1257 1272
                 .then((res) => {
1258 1273
                     this.submitLoading = false;
1259
-                uni.hideLoading();
1274
+                    uni.hideLoading();
1260 1275
                     if (res.success) {
1261
-                        if (type === "next") {
1262
-                        } else {
1263
-                            this.router.back();
1276
+                        if (type === "send") {
1277
+                            this.sendProduct('text');
1264 1278
                         }
1279
+                        this.router.back();
1265 1280
                     } else {
1266 1281
                         this.fn.showModal({
1267 1282
                             content: res.message,
@@ -1426,6 +1441,30 @@ export default {
1426 1441
                 ...obj,
1427 1442
             };
1428 1443
         },
1444
+
1445
+        sendProduct(item, type) {
1446
+            let sendData = {
1447
+                pid: this.oldData.baseInfo.id,
1448
+                storeId: this.oldData.baseInfo.storeId,
1449
+            };
1450
+            if (type === "text") {
1451
+                sendData.sendTxt = false;
1452
+                sendData.sendVideo = false;
1453
+                sendData.sendImg = 0;
1454
+            } else {
1455
+                // sendData.sendTxt = true;
1456
+                // sendData.sendVideo = true;
1457
+                // sendData.sendImg = 3;
1458
+            }
1459
+
1460
+            this.api
1461
+                .get("https://bot.ixiaokejia.com/Home/sendproduct", sendData, {
1462
+                    pass: true,
1463
+                })
1464
+                .then((res) => {
1465
+                    this.fn.showToast(res.message);
1466
+                });
1467
+        },
1429 1468
     },
1430 1469
 
1431 1470
     // 数据计算
@@ -1562,6 +1601,11 @@ radio-group {
1562 1601
     & ~ .btn {
1563 1602
         border-left: 1px solid #999;
1564 1603
     }
1604
+    &.dis{
1605
+        background-color: #eee;
1606
+        color: #666;
1607
+        pointer-events: none;
1608
+    }
1565 1609
 }
1566 1610
 button::after {
1567 1611
     border: none;

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

@@ -240,17 +240,24 @@
240 240
                                         </div>
241 241
                                         <div
242 242
                                             class="btn"
243
-                                            @click="setPrice(item)"
243
+                                            @click="sendProduct(item, 'text')"
244 244
                                         >
245
-                                            改价
245
+                                            
246
+                                            推荐链接
246 247
                                         </div>
247 248
                                         <div
248 249
                                             class="btn"
249
-                                            @click="setStock(item)"
250
+                                            @click="sendProduct(item, 'product')"
250 251
                                         >
251
-                                            改库存
252
+                                            推荐商品
252 253
                                         </div>
253 254
                                         <div
255
+                                            class="btn"
256
+                                            @click="openMore(item)"
257
+                                        >
258
+                                            更多
259
+                                        </div>
260
+                                        <!-- <div
254 261
                                             class="btn"
255 262
                                             v-if="item.status === 0"
256 263
                                             @click="setStatus(item, 1)"
@@ -263,7 +270,7 @@
263 270
                                             @click="setStatus(item, 0)"
264 271
                                         >
265 272
                                             下架
266
-                                        </div>
273
+                                        </div> -->
267 274
                                     </div>
268 275
                                 </li>
269 276
                             </ul>
@@ -361,7 +368,8 @@
361 368
             </div>
362 369
         </div>
363 370
 
364
-        <my-share ref="share" @share="saveImage"></my-share>
371
+        <shop-select ref="shopSelect"></shop-select>
372
+        
365 373
     </div>
366 374
 </template>
367 375
 
@@ -372,9 +380,10 @@ import uniPopupDialog from "../../components/uni-popup/uni-popup-dialog";
372 380
 import uniPopupSpec from "../../components/uni-popup/uni-popup-spec";
373 381
 import config from "../../common/js/config";
374 382
 import MyShare from "../../components/share/index";
383
+import ShopSelect from "./shop-select";
375 384
 export default {
376 385
     name: "",
377
-    components: { MyImage, uniPopup, uniPopupDialog, MyShare, uniPopupSpec },
386
+    components: { MyImage, uniPopup, uniPopupDialog, MyShare, uniPopupSpec,ShopSelect },
378 387
     // 数据
379 388
     data() {
380 389
         return {
@@ -415,6 +424,12 @@ export default {
415 424
             shareGood: {},
416 425
             shareRootLoading: false,
417 426
             shareLoadList: [],
427
+
428
+            // other
429
+            otherUrl: "https://bot.ixiaokejia.com/",
430
+            shopList: null,
431
+
432
+            curGood: null,
418 433
         };
419 434
     },
420 435
 
@@ -1308,6 +1323,96 @@ export default {
1308 1323
                 this.share(val);
1309 1324
             }
1310 1325
         },
1326
+
1327
+        openMore(item) {
1328
+            let arr = [];
1329
+            if (item.status === 0) {
1330
+                arr.push("上架");
1331
+            } else {
1332
+                arr.push("下架");
1333
+            }
1334
+            arr = [...arr, "改价", "改库存", "跨店复制"];
1335
+            uni.showActionSheet({
1336
+                itemList: arr,
1337
+                success: (res) => {
1338
+                    switch (res.tapIndex) {
1339
+                        case 0:
1340
+                            if (item.status === 0) {
1341
+                                this.setStatus(item, 1);
1342
+                            } else {
1343
+                                this.setStatus(item, 0);
1344
+                            }
1345
+                            break;
1346
+                        case 1:
1347
+                            this.setPrice(item);
1348
+                            // this.sendProduct(item, "text");
1349
+                            break;
1350
+                        case 2:
1351
+                            this.setStock(item);
1352
+                            // this.sendProduct(item, "product");
1353
+                            break;
1354
+                        case 3:
1355
+                            this.copyProductsPlay(item);
1356
+                            break;
1357
+                    }
1358
+                },
1359
+            });
1360
+        },
1361
+
1362
+        sendProduct(item, type) {
1363
+            let sendData = {
1364
+                pid: item.id,
1365
+                storeId: item.storeId,
1366
+            };
1367
+            if (type === "text") {
1368
+                sendData.sendTxt = false;
1369
+                sendData.sendVideo = false;
1370
+                sendData.sendImg = 0;
1371
+            } else {
1372
+                // sendData.sendTxt = true;
1373
+                // sendData.sendVideo = true;
1374
+                // sendData.sendImg = 3;
1375
+            }
1376
+
1377
+            this.api
1378
+                .get(this.otherUrl + "Home/sendproduct", sendData, {
1379
+                    pass: true,
1380
+                })
1381
+                .then((res) => {
1382
+                    this.fn.showToast(res.message);
1383
+                });
1384
+        },
1385
+
1386
+        copyProductsPlay(item) {
1387
+            if(!this.isAdmin){
1388
+                return this.fn.showToast('非管理员无权操作!');
1389
+            }
1390
+            if (!this.shopList) {
1391
+                this.getShopList(item);
1392
+            } else {
1393
+                this.copyProducts(item);
1394
+            }
1395
+        },
1396
+
1397
+        getShopList(item) {
1398
+            uni.showLoading({
1399
+                title: "加载中...",
1400
+            });
1401
+            this.api.get("/Store/GetShopList").then((res) => {
1402
+                uni.hideLoading();
1403
+                for(let item of res.data){
1404
+                    item.label = item.name;
1405
+                    item.value = item.id;
1406
+                }
1407
+                this.shopList = res.data;
1408
+                this.copyProducts(item);
1409
+            });
1410
+        },
1411
+
1412
+        copyProducts(good) {
1413
+            this.curGood = good;
1414
+            this.$refs.shopSelect.open(good,this.shopList)
1415
+        },
1311 1416
     },
1312 1417
 
1313 1418
     // 数据计算
@@ -1319,6 +1424,17 @@ export default {
1319 1424
         user() {
1320 1425
             return this.$store.state.user.user;
1321 1426
         },
1427
+        isAdmin() {
1428
+            //店铺管理员  系统管理员
1429
+            if (
1430
+                this.user.roleId === "50c41c5d-b54c-43ed-b587-10dcb60e72e5" ||
1431
+                this.user.roleId === "75b71b24-25de-40ac-a866-c8f5555b8b92"
1432
+            ) {
1433
+                return true;
1434
+            } else {
1435
+                return false;
1436
+            }
1437
+        },
1322 1438
     },
1323 1439
 
1324 1440
     // 数据监听
@@ -1955,4 +2071,5 @@ page {
1955 2071
     flex-shrink: 0;
1956 2072
     margin-right: px(30);
1957 2073
 }
2074
+
1958 2075
 </style>

+ 3 - 2
src/pages/manage/index.vue

@@ -42,7 +42,7 @@
42 42
                     ></my-image>
43 43
                     <span class="text">账号设置</span>
44 44
                 </li> -->
45
-                <li class="item" @click="jump('/pages/manage/cashier/index')">
45
+                <!-- <li class="item" @click="jump('/pages/manage/cashier/index')">
46 46
                     <my-image
47 47
                         class="img"
48 48
                         src="/static/icon/cashier.png"
@@ -62,12 +62,13 @@
62 62
                         src="/static/icon/user.png"
63 63
                     ></my-image>
64 64
                     <span class="text">app接口测试</span>
65
-                </li>
65
+                </li> -->
66 66
             </ul>
67 67
             <div class="ver">0.4.2</div>
68 68
         </div>
69 69
 
70 70
         <button class="btn" @click="layout">退出登录</button>
71
+        <div class="ver">0.4.5</div>
71 72
     </div>
72 73
 </template>
73 74
 

+ 216 - 0
src/pages/manage/shop-select.vue

@@ -0,0 +1,216 @@
1
+<template>
2
+    <div class="g-spec-modal" v-if="show" :class="{ page_red: theme === 1 }">
3
+        <div class="bg" @click="close"></div>
4
+        <div class="main">
5
+            <div class="head">
6
+                <span class="tit">跨店复制商品</span>
7
+                <span class="close" @click="close">×</span>
8
+            </div>
9
+            <div class="box">
10
+                <div class="title">商品:{{ goods.name }}</div>
11
+                <div class="select">
12
+                    <picker
13
+                        :range="pricerData"
14
+                        @change="chenge"
15
+                        :mode="'selector'"
16
+                    >
17
+                        <input
18
+                            type="text"
19
+                            :disabled="true"
20
+                            :value="curShop.name"
21
+                            placeholder="请选择目标店铺"
22
+                        />
23
+                    </picker>
24
+                </div>
25
+            </div>
26
+
27
+            <div class="modal-bottom">
28
+                <div class="btn" @click="submit">确定</div>
29
+            </div>
30
+        </div>
31
+    </div>
32
+</template>
33
+
34
+<script>
35
+export default {
36
+    name: "ShopSelect",
37
+    components: {},
38
+    props: {},
39
+
40
+    // 数据
41
+    data() {
42
+        return {
43
+            show: false,
44
+            goods: {},
45
+            shopList: [],
46
+            pricerData: [],
47
+            curShop: {},
48
+            submitLoading:false,
49
+        };
50
+    },
51
+
52
+    // 函数
53
+    methods: {
54
+        // 打开
55
+        open(good, shopList) {
56
+            const self = this;
57
+            console.log("open");
58
+            self.show = true;
59
+            this.goods = good;
60
+            this.shopList = shopList;
61
+            let strArr = [];
62
+            for (let item of this.shopList) {
63
+                strArr.push(item.name);
64
+            }
65
+            this.pricerData = strArr;
66
+        },
67
+
68
+        // 关闭
69
+        close() {
70
+            const self = this;
71
+
72
+            self.show = false;
73
+        },
74
+
75
+        chenge(e) {
76
+            this.curShop = this.shopList[e.detail.value];
77
+            // console.log(e);
78
+        },
79
+
80
+        submit() {
81
+            if (!this.curShop.id) {
82
+                return this.fn.fn.showToast("请先选择店铺");
83
+            }
84
+            if (this.submitLoading) {
85
+                return;
86
+            }
87
+            this.submitLoading = true;
88
+            uni.showLoading({
89
+                title: "提交中...",
90
+            });
91
+            this.api
92
+                .post("/Product/CopyProducts", {
93
+                    storeId: this.curShop.id,
94
+                    productIds: [this.goods.id],
95
+                })
96
+                .then((res) => {
97
+                    uni.hideLoading();
98
+                    this.submitLoading = false;
99
+                    if (res.success) {
100
+                        this.fn.showToast("操作成功");
101
+                        this.close();
102
+                    } else {
103
+                        this.fn.showToast("操作失败 " + res.message);
104
+                    }
105
+                });
106
+        },
107
+    },
108
+
109
+    // 数据计算
110
+    computed: {},
111
+
112
+    // 数据监听
113
+    watch: {},
114
+};
115
+</script>
116
+
117
+<style lang="scss" scoped>
118
+.g-spec-modal {
119
+    position: fixed;
120
+    top: 0;
121
+    left: 0;
122
+    right: 0;
123
+    bottom: 0;
124
+    z-index: 3000;
125
+    .bg {
126
+        width: 100%;
127
+        height: 100%;
128
+        background-color: rgba(0, 0, 0, 0.3);
129
+    }
130
+    .main {
131
+        background-color: #fff;
132
+        border-radius: px(30);
133
+        position: absolute;
134
+        top: 50%;
135
+        left: px(100);
136
+        right: px(100);
137
+        transform: translate(0, -50%);
138
+        max-height: 90vh;
139
+        overflow: auto;
140
+        z-index: 100;
141
+        padding: px(40) 0;
142
+    }
143
+    .head {
144
+        font-size: px(44);
145
+        position: relative;
146
+        padding-bottom: px(30);
147
+        border-bottom: 1px solid #f1f1f1;
148
+        line-height: px(88);
149
+        padding: 0 px(40);
150
+        .close {
151
+            font-size: px(80);
152
+            color: #666;
153
+            position: absolute;
154
+            right: px(40);
155
+            top: 0%;
156
+            z-index: 10;
157
+        }
158
+        .tit {
159
+            margin-right: px(80);
160
+            display: block;
161
+            @include omit(100%);
162
+            width: auto;
163
+        }
164
+    }
165
+}
166
+
167
+.box {
168
+    font-size: px(40);
169
+    padding: px(40);
170
+    .title {
171
+        padding-bottom: px(20);
172
+    }
173
+    .select {
174
+        border: 1px solid #f1f1f1;
175
+        height: px(100);
176
+        line-height: px(100);
177
+        padding: 0 px(20);
178
+        margin-top: px(20);
179
+    }
180
+}
181
+
182
+.modal-bottom {
183
+    display: flex;
184
+    margin-top: px(50);
185
+    justify-content: flex-end;
186
+    align-items: center;
187
+    padding: 0 px(40);
188
+    .price {
189
+        color: #fe6661;
190
+        font-size: px(40);
191
+        .num {
192
+            font-size: px(50);
193
+        }
194
+    }
195
+    .btn {
196
+        display: block;
197
+        background-color: #27a34f;
198
+        color: #fff;
199
+        width: px(280);
200
+        height: px(80);
201
+        font-size: px(34);
202
+        text-align: center;
203
+        line-height: px(80);
204
+        border-radius: px(40);
205
+    }
206
+}
207
+
208
+.page_red {
209
+    .modal-bottom .btn {
210
+        background-color: #fe6661;
211
+    }
212
+    .btns__add {
213
+        background-color: #fe6661;
214
+    }
215
+}
216
+</style>