MrShi
2026-04-20 a987eccb27891bbfaae334b7fa0e892ee2640271
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["pages/store-apply/store-apply"],{
 
/***/ 263:
/*!***********************************************************************************************!*\
  !*** D:/豆米/gtzxinglijicun/small-program/main.js?{"page":"pages%2Fstore-apply%2Fstore-apply"} ***!
  \***********************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
 
"use strict";
/* WEBPACK VAR INJECTION */(function(wx, createPage) {
 
var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ 4);
__webpack_require__(/*! uni-pages */ 30);
var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 25));
var _storeApply = _interopRequireDefault(__webpack_require__(/*! ./pages/store-apply/store-apply.vue */ 264));
// @ts-ignore
wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;
createPage(_storeApply.default);
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/wx.js */ 1)["default"], __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 2)["createPage"]))
 
/***/ }),
 
/***/ 264:
/*!****************************************************************************!*\
  !*** D:/豆米/gtzxinglijicun/small-program/pages/store-apply/store-apply.vue ***!
  \****************************************************************************/
/*! no static exports found */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
 
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony import */ var _store_apply_vue_vue_type_template_id_43aee78c_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./store-apply.vue?vue&type=template&id=43aee78c&scoped=true& */ 265);
/* harmony import */ var _store_apply_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./store-apply.vue?vue&type=script&lang=js& */ 267);
/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _store_apply_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(["default"].indexOf(__WEBPACK_IMPORT_KEY__) < 0) (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _store_apply_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));
/* harmony import */ var _store_apply_vue_vue_type_style_index_0_id_43aee78c_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./store-apply.vue?vue&type=style&index=0&id=43aee78c&lang=scss&scoped=true& */ 269);
/* harmony import */ var _HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../办公/HBuilderX.3.8.12.20230817/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 41);
 
var renderjs
 
 
 
 
 
/* normalize component */
 
var component = Object(_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
  _store_apply_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
  _store_apply_vue_vue_type_template_id_43aee78c_scoped_true___WEBPACK_IMPORTED_MODULE_0__["render"],
  _store_apply_vue_vue_type_template_id_43aee78c_scoped_true___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
  false,
  null,
  "43aee78c",
  null,
  false,
  _store_apply_vue_vue_type_template_id_43aee78c_scoped_true___WEBPACK_IMPORTED_MODULE_0__["components"],
  renderjs
)
 
component.options.__file = "pages/store-apply/store-apply.vue"
/* harmony default export */ __webpack_exports__["default"] = (component.exports);
 
/***/ }),
 
/***/ 265:
/*!***********************************************************************************************************************!*\
  !*** D:/豆米/gtzxinglijicun/small-program/pages/store-apply/store-apply.vue?vue&type=template&id=43aee78c&scoped=true& ***!
  \***********************************************************************************************************************/
/*! exports provided: render, staticRenderFns, recyclableRender, components */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
 
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony import */ var _HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_17_0_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_store_apply_vue_vue_type_template_id_43aee78c_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../办公/HBuilderX.3.8.12.20230817/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../办公/HBuilderX.3.8.12.20230817/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--17-0!../../../../../办公/HBuilderX.3.8.12.20230817/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../办公/HBuilderX.3.8.12.20230817/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../办公/HBuilderX.3.8.12.20230817/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../办公/HBuilderX.3.8.12.20230817/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./store-apply.vue?vue&type=template&id=43aee78c&scoped=true& */ 266);
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_17_0_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_store_apply_vue_vue_type_template_id_43aee78c_scoped_true___WEBPACK_IMPORTED_MODULE_0__["render"]; });
 
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_17_0_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_store_apply_vue_vue_type_template_id_43aee78c_scoped_true___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
 
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_17_0_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_store_apply_vue_vue_type_template_id_43aee78c_scoped_true___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; });
 
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_17_0_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_store_apply_vue_vue_type_template_id_43aee78c_scoped_true___WEBPACK_IMPORTED_MODULE_0__["components"]; });
 
 
 
/***/ }),
 
/***/ 266:
/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--17-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/豆米/gtzxinglijicun/small-program/pages/store-apply/store-apply.vue?vue&type=template&id=43aee78c&scoped=true& ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/*! exports provided: render, staticRenderFns, recyclableRender, components */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
 
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; });
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; });
var components
try {
  components = {
    uIcon: function () {
      return Promise.all(/*! import() | node-modules/uview-ui/components/u-icon/u-icon */[__webpack_require__.e("common/vendor"), __webpack_require__.e("node-modules/uview-ui/components/u-icon/u-icon")]).then(__webpack_require__.bind(null, /*! uview-ui/components/u-icon/u-icon.vue */ 326))
    },
    uPicker: function () {
      return Promise.all(/*! import() | node-modules/uview-ui/components/u-picker/u-picker */[__webpack_require__.e("common/vendor"), __webpack_require__.e("node-modules/uview-ui/components/u-picker/u-picker")]).then(__webpack_require__.bind(null, /*! uview-ui/components/u-picker/u-picker.vue */ 378))
    },
  }
} catch (e) {
  if (
    e.message.indexOf("Cannot find module") !== -1 &&
    e.message.indexOf(".vue") !== -1
  ) {
    console.error(e.message)
    console.error("1. 排查组件名称拼写是否正确")
    console.error(
      "2. 排查组件是否符合 easycom 规范,文档:https://uniapp.dcloud.net.cn/collocation/pages?id=easycom"
    )
    console.error(
      "3. 若组件不符合 easycom 规范,需手动引入,并在 components 中注册该组件"
    )
  } else {
    throw e
  }
}
var render = function () {
  var _vm = this
  var _h = _vm.$createElement
  var _c = _vm._self._c || _h
  var g0 =
    _vm.currentStep === 1 ? _vm.areaList && _vm.areaList.length > 0 : null
  var m0 =
    !(_vm.currentStep === 1) &&
    _vm.qualificationType === "personal" &&
    !!_vm.form.idcardImg
      ? _vm.getFullPath(_vm.form.idcardImg)
      : null
  var m1 =
    !(_vm.currentStep === 1) &&
    _vm.qualificationType === "personal" &&
    !!_vm.form.idcardImgBack
      ? _vm.getFullPath(_vm.form.idcardImgBack)
      : null
  var m2 =
    !(_vm.currentStep === 1) &&
    !(_vm.qualificationType === "personal") &&
    !!_vm.form.legalPersonCard
      ? _vm.getFullPath(_vm.form.legalPersonCard)
      : null
  var m3 =
    !(_vm.currentStep === 1) &&
    !(_vm.qualificationType === "personal") &&
    !!_vm.form.legalPersonCardBack
      ? _vm.getFullPath(_vm.form.legalPersonCardBack)
      : null
  var m4 =
    !(_vm.currentStep === 1) &&
    !(_vm.qualificationType === "personal") &&
    !!_vm.form.businessImg
      ? _vm.getFullPath(_vm.form.businessImg)
      : null
  if (!_vm._isMounted) {
    _vm.e0 = function ($event) {
      _vm.currentStep = 1
    }
    _vm.e1 = function ($event) {
      _vm.currentStep = 2
    }
    _vm.e2 = function ($event) {
      _vm.showAreaPicker = true
    }
    _vm.e3 = function ($event) {
      _vm.showAreaPicker = false
    }
    _vm.e4 = function ($event) {
      _vm.currentStep = 1
    }
  }
  _vm.$mp.data = Object.assign(
    {},
    {
      $root: {
        g0: g0,
        m0: m0,
        m1: m1,
        m2: m2,
        m3: m3,
        m4: m4,
      },
    }
  )
}
var recyclableRender = false
var staticRenderFns = []
render._withStripped = true
 
 
 
/***/ }),
 
/***/ 267:
/*!*****************************************************************************************************!*\
  !*** D:/豆米/gtzxinglijicun/small-program/pages/store-apply/store-apply.vue?vue&type=script&lang=js& ***!
  \*****************************************************************************************************/
/*! no static exports found */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
 
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony import */ var _HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_13_1_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_store_apply_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../办公/HBuilderX.3.8.12.20230817/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../办公/HBuilderX.3.8.12.20230817/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--13-1!../../../../../办公/HBuilderX.3.8.12.20230817/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../办公/HBuilderX.3.8.12.20230817/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../办公/HBuilderX.3.8.12.20230817/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./store-apply.vue?vue&type=script&lang=js& */ 268);
/* harmony import */ var _HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_13_1_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_store_apply_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_13_1_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_store_apply_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__);
/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_13_1_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_store_apply_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(["default"].indexOf(__WEBPACK_IMPORT_KEY__) < 0) (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_13_1_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_store_apply_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
 /* harmony default export */ __webpack_exports__["default"] = (_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_13_1_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_store_apply_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a); 
 
/***/ }),
 
/***/ 268:
/*!************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--13-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/豆米/gtzxinglijicun/small-program/pages/store-apply/store-apply.vue?vue&type=script&lang=js& ***!
  \************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
 
"use strict";
/* WEBPACK VAR INJECTION */(function(uni) {
 
var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ 4);
Object.defineProperty(exports, "__esModule", {
  value: true
});
exports.default = void 0;
var _regenerator = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/regenerator */ 34));
var _toConsumableArray2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/toConsumableArray */ 18));
var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/asyncToGenerator */ 36));
var _defineProperty2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/defineProperty */ 11));
var _vuex = __webpack_require__(/*! vuex */ 37);
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
var _default = {
  computed: _objectSpread({}, (0, _vuex.mapState)(['userInfo'])),
  data: function data() {
    return {
      form: {
        telephone: '',
        companyType: 0,
        name: '',
        areaId: '',
        longitude: '',
        latitude: '',
        address: '',
        linkName: '',
        linkPhone: '',
        idcard: '',
        storeFrontImgs: [],
        storeInteriorImgs: [],
        otherMaterialImgs: [],
        idcardImg: '',
        idcardImgBack: '',
        laborContractImgs: [],
        socialSecurityImgs: [],
        legalPersonCard: '',
        legalPersonCardBack: '',
        legalPersonName: '',
        legalPersonPhone: '',
        aliAccount: '',
        businessImg: ''
      },
      previewMode: 'filled',
      currentStep: 1,
      qualificationType: 'company',
      showAreaPicker: false,
      areaList: [],
      areaColumns: [],
      uploadedImagesStoreFront: [],
      uploadedImagesIdCard: [],
      uploadedImagesBusiness: [],
      uploadedImagesPermit: [],
      uploadedLaborContractImages: [],
      uploadedSocialSecurityImages: [],
      storeFrontImages: [],
      idCardImages: [],
      businessImages: [],
      permitImages: [],
      laborContractImages: [],
      socialSecurityImages: []
    };
  },
  onLoad: function onLoad() {
    this.form.telephone = this.userInfo.telephone || '';
    this.getAreaList();
    this.getMyShopData();
  },
  methods: {
    goToStep2: function goToStep2() {
      if (!this.form.name) {
        uni.showToast({
          title: '请输入门店名称',
          icon: 'none'
        });
        return;
      }
      if (!this.form.areaId) {
        uni.showToast({
          title: '请选择所在城市',
          icon: 'none'
        });
        return;
      }
      if (!this.form.address) {
        uni.showToast({
          title: '请选择门店地址',
          icon: 'none'
        });
        return;
      }
      if (!this.form.linkName) {
        uni.showToast({
          title: '请输入联系人',
          icon: 'none'
        });
        return;
      }
      if (!this.form.linkPhone) {
        uni.showToast({
          title: '请输入联系人电话',
          icon: 'none'
        });
        return;
      }
      if (!this.form.idcard) {
        uni.showToast({
          title: '请输入联系人身份证号',
          icon: 'none'
        });
        return;
      }
      if (!this.form.storeFrontImgs || this.form.storeFrontImgs.length === 0) {
        uni.showToast({
          title: '请上传门店门头照片',
          icon: 'none'
        });
        return;
      }
      if (!this.form.storeInteriorImgs || this.form.storeInteriorImgs.length === 0) {
        uni.showToast({
          title: '请上传门店内部招牌',
          icon: 'none'
        });
        return;
      }
      this.currentStep = 2;
    },
    switchQualification: function switchQualification(type) {
      this.qualificationType = type;
      this.form.companyType = type === 'personal' ? 0 : 1;
    },
    submitApply: function submitApply() {
      var _this = this;
      return (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee() {
        var res;
        return _regenerator.default.wrap(function _callee$(_context) {
          while (1) {
            switch (_context.prev = _context.next) {
              case 0:
                if (!(_this.form.companyType === 0)) {
                  _context.next = 15;
                  break;
                }
                if (_this.form.idcardImg) {
                  _context.next = 4;
                  break;
                }
                uni.showToast({
                  title: '请上传身份证人像面',
                  icon: 'none'
                });
                return _context.abrupt("return");
              case 4:
                if (_this.form.idcardImgBack) {
                  _context.next = 7;
                  break;
                }
                uni.showToast({
                  title: '请上传身份证国徽面',
                  icon: 'none'
                });
                return _context.abrupt("return");
              case 7:
                if (!(!_this.form.laborContractImgs || _this.form.laborContractImgs.length === 0)) {
                  _context.next = 10;
                  break;
                }
                uni.showToast({
                  title: '请上传劳动合同',
                  icon: 'none'
                });
                return _context.abrupt("return");
              case 10:
                if (!(!_this.form.socialSecurityImgs || _this.form.socialSecurityImgs.length === 0)) {
                  _context.next = 13;
                  break;
                }
                uni.showToast({
                  title: '请上传社保缴纳证明',
                  icon: 'none'
                });
                return _context.abrupt("return");
              case 13:
                _context.next = 30;
                break;
              case 15:
                if (_this.form.legalPersonName) {
                  _context.next = 18;
                  break;
                }
                uni.showToast({
                  title: '请输入法人姓名',
                  icon: 'none'
                });
                return _context.abrupt("return");
              case 18:
                if (_this.form.aliAccount) {
                  _context.next = 21;
                  break;
                }
                uni.showToast({
                  title: '请输入企业支付宝账号',
                  icon: 'none'
                });
                return _context.abrupt("return");
              case 21:
                if (_this.form.legalPersonCard) {
                  _context.next = 24;
                  break;
                }
                uni.showToast({
                  title: '请上传法人身份证人像面',
                  icon: 'none'
                });
                return _context.abrupt("return");
              case 24:
                if (_this.form.legalPersonCardBack) {
                  _context.next = 27;
                  break;
                }
                uni.showToast({
                  title: '请上传法人身份证国徽面',
                  icon: 'none'
                });
                return _context.abrupt("return");
              case 27:
                if (_this.form.businessImg) {
                  _context.next = 30;
                  break;
                }
                uni.showToast({
                  title: '请上传营业执照',
                  icon: 'none'
                });
                return _context.abrupt("return");
              case 30:
                uni.showLoading({
                  title: '提交中...',
                  mask: true
                });
                _context.prev = 31;
                _context.next = 34;
                return _this.$u.api.applyShop(_this.form);
              case 34:
                res = _context.sent;
                uni.hideLoading();
                if (res.code === 200) {
                  uni.showToast({
                    title: '提交成功',
                    icon: 'success'
                  });
                  setTimeout(function () {
                    uni.navigateBack();
                  }, 1500);
                } else {
                  uni.showToast({
                    title: res.msg || '提交失败',
                    icon: 'none'
                  });
                }
                _context.next = 43;
                break;
              case 39:
                _context.prev = 39;
                _context.t0 = _context["catch"](31);
                uni.hideLoading();
                uni.showToast({
                  title: '提交失败',
                  icon: 'none'
                });
              case 43:
              case "end":
                return _context.stop();
            }
          }
        }, _callee, null, [[31, 39]]);
      }))();
    },
    getMyShopData: function getMyShopData() {
      var _this2 = this;
      return (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee2() {
        var res, data, imgPrefix, storeFrontImgs, storeInteriorImgs, otherMaterialImgs, laborContractImgs, socialSecurityImgs;
        return _regenerator.default.wrap(function _callee2$(_context2) {
          while (1) {
            switch (_context2.prev = _context2.next) {
              case 0:
                _context2.prev = 0;
                _context2.next = 3;
                return _this2.$u.api.getMyShop();
              case 3:
                res = _context2.sent;
                if (res.code === 200 && res.data) {
                  data = res.data;
                  imgPrefix = data.imgPrefix || '';
                  _this2.form.name = data.name || '';
                  _this2.form.areaId = data.areaId || '';
                  _this2.form.areaName = data.areaName || '';
                  _this2.form.address = data.address || '';
                  _this2.form.longitude = data.longitude || '';
                  _this2.form.latitude = data.latitude || '';
                  _this2.form.linkName = data.linkName || '';
                  _this2.form.linkPhone = data.linkPhone || '';
                  _this2.form.idcard = data.idcard || '';
                  _this2.form.aliAccount = data.aliAccount || '';
                  _this2.form.companyType = data.companyType || 0;
                  _this2.form.telephone = data.telephone || _this2.userInfo.telephone || '';
                  _this2.form.legalPersonName = data.legalPersonName || '';
                  _this2.form.legalPersonPhone = data.legalPersonPhone || '';
                  _this2.qualificationType = data.companyType === 0 ? 'personal' : 'company';
                  if (data.storeFrontImgs) {
                    storeFrontImgs = data.storeFrontImgs;
                    if (typeof storeFrontImgs === 'string') {
                      storeFrontImgs = storeFrontImgs.split(',');
                    }
                    _this2.storeFrontImages = storeFrontImgs;
                    _this2.uploadedImagesStoreFront = storeFrontImgs.map(function (url) {
                      return {
                        url: imgPrefix + url
                      };
                    });
                    _this2.form.storeFrontImgs = storeFrontImgs;
                  }
                  if (data.storeInteriorImgs) {
                    storeInteriorImgs = data.storeInteriorImgs;
                    if (typeof storeInteriorImgs === 'string') {
                      storeInteriorImgs = storeInteriorImgs.split(',');
                    }
                    _this2.idCardImages = storeInteriorImgs;
                    _this2.uploadedImagesIdCard = storeInteriorImgs.map(function (url) {
                      return {
                        url: imgPrefix + url
                      };
                    });
                    _this2.form.storeInteriorImgs = storeInteriorImgs;
                  }
                  if (data.otherMaterialImgs) {
                    otherMaterialImgs = data.otherMaterialImgs;
                    if (typeof otherMaterialImgs === 'string') {
                      otherMaterialImgs = otherMaterialImgs.split(',');
                    }
                    _this2.permitImages = otherMaterialImgs;
                    _this2.uploadedImagesPermit = otherMaterialImgs.map(function (url) {
                      return {
                        url: imgPrefix + url
                      };
                    });
                    _this2.form.otherMaterialImgs = otherMaterialImgs;
                  }
                  _this2.form.idcardImg = data.idcardImg ? imgPrefix + data.idcardImg : '';
                  _this2.form.idcardImgBack = data.idcardImgBack ? imgPrefix + data.idcardImgBack : '';
                  if (data.laborContractImgs) {
                    laborContractImgs = data.laborContractImgs;
                    if (typeof laborContractImgs === 'string') {
                      laborContractImgs = laborContractImgs.split(',');
                    }
                    _this2.laborContractImages = laborContractImgs;
                    _this2.uploadedLaborContractImages = laborContractImgs.map(function (url) {
                      return {
                        url: imgPrefix + url
                      };
                    });
                    _this2.form.laborContractImgs = laborContractImgs;
                  }
                  if (data.socialSecurityImgs) {
                    socialSecurityImgs = data.socialSecurityImgs;
                    if (typeof socialSecurityImgs === 'string') {
                      socialSecurityImgs = socialSecurityImgs.split(',');
                    }
                    _this2.socialSecurityImages = socialSecurityImgs;
                    _this2.uploadedSocialSecurityImages = socialSecurityImgs.map(function (url) {
                      return {
                        url: imgPrefix + url
                      };
                    });
                    _this2.form.socialSecurityImgs = socialSecurityImgs;
                  }
                  _this2.form.legalPersonCard = data.legalPersonCard ? imgPrefix + data.legalPersonCard : '';
                  _this2.form.legalPersonCardBack = data.legalPersonCardBack ? imgPrefix + data.legalPersonCardBack : '';
                  _this2.form.businessImg = data.businessImg ? imgPrefix + data.businessImg : '';
                  if (data.businessImg) {
                    _this2.businessImages = [data.businessImg];
                  }
                }
                _context2.next = 10;
                break;
              case 7:
                _context2.prev = 7;
                _context2.t0 = _context2["catch"](0);
                console.log('获取店铺信息失败', _context2.t0);
              case 10:
              case "end":
                return _context2.stop();
            }
          }
        }, _callee2, null, [[0, 7]]);
      }))();
    },
    getAreaList: function getAreaList() {
      var _this3 = this;
      this.$u.api.treeList({
        type: 0,
        flag: 1
      }).then(function (res) {
        if (res.code === 200) {
          _this3.areaList = res.data;
          _this3.areaColumns[0] = _this3.areaList.map(function (item) {
            return {
              id: item.id,
              text: item.name
            };
          });
          _this3.areaColumns[1] = _this3.areaList[0].childList.map(function (item) {
            return {
              id: item.id,
              text: item.name
            };
          });
          _this3.areaColumns[2] = _this3.areaList[0].childList[0].childList.map(function (item) {
            return {
              id: item.id,
              text: item.name
            };
          });
        }
      });
    },
    confirmArea: function confirmArea(e) {
      this.form.areaId = e.value[e.value.length - 1].id;
      this.form.areaName = e.value[0].text + '/' + e.value[1].text + '/' + e.value[2].text;
      this.showAreaPicker = false;
    },
    chooseAddress: function chooseAddress() {
      var _this4 = this;
      uni.chooseLocation({
        success: function success(res) {
          _this4.form.address = res.address;
          _this4.form.longitude = res.longitude;
          _this4.form.latitude = res.latitude;
        }
      });
    },
    changeAreaHandler: function changeAreaHandler(e) {
      var columnIndex = e.columnIndex,
        indexs = e.indexs,
        _e$picker = e.picker,
        picker = _e$picker === void 0 ? this.$refs.uPicker : _e$picker;
      if (columnIndex === 0) {
        var city = this.areaList[indexs[0]].childList.map(function (item) {
          return {
            id: item.id,
            text: item.name
          };
        });
        var qu = this.areaList[indexs[0]].childList[0].childList.map(function (item) {
          return {
            id: item.id,
            text: item.name
          };
        });
        picker.setColumnValues(1, city);
        picker.setColumnValues(2, qu);
      } else if (columnIndex === 1) {
        var _qu = this.areaList[indexs[0]].childList[indexs[1]].childList.map(function (item) {
          return {
            id: item.id,
            text: item.name
          };
        });
        picker.setColumnValues(2, _qu);
      }
    },
    uploadFiles: function uploadFiles(filePaths) {
      var _arguments = arguments,
        _this5 = this;
      return (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee3() {
        var maxCount, limitedPaths, uploadTasks, results;
        return _regenerator.default.wrap(function _callee3$(_context3) {
          while (1) {
            switch (_context3.prev = _context3.next) {
              case 0:
                maxCount = _arguments.length > 1 && _arguments[1] !== undefined ? _arguments[1] : 9;
                if (!(!filePaths || filePaths.length === 0)) {
                  _context3.next = 3;
                  break;
                }
                return _context3.abrupt("return", []);
              case 3:
                limitedPaths = filePaths.slice(0, maxCount);
                uploadTasks = limitedPaths.map(function (filePath) {
                  return new Promise(function (resolve, reject) {
                    uni.uploadFile({
                      url: _this5.$baseUrl + '/web/public/upload',
                      filePath: filePath,
                      name: 'file',
                      formData: {
                        folder: 'shop'
                      },
                      success: function success(res) {
                        if (res.statusCode === 200) {
                          var data = JSON.parse(res.data);
                          if (data.code === 200) {
                            resolve(data.data);
                          } else {
                            reject(new Error(data.msg || '上传失败'));
                          }
                        } else {
                          reject(new Error('上传失败'));
                        }
                      },
                      fail: function fail(err) {
                        reject(err);
                      }
                    });
                  });
                });
                _context3.prev = 5;
                _context3.next = 8;
                return Promise.all(uploadTasks);
              case 8:
                results = _context3.sent;
                return _context3.abrupt("return", results);
              case 12:
                _context3.prev = 12;
                _context3.t0 = _context3["catch"](5);
                uni.showToast({
                  title: '上传失败',
                  icon: 'none'
                });
                throw _context3.t0;
              case 16:
              case "end":
                return _context3.stop();
            }
          }
        }, _callee3, null, [[5, 12]]);
      }))();
    },
    deleteStoreFrontImage: function deleteStoreFrontImage(index) {
      var _this6 = this;
      this.uploadedImagesStoreFront.splice(index, 1);
      this.storeFrontImages.splice(index, 1);
      this.form.storeFrontImgs = this.storeFrontImages.map(function (url) {
        return _this6.getShortPath(url);
      });
    },
    chooseStoreFrontImage: function chooseStoreFrontImage() {
      var _this7 = this;
      return (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee5() {
        var maxCount, currentCount, remainingCount;
        return _regenerator.default.wrap(function _callee5$(_context5) {
          while (1) {
            switch (_context5.prev = _context5.next) {
              case 0:
                maxCount = 3;
                currentCount = _this7.storeFrontImages.length;
                remainingCount = maxCount - currentCount;
                if (!(remainingCount <= 0)) {
                  _context5.next = 6;
                  break;
                }
                uni.showToast({
                  title: "\u6700\u591A\u4E0A\u4F20".concat(maxCount, "\u5F20\u56FE\u7247"),
                  icon: 'none'
                });
                return _context5.abrupt("return");
              case 6:
                uni.chooseImage({
                  count: remainingCount,
                  sizeType: ['compressed'],
                  sourceType: ['album', 'camera'],
                  success: function () {
                    var _success = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee4(res) {
                      var tempFilePaths, uploadResults, fullPaths;
                      return _regenerator.default.wrap(function _callee4$(_context4) {
                        while (1) {
                          switch (_context4.prev = _context4.next) {
                            case 0:
                              tempFilePaths = res.tempFilePaths;
                              uni.showLoading({
                                title: '上传中...',
                                mask: true
                              });
                              _context4.prev = 2;
                              _context4.next = 5;
                              return _this7.uploadFiles(tempFilePaths, maxCount);
                            case 5:
                              uploadResults = _context4.sent;
                              fullPaths = uploadResults.map(function (item) {
                                return item.url || item.path || item;
                              });
                              _this7.uploadedImagesStoreFront = [].concat((0, _toConsumableArray2.default)(_this7.uploadedImagesStoreFront), (0, _toConsumableArray2.default)(fullPaths.map(function (url) {
                                return {
                                  url: url
                                };
                              })));
                              _this7.storeFrontImages = [].concat((0, _toConsumableArray2.default)(_this7.storeFrontImages), (0, _toConsumableArray2.default)(fullPaths));
                              _this7.form.storeFrontImgs = _this7.storeFrontImages.map(function (url) {
                                return _this7.getShortPath(url);
                              });
                              uni.hideLoading();
                              uni.showToast({
                                title: '上传成功',
                                icon: 'success'
                              });
                              _context4.next = 17;
                              break;
                            case 14:
                              _context4.prev = 14;
                              _context4.t0 = _context4["catch"](2);
                              uni.hideLoading();
                            case 17:
                            case "end":
                              return _context4.stop();
                          }
                        }
                      }, _callee4, null, [[2, 14]]);
                    }));
                    function success(_x) {
                      return _success.apply(this, arguments);
                    }
                    return success;
                  }()
                });
              case 7:
              case "end":
                return _context5.stop();
            }
          }
        }, _callee5);
      }))();
    },
    deleteIdCardImage: function deleteIdCardImage(index) {
      var _this8 = this;
      this.uploadedImagesIdCard.splice(index, 1);
      this.idCardImages.splice(index, 1);
      this.form.storeInteriorImgs = this.idCardImages.map(function (url) {
        return _this8.getShortPath(url);
      });
    },
    chooseIdCardImage: function chooseIdCardImage() {
      var _this9 = this;
      return (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee7() {
        var maxCount, currentCount, remainingCount;
        return _regenerator.default.wrap(function _callee7$(_context7) {
          while (1) {
            switch (_context7.prev = _context7.next) {
              case 0:
                maxCount = 2;
                currentCount = _this9.idCardImages.length;
                remainingCount = maxCount - currentCount;
                if (!(remainingCount <= 0)) {
                  _context7.next = 6;
                  break;
                }
                uni.showToast({
                  title: "\u6700\u591A\u4E0A\u4F20".concat(maxCount, "\u5F20\u56FE\u7247"),
                  icon: 'none'
                });
                return _context7.abrupt("return");
              case 6:
                uni.chooseImage({
                  count: remainingCount,
                  sizeType: ['compressed'],
                  sourceType: ['album', 'camera'],
                  success: function () {
                    var _success2 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee6(res) {
                      var tempFilePaths, uploadResults, fullPaths;
                      return _regenerator.default.wrap(function _callee6$(_context6) {
                        while (1) {
                          switch (_context6.prev = _context6.next) {
                            case 0:
                              tempFilePaths = res.tempFilePaths;
                              uni.showLoading({
                                title: '上传中...',
                                mask: true
                              });
                              _context6.prev = 2;
                              _context6.next = 5;
                              return _this9.uploadFiles(tempFilePaths, maxCount);
                            case 5:
                              uploadResults = _context6.sent;
                              fullPaths = uploadResults.map(function (item) {
                                return item.url || item.path || item;
                              });
                              _this9.uploadedImagesIdCard = [].concat((0, _toConsumableArray2.default)(_this9.uploadedImagesIdCard), (0, _toConsumableArray2.default)(fullPaths.map(function (url) {
                                return {
                                  url: url
                                };
                              })));
                              _this9.idCardImages = [].concat((0, _toConsumableArray2.default)(_this9.idCardImages), (0, _toConsumableArray2.default)(fullPaths));
                              _this9.form.storeInteriorImgs = _this9.idCardImages.map(function (url) {
                                return _this9.getShortPath(url);
                              });
                              uni.hideLoading();
                              uni.showToast({
                                title: '上传成功',
                                icon: 'success'
                              });
                              _context6.next = 17;
                              break;
                            case 14:
                              _context6.prev = 14;
                              _context6.t0 = _context6["catch"](2);
                              uni.hideLoading();
                            case 17:
                            case "end":
                              return _context6.stop();
                          }
                        }
                      }, _callee6, null, [[2, 14]]);
                    }));
                    function success(_x2) {
                      return _success2.apply(this, arguments);
                    }
                    return success;
                  }()
                });
              case 7:
              case "end":
                return _context7.stop();
            }
          }
        }, _callee7);
      }))();
    },
    deleteBusinessImage: function deleteBusinessImage(index) {
      var _this10 = this;
      this.uploadedImagesBusiness.splice(index, 1);
      this.businessImages.splice(index, 1);
      this.form.businessImg = this.businessImages.map(function (url) {
        return _this10.getShortPath(url);
      }).join(',');
    },
    chooseBusinessImage: function chooseBusinessImage() {
      var _this11 = this;
      return (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee9() {
        var maxCount, currentCount, remainingCount;
        return _regenerator.default.wrap(function _callee9$(_context9) {
          while (1) {
            switch (_context9.prev = _context9.next) {
              case 0:
                maxCount = 3;
                currentCount = _this11.businessImages.length;
                remainingCount = maxCount - currentCount;
                if (!(remainingCount <= 0)) {
                  _context9.next = 6;
                  break;
                }
                uni.showToast({
                  title: "\u6700\u591A\u4E0A\u4F20".concat(maxCount, "\u5F20\u56FE\u7247"),
                  icon: 'none'
                });
                return _context9.abrupt("return");
              case 6:
                uni.chooseImage({
                  count: remainingCount,
                  sizeType: ['compressed'],
                  sourceType: ['album', 'camera'],
                  success: function () {
                    var _success3 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee8(res) {
                      var tempFilePaths, uploadResults, fullPaths;
                      return _regenerator.default.wrap(function _callee8$(_context8) {
                        while (1) {
                          switch (_context8.prev = _context8.next) {
                            case 0:
                              tempFilePaths = res.tempFilePaths;
                              uni.showLoading({
                                title: '上传中...',
                                mask: true
                              });
                              _context8.prev = 2;
                              _context8.next = 5;
                              return _this11.uploadFiles(tempFilePaths, maxCount);
                            case 5:
                              uploadResults = _context8.sent;
                              fullPaths = uploadResults.map(function (item) {
                                return item.url || item.path || item;
                              });
                              _this11.uploadedImagesBusiness = [].concat((0, _toConsumableArray2.default)(_this11.uploadedImagesBusiness), (0, _toConsumableArray2.default)(fullPaths.map(function (url) {
                                return {
                                  url: url
                                };
                              })));
                              _this11.businessImages = [].concat((0, _toConsumableArray2.default)(_this11.businessImages), (0, _toConsumableArray2.default)(fullPaths));
                              _this11.form.businessImg = _this11.businessImages.map(function (url) {
                                return _this11.getShortPath(url);
                              }).join(',');
                              uni.hideLoading();
                              uni.showToast({
                                title: '上传成功',
                                icon: 'success'
                              });
                              _context8.next = 17;
                              break;
                            case 14:
                              _context8.prev = 14;
                              _context8.t0 = _context8["catch"](2);
                              uni.hideLoading();
                            case 17:
                            case "end":
                              return _context8.stop();
                          }
                        }
                      }, _callee8, null, [[2, 14]]);
                    }));
                    function success(_x3) {
                      return _success3.apply(this, arguments);
                    }
                    return success;
                  }()
                });
              case 7:
              case "end":
                return _context9.stop();
            }
          }
        }, _callee9);
      }))();
    },
    deletePermitImage: function deletePermitImage(index) {
      var _this12 = this;
      this.uploadedImagesPermit.splice(index, 1);
      this.permitImages.splice(index, 1);
      this.form.otherMaterialImgs = this.permitImages.map(function (url) {
        return _this12.getShortPath(url);
      });
    },
    choosePermitImage: function choosePermitImage() {
      var _this13 = this;
      return (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee11() {
        var maxCount, currentCount, remainingCount;
        return _regenerator.default.wrap(function _callee11$(_context11) {
          while (1) {
            switch (_context11.prev = _context11.next) {
              case 0:
                maxCount = 3;
                currentCount = _this13.permitImages.length;
                remainingCount = maxCount - currentCount;
                if (!(remainingCount <= 0)) {
                  _context11.next = 6;
                  break;
                }
                uni.showToast({
                  title: "\u6700\u591A\u4E0A\u4F20".concat(maxCount, "\u5F20\u56FE\u7247"),
                  icon: 'none'
                });
                return _context11.abrupt("return");
              case 6:
                uni.chooseImage({
                  count: remainingCount,
                  sizeType: ['compressed'],
                  sourceType: ['album', 'camera'],
                  success: function () {
                    var _success4 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee10(res) {
                      var tempFilePaths, uploadResults, fullPaths;
                      return _regenerator.default.wrap(function _callee10$(_context10) {
                        while (1) {
                          switch (_context10.prev = _context10.next) {
                            case 0:
                              tempFilePaths = res.tempFilePaths;
                              uni.showLoading({
                                title: '上传中...',
                                mask: true
                              });
                              _context10.prev = 2;
                              _context10.next = 5;
                              return _this13.uploadFiles(tempFilePaths, maxCount);
                            case 5:
                              uploadResults = _context10.sent;
                              fullPaths = uploadResults.map(function (item) {
                                return item.url || item.path || item;
                              });
                              _this13.uploadedImagesPermit = [].concat((0, _toConsumableArray2.default)(_this13.uploadedImagesPermit), (0, _toConsumableArray2.default)(fullPaths.map(function (url) {
                                return {
                                  url: url
                                };
                              })));
                              _this13.permitImages = [].concat((0, _toConsumableArray2.default)(_this13.permitImages), (0, _toConsumableArray2.default)(fullPaths));
                              _this13.form.otherMaterialImgs = _this13.permitImages.map(function (url) {
                                return _this13.getShortPath(url);
                              });
                              uni.hideLoading();
                              uni.showToast({
                                title: '上传成功',
                                icon: 'success'
                              });
                              _context10.next = 17;
                              break;
                            case 14:
                              _context10.prev = 14;
                              _context10.t0 = _context10["catch"](2);
                              uni.hideLoading();
                            case 17:
                            case "end":
                              return _context10.stop();
                          }
                        }
                      }, _callee10, null, [[2, 14]]);
                    }));
                    function success(_x4) {
                      return _success4.apply(this, arguments);
                    }
                    return success;
                  }()
                });
              case 7:
              case "end":
                return _context11.stop();
            }
          }
        }, _callee11);
      }))();
    },
    chooseIdCardFront: function chooseIdCardFront() {
      var _this14 = this;
      uni.chooseImage({
        count: 1,
        sizeType: ['compressed'],
        sourceType: ['album', 'camera'],
        success: function () {
          var _success5 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee12(res) {
            var tempFilePaths, uploadResults;
            return _regenerator.default.wrap(function _callee12$(_context12) {
              while (1) {
                switch (_context12.prev = _context12.next) {
                  case 0:
                    tempFilePaths = res.tempFilePaths;
                    uni.showLoading({
                      title: '上传中...',
                      mask: true
                    });
                    _context12.prev = 2;
                    _context12.next = 5;
                    return _this14.uploadFiles(tempFilePaths, 1);
                  case 5:
                    uploadResults = _context12.sent;
                    _this14.form.idcardImg = _this14.getShortPath(uploadResults[0].url || uploadResults[0].path || uploadResults[0]);
                    uni.hideLoading();
                    uni.showToast({
                      title: '上传成功',
                      icon: 'success'
                    });
                    _context12.next = 14;
                    break;
                  case 11:
                    _context12.prev = 11;
                    _context12.t0 = _context12["catch"](2);
                    uni.hideLoading();
                  case 14:
                  case "end":
                    return _context12.stop();
                }
              }
            }, _callee12, null, [[2, 11]]);
          }));
          function success(_x5) {
            return _success5.apply(this, arguments);
          }
          return success;
        }()
      });
    },
    chooseIdCardBack: function chooseIdCardBack() {
      var _this15 = this;
      uni.chooseImage({
        count: 1,
        sizeType: ['compressed'],
        sourceType: ['album', 'camera'],
        success: function () {
          var _success6 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee13(res) {
            var tempFilePaths, uploadResults;
            return _regenerator.default.wrap(function _callee13$(_context13) {
              while (1) {
                switch (_context13.prev = _context13.next) {
                  case 0:
                    tempFilePaths = res.tempFilePaths;
                    uni.showLoading({
                      title: '上传中...',
                      mask: true
                    });
                    _context13.prev = 2;
                    _context13.next = 5;
                    return _this15.uploadFiles(tempFilePaths, 1);
                  case 5:
                    uploadResults = _context13.sent;
                    _this15.form.idcardImgBack = _this15.getShortPath(uploadResults[0].url || uploadResults[0].path || uploadResults[0]);
                    uni.hideLoading();
                    uni.showToast({
                      title: '上传成功',
                      icon: 'success'
                    });
                    _context13.next = 14;
                    break;
                  case 11:
                    _context13.prev = 11;
                    _context13.t0 = _context13["catch"](2);
                    uni.hideLoading();
                  case 14:
                  case "end":
                    return _context13.stop();
                }
              }
            }, _callee13, null, [[2, 11]]);
          }));
          function success(_x6) {
            return _success6.apply(this, arguments);
          }
          return success;
        }()
      });
    },
    chooseLegalPersonCardFront: function chooseLegalPersonCardFront() {
      var _this16 = this;
      uni.chooseImage({
        count: 1,
        sizeType: ['compressed'],
        sourceType: ['album', 'camera'],
        success: function () {
          var _success7 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee14(res) {
            var tempFilePaths, uploadResults;
            return _regenerator.default.wrap(function _callee14$(_context14) {
              while (1) {
                switch (_context14.prev = _context14.next) {
                  case 0:
                    tempFilePaths = res.tempFilePaths;
                    uni.showLoading({
                      title: '上传中...',
                      mask: true
                    });
                    _context14.prev = 2;
                    _context14.next = 5;
                    return _this16.uploadFiles(tempFilePaths, 1);
                  case 5:
                    uploadResults = _context14.sent;
                    _this16.form.legalPersonCard = _this16.getShortPath(uploadResults[0].url || uploadResults[0].path || uploadResults[0]);
                    uni.hideLoading();
                    uni.showToast({
                      title: '上传成功',
                      icon: 'success'
                    });
                    _context14.next = 14;
                    break;
                  case 11:
                    _context14.prev = 11;
                    _context14.t0 = _context14["catch"](2);
                    uni.hideLoading();
                  case 14:
                  case "end":
                    return _context14.stop();
                }
              }
            }, _callee14, null, [[2, 11]]);
          }));
          function success(_x7) {
            return _success7.apply(this, arguments);
          }
          return success;
        }()
      });
    },
    chooseLegalPersonCardBack: function chooseLegalPersonCardBack() {
      var _this17 = this;
      uni.chooseImage({
        count: 1,
        sizeType: ['compressed'],
        sourceType: ['album', 'camera'],
        success: function () {
          var _success8 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee15(res) {
            var tempFilePaths, uploadResults;
            return _regenerator.default.wrap(function _callee15$(_context15) {
              while (1) {
                switch (_context15.prev = _context15.next) {
                  case 0:
                    tempFilePaths = res.tempFilePaths;
                    uni.showLoading({
                      title: '上传中...',
                      mask: true
                    });
                    _context15.prev = 2;
                    _context15.next = 5;
                    return _this17.uploadFiles(tempFilePaths, 1);
                  case 5:
                    uploadResults = _context15.sent;
                    _this17.form.legalPersonCardBack = _this17.getShortPath(uploadResults[0].url || uploadResults[0].path || uploadResults[0]);
                    uni.hideLoading();
                    uni.showToast({
                      title: '上传成功',
                      icon: 'success'
                    });
                    _context15.next = 14;
                    break;
                  case 11:
                    _context15.prev = 11;
                    _context15.t0 = _context15["catch"](2);
                    uni.hideLoading();
                  case 14:
                  case "end":
                    return _context15.stop();
                }
              }
            }, _callee15, null, [[2, 11]]);
          }));
          function success(_x8) {
            return _success8.apply(this, arguments);
          }
          return success;
        }()
      });
    },
    deleteLaborContractImage: function deleteLaborContractImage(index) {
      var _this18 = this;
      this.uploadedLaborContractImages.splice(index, 1);
      this.laborContractImages.splice(index, 1);
      this.form.laborContractImgs = this.laborContractImages.map(function (url) {
        return _this18.getShortPath(url);
      });
    },
    chooseLaborContractImage: function chooseLaborContractImage() {
      var _this19 = this;
      return (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee17() {
        var maxCount, currentCount, remainingCount;
        return _regenerator.default.wrap(function _callee17$(_context17) {
          while (1) {
            switch (_context17.prev = _context17.next) {
              case 0:
                maxCount = 3;
                currentCount = _this19.laborContractImages.length;
                remainingCount = maxCount - currentCount;
                if (!(remainingCount <= 0)) {
                  _context17.next = 6;
                  break;
                }
                uni.showToast({
                  title: "\u6700\u591A\u4E0A\u4F20".concat(maxCount, "\u5F20\u56FE\u7247"),
                  icon: 'none'
                });
                return _context17.abrupt("return");
              case 6:
                uni.chooseImage({
                  count: remainingCount,
                  sizeType: ['compressed'],
                  sourceType: ['album', 'camera'],
                  success: function () {
                    var _success9 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee16(res) {
                      var tempFilePaths, uploadResults, fullPaths;
                      return _regenerator.default.wrap(function _callee16$(_context16) {
                        while (1) {
                          switch (_context16.prev = _context16.next) {
                            case 0:
                              tempFilePaths = res.tempFilePaths;
                              uni.showLoading({
                                title: '上传中...',
                                mask: true
                              });
                              _context16.prev = 2;
                              _context16.next = 5;
                              return _this19.uploadFiles(tempFilePaths, maxCount);
                            case 5:
                              uploadResults = _context16.sent;
                              fullPaths = uploadResults.map(function (item) {
                                return item.url || item.path || item;
                              });
                              _this19.uploadedLaborContractImages = [].concat((0, _toConsumableArray2.default)(_this19.uploadedLaborContractImages), (0, _toConsumableArray2.default)(fullPaths.map(function (url) {
                                return {
                                  url: url
                                };
                              })));
                              _this19.laborContractImages = [].concat((0, _toConsumableArray2.default)(_this19.laborContractImages), (0, _toConsumableArray2.default)(fullPaths));
                              _this19.form.laborContractImgs = _this19.laborContractImages.map(function (url) {
                                return _this19.getShortPath(url);
                              });
                              uni.hideLoading();
                              uni.showToast({
                                title: '上传成功',
                                icon: 'success'
                              });
                              _context16.next = 17;
                              break;
                            case 14:
                              _context16.prev = 14;
                              _context16.t0 = _context16["catch"](2);
                              uni.hideLoading();
                            case 17:
                            case "end":
                              return _context16.stop();
                          }
                        }
                      }, _callee16, null, [[2, 14]]);
                    }));
                    function success(_x9) {
                      return _success9.apply(this, arguments);
                    }
                    return success;
                  }()
                });
              case 7:
              case "end":
                return _context17.stop();
            }
          }
        }, _callee17);
      }))();
    },
    deleteSocialSecurityImage: function deleteSocialSecurityImage(index) {
      var _this20 = this;
      this.uploadedSocialSecurityImages.splice(index, 1);
      this.socialSecurityImages.splice(index, 1);
      this.form.socialSecurityImgs = this.socialSecurityImages.map(function (url) {
        return _this20.getShortPath(url);
      });
    },
    getShortPath: function getShortPath(url) {
      if (!url) return '';
      var baseUrl = this.$baseUrl || '';
      if (url.startsWith('http')) {
        return url;
      }
      return url.replace(baseUrl, '');
    },
    getFullPath: function getFullPath(url) {
      if (!url) return '';
      if (url.startsWith('http')) {
        return url;
      }
      return (this.$baseUrl || '') + url;
    },
    chooseSocialSecurityImage: function chooseSocialSecurityImage() {
      var _this21 = this;
      return (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee19() {
        var maxCount, currentCount, remainingCount;
        return _regenerator.default.wrap(function _callee19$(_context19) {
          while (1) {
            switch (_context19.prev = _context19.next) {
              case 0:
                maxCount = 3;
                currentCount = _this21.socialSecurityImages.length;
                remainingCount = maxCount - currentCount;
                if (!(remainingCount <= 0)) {
                  _context19.next = 6;
                  break;
                }
                uni.showToast({
                  title: "\u6700\u591A\u4E0A\u4F20".concat(maxCount, "\u5F20\u56FE\u7247"),
                  icon: 'none'
                });
                return _context19.abrupt("return");
              case 6:
                uni.chooseImage({
                  count: remainingCount,
                  sizeType: ['compressed'],
                  sourceType: ['album', 'camera'],
                  success: function () {
                    var _success10 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee18(res) {
                      var tempFilePaths, uploadResults, fullPaths;
                      return _regenerator.default.wrap(function _callee18$(_context18) {
                        while (1) {
                          switch (_context18.prev = _context18.next) {
                            case 0:
                              tempFilePaths = res.tempFilePaths;
                              uni.showLoading({
                                title: '上传中...',
                                mask: true
                              });
                              _context18.prev = 2;
                              _context18.next = 5;
                              return _this21.uploadFiles(tempFilePaths, maxCount);
                            case 5:
                              uploadResults = _context18.sent;
                              fullPaths = uploadResults.map(function (item) {
                                return item.url || item.path || item;
                              });
                              _this21.uploadedSocialSecurityImages = [].concat((0, _toConsumableArray2.default)(_this21.uploadedSocialSecurityImages), (0, _toConsumableArray2.default)(fullPaths.map(function (url) {
                                return {
                                  url: url
                                };
                              })));
                              _this21.socialSecurityImages = [].concat((0, _toConsumableArray2.default)(_this21.socialSecurityImages), (0, _toConsumableArray2.default)(fullPaths));
                              _this21.form.socialSecurityImgs = _this21.socialSecurityImages.map(function (url) {
                                return _this21.getShortPath(url);
                              });
                              uni.hideLoading();
                              uni.showToast({
                                title: '上传成功',
                                icon: 'success'
                              });
                              _context18.next = 17;
                              break;
                            case 14:
                              _context18.prev = 14;
                              _context18.t0 = _context18["catch"](2);
                              uni.hideLoading();
                            case 17:
                            case "end":
                              return _context18.stop();
                          }
                        }
                      }, _callee18, null, [[2, 14]]);
                    }));
                    function success(_x10) {
                      return _success10.apply(this, arguments);
                    }
                    return success;
                  }()
                });
              case 7:
              case "end":
                return _context19.stop();
            }
          }
        }, _callee19);
      }))();
    }
  }
};
exports.default = _default;
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 2)["default"]))
 
/***/ }),
 
/***/ 269:
/*!**************************************************************************************************************************************!*\
  !*** D:/豆米/gtzxinglijicun/small-program/pages/store-apply/store-apply.vue?vue&type=style&index=0&id=43aee78c&lang=scss&scoped=true& ***!
  \**************************************************************************************************************************************/
/*! no static exports found */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
 
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony import */ var _HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_2_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_5_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_store_apply_vue_vue_type_style_index_0_id_43aee78c_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../办公/HBuilderX.3.8.12.20230817/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--8-oneOf-1-0!../../../../../办公/HBuilderX.3.8.12.20230817/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!../../../../../办公/HBuilderX.3.8.12.20230817/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../办公/HBuilderX.3.8.12.20230817/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--8-oneOf-1-2!../../../../../办公/HBuilderX.3.8.12.20230817/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--8-oneOf-1-3!../../../../../办公/HBuilderX.3.8.12.20230817/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/sass-loader/dist/cjs.js??ref--8-oneOf-1-4!../../../../../办公/HBuilderX.3.8.12.20230817/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--8-oneOf-1-5!../../../../../办公/HBuilderX.3.8.12.20230817/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../办公/HBuilderX.3.8.12.20230817/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./store-apply.vue?vue&type=style&index=0&id=43aee78c&lang=scss&scoped=true& */ 270);
/* harmony import */ var _HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_2_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_5_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_store_apply_vue_vue_type_style_index_0_id_43aee78c_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_2_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_5_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_store_apply_vue_vue_type_style_index_0_id_43aee78c_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__);
/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_2_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_5_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_store_apply_vue_vue_type_style_index_0_id_43aee78c_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__) if(["default"].indexOf(__WEBPACK_IMPORT_KEY__) < 0) (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_2_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_5_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_store_apply_vue_vue_type_style_index_0_id_43aee78c_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
 /* harmony default export */ __webpack_exports__["default"] = (_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_2_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_8_oneOf_1_5_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_HBuilderX_3_8_12_20230817_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_store_apply_vue_vue_type_style_index_0_id_43aee78c_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0___default.a); 
 
/***/ }),
 
/***/ 270:
/*!******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--8-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--8-oneOf-1-2!./node_modules/postcss-loader/src??ref--8-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/sass-loader/dist/cjs.js??ref--8-oneOf-1-4!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--8-oneOf-1-5!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/豆米/gtzxinglijicun/small-program/pages/store-apply/store-apply.vue?vue&type=style&index=0&id=43aee78c&lang=scss&scoped=true& ***!
  \******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
 
// extracted by mini-css-extract-plugin
    if(false) { var cssReload; }
  
 
/***/ })
 
},[[263,"common/runtime","common/vendor"]]]);
//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/store-apply/store-apply.js.map