Commit 179c8432440e4b78fb43bab5a6dc10e30f401aed

Authored by 杨鑫
1 parent 86a263cf

'商城'

Showing 32 changed files with 354 additions and 174 deletions
admin-web-master/src/utils/request.js
... ... @@ -20,7 +20,7 @@ if(host === 'localhost:8080' || host === 'localhost:8081' || host === 'localhost
20 20 baseURL = 'https://jy.scjysm.asia:18086/cdwlMall/meserver/admin-server';
21 21 // baseURL = 'http://172.16.61.125:9003';
22 22  
23   - baseURL = 'http://128.10.249.206:9003';
  23 + // baseURL = 'http://128.10.249.206:9003';
24 24  
25 25  
26 26 // baseURL = 'http://10.0.0.51:9003';
... ...
admin-web-master/src/views/activity/activitySp.vue
... ... @@ -777,13 +777,15 @@
777 777 <el-form-item label="活动名称" class="grid-content bg-purple device-from"
778 778 prop="name">
779 779 <el-input v-model="zhixingList.planName" placeholder="请输入"
780   - :disabled="!zhixingBian" />
  780 + v-if="zhixingBian" />
  781 + <div v-else>{{ zhixingList.planName }}</div>
781 782 </el-form-item>
782 783 </el-col>
783 784 <el-col :span="8">
784 785 <el-form-item label="实际举办地点" class="grid-content bg-purple" prop="name">
785 786 <el-input v-model="zhixingList.eventAddrs" placeholder="请输入"
786   - :disabled="!zhixingBian" />
  787 + v-if="zhixingBian" />
  788 + <div v-else>{{ zhixingList.eventAddrs }}</div>
787 789 </el-form-item>
788 790 </el-col>
789 791  
... ... @@ -792,10 +794,12 @@
792 794 prop="event_start_time" style="position: relative">
793 795 <el-date-picker style="width: 100%;" v-model="zhixingList.planTime"
794 796 value-format="yyyy-MM-dd HH:mm:ss"
795   - :disabled="!zhixingBian" type="datetimerange"
  797 + v-if="zhixingBian" type="datetimerange"
796 798 range-separator="至" start-placeholder="开始日期"
797   - end-placeholder="结束日期" align="right">
  799 + end-placeholder="结束日期" >
798 800 </el-date-picker>
  801 +
  802 + <div v-else>{{ zhixingList.planTime[0]}}-{{ zhixingList.planTime[1]}}</div>
799 803 </el-form-item>
800 804 </el-col>
801 805 </el-row>
... ... @@ -804,14 +808,16 @@
804 808 <el-col :span="8">
805 809 <el-form-item label="活动主办方" class="grid-content bg-purple" prop="name">
806 810 <el-input v-model="zhixingList.sponsor" placeholder="请输入"
807   - :disabled="!zhixingBian" />
  811 + v-if="zhixingBian" />
  812 + <div v-else>{{ zhixingList.sponsor }}</div>
808 813 </el-form-item>
809 814 </el-col>
810 815 <el-col :span="8">
811 816 <el-form-item label="活动实际参与方" class="grid-content bg-purple"
812 817 prop="name">
813 818 <el-input v-model="zhixingList.participants" placeholder="请输入"
814   - :disabled="!zhixingBian" />
  819 + v-if="zhixingBian" />
  820 + <div v-else>{{ zhixingList.participants }}</div>
815 821 </el-form-item>
816 822 </el-col>
817 823 </el-row>
... ... @@ -877,21 +883,24 @@
877 883 <el-form-item label="内部人力成本预估"
878 884 class="grid-content bg-purple device-from" prop="name">
879 885 <el-input v-model="zhixingList.internalLaborCostEstimation"
880   - placeholder="请输入" :disabled="!zhixingBian" />
  886 + placeholder="请输入" v-if="zhixingBian" />
  887 + <div v-else>{{ zhixingList.internalLaborCostEstimation }}</div>
881 888 </el-form-item>
882 889 </el-col>
883 890 <el-col :span="8">
884 891 <el-form-item label="外部人力成本预估" class="grid-content bg-purple"
885 892 prop="name">
886 893 <el-input v-model="zhixingList.externalLaborCostEstimation"
887   - placeholder="请输入" :disabled="!zhixingBian" />
  894 + placeholder="请输入" v-if="zhixingBian" />
  895 + <div v-else>{{ zhixingList.externalLaborCostEstimation }}</div>
888 896 </el-form-item>
889 897 </el-col>
890 898  
891 899 <el-col :span="8">
892 900 <el-form-item label="商品成本预估" class="grid-content bg-purple" prop="name">
893 901 <el-input v-model="zhixingList.costEstimationGoods"
894   - placeholder="请输入" :disabled="!zhixingBian" />
  902 + placeholder="请输入" v-if="zhixingBian" />
  903 + <div v-else>{{ zhixingList.costEstimationGoods }}</div>
895 904 </el-form-item>
896 905 </el-col>
897 906 </el-row>
... ... @@ -900,19 +909,22 @@
900 909 <el-col :span="8">
901 910 <el-form-item label="设备成本" class="grid-content bg-purple" prop="name">
902 911 <el-input v-model="zhixingList.setCostEstimate" placeholder="请输入"
903   - :disabled="!zhixingBian" />
  912 + v-if="zhixingBian" />
  913 + <div v-else>{{ zhixingList.setCostEstimate }}</div>
904 914 </el-form-item>
905 915 </el-col>
906 916 <el-col :span="8">
907 917 <el-form-item label="宣传费用" class="grid-content bg-purple" prop="name">
908 918 <el-input v-model="zhixingList.estimatedPromotionalExpenses"
909   - placeholder="请输入" :disabled="!zhixingBian" />
  919 + placeholder="请输入" v-if="zhixingBian" />
  920 + <div v-else>{{ zhixingList.estimatedPromotionalExpenses }}</div>
910 921 </el-form-item>
911 922 </el-col>
912 923 <el-col :span="8">
913 924 <el-form-item label="其他成本" class="grid-content bg-purple" prop="name">
914 925 <el-input v-model="zhixingList.otherNecessaryEstimates"
915   - placeholder="请输入" :disabled="!zhixingBian" />
  926 + placeholder="请输入" v-if="zhixingBian" />
  927 + <div v-else>{{ zhixingList.otherNecessaryEstimates }}</div>
916 928 </el-form-item>
917 929 </el-col>
918 930 </el-row>
... ... @@ -921,13 +933,15 @@
921 933 <el-col :span="8">
922 934 <el-form-item label="总成本" prop="name" class="grid-content bg-purple">
923 935 <el-input v-model="zhixingList.totalCostEstimation"
924   - placeholder="请输入" :disabled="!zhixingBian" />
  936 + placeholder="请输入" v-if="zhixingBian" />
  937 + <div v-else>{{ zhixingList.totalCostEstimation }}</div>
925 938 </el-form-item>
926 939 </el-col>
927 940 <el-col :span="16">
928 941 <el-form-item label="备注" prop="name" class="grid-content bg-purple">
929 942 <el-input v-model="zhixingList.notes" placeholder="请输入"
930   - :disabled="!zhixingBian" />
  943 + v-if="zhixingBian" />
  944 + <div v-else>{{ zhixingList.notes }}</div>
931 945 </el-form-item>
932 946 </el-col>
933 947 </el-row>
... ... @@ -951,20 +965,23 @@
951 965 <el-form-item label="吸引流量" class="grid-content bg-purple device-from"
952 966 prop="name">
953 967 <el-input v-model="zhixingList.expectedAttractTraffic"
954   - placeholder="请输入" :disabled="!zhixingBian" />
  968 + placeholder="请输入" v-if="zhixingBian" />
  969 + <div v-else>{{ zhixingList.expectedAttractTraffic }}</div>
955 970 </el-form-item>
956 971 </el-col>
957 972 <el-col :span="8">
958 973 <el-form-item label="参与人数" class="grid-content bg-purple" prop="name">
959 974 <el-input v-model="zhixingList.expectedParticipation"
960   - placeholder="请输入" :disabled="!zhixingBian" />
  975 + placeholder="请输入" v-if="zhixingBian" />
  976 + <div v-else>{{ zhixingList.expectedParticipation }}</div>
961 977 </el-form-item>
962 978 </el-col>
963 979  
964 980 <el-col :span="8">
965 981 <el-form-item label="直接收益" class="grid-content bg-purple" prop="name">
966 982 <el-input v-model="zhixingList.expectedDirectBenefits"
967   - placeholder="请输入" :disabled="!zhixingBian" />
  983 + placeholder="请输入" v-if="zhixingBian" />
  984 + <div v-else>{{ zhixingList.expectedDirectBenefits }}</div>
968 985 </el-form-item>
969 986 </el-col>
970 987 </el-row>
... ... @@ -972,7 +989,8 @@
972 989 <el-col :span="8">
973 990 <el-form-item label="间接收益" class="grid-content bg-purple" prop="name">
974 991 <el-input v-model="zhixingList.expectedIndirectBenefits"
975   - placeholder="请输入" :disabled="!zhixingBian" />
  992 + placeholder="请输入" v-if="zhixingBian" />
  993 + <div v-else>{{ zhixingList.expectedIndirectBenefits }}</div>
976 994 </el-form-item>
977 995 </el-col>
978 996  
... ...
admin-web-master/src/views/activity/index.vue
... ... @@ -776,13 +776,16 @@
776 776 <el-form-item label="活动名称" class="grid-content bg-purple device-from"
777 777 prop="name">
778 778 <el-input v-model="zhixingList.planName" placeholder="请输入"
779   - :disabled="!zhixingBian" />
  779 + v-if="zhixingBian" />
  780 + <div v-else>{{ zhixingList.planName }}</div>
  781 +
780 782 </el-form-item>
781 783 </el-col>
782 784 <el-col :span="8">
783 785 <el-form-item label="实际举办地点" class="grid-content bg-purple" prop="name">
784 786 <el-input v-model="zhixingList.eventAddrs" placeholder="请输入"
785   - :disabled="!zhixingBian" />
  787 + v-if="zhixingBian"/>
  788 + <div v-else>{{ zhixingList.eventAddrs }}</div>
786 789 </el-form-item>
787 790 </el-col>
788 791  
... ... @@ -791,9 +794,10 @@
791 794 prop="event_start_time" style="position: relative">
792 795 <el-date-picker style="width: 100%;" v-model="zhixingList.planTime"
793 796 @input="formTime" value-format="yyyy-MM-dd HH:mm:ss"
794   - :disabled="!zhixingBian" type="datetimerange" range-separator="至"
795   - start-placeholder="开始日期" end-placeholder="结束日期" align="right">
  797 + v-if="zhixingBian" type="datetimerange" range-separator="至"
  798 + start-placeholder="开始日期" end-placeholder="结束日期" >
796 799 </el-date-picker>
  800 + <div v-else>{{ zhixingList.planTime[0] }}-{{ zhixingList.planTime[1] }}</div>
797 801 </el-form-item>
798 802 </el-col>
799 803 </el-row>
... ... @@ -802,13 +806,15 @@
802 806 <el-col :span="8">
803 807 <el-form-item label="活动主办方" class="grid-content bg-purple" prop="name">
804 808 <el-input v-model="zhixingList.sponsor" placeholder="请输入"
805   - :disabled="!zhixingBian" />
  809 + v-if="zhixingBian" />
  810 + <div v-else>{{ zhixingList.eventAddrs }}</div>
806 811 </el-form-item>
807 812 </el-col>
808 813 <el-col :span="8">
809 814 <el-form-item label="活动实际参与方" class="grid-content bg-purple" prop="name">
810 815 <el-input v-model="zhixingList.participants" placeholder="请输入"
811   - :disabled="!zhixingBian" />
  816 + v-if="zhixingBian" />
  817 + <div v-else>{{ zhixingList.participants }}</div>
812 818 </el-form-item>
813 819 </el-col>
814 820 </el-row>
... ... @@ -872,21 +878,25 @@
872 878 <el-col :span="8">
873 879 <el-form-item label="内部人力成本预估" class="grid-content bg-purple device-from"
874 880 prop="name">
  881 +
875 882 <el-input v-model="zhixingList.internalLaborCostEstimation"
876   - placeholder="请输入" :disabled="!zhixingBian" />
  883 + placeholder="请输入" v-if="zhixingBian" />
  884 + <div v-else>{{ zhixingList.internalLaborCostEstimation }}</div>
877 885 </el-form-item>
878 886 </el-col>
879 887 <el-col :span="8">
880 888 <el-form-item label="外部人力成本预估" class="grid-content bg-purple" prop="name">
881 889 <el-input v-model="zhixingList.externalLaborCostEstimation"
882   - placeholder="请输入" :disabled="!zhixingBian" />
  890 + placeholder="请输入" v-if="zhixingBian" />
  891 + <div v-else>{{ zhixingList.externalLaborCostEstimation }}</div>
883 892 </el-form-item>
884 893 </el-col>
885 894  
886 895 <el-col :span="8">
887 896 <el-form-item label="商品成本预估" class="grid-content bg-purple" prop="name">
888 897 <el-input v-model="zhixingList.costEstimationGoods" placeholder="请输入"
889   - :disabled="!zhixingBian" />
  898 + v-if="zhixingBian" />
  899 + <div v-else>{{ zhixingList.costEstimationGoods }}</div>
890 900 </el-form-item>
891 901 </el-col>
892 902 </el-row>
... ... @@ -895,19 +905,22 @@
895 905 <el-col :span="8">
896 906 <el-form-item label="设备成本" class="grid-content bg-purple" prop="name">
897 907 <el-input v-model="zhixingList.setCostEstimate" placeholder="请输入"
898   - :disabled="!zhixingBian" />
  908 + v-if="zhixingBian" />
  909 + <div v-else>{{ zhixingList.setCostEstimate }}</div>
899 910 </el-form-item>
900 911 </el-col>
901 912 <el-col :span="8">
902 913 <el-form-item label="宣传费用" class="grid-content bg-purple" prop="name">
903 914 <el-input v-model="zhixingList.estimatedPromotionalExpenses"
904   - placeholder="请输入" :disabled="!zhixingBian" />
  915 + placeholder="请输入" v-if="zhixingBian" />
  916 + <div v-else>{{ zhixingList.estimatedPromotionalExpenses }}</div>
905 917 </el-form-item>
906 918 </el-col>
907 919 <el-col :span="8">
908 920 <el-form-item label="其他成本" class="grid-content bg-purple" prop="name">
909 921 <el-input v-model="zhixingList.otherNecessaryEstimates"
910   - placeholder="请输入" :disabled="!zhixingBian" />
  922 + placeholder="请输入" v-if="zhixingBian" />
  923 + <div v-else>{{ zhixingList.otherNecessaryEstimates }}</div>
911 924 </el-form-item>
912 925 </el-col>
913 926 </el-row>
... ... @@ -916,13 +929,15 @@
916 929 <el-col :span="8">
917 930 <el-form-item label="总成本" prop="name" class="grid-content bg-purple">
918 931 <el-input v-model="zhixingList.totalCostEstimation" placeholder="请输入"
919   - :disabled="!zhixingBian" />
  932 + v-if="zhixingBian" />
  933 + <div v-else>{{ zhixingList.totalCostEstimation }}</div>
920 934 </el-form-item>
921 935 </el-col>
922 936 <el-col :span="16">
923 937 <el-form-item label="备注" prop="name" class="grid-content bg-purple">
924 938 <el-input v-model="zhixingList.notes" placeholder="请输入"
925   - :disabled="!zhixingBian" />
  939 + v-if="zhixingBian" />
  940 + <div v-else>{{ zhixingList.notes }}</div>
926 941 </el-form-item>
927 942 </el-col>
928 943 </el-row>
... ... @@ -946,20 +961,23 @@
946 961 <el-form-item label="吸引流量" class="grid-content bg-purple device-from"
947 962 prop="name">
948 963 <el-input v-model="zhixingList.expectedAttractTraffic" placeholder="请输入"
949   - :disabled="!zhixingBian" />
  964 + v-if="zhixingBian" />
  965 + <div v-else>{{ zhixingList.expectedAttractTraffic }}</div>
950 966 </el-form-item>
951 967 </el-col>
952 968 <el-col :span="8">
953 969 <el-form-item label="参与人数" class="grid-content bg-purple" prop="name">
954 970 <el-input v-model="zhixingList.expectedParticipation" placeholder="请输入"
955   - :disabled="!zhixingBian" />
  971 + v-if="zhixingBian" />
  972 + <div v-else>{{ zhixingList.expectedParticipation }}</div>
956 973 </el-form-item>
957 974 </el-col>
958 975  
959 976 <el-col :span="8">
960 977 <el-form-item label="直接收益" class="grid-content bg-purple" prop="name">
961 978 <el-input v-model="zhixingList.expectedDirectBenefits" placeholder="请输入"
962   - :disabled="!zhixingBian" />
  979 + v-if="zhixingBian" />
  980 + <div v-else>{{ zhixingList.expectedDirectBenefits }}</div>
963 981 </el-form-item>
964 982 </el-col>
965 983 </el-row>
... ... @@ -967,7 +985,8 @@
967 985 <el-col :span="8">
968 986 <el-form-item label="间接收益" class="grid-content bg-purple" prop="name">
969 987 <el-input v-model="zhixingList.expectedIndirectBenefits"
970   - placeholder="请输入" :disabled="!zhixingBian" />
  988 + placeholder="请输入" v-if="zhixingBian" />
  989 + <div v-else>{{ zhixingList.expectedIndirectBenefits }}</div>
971 990 </el-form-item>
972 991 </el-col>
973 992  
... ...
admin-web-master/src/views/media/mediaMana.vue
... ... @@ -26,7 +26,7 @@
26 26 <el-button icon="el-icon-circle-plus-outline" @click="create"
27 27 style="background-color: #3F9B6A;color: #fff;">新增</el-button>
28 28 <el-button style="background-color: #E24E5A;color: #fff;" icon="el-icon-delete" @click="handleDelete" class="DelBtnHover">删除</el-button>
29   - <el-button style="background-color: #3F9B6A;color: #fff;" @click="duibi">效果对比</el-button>
  29 + <!-- <el-button style="background-color: #3F9B6A;color: #fff;" @click="duibi">效果对比</el-button> -->
30 30 <!-- <el-button style="background-color: #fff;color: #000;border: 1px solid #B1B1B1;" icon="el-icon-folder-add" class="buttonHover" @click="xinFenlei">推广分类管理</el-button> -->
31 31 </div>
32 32  
... ... @@ -89,7 +89,7 @@
89 89 <div @click="handleEditForm(scope.row,2)" class="tableBtn greens" v-if="scope.row.state == ''">修改</div>
90 90  
91 91 <div @click="OAshen(scope.row)" class="tableBtn greens" v-if="scope.row.state == ''">提交审核</div>
92   - <div class="tableBtn greens" @click="xiaoguo(scope.row)">执行情况及效果评估</div>
  92 + <!-- <div class="tableBtn greens" @click="xiaoguo(scope.row)">执行情况及效果评估</div> -->
93 93 <!-- <div class="tableBtn greens" >策略调整</div> -->
94 94 </template>
95 95 </el-table-column>
... ...
admin-web-master/src/views/member/memberList/index.vue
... ... @@ -83,14 +83,14 @@
83 83 <el-table-column prop="total" label="消费总额" />
84 84 <el-table-column prop="buyers" label="购买次数" />
85 85 <el-table-column prop="credit" label="剩余积分" />
86   - <el-table-column prop="time" label="最近消费时间" />
87   - <el-table-column prop="createTime" label="注册时间" width="250"/>
  86 + <el-table-column prop="time" label="最近消费时间" show-overflow-tooltip/>
  87 + <el-table-column prop="createTime" label="注册时间" width="200"/>
88 88 <el-table-column :formatter="row=>row.registerIp?row.registerIp:'-'" label="注册IP" show-overflow-tooltip />
89 89 <el-table-column :formatter="row=>row.lastLoginIp?row.lastLoginIp:'-'" prop="time" label="最后登录IP" show-overflow-tooltip />
90   - <el-table-column label="操作" fixed="right" width="300">
  90 + <el-table-column label="操作" fixed="right" width="200">
91 91 <template slot-scope="scope">
92 92 <div @click="details(scope.row)" class="tableBtn greens">详情</div>
93   - <div @click="setIntegral(scope.row)" class="tableBtn greens">设置积分</div>
  93 + <!-- <div @click="setIntegral(scope.row)" class="tableBtn greens">设置积分</div> -->
94 94 <div @click="makeTag(scope.row.buyerUserId)" class="tableBtn greens">打标签</div>
95 95 <div @click="addBlackList(scope.row)" class="tableBtn greens">
96 96 {{ scope.row.ifBlack ? "取消黑名单" : "加入黑名单" }}
... ...
admin-web-master/src/views/member/tips/index.vue
... ... @@ -43,20 +43,20 @@
43 43 <el-table-column label="标签名" width="220">
44 44 <template slot-scope="scope">{{ scope.row.labelName }}</template>
45 45 </el-table-column>
46   - <el-table-column prop="users" label="客户" />
47   - <el-table-column prop="labelType" label="标签类型">
  46 + <el-table-column prop="users" label="会员数量" width="80"/>
  47 + <el-table-column prop="labelType" label="标签类型" width="100">
48 48 <template slot-scope="scope">
49 49 <span v-if="scope.row.labelType == 1">手动标签</span>
50 50 <span v-else>自动标签</span>
51 51 </template>
52 52 </el-table-column>
53   - <el-table-column prop="conditions" label="达标条件">
  53 + <el-table-column prop="conditions" label="达标条件" >
54 54 <template slot-scope="scope">
55 55 <div v-if="scope.row.labelType===1">暂无标签</div>
56 56 <div v-else @click="modelTouch(scope.row)">{{ scope.row.conditions.toString() }}</div>
57 57 </template>
58 58 </el-table-column>
59   - <el-table-column label="操作">
  59 + <el-table-column label="操作" width="150" fixed="right">
60 60 <template slot-scope="scope">
61 61 <div @click="edit(scope.row)" class="tableBtn greens">编辑</div>
62 62 <div @click="deleteTips(scope.row)" class="tableBtn greens">删除</div>
... ...
admin-web-master/src/views/order/orderany/index.vue
... ... @@ -60,7 +60,7 @@
60 60 </div>
61 61 <div class="tucard">
62 62 <div style="display: flex;justify-content: flex-end;margin-bottom:10px;">
63   - <div style="margin-right:25%;padding:7px 0;">订单转换漏斗</div>
  63 + <div style="margin-right:25%;padding:7px 0;">订单支付趋势</div>
64 64 <el-button @click="userVisitExport"
65 65 style="background-color: #3F9B6A;color: #fff">导出</el-button>
66 66 </div>
... ... @@ -292,6 +292,7 @@
292 292  
293 293 const myEchart = echarts.init(this.$refs.myEchart, 'light')
294 294 const option = {
  295 + color: "#3F9B6A",
295 296 xAxis: {
296 297 type: 'category',
297 298 data: arr.time
... ... @@ -309,6 +310,7 @@
309 310 myEchart.setOption(option)
310 311 },
311 312 draws(arr) {
  313 + // myEchart
312 314 const myEchart = echarts.init(this.$refs.myEcharts, 'light')
313 315 // const o = this.chartData
314 316 const option = {
... ...
ceres-uniapp-master/config/api.js
1 1  
2   -// const DOMAIN_PREFIXPING = 'https://jy.scjysm.asia:18086/cdwlMall/meserver/admin-server'
3   -// const DOMAIN_PREFIX = 'https://jy.scjysm.asia:18086/cdwlMall/meserver/api'
4   -const DOMAIN_PREFIXPING = 'http://128.10.249.206:9003'
5   -const DOMAIN_PREFIX = 'http://128.10.249.206:9007'
  2 +const DOMAIN_PREFIXPING = 'https://jy.scjysm.asia:18086/cdwlMall/meserver/admin-server'
  3 +const DOMAIN_PREFIX = 'https://jy.scjysm.asia:18086/cdwlMall/meserver/api'
  4 +// const DOMAIN_PREFIXPING = 'http://128.10.249.206:9003'
  5 +// const DOMAIN_PREFIX = 'http://128.10.249.206:9007'
6 6 const LIULIANG = 'https://jy.scjysm.asia:18086/liuliang'
7 7 // const host = `${window.location.protocol}//${window.location.host}`
8 8 // const DOMAIN_PREFIXPING = `${host}/cdwlMall/meserver/admin-server`
... ...
ceres-uniapp-master/pages_category_page1/goodsModule/addEvaluate.vue
... ... @@ -53,8 +53,11 @@
53 53 }
54 54 },
55 55 onLoad(options) {
56   - this.type = options.type;
57   - // console.log('评价',JSON.parse(options.detail))
  56 + let detail = JSON.parse(options.detail)
  57 + // options.detail =JSON.parse(options.detail)
  58 + this.type = detail.type;
  59 +
  60 + console.log('评价',detail)
58 61 if(options.detail){
59 62 const params = this.$getJumpParam(options)
60 63  
... ... @@ -63,7 +66,7 @@
63 66  
64 67 this.productImage = this.orderProductVO.image
65 68 }else{
66   - if(options.type == 1){
  69 + if(detail.type == 1){
67 70 this.addCommentVOList = uni.getStorageSync('addCommentVOList');
68 71 this.orderProductVO = this.addCommentVOList.skus[0]
69 72 this.productImage = this.orderProductVO.image
... ... @@ -74,14 +77,15 @@
74 77 }
75 78 uni.removeStorageSync('addCommentVOList')
76 79 }
77   - if(options.commentId){
78   - this.commentId = options.commentId
  80 + if(detail.commentId){
  81 + this.commentId = detail.commentId
79 82 }
80 83 const res = uni.getStorageSync('storage_key');
81 84 this.headerToken.Authorization = res.token
82 85 },
83 86 onReady() {
84 87 this.fileList = this.$refs.uUpload.lists
  88 + console.log(this.fileList,'fffffffffffffffffffffffffffffff')
85 89 },
86 90 methods: {
87 91 submitTap(){
... ... @@ -102,6 +106,7 @@
102 106 this.commentImgs += this.fileList[i].response.data+','
103 107 }
104 108 }
  109 +
105 110 let data = []
106 111 if(this.type == 1){
107 112 data = [{
... ... @@ -116,7 +121,7 @@
116 121 comment:this.commentText
117 122 }]
118 123 }
119   - console.log('上传评价',data)
  124 + console.log('上传评价',data,this.type)
120 125 // return
121 126 NET.request(API.AdditionalComment,{params:data} , 'POST').then(res => {
122 127 uni.hideLoading()
... ...
ceres-uniapp-master/pages_category_page1/goodsModule/components/GoodEvaluateAndQuestion.vue
... ... @@ -46,7 +46,7 @@
46 46 <view class="flex-items">
47 47 <image
48 48 class="user-headSmallImg"
49   - :src="commentItem.headImage"
  49 + :src="$baseURL+commentItem.headImage"
50 50 ></image>
51 51 <label class="fs28 mar-left-20">{{ commentItem.name }}</label>
52 52 </view>
... ... @@ -63,10 +63,11 @@
63 63 v-for="(imgItem, imgIndex) in (commentItem.image.split(',')||[])"
64 64 :key="imgIndex"
65 65 >
  66 +
66 67 <image
67 68 @click="handlePreviewImage(commentList[commentIndex].images,imgIndex)"
68 69 class="img-item"
69   - :src="imgItem"
  70 + :src="$baseURL+imgItem"
70 71 ></image>
71 72 </view>
72 73 </view>
... ... @@ -88,7 +89,7 @@
88 89 <image
89 90 @click="handlePreviewImage(commentList[commentIndex].addImages,imgIndex)"
90 91 class="img-item"
91   - :src="itemAddImg"
  92 + :src="$baseURL+itemAddImg"
92 93 >
93 94 </image>
94 95 </view>
... ... @@ -212,6 +213,10 @@ export default {
212 213 * @param currentIndex 选中索引
213 214 */
214 215 handlePreviewImage(dataList, currentIndex) {
  216 + // console.log(dataList)
  217 + // dataList = dataList.map(item=>{
  218 + // item=this.$baseURL+item
  219 + // })
215 220 uni.previewImage({
216 221 current: dataList[currentIndex],
217 222 urls: dataList
... ...
ceres-uniapp-master/pages_category_page1/goodsModule/evaluate.vue
... ... @@ -131,9 +131,11 @@
131 131 if(this.fileList.length>0){
132 132 this.commentImgsFlag = true
133 133 for(let i=0;i<this.fileList.length;i++){
134   - this.commentImgs += this.fileList[i].response.data.url+','
  134 + this.commentImgs += this.fileList[i].response.data+','
135 135 }
136 136 }
  137 + // console.log(this.commentImgs,'fffffffffffffffff')
  138 + // return
137 139 let data = [{
138 140 orderId:this.orderId,
139 141 skuId:this.commentData.skuId,
... ... @@ -145,6 +147,7 @@
145 147 delivery:this.logisticsStar,
146 148 attitude:this.serviceStar
147 149 }]
  150 +
148 151 NET.request(API.Comment, {
149 152 params:data
150 153 }, 'POST').then(res => {
... ...
ceres-uniapp-master/pages_category_page1/goodsModule/evaluateDetails.vue
... ... @@ -6,7 +6,7 @@
6 6 <view class="evaluate-contentbox">
7 7 <view class="evaluate-content flex-items flex-row flex-sp-between">
8 8 <view class="flex-items">
9   - <image class="user-headSmallImg" v-if="commentVOList.headImage" :src="commentVOList.headImage"></image>
  9 + <image class="user-headSmallImg" v-if="commentVOList.headImage" :src="$baseURL+commentVOList.headImage"></image>
10 10 <image class="user-headSmallImg" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/storeLogo.png" v-else ></image>
11 11 <label class="fs28 mar-left-20" v-if="commentVOList.name">{{commentVOList.name}}</label>
12 12 <label class="fs28 mar-left-20" v-else>匿名</label>
... ... @@ -19,7 +19,7 @@
19 19 <view class="fs26 pad-topbot-20">{{commentVOList.comment}}</view>
20 20 <view class="evaluateImg-box" v-if="commentVOList.image">
21 21 <view v-for="(cItem, index) in imageList" :key="index" @click="previewImg(1, index)">
22   - <image class="evaluate-Img" :src="cItem"></image>
  22 + <image class="evaluate-Img" :src="$baseURL+cItem"></image>
23 23 </view>
24 24 </view>
25 25 <view class="addComments-box flex-column-plus" v-if="commentVOList.addComment">
... ... @@ -27,13 +27,13 @@
27 27 <label class="mar-top-20">{{commentVOList.addComment}}</label>
28 28 <view class="evaluateImg-box mar-top-20" v-if="commentVOList.addImage">
29 29 <view v-for="(dItem, index) in imgDataResult" :key="index" @click="previewImg(2, index)">
30   - <image class="evaluate-Img" :src="dItem"></image>
  30 + <image class="evaluate-Img" :src="$baseURL+dItem"></image>
31 31 </view>
32 32 </view>
33 33 </view>
34 34 <view class="goodsDes-box flex-column-plus mar-top-30">
35 35 <view class="flex-row-plus" @click="goGoodsDetails">
36   - <image class="goodsDes-img" :src="commentVOList.productImage"></image>
  36 + <image class="goodsDes-img" :src="$baseURL+commentVOList.productImage"></image>
37 37 <view class="goodsDesText-box">
38 38 <label class="fs26 goodsDes-text">{{commentVOList.productName}}</label>
39 39 <view class="mar-top-70">
... ... @@ -162,11 +162,11 @@
162 162 let imgsArray = [];
163 163 if (type === 1) {
164 164 for (let i = 0; i < this.imageList.length - 1; i++) {
165   - imgsArray.push(this.imageList[i]);
  165 + imgsArray.push(this.$baseURL+this.imageList[i]);
166 166 }
167 167 } else {
168 168 for (let i = 0; i < this.imgDataResult.length - 1; i++) {
169   - imgsArray.push(this.imgDataResult[i]);
  169 + imgsArray.push(this.$baseURL+this.imgDataResult[i]);
170 170 }
171 171 }
172 172 console.log(imgsArray, 'imgs')
... ...
ceres-uniapp-master/pages_category_page1/orderModule/afterSaleApplyRefund.vue
... ... @@ -14,7 +14,7 @@
14 14 <view class="order-info">
15 15 <view class="order-info-item">
16 16 <image
17   - :src="item.image"
  17 + :src="$baseURL+item.image"
18 18 class="product-img"
19 19 ></image>
20 20 <view class="info-box">
... ...
ceres-uniapp-master/pages_category_page1/orderModule/afterSaleApplyRetund.vue
... ... @@ -11,7 +11,7 @@
11 11 <view class="order-info-box">
12 12 <view class="order-info">
13 13 <view class="order-info-item">
14   - <image :src="item.image"
  14 + <image :src="$baseURL+item.image"
15 15 class="product-img"></image>
16 16 <view class="info-box">
17 17 <text class="product-name">{{ item.productName }}</text>
... ...
ceres-uniapp-master/pages_category_page2/orderModule/afterSale.vue
... ... @@ -20,7 +20,7 @@
20 20 <view class="order-info-box" v-for="(itemlist,index) in item.skus" :key="index">
21 21 <view class="order-info" @click="goodsDetails(item.shopId,itemlist.productId,itemlist.skuId)">
22 22 <view class="order-info-item">
23   - <image :src="itemlist.image" class="product-img"></image>
  23 + <image :src="$baseURL+itemlist.image" class="product-img"></image>
24 24 <view class="info-box">
25 25 <text class="product-name">{{itemlist.productName}}</text>
26 26 <view class="product-sku">{{itemlist.value}}</view>
... ...
ceres-uniapp-master/pages_category_page2/orderModule/refundDetails.vue
... ... @@ -133,7 +133,7 @@
133 133 <view class="order-info-box">
134 134 <view class="order-info" v-for="item in itemlist.skus">
135 135 <view class="order-info-item">
136   - <image :src="item.image" class="product-img"></image>
  136 + <image :src="$baseURL+item.image" class="product-img"></image>
137 137 <view class="info-box">
138 138 <text class="product-name">{{item.productName}}</text>
139 139 <view class="product-sku mt20">{{item.value}}</view>
... ...
ceres-uniapp-master/pages_category_page2/orderModule/returnDetails.vue
... ... @@ -161,7 +161,7 @@
161 161 <view class="order-info-box">
162 162 <view class="order-info" v-for="item in itemlist.skus">
163 163 <view class="order-info-item">
164   - <image :src="item.image" class="product-img"></image>
  164 + <image :src="$baseURL+item.image" class="product-img"></image>
165 165 <view class="info-box">
166 166 <text class="product-name">{{item.productName}}</text>
167 167 <view class="product-sku mt20">{{item.value}}</view>
... ...
ceres-uniapp-master/unpackage/dist/build/web.zip
No preview for this file type
ceres-uniapp-master/unpackage/dist/build/web/index.html
1 1 <!DOCTYPE html><html lang=zh-CN><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><title>在线商城</title><script>var coverSupport = 'CSS' in window && typeof CSS.supports === 'function' && (CSS.supports('top: env(a)') || CSS.supports('top: constant(a)'))
2   - document.write('<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' + (coverSupport ? ', viewport-fit=cover' : '') + '" />')</script><link rel=stylesheet href=/cdwlMall/meh5/static/index.2da1efab.css></head><body><noscript><strong>Please enable JavaScript to continue.</strong></noscript><div id=app></div><script src=/cdwlMall/meh5/static/js/chunk-vendors.dc9b9b13.js></script><script src=/cdwlMall/meh5/static/js/index.7574ecab.js></script></body></html>
3 2 \ No newline at end of file
  3 + document.write('<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' + (coverSupport ? ', viewport-fit=cover' : '') + '" />')</script><link rel=stylesheet href=/cdwlMall/meh5/static/index.2da1efab.css></head><body><noscript><strong>Please enable JavaScript to continue.</strong></noscript><div id=app></div><script src=/cdwlMall/meh5/static/js/chunk-vendors.dc9b9b13.js></script><script src=/cdwlMall/meh5/static/js/index.df778247.js></script></body></html>
4 4 \ No newline at end of file
... ...
ceres-uniapp-master/unpackage/dist/build/web/static/js/index.7574ecab.js renamed to ceres-uniapp-master/unpackage/dist/build/web/static/js/index.df778247.js
1   -(function(e){function t(t){for(var n,i,g=t[0],u=t[1],p=t[2],s=0,c=[];s<g.length;s++)i=g[s],Object.prototype.hasOwnProperty.call(o,i)&&o[i]&&c.push(o[i][0]),o[i]=0;for(n in u)Object.prototype.hasOwnProperty.call(u,n)&&(e[n]=u[n]);d&&d(t);while(c.length)c.shift()();return r.push.apply(r,p||[]),a()}function a(){for(var e,t=0;t<r.length;t++){for(var a=r[t],n=!0,g=1;g<a.length;g++){var u=a[g];0!==o[u]&&(n=!1)}n&&(r.splice(t--,1),e=i(i.s=a[0]))}return e}var n={},o={index:0},r=[];function i(t){if(n[t])return n[t].exports;var a=n[t]={i:t,l:!1,exports:{}};return e[t].call(a.exports,a,a.exports,i),a.l=!0,a.exports}i.e=function(e){var t=[],a=o[e];if(0!==a)if(a)t.push(a[2]);else{var n=new Promise((function(t,n){a=o[e]=[t,n]}));t.push(a[2]=n);var r,g=document.createElement("script");g.charset="utf-8",g.timeout=120,i.nc&&g.setAttribute("nonce",i.nc),g.src=function(e){return i.p+"static/js/"+({"pages-tabbar-cart-index":"pages-tabbar-cart-index","pages-tabbar-category-index":"pages-tabbar-category-index","pages-tabbar-index-index~pages_category_page1-orderModule-paySuccessful":"pages-tabbar-index-index~pages_category_page1-orderModule-paySuccessful","pages_category_page1-orderModule-paySuccessful":"pages_category_page1-orderModule-paySuccessful","pages-tabbar-index-index~pages_category_page1-store-index":"pages-tabbar-index-index~pages_category_page1-store-index","pages-tabbar-index-index":"pages-tabbar-index-index","pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb":"pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb","pages-tabbar-user-index":"pages-tabbar-user-index","pages_category_page1-askedquestion-askedquestion":"pages_category_page1-askedquestion-askedquestion","pages_category_page1-distributionModule-recruit~pages_category_page1-goodsModule-combination~pages_c~aa7f3c4b":"pages_category_page1-distributionModule-recruit~pages_category_page1-goodsModule-combination~pages_c~aa7f3c4b","pages_category_page1-store-index":"pages_category_page1-store-index","pages_category_page1-distributionModule-recruit":"pages_category_page1-distributionModule-recruit","pages_category_page1-distributionModule-totalAward~pages_category_page1-distributionModule-unliquida~6efaba3e":"pages_category_page1-distributionModule-totalAward~pages_category_page1-distributionModule-unliquida~6efaba3e","pages_category_page1-goodsModule-goodsDetails~pages_category_page1-goodsModule-inviteSpell~pages_cat~bc1ad44c":"pages_category_page1-goodsModule-goodsDetails~pages_category_page1-goodsModule-inviteSpell~pages_cat~bc1ad44c","pages_category_page1-goodsModule-goodsDetails":"pages_category_page1-goodsModule-goodsDetails","pages_category_page1-orderModule-index~pages_category_page1-orderModule-orderConfirm~pages_category_~6d70e372":"pages_category_page1-orderModule-index~pages_category_page1-orderModule-orderConfirm~pages_category_~6d70e372","pages_category_page1-orderModule-index":"pages_category_page1-orderModule-index","pages_category_page1-goodsModule-addEvaluate~pages_category_page1-goodsModule-evaluate~pages_categor~062958de":"pages_category_page1-goodsModule-addEvaluate~pages_category_page1-goodsModule-evaluate~pages_categor~062958de","pages_category_page1-orderModule-afterSaleApplyRefund":"pages_category_page1-orderModule-afterSaleApplyRefund","pages_category_page1-orderModule-afterSaleApplyRetund":"pages_category_page1-orderModule-afterSaleApplyRetund","pages_category_page1-goodsModule-combination":"pages_category_page1-goodsModule-combination","pages_category_page1-goodsModule-inviteSpell":"pages_category_page1-goodsModule-inviteSpell","pages_category_page1-orderModule-orderDetails":"pages_category_page1-orderModule-orderDetails","pages_category_page1-orderModule-orderConfirm~pages_category_page1-question-question":"pages_category_page1-orderModule-orderConfirm~pages_category_page1-question-question","pages_category_page1-orderModule-orderConfirm":"pages_category_page1-orderModule-orderConfirm","pages_category_page2-orderModule-refundDetails":"pages_category_page2-orderModule-refundDetails","pages_category_page2-orderModule-returnDetails":"pages_category_page2-orderModule-returnDetails","pages_category_page2-userModule-addAddress~pages_category_page2-userModule-personalDetails":"pages_category_page2-userModule-addAddress~pages_category_page2-userModule-personalDetails","pages_category_page2-userModule-addAddress":"pages_category_page2-userModule-addAddress","pages_category_page2-userModule-personalDetails":"pages_category_page2-userModule-personalDetails","pages_category_page2-userModule-withdraw":"pages_category_page2-userModule-withdraw","pages_category_page1-goodsModule-addEvaluate":"pages_category_page1-goodsModule-addEvaluate","pages_category_page1-goodsModule-evaluate":"pages_category_page1-goodsModule-evaluate","pages_category_page1-orderModule-Intervene":"pages_category_page1-orderModule-Intervene","pages_category_page1-orderModule-addLogistics":"pages_category_page1-orderModule-addLogistics","pages_category_page1-orderModule-platformJoin":"pages_category_page1-orderModule-platformJoin","pages_category_page1-orderModule-afterSaleApply~pages_category_page1-question-question":"pages_category_page1-orderModule-afterSaleApply~pages_category_page1-question-question","pages_category_page1-orderModule-afterSaleApply":"pages_category_page1-orderModule-afterSaleApply","pages_category_page1-question-question":"pages_category_page1-question-question","pages_category_page1-activity":"pages_category_page1-activity","pages_category_page1-coupon-list":"pages_category_page1-coupon-list","pages_category_page1-coupon-product":"pages_category_page1-coupon-product","pages_category_page1-customer-chatBox":"pages_category_page1-customer-chatBox","pages_category_page1-discount-discount":"pages_category_page1-discount-discount","pages_category_page1-discount-platformDiscount":"pages_category_page1-discount-platformDiscount","pages_category_page1-discount-spikeList":"pages_category_page1-discount-spikeList","pages_category_page1-distributionModule-commodity~pages_category_page1-distributionModule-invite~pag~ec5c6895":"pages_category_page1-distributionModule-commodity~pages_category_page1-distributionModule-invite~pag~ec5c6895","pages_category_page1-distributionModule-commodity":"pages_category_page1-distributionModule-commodity","pages_category_page1-distributionModule-invite":"pages_category_page1-distributionModule-invite","pages_category_page1-distributionModule-promotion":"pages_category_page1-distributionModule-promotion","pages_category_page1-distributionModule-distributionOrder":"pages_category_page1-distributionModule-distributionOrder","pages_category_page1-distributionModule-index":"pages_category_page1-distributionModule-index","pages_category_page1-distributionModule-salesIndex":"pages_category_page1-distributionModule-salesIndex","pages_category_page1-distributionModule-shareProduct":"pages_category_page1-distributionModule-shareProduct","pages_category_page1-distributionModule-totalAward":"pages_category_page1-distributionModule-totalAward","pages_category_page1-distributionModule-unliquidated":"pages_category_page1-distributionModule-unliquidated","pages_category_page2-userModule-collection":"pages_category_page2-userModule-collection","pages_category_page2-userModule-questionList":"pages_category_page2-userModule-questionList","pages_category_page1-distributionModule-totalClient":"pages_category_page1-distributionModule-totalClient","pages_category_page1-distributionModule-totalPersonnel":"pages_category_page1-distributionModule-totalPersonnel","pages_category_page1-goodsModule-answerList":"pages_category_page1-goodsModule-answerList","pages_category_page1-goodsModule-canvasGoods":"pages_category_page1-goodsModule-canvasGoods","pages_category_page1-goodsModule-couponShopList":"pages_category_page1-goodsModule-couponShopList","pages_category_page1-goodsModule-evaSuccessful":"pages_category_page1-goodsModule-evaSuccessful","pages_category_page1-goodsModule-evaluateDetails":"pages_category_page1-goodsModule-evaluateDetails","pages_category_page1-goodsModule-evaluateList":"pages_category_page1-goodsModule-evaluateList","pages_category_page1-goodsModule-goodsList":"pages_category_page1-goodsModule-goodsList","pages_category_page1-goodsModule-invitePoster":"pages_category_page1-goodsModule-invitePoster","pages_category_page1-goodsModule-putQuestions":"pages_category_page1-goodsModule-putQuestions","pages_category_page1-goodsModule-qADetail":"pages_category_page1-goodsModule-qADetail","pages_category_page1-goodsModule-userEvaluate":"pages_category_page1-goodsModule-userEvaluate","pages_category_page1-homeModule-special":"pages_category_page1-homeModule-special","pages_category_page1-integral-exchangeDetail":"pages_category_page1-integral-exchangeDetail","pages_category_page1-integral-index":"pages_category_page1-integral-index","pages_category_page1-integral-sign":"pages_category_page1-integral-sign","pages_category_page1-linkOthers-index":"pages_category_page1-linkOthers-index","pages_category_page1-memberCenter-activityList":"pages_category_page1-memberCenter-activityList","pages_category_page1-memberCenter-index":"pages_category_page1-memberCenter-index","pages_category_page1-memberCenter-memberSign":"pages_category_page1-memberCenter-memberSign","pages_category_page1-orderModule-logisticsInfo":"pages_category_page1-orderModule-logisticsInfo","pages_category_page1-procedure-procedure":"pages_category_page1-procedure-procedure","pages_category_page1-question-succe":"pages_category_page1-question-succe","pages_category_page1-search-index-index":"pages_category_page1-search-index-index","pages_category_page2-channelCoupon-index":"pages_category_page2-channelCoupon-index","pages_category_page2-livePage-index":"pages_category_page2-livePage-index","pages_category_page2-orderModule-afterSale":"pages_category_page2-orderModule-afterSale","pages_category_page2-userModule-accountLogin":"pages_category_page2-userModule-accountLogin","pages_category_page2-userModule-addBankcard":"pages_category_page2-userModule-addBankcard","pages_category_page2-userModule-address":"pages_category_page2-userModule-address","pages_category_page2-userModule-bankcard":"pages_category_page2-userModule-bankcard","pages_category_page2-userModule-bindPhone":"pages_category_page2-userModule-bindPhone","pages_category_page2-userModule-coupon":"pages_category_page2-userModule-coupon","pages_category_page2-userModule-footprintList":"pages_category_page2-userModule-footprintList","pages_category_page2-userModule-login":"pages_category_page2-userModule-login","pages_category_page2-userModule-memberAccount":"pages_category_page2-userModule-memberAccount","pages_category_page2-userModule-messageCenter~pages_category_page2-userModule-messageDetail":"pages_category_page2-userModule-messageCenter~pages_category_page2-userModule-messageDetail","pages_category_page2-userModule-messageCenter":"pages_category_page2-userModule-messageCenter","pages_category_page2-userModule-messageDetail":"pages_category_page2-userModule-messageDetail","pages_category_page2-userModule-mobilePhone":"pages_category_page2-userModule-mobilePhone","pages_category_page2-userModule-protocol":"pages_category_page2-userModule-protocol","pages_category_page2-userModule-register":"pages_category_page2-userModule-register","pages_category_page2-userModule-unsubscribe":"pages_category_page2-userModule-unsubscribe","pages_category_page2-userModule-unsubscribeCode":"pages_category_page2-userModule-unsubscribeCode"}[e]||e)+"."+{"pages-tabbar-cart-index":"21951a54","pages-tabbar-category-index":"43c5d32b","pages-tabbar-index-index~pages_category_page1-orderModule-paySuccessful":"3431fe49","pages_category_page1-orderModule-paySuccessful":"0024b4b8","pages-tabbar-index-index~pages_category_page1-store-index":"21103dd3","pages-tabbar-index-index":"d19404f7","pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb":"d06cb581","pages-tabbar-user-index":"04a1363c","pages_category_page1-askedquestion-askedquestion":"f03f0c75","pages_category_page1-distributionModule-recruit~pages_category_page1-goodsModule-combination~pages_c~aa7f3c4b":"2549038e","pages_category_page1-store-index":"196a6f8a","pages_category_page1-distributionModule-recruit":"077add14","pages_category_page1-distributionModule-totalAward~pages_category_page1-distributionModule-unliquida~6efaba3e":"1ef53932","pages_category_page1-goodsModule-goodsDetails~pages_category_page1-goodsModule-inviteSpell~pages_cat~bc1ad44c":"e6dafaa9","pages_category_page1-goodsModule-goodsDetails":"33420e94","pages_category_page1-orderModule-index~pages_category_page1-orderModule-orderConfirm~pages_category_~6d70e372":"84330afe","pages_category_page1-orderModule-index":"df86c5de","pages_category_page1-goodsModule-addEvaluate~pages_category_page1-goodsModule-evaluate~pages_categor~062958de":"2319e26a","pages_category_page1-orderModule-afterSaleApplyRefund":"6af48b70","pages_category_page1-orderModule-afterSaleApplyRetund":"9ea2c241","pages_category_page1-goodsModule-combination":"cf85fb5d","pages_category_page1-goodsModule-inviteSpell":"644a92b7","pages_category_page1-orderModule-orderDetails":"71e1ec64","pages_category_page1-orderModule-orderConfirm~pages_category_page1-question-question":"0aa7575d","pages_category_page1-orderModule-orderConfirm":"6a1fab50","pages_category_page2-orderModule-refundDetails":"7273fd8c","pages_category_page2-orderModule-returnDetails":"492b67d4","pages_category_page2-userModule-addAddress~pages_category_page2-userModule-personalDetails":"cd836e1c","pages_category_page2-userModule-addAddress":"8944632f","pages_category_page2-userModule-personalDetails":"6c39fb00","pages_category_page2-userModule-withdraw":"65e44609","pages_category_page1-goodsModule-addEvaluate":"be8c9d95","pages_category_page1-goodsModule-evaluate":"04e3eb7d","pages_category_page1-orderModule-Intervene":"2993d8e1","pages_category_page1-orderModule-addLogistics":"77e50a65","pages_category_page1-orderModule-platformJoin":"088c2452","pages_category_page1-orderModule-afterSaleApply~pages_category_page1-question-question":"84f4c534","pages_category_page1-orderModule-afterSaleApply":"67655e93","pages_category_page1-question-question":"fadae7b4","pages_category_page1-activity":"56b5fa29","pages_category_page1-coupon-list":"1181c05f","pages_category_page1-coupon-product":"8ff71ac4","pages_category_page1-customer-chatBox":"e2464ab7","pages_category_page1-discount-discount":"a2b3a75c","pages_category_page1-discount-platformDiscount":"f5221da0","pages_category_page1-discount-spikeList":"f7f6c7c4","pages_category_page1-distributionModule-commodity~pages_category_page1-distributionModule-invite~pag~ec5c6895":"4ddf8b06","pages_category_page1-distributionModule-commodity":"e1e3a32a","pages_category_page1-distributionModule-invite":"d1aaf2d9","pages_category_page1-distributionModule-promotion":"b1c2dc61","pages_category_page1-distributionModule-distributionOrder":"9ebd98ca","pages_category_page1-distributionModule-index":"3d89aa39","pages_category_page1-distributionModule-salesIndex":"54ee226d","pages_category_page1-distributionModule-shareProduct":"af64221e","pages_category_page1-distributionModule-totalAward":"76901fdf","pages_category_page1-distributionModule-unliquidated":"e114bd56","pages_category_page2-userModule-collection":"0d982e3d","pages_category_page2-userModule-questionList":"94aa4f09","pages_category_page1-distributionModule-totalClient":"2b17cad3","pages_category_page1-distributionModule-totalPersonnel":"48ddea2b","pages_category_page1-goodsModule-answerList":"759ae8f3","pages_category_page1-goodsModule-canvasGoods":"e518e1b8","pages_category_page1-goodsModule-couponShopList":"589d56b7","pages_category_page1-goodsModule-evaSuccessful":"ee838c3d","pages_category_page1-goodsModule-evaluateDetails":"3e040e85","pages_category_page1-goodsModule-evaluateList":"764aa31e","pages_category_page1-goodsModule-goodsList":"22ea972e","pages_category_page1-goodsModule-invitePoster":"f0ce2ba6","pages_category_page1-goodsModule-putQuestions":"0595d0f8","pages_category_page1-goodsModule-qADetail":"270265c8","pages_category_page1-goodsModule-userEvaluate":"453dbbe9","pages_category_page1-homeModule-special":"85f1caa9","pages_category_page1-integral-exchangeDetail":"e2409d1d","pages_category_page1-integral-index":"d8911ed7","pages_category_page1-integral-sign":"52ffd3e1","pages_category_page1-linkOthers-index":"e0488fe0","pages_category_page1-memberCenter-activityList":"320d306e","pages_category_page1-memberCenter-index":"98b9dd98","pages_category_page1-memberCenter-memberSign":"28a6f281","pages_category_page1-orderModule-logisticsInfo":"600bd286","pages_category_page1-procedure-procedure":"e522baf6","pages_category_page1-question-succe":"8c8f72ea","pages_category_page1-search-index-index":"13cc6bb0","pages_category_page2-channelCoupon-index":"1aeb838f","pages_category_page2-livePage-index":"be235c66","pages_category_page2-orderModule-afterSale":"bdf13692","pages_category_page2-userModule-accountLogin":"e338adca","pages_category_page2-userModule-addBankcard":"bd2b966d","pages_category_page2-userModule-address":"aad5182b","pages_category_page2-userModule-bankcard":"df518ada","pages_category_page2-userModule-bindPhone":"781d7787","pages_category_page2-userModule-coupon":"6484eaed","pages_category_page2-userModule-footprintList":"20745013","pages_category_page2-userModule-login":"ce965a96","pages_category_page2-userModule-memberAccount":"677f3352","pages_category_page2-userModule-messageCenter~pages_category_page2-userModule-messageDetail":"596c73dd","pages_category_page2-userModule-messageCenter":"4f2d1fdd","pages_category_page2-userModule-messageDetail":"bd413358","pages_category_page2-userModule-mobilePhone":"8d656608","pages_category_page2-userModule-protocol":"48d081bb","pages_category_page2-userModule-register":"8b24d718","pages_category_page2-userModule-unsubscribe":"e5b83cb5","pages_category_page2-userModule-unsubscribeCode":"3ae5bc72"}[e]+".js"}(e);var u=new Error;r=function(t){g.onerror=g.onload=null,clearTimeout(p);var a=o[e];if(0!==a){if(a){var n=t&&("load"===t.type?"missing":t.type),r=t&&t.target&&t.target.src;u.message="Loading chunk "+e+" failed.\n("+n+": "+r+")",u.name="ChunkLoadError",u.type=n,u.request=r,a[1](u)}o[e]=void 0}};var p=setTimeout((function(){r({type:"timeout",target:g})}),12e4);g.onerror=g.onload=r,document.head.appendChild(g)}return Promise.all(t)},i.m=e,i.c=n,i.d=function(e,t,a){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:a})},i.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.t=function(e,t){if(1&t&&(e=i(e)),8&t)return e;if(4&t&&"object"===typeof e&&e&&e.__esModule)return e;var a=Object.create(null);if(i.r(a),Object.defineProperty(a,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)i.d(a,n,function(t){return e[t]}.bind(null,n));return a},i.n=function(e){var t=e&&e.__esModule?function(){return e["default"]}:function(){return e};return i.d(t,"a",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p="/cdwlMall/meh5/",i.oe=function(e){throw console.error(e),e};var g=window["webpackJsonp"]=window["webpackJsonp"]||[],u=g.push.bind(g);g.push=t,g=g.slice();for(var p=0;p<g.length;p++)t(g[p]);var d=u;r.push([0,"chunk-vendors"]),a()})({0:function(e,t,a){e.exports=a("8cc2")},"027b":function(e,t,a){"use strict";(function(e){var t=a("f5bd").default;a("473f"),a("bf0f"),a("de6c"),a("5c47"),a("a1c1");var n=t(a("9b8e")),o={keys:function(){return[]}};e["____76D46D1____"]=!0,delete e["____76D46D1____"],e.__uniConfig={easycom:{"^u-(.*)":"@/uview-ui/components/u-$1/u-$1.vue","global-loading":"@/components/GlobalLoading/index.vue","^unicloud-db$":"@dcloudio/uni-cli-shared/components/unicloud-db.vue","^uniad$":"@dcloudio/uni-cli-shared/components/uniad.vue","^ad-rewarded-video$":"@dcloudio/uni-cli-shared/components/ad-rewarded-video.vue","^ad-fullscreen-video$":"@dcloudio/uni-cli-shared/components/ad-fullscreen-video.vue","^ad-interstitial$":"@dcloudio/uni-cli-shared/components/ad-interstitial.vue","^ad-interactive$":"@dcloudio/uni-cli-shared/components/ad-interactive.vue","^page-meta$":"@dcloudio/uni-cli-shared/components/page-meta.vue","^navigation-bar$":"@dcloudio/uni-cli-shared/components/navigation-bar.vue","^uni-match-media$":"@dcloudio/uni-cli-shared/components/uni-match-media.vue"},preloadRule:{"pages_category_page1/search/index/index":{network:"all",packages:["pages_category_page1"]},"pages_category_page1/goodsModule/inviteSpell":{network:"all",packages:["pages_category_page1"]},"pages_category_page1/goodsModule/invitePoster":{network:"all",packages:["pages_category_page1"]},"pages_category_page1/orderModule/orderDetails":{network:"all",packages:["pages_category_page1"]}},globalStyle:{navigationBarTextStyle:"black",navigationBarTitleText:"在线商城",navigationBarBackgroundColor:"#fff",titleNView:!1,navigationStyle:"custom",backgroundColor:"#F8F8F8"},tabBar:{borderStyle:"black",backgroundColor:"#fff",color:"#CCCCCC",selectedColor:"#39be7a",list:[{pagePath:"pages/tabbar/index/index",iconPath:"static/images/tabbar/home.png",selectedIconPath:"static/images/tabbar/homeactive.png",text:"首页",redDot:!1,badge:""},{pagePath:"pages/tabbar/category/index",iconPath:"static/images/tabbar/fenlei.png",selectedIconPath:"static/images/tabbar/fenleiactive.png",text:"分类",redDot:!1,badge:""},{pagePath:"pages/tabbar/cart/index",iconPath:"static/images/tabbar/gouwuche.png",selectedIconPath:"static/images/tabbar/gouwucheactive.png",text:"购物车",redDot:!1,badge:""},{pagePath:"pages/tabbar/user/index",iconPath:"static/images/tabbar/wode.png",selectedIconPath:"static/images/tabbar/wodeactive.png",text:"我的",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white",redDot:!1,badge:""}]},condition:{current:0,list:[{name:"",path:"",query:""}]}},e.__uniConfig.compilerVersion="4.45",e.__uniConfig.darkmode=!1,e.__uniConfig.themeConfig={},e.__uniConfig.uniPlatform="h5",e.__uniConfig.appId="__UNI__76D46D1",e.__uniConfig.appName="锦江公园",e.__uniConfig.appVersion="1.7.4",e.__uniConfig.appVersionCode="174",e.__uniConfig.router={mode:"history",base:"/cdwlMall/meh5/"},e.__uniConfig.publicPath="/cdwlMall/meh5/",e.__uniConfig["async"]={loading:"AsyncLoading",error:"AsyncError",delay:200,timeout:6e4},e.__uniConfig.debug=!1,e.__uniConfig.networkTimeout={request:6e4,connectSocket:6e4,uploadFile:6e4,downloadFile:6e4},e.__uniConfig.sdkConfigs={maps:{}},e.__uniConfig.qqMapKey=void 0,e.__uniConfig.googleMapKey=void 0,e.__uniConfig.aMapKey=void 0,e.__uniConfig.aMapSecurityJsCode=void 0,e.__uniConfig.aMapServiceHost=void 0,e.__uniConfig.locale="",e.__uniConfig.fallbackLocale=void 0,e.__uniConfig.locales=o.keys().reduce((function(e,t){var a=t.replace(/\.\/(uni-app.)?(.*).json/,"$2"),n=o(t);return Object.assign(e[a]||(e[a]={}),n.common||n),e}),{}),e.__uniConfig.nvue={"flex-direction":"column"},e.__uniConfig.__webpack_chunk_load__=a.e,n.default.component("pages-tabbar-index-index",(function(e){var t={component:Promise.all([a.e("pages-tabbar-index-index~pages_category_page1-store-index"),a.e("pages-tabbar-index-index~pages_category_page1-orderModule-paySuccessful"),a.e("pages-tabbar-index-index")]).then(function(){return e(a("fe72"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages-tabbar-category-index",(function(e){var t={component:a.e("pages-tabbar-category-index").then(function(){return e(a("22d6"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages-tabbar-cart-index",(function(e){var t={component:a.e("pages-tabbar-cart-index").then(function(){return e(a("e061"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages-tabbar-user-index",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages-tabbar-user-index")]).then(function(){return e(a("be3f"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-discount-spikeList",(function(e){var t={component:a.e("pages_category_page1-discount-spikeList").then(function(){return e(a("7761"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-discount-discount",(function(e){var t={component:a.e("pages_category_page1-discount-discount").then(function(){return e(a("4385"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-discount-platformDiscount",(function(e){var t={component:a.e("pages_category_page1-discount-platformDiscount").then(function(){return e(a("e66c"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-memberCenter-activityList",(function(e){var t={component:a.e("pages_category_page1-memberCenter-activityList").then(function(){return e(a("750a"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-integral-index",(function(e){var t={component:a.e("pages_category_page1-integral-index").then(function(){return e(a("d5c66"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-integral-exchangeDetail",(function(e){var t={component:a.e("pages_category_page1-integral-exchangeDetail").then(function(){return e(a("41a9"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-integral-sign",(function(e){var t={component:a.e("pages_category_page1-integral-sign").then(function(){return e(a("f4e0"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-coupon-list",(function(e){var t={component:a.e("pages_category_page1-coupon-list").then(function(){return e(a("0804"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-coupon-product",(function(e){var t={component:a.e("pages_category_page1-coupon-product").then(function(){return e(a("4bdc"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-goodsModule-combination",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages_category_page1-distributionModule-recruit~pages_category_page1-goodsModule-combination~pages_c~aa7f3c4b"),a.e("pages_category_page1-goodsModule-combination")]).then(function(){return e(a("7b02"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-activity",(function(e){var t={component:a.e("pages_category_page1-activity").then(function(){return e(a("3565"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-search-index-index",(function(e){var t={component:a.e("pages_category_page1-search-index-index").then(function(){return e(a("a5cd"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-store-index",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages_category_page1-distributionModule-recruit~pages_category_page1-goodsModule-combination~pages_c~aa7f3c4b"),a.e("pages-tabbar-index-index~pages_category_page1-store-index"),a.e("pages_category_page1-store-index")]).then(function(){return e(a("ac8a"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-goodsModule-goodsList",(function(e){var t={component:a.e("pages_category_page1-goodsModule-goodsList").then(function(){return e(a("97d4"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-goodsModule-canvasGoods",(function(e){var t={component:a.e("pages_category_page1-goodsModule-canvasGoods").then(function(){return e(a("0ad7"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-goodsModule-couponShopList",(function(e){var t={component:a.e("pages_category_page1-goodsModule-couponShopList").then(function(){return e(a("14c2"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-goodsModule-goodsDetails",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages_category_page1-distributionModule-recruit~pages_category_page1-goodsModule-combination~pages_c~aa7f3c4b"),a.e("pages_category_page1-distributionModule-totalAward~pages_category_page1-distributionModule-unliquida~6efaba3e"),a.e("pages_category_page1-goodsModule-goodsDetails~pages_category_page1-goodsModule-inviteSpell~pages_cat~bc1ad44c"),a.e("pages_category_page1-goodsModule-goodsDetails")]).then(function(){return e(a("2a7b"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-goodsModule-qADetail",(function(e){var t={component:a.e("pages_category_page1-goodsModule-qADetail").then(function(){return e(a("2a96"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-goodsModule-answerList",(function(e){var t={component:a.e("pages_category_page1-goodsModule-answerList").then(function(){return e(a("c33ac"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-goodsModule-putQuestions",(function(e){var t={component:a.e("pages_category_page1-goodsModule-putQuestions").then(function(){return e(a("d219"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-goodsModule-userEvaluate",(function(e){var t={component:a.e("pages_category_page1-goodsModule-userEvaluate").then(function(){return e(a("796a"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-goodsModule-evaSuccessful",(function(e){var t={component:a.e("pages_category_page1-goodsModule-evaSuccessful").then(function(){return e(a("4a2a"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-goodsModule-evaluateDetails",(function(e){var t={component:a.e("pages_category_page1-goodsModule-evaluateDetails").then(function(){return e(a("1f01"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-goodsModule-evaluateList",(function(e){var t={component:a.e("pages_category_page1-goodsModule-evaluateList").then(function(){return e(a("c166"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-goodsModule-addEvaluate",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages_category_page1-goodsModule-addEvaluate~pages_category_page1-goodsModule-evaluate~pages_categor~062958de"),a.e("pages_category_page1-goodsModule-addEvaluate")]).then(function(){return e(a("b25e"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-goodsModule-evaluate",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages_category_page1-goodsModule-addEvaluate~pages_category_page1-goodsModule-evaluate~pages_categor~062958de"),a.e("pages_category_page1-goodsModule-evaluate")]).then(function(){return e(a("e455"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-orderModule-index",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages_category_page1-distributionModule-recruit~pages_category_page1-goodsModule-combination~pages_c~aa7f3c4b"),a.e("pages_category_page1-distributionModule-totalAward~pages_category_page1-distributionModule-unliquida~6efaba3e"),a.e("pages_category_page1-orderModule-index~pages_category_page1-orderModule-orderConfirm~pages_category_~6d70e372"),a.e("pages_category_page1-orderModule-index")]).then(function(){return e(a("aaa7"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-orderModule-orderConfirm",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages_category_page1-distributionModule-recruit~pages_category_page1-goodsModule-combination~pages_c~aa7f3c4b"),a.e("pages_category_page1-orderModule-index~pages_category_page1-orderModule-orderConfirm~pages_category_~6d70e372"),a.e("pages_category_page1-orderModule-orderConfirm~pages_category_page1-question-question"),a.e("pages_category_page1-orderModule-orderConfirm")]).then(function(){return e(a("20d3"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-orderModule-orderDetails",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages_category_page1-distributionModule-recruit~pages_category_page1-goodsModule-combination~pages_c~aa7f3c4b"),a.e("pages_category_page1-goodsModule-goodsDetails~pages_category_page1-goodsModule-inviteSpell~pages_cat~bc1ad44c"),a.e("pages_category_page1-orderModule-index~pages_category_page1-orderModule-orderConfirm~pages_category_~6d70e372"),a.e("pages_category_page1-orderModule-orderDetails")]).then(function(){return e(a("c61a"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-orderModule-afterSaleApplyRefund",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages_category_page1-distributionModule-recruit~pages_category_page1-goodsModule-combination~pages_c~aa7f3c4b"),a.e("pages_category_page1-goodsModule-addEvaluate~pages_category_page1-goodsModule-evaluate~pages_categor~062958de"),a.e("pages_category_page1-orderModule-afterSaleApplyRefund")]).then(function(){return e(a("d639"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-orderModule-afterSaleApplyRetund",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages_category_page1-distributionModule-recruit~pages_category_page1-goodsModule-combination~pages_c~aa7f3c4b"),a.e("pages_category_page1-goodsModule-addEvaluate~pages_category_page1-goodsModule-evaluate~pages_categor~062958de"),a.e("pages_category_page1-orderModule-afterSaleApplyRetund")]).then(function(){return e(a("ec61"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-orderModule-afterSaleApply",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages_category_page1-orderModule-afterSaleApply~pages_category_page1-question-question"),a.e("pages_category_page1-orderModule-afterSaleApply")]).then(function(){return e(a("fad2"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-orderModule-platformJoin",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages_category_page1-goodsModule-addEvaluate~pages_category_page1-goodsModule-evaluate~pages_categor~062958de"),a.e("pages_category_page1-orderModule-platformJoin")]).then(function(){return e(a("52c5"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-orderModule-paySuccessful",(function(e){var t={component:Promise.all([a.e("pages-tabbar-index-index~pages_category_page1-orderModule-paySuccessful"),a.e("pages_category_page1-orderModule-paySuccessful")]).then(function(){return e(a("2cdb"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-orderModule-addLogistics",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages_category_page1-goodsModule-addEvaluate~pages_category_page1-goodsModule-evaluate~pages_categor~062958de"),a.e("pages_category_page1-orderModule-addLogistics")]).then(function(){return e(a("d5db"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-orderModule-Intervene",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages_category_page1-goodsModule-addEvaluate~pages_category_page1-goodsModule-evaluate~pages_categor~062958de"),a.e("pages_category_page1-orderModule-Intervene")]).then(function(){return e(a("8adb"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-distributionModule-index",(function(e){var t={component:a.e("pages_category_page1-distributionModule-index").then(function(){return e(a("0c7e"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-distributionModule-recruit",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages_category_page1-distributionModule-recruit~pages_category_page1-goodsModule-combination~pages_c~aa7f3c4b"),a.e("pages_category_page1-distributionModule-recruit")]).then(function(){return e(a("7cbe"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-distributionModule-salesIndex",(function(e){var t={component:a.e("pages_category_page1-distributionModule-salesIndex").then(function(){return e(a("117b1"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-distributionModule-shareProduct",(function(e){var t={component:a.e("pages_category_page1-distributionModule-shareProduct").then(function(){return e(a("5c9a"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-distributionModule-totalPersonnel",(function(e){var t={component:a.e("pages_category_page1-distributionModule-totalPersonnel").then(function(){return e(a("c0a8"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-distributionModule-totalAward",(function(e){var t={component:Promise.all([a.e("pages_category_page1-distributionModule-totalAward~pages_category_page1-distributionModule-unliquida~6efaba3e"),a.e("pages_category_page1-distributionModule-totalAward")]).then(function(){return e(a("232c"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-distributionModule-totalClient",(function(e){var t={component:a.e("pages_category_page1-distributionModule-totalClient").then(function(){return e(a("78396"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-distributionModule-unliquidated",(function(e){var t={component:Promise.all([a.e("pages_category_page1-distributionModule-totalAward~pages_category_page1-distributionModule-unliquida~6efaba3e"),a.e("pages_category_page1-distributionModule-unliquidated")]).then(function(){return e(a("6a64"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-distributionModule-promotion",(function(e){var t={component:Promise.all([a.e("pages_category_page1-distributionModule-commodity~pages_category_page1-distributionModule-invite~pag~ec5c6895"),a.e("pages_category_page1-distributionModule-promotion")]).then(function(){return e(a("5be1"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-distributionModule-commodity",(function(e){var t={component:Promise.all([a.e("pages_category_page1-distributionModule-commodity~pages_category_page1-distributionModule-invite~pag~ec5c6895"),a.e("pages_category_page1-distributionModule-commodity")]).then(function(){return e(a("ac35"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-distributionModule-distributionOrder",(function(e){var t={component:a.e("pages_category_page1-distributionModule-distributionOrder").then(function(){return e(a("1a2c"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-distributionModule-invite",(function(e){var t={component:Promise.all([a.e("pages_category_page1-distributionModule-commodity~pages_category_page1-distributionModule-invite~pag~ec5c6895"),a.e("pages_category_page1-distributionModule-invite")]).then(function(){return e(a("49ff"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-orderModule-logisticsInfo",(function(e){var t={component:a.e("pages_category_page1-orderModule-logisticsInfo").then(function(){return e(a("30f5"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-homeModule-special",(function(e){var t={component:a.e("pages_category_page1-homeModule-special").then(function(){return e(a("4c17"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-goodsModule-invitePoster",(function(e){var t={component:a.e("pages_category_page1-goodsModule-invitePoster").then(function(){return e(a("d33a"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-goodsModule-inviteSpell",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages_category_page1-distributionModule-recruit~pages_category_page1-goodsModule-combination~pages_c~aa7f3c4b"),a.e("pages_category_page1-goodsModule-goodsDetails~pages_category_page1-goodsModule-inviteSpell~pages_cat~bc1ad44c"),a.e("pages_category_page1-goodsModule-inviteSpell")]).then(function(){return e(a("3d17"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-linkOthers-index",(function(e){var t={component:a.e("pages_category_page1-linkOthers-index").then(function(){return e(a("c6e8"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-memberCenter-index",(function(e){var t={component:a.e("pages_category_page1-memberCenter-index").then(function(){return e(a("9450"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-memberCenter-memberSign",(function(e){var t={component:a.e("pages_category_page1-memberCenter-memberSign").then(function(){return e(a("bef4"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-askedquestion-askedquestion",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages_category_page1-askedquestion-askedquestion")]).then(function(){return e(a("8b39"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-procedure-procedure",(function(e){var t={component:a.e("pages_category_page1-procedure-procedure").then(function(){return e(a("8bc1"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-customer-chatBox",(function(e){var t={component:a.e("pages_category_page1-customer-chatBox").then(function(){return e(a("9af3"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-question-question",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages_category_page1-orderModule-afterSaleApply~pages_category_page1-question-question"),a.e("pages_category_page1-orderModule-orderConfirm~pages_category_page1-question-question"),a.e("pages_category_page1-question-question")]).then(function(){return e(a("58cd"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-question-succe",(function(e){var t={component:a.e("pages_category_page1-question-succe").then(function(){return e(a("4577"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-userModule-accountLogin",(function(e){var t={component:a.e("pages_category_page2-userModule-accountLogin").then(function(){return e(a("7fcd"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-userModule-addAddress",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages_category_page1-distributionModule-recruit~pages_category_page1-goodsModule-combination~pages_c~aa7f3c4b"),a.e("pages_category_page2-userModule-addAddress~pages_category_page2-userModule-personalDetails"),a.e("pages_category_page2-userModule-addAddress")]).then(function(){return e(a("5720"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-userModule-addBankcard",(function(e){var t={component:a.e("pages_category_page2-userModule-addBankcard").then(function(){return e(a("0d43"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-userModule-address",(function(e){var t={component:a.e("pages_category_page2-userModule-address").then(function(){return e(a("9687"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-userModule-bankcard",(function(e){var t={component:a.e("pages_category_page2-userModule-bankcard").then(function(){return e(a("fb26"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-userModule-collection",(function(e){var t={component:Promise.all([a.e("pages_category_page1-distributionModule-totalAward~pages_category_page1-distributionModule-unliquida~6efaba3e"),a.e("pages_category_page2-userModule-collection")]).then(function(){return e(a("e1f1"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-userModule-footprintList",(function(e){var t={component:a.e("pages_category_page2-userModule-footprintList").then(function(){return e(a("2fb8"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-userModule-questionList",(function(e){var t={component:Promise.all([a.e("pages_category_page1-distributionModule-totalAward~pages_category_page1-distributionModule-unliquida~6efaba3e"),a.e("pages_category_page2-userModule-questionList")]).then(function(){return e(a("c4b9"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-userModule-personalDetails",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages_category_page1-distributionModule-recruit~pages_category_page1-goodsModule-combination~pages_c~aa7f3c4b"),a.e("pages_category_page2-userModule-addAddress~pages_category_page2-userModule-personalDetails"),a.e("pages_category_page2-userModule-personalDetails")]).then(function(){return e(a("8ae6"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-userModule-coupon",(function(e){var t={component:a.e("pages_category_page2-userModule-coupon").then(function(){return e(a("e38e"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-orderModule-afterSale",(function(e){var t={component:a.e("pages_category_page2-orderModule-afterSale").then(function(){return e(a("c1f9"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-orderModule-returnDetails",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages_category_page1-distributionModule-recruit~pages_category_page1-goodsModule-combination~pages_c~aa7f3c4b"),a.e("pages_category_page2-orderModule-returnDetails")]).then(function(){return e(a("e780"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-orderModule-refundDetails",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages_category_page1-distributionModule-recruit~pages_category_page1-goodsModule-combination~pages_c~aa7f3c4b"),a.e("pages_category_page2-orderModule-refundDetails")]).then(function(){return e(a("a648"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-userModule-login",(function(e){var t={component:a.e("pages_category_page2-userModule-login").then(function(){return e(a("9c82"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-userModule-protocol",(function(e){var t={component:a.e("pages_category_page2-userModule-protocol").then(function(){return e(a("b2cd"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-userModule-register",(function(e){var t={component:a.e("pages_category_page2-userModule-register").then(function(){return e(a("2a44"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-userModule-memberAccount",(function(e){var t={component:a.e("pages_category_page2-userModule-memberAccount").then(function(){return e(a("ea97"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-userModule-withdraw",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages_category_page1-distributionModule-recruit~pages_category_page1-goodsModule-combination~pages_c~aa7f3c4b"),a.e("pages_category_page2-userModule-withdraw")]).then(function(){return e(a("3c58"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-userModule-messageCenter",(function(e){var t={component:Promise.all([a.e("pages_category_page2-userModule-messageCenter~pages_category_page2-userModule-messageDetail"),a.e("pages_category_page2-userModule-messageCenter")]).then(function(){return e(a("c4fe"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-userModule-messageDetail",(function(e){var t={component:Promise.all([a.e("pages_category_page2-userModule-messageCenter~pages_category_page2-userModule-messageDetail"),a.e("pages_category_page2-userModule-messageDetail")]).then(function(){return e(a("6e7f"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-userModule-bindPhone",(function(e){var t={component:a.e("pages_category_page2-userModule-bindPhone").then(function(){return e(a("acf1"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-userModule-mobilePhone",(function(e){var t={component:a.e("pages_category_page2-userModule-mobilePhone").then(function(){return e(a("22f8"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-livePage-index",(function(e){var t={component:a.e("pages_category_page2-livePage-index").then(function(){return e(a("5394"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-channelCoupon-index",(function(e){var t={component:a.e("pages_category_page2-channelCoupon-index").then(function(){return e(a("33d2"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-userModule-unsubscribe",(function(e){var t={component:a.e("pages_category_page2-userModule-unsubscribe").then(function(){return e(a("2c3e"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-userModule-unsubscribeCode",(function(e){var t={component:a.e("pages_category_page2-userModule-unsubscribeCode").then(function(){return e(a("5c8c"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),e.__uniRoutes=[{path:"/",alias:"/pages/tabbar/index/index",component:{render:function(e){return e("Page",{props:Object.assign({isQuit:!0,isEntry:!0,isTabBar:!0,tabBarIndex:0},__uniConfig.globalStyle,{navigationStyle:"custom"})},[e("pages-tabbar-index-index",{slot:"page"})])}},meta:{id:1,name:"pages-tabbar-index-index",isNVue:!1,maxWidth:0,pagePath:"pages/tabbar/index/index",isQuit:!0,isEntry:!0,isTabBar:!0,tabBarIndex:0,windowTop:0}},{path:"/pages/tabbar/category/index",component:{render:function(e){return e("Page",{props:Object.assign({isQuit:!0,isTabBar:!0,tabBarIndex:1},__uniConfig.globalStyle,{navigationBarTitleText:"分类"})},[e("pages-tabbar-category-index",{slot:"page"})])}},meta:{id:2,name:"pages-tabbar-category-index",isNVue:!1,maxWidth:0,pagePath:"pages/tabbar/category/index",isQuit:!0,isTabBar:!0,tabBarIndex:1,windowTop:0}},{path:"/pages/tabbar/cart/index",component:{render:function(e){return e("Page",{props:Object.assign({isQuit:!0,isTabBar:!0,tabBarIndex:2},__uniConfig.globalStyle,{navigationBarTitleText:"购物车"})},[e("pages-tabbar-cart-index",{slot:"page"})])}},meta:{id:3,name:"pages-tabbar-cart-index",isNVue:!1,maxWidth:0,pagePath:"pages/tabbar/cart/index",isQuit:!0,isTabBar:!0,tabBarIndex:2,windowTop:0}},{path:"/pages/tabbar/user/index",component:{render:function(e){return e("Page",{props:Object.assign({isQuit:!0,isTabBar:!0,tabBarIndex:3},__uniConfig.globalStyle,{navigationBarTitleText:"我的",backgroundColor:"#F8F8F8"})},[e("pages-tabbar-user-index",{slot:"page"})])}},meta:{id:4,name:"pages-tabbar-user-index",isNVue:!1,maxWidth:0,pagePath:"pages/tabbar/user/index",isQuit:!0,isTabBar:!0,tabBarIndex:3,windowTop:0}},{path:"/pages_category_page1/discount/spikeList",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"秒杀专区",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page1-discount-spikeList",{slot:"page"})])}},meta:{name:"pages_category_page1-discount-spikeList",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/discount/spikeList",windowTop:0}},{path:"/pages_category_page1/discount/discount",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"限时折扣专区",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page1-discount-discount",{slot:"page"})])}},meta:{name:"pages_category_page1-discount-discount",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/discount/discount",windowTop:0}},{path:"/pages_category_page1/discount/platformDiscount",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"限时折扣专区",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page1-discount-platformDiscount",{slot:"page"})])}},meta:{name:"pages_category_page1-discount-platformDiscount",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/discount/platformDiscount",windowTop:0}},{path:"/pages_category_page1/memberCenter/activityList",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"会员专区",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page1-memberCenter-activityList",{slot:"page"})])}},meta:{name:"pages_category_page1-memberCenter-activityList",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/memberCenter/activityList",windowTop:0}},{path:"/pages_category_page1/integral/index",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"我的积分",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page1-integral-index",{slot:"page"})])}},meta:{name:"pages_category_page1-integral-index",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/integral/index",windowTop:0}},{path:"/pages_category_page1/integral/exchangeDetail",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"积分兑换",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page1-integral-exchangeDetail",{slot:"page"})])}},meta:{name:"pages_category_page1-integral-exchangeDetail",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/integral/exchangeDetail",windowTop:0}},{path:"/pages_category_page1/integral/sign",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"签到领积分",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page1-integral-sign",{slot:"page"})])}},meta:{name:"pages_category_page1-integral-sign",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/integral/sign",windowTop:0}},{path:"/pages_category_page1/coupon/list",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"优惠券"})},[e("pages_category_page1-coupon-list",{slot:"page"})])}},meta:{name:"pages_category_page1-coupon-list",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/coupon/list",windowTop:0}},{path:"/pages_category_page1/coupon/product",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"可用商品"})},[e("pages_category_page1-coupon-product",{slot:"page"})])}},meta:{name:"pages_category_page1-coupon-product",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/coupon/product",windowTop:0}},{path:"/pages_category_page1/goodsModule/combination",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"组合优惠",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page1-goodsModule-combination",{slot:"page"})])}},meta:{name:"pages_category_page1-goodsModule-combination",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/goodsModule/combination",windowTop:0}},{path:"/pages_category_page1/activity",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"热门推荐",enablePullDownRefresh:!0})},[e("pages_category_page1-activity",{slot:"page"})])}},meta:{name:"pages_category_page1-activity",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/activity",windowTop:0}},{path:"/pages_category_page1/search/index/index",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"搜索"})},[e("pages_category_page1-search-index-index",{slot:"page"})])}},meta:{name:"pages_category_page1-search-index-index",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/search/index/index",windowTop:0}},{path:"/pages_category_page1/store/index",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationStyle:"custom",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page1-store-index",{slot:"page"})])}},meta:{name:"pages_category_page1-store-index",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/store/index",windowTop:0}},{path:"/pages_category_page1/goodsModule/goodsList",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"商品列表"})},[e("pages_category_page1-goodsModule-goodsList",{slot:"page"})])}},meta:{name:"pages_category_page1-goodsModule-goodsList",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/goodsModule/goodsList",windowTop:0}},{path:"/pages_category_page1/goodsModule/canvasGoods",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"商品列表"})},[e("pages_category_page1-goodsModule-canvasGoods",{slot:"page"})])}},meta:{name:"pages_category_page1-goodsModule-canvasGoods",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/goodsModule/canvasGoods",windowTop:0}},{path:"/pages_category_page1/goodsModule/couponShopList",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"优惠券可用商品列表"})},[e("pages_category_page1-goodsModule-couponShopList",{slot:"page"})])}},meta:{name:"pages_category_page1-goodsModule-couponShopList",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/goodsModule/couponShopList",windowTop:0}},{path:"/pages_category_page1/goodsModule/goodsDetails",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"详情"})},[e("pages_category_page1-goodsModule-goodsDetails",{slot:"page"})])}},meta:{name:"pages_category_page1-goodsModule-goodsDetails",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/goodsModule/goodsDetails",windowTop:0}},{path:"/pages_category_page1/goodsModule/qADetail",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"问答详情"})},[e("pages_category_page1-goodsModule-qADetail",{slot:"page"})])}},meta:{name:"pages_category_page1-goodsModule-qADetail",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/goodsModule/qADetail",windowTop:0}},{path:"/pages_category_page1/goodsModule/answerList",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"全部问答"})},[e("pages_category_page1-goodsModule-answerList",{slot:"page"})])}},meta:{name:"pages_category_page1-goodsModule-answerList",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/goodsModule/answerList",windowTop:0}},{path:"/pages_category_page1/goodsModule/putQuestions",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"提问"})},[e("pages_category_page1-goodsModule-putQuestions",{slot:"page"})])}},meta:{name:"pages_category_page1-goodsModule-putQuestions",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/goodsModule/putQuestions",windowTop:0}},{path:"/pages_category_page1/goodsModule/userEvaluate",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"我的评价"})},[e("pages_category_page1-goodsModule-userEvaluate",{slot:"page"})])}},meta:{name:"pages_category_page1-goodsModule-userEvaluate",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/goodsModule/userEvaluate",windowTop:0}},{path:"/pages_category_page1/goodsModule/evaSuccessful",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"评价成功"})},[e("pages_category_page1-goodsModule-evaSuccessful",{slot:"page"})])}},meta:{name:"pages_category_page1-goodsModule-evaSuccessful",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/goodsModule/evaSuccessful",windowTop:0}},{path:"/pages_category_page1/goodsModule/evaluateDetails",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"评价详情"})},[e("pages_category_page1-goodsModule-evaluateDetails",{slot:"page"})])}},meta:{name:"pages_category_page1-goodsModule-evaluateDetails",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/goodsModule/evaluateDetails",windowTop:0}},{path:"/pages_category_page1/goodsModule/evaluateList",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"宝贝评价"})},[e("pages_category_page1-goodsModule-evaluateList",{slot:"page"})])}},meta:{name:"pages_category_page1-goodsModule-evaluateList",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/goodsModule/evaluateList",windowTop:0}},{path:"/pages_category_page1/goodsModule/addEvaluate",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"追加评价"})},[e("pages_category_page1-goodsModule-addEvaluate",{slot:"page"})])}},meta:{name:"pages_category_page1-goodsModule-addEvaluate",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/goodsModule/addEvaluate",windowTop:0}},{path:"/pages_category_page1/goodsModule/evaluate",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"评价"})},[e("pages_category_page1-goodsModule-evaluate",{slot:"page"})])}},meta:{name:"pages_category_page1-goodsModule-evaluate",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/goodsModule/evaluate",windowTop:0}},{path:"/pages_category_page1/orderModule/index",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"订单中心"})},[e("pages_category_page1-orderModule-index",{slot:"page"})])}},meta:{name:"pages_category_page1-orderModule-index",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/orderModule/index",windowTop:0}},{path:"/pages_category_page1/orderModule/orderConfirm",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"购买宝贝",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page1-orderModule-orderConfirm",{slot:"page"})])}},meta:{name:"pages_category_page1-orderModule-orderConfirm",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/orderModule/orderConfirm",windowTop:0}},{path:"/pages_category_page1/orderModule/orderDetails",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"订单详情",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page1-orderModule-orderDetails",{slot:"page"})])}},meta:{name:"pages_category_page1-orderModule-orderDetails",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/orderModule/orderDetails",windowTop:0}},{path:"/pages_category_page1/orderModule/afterSaleApplyRefund",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"申请退款"})},[e("pages_category_page1-orderModule-afterSaleApplyRefund",{slot:"page"})])}},meta:{name:"pages_category_page1-orderModule-afterSaleApplyRefund",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/orderModule/afterSaleApplyRefund",windowTop:0}},{path:"/pages_category_page1/orderModule/afterSaleApplyRetund",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"申请退货"})},[e("pages_category_page1-orderModule-afterSaleApplyRetund",{slot:"page"})])}},meta:{name:"pages_category_page1-orderModule-afterSaleApplyRetund",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/orderModule/afterSaleApplyRetund",windowTop:0}},{path:"/pages_category_page1/orderModule/afterSaleApply",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"选择商品",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page1-orderModule-afterSaleApply",{slot:"page"})])}},meta:{name:"pages_category_page1-orderModule-afterSaleApply",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/orderModule/afterSaleApply",windowTop:0}},{path:"/pages_category_page1/orderModule/platformJoin",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"平台介入"})},[e("pages_category_page1-orderModule-platformJoin",{slot:"page"})])}},meta:{name:"pages_category_page1-orderModule-platformJoin",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/orderModule/platformJoin",windowTop:0}},{path:"/pages_category_page1/orderModule/paySuccessful",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationStyle:"custom",navigationBarTitleText:"支付成功"})},[e("pages_category_page1-orderModule-paySuccessful",{slot:"page"})])}},meta:{name:"pages_category_page1-orderModule-paySuccessful",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/orderModule/paySuccessful",windowTop:0}},{path:"/pages_category_page1/orderModule/addLogistics",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"填写退货物流"})},[e("pages_category_page1-orderModule-addLogistics",{slot:"page"})])}},meta:{name:"pages_category_page1-orderModule-addLogistics",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/orderModule/addLogistics",windowTop:0}},{path:"/pages_category_page1/orderModule/Intervene",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"平台介入"})},[e("pages_category_page1-orderModule-Intervene",{slot:"page"})])}},meta:{name:"pages_category_page1-orderModule-Intervene",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/orderModule/Intervene",windowTop:0}},{path:"/pages_category_page1/distributionModule/index",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"分销中心",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page1-distributionModule-index",{slot:"page"})])}},meta:{name:"pages_category_page1-distributionModule-index",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/distributionModule/index",windowTop:0}},{path:"/pages_category_page1/distributionModule/recruit",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"分销员招募令",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page1-distributionModule-recruit",{slot:"page"})])}},meta:{name:"pages_category_page1-distributionModule-recruit",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/distributionModule/recruit",windowTop:0}},{path:"/pages_category_page1/distributionModule/salesIndex",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"分销中心",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page1-distributionModule-salesIndex",{slot:"page"})])}},meta:{name:"pages_category_page1-distributionModule-salesIndex",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/distributionModule/salesIndex",windowTop:0}},{path:"/pages_category_page1/distributionModule/shareProduct",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"分享"})},[e("pages_category_page1-distributionModule-shareProduct",{slot:"page"})])}},meta:{name:"pages_category_page1-distributionModule-shareProduct",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/distributionModule/shareProduct",windowTop:0}},{path:"/pages_category_page1/distributionModule/totalPersonnel",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"累计分销员",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page1-distributionModule-totalPersonnel",{slot:"page"})])}},meta:{name:"pages_category_page1-distributionModule-totalPersonnel",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/distributionModule/totalPersonnel",windowTop:0}},{path:"/pages_category_page1/distributionModule/totalAward",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"累计奖励",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page1-distributionModule-totalAward",{slot:"page"})])}},meta:{name:"pages_category_page1-distributionModule-totalAward",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/distributionModule/totalAward",windowTop:0}},{path:"/pages_category_page1/distributionModule/totalClient",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"累计客户",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page1-distributionModule-totalClient",{slot:"page"})])}},meta:{name:"pages_category_page1-distributionModule-totalClient",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/distributionModule/totalClient",windowTop:0}},{path:"/pages_category_page1/distributionModule/unliquidated",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"未结算奖励",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page1-distributionModule-unliquidated",{slot:"page"})])}},meta:{name:"pages_category_page1-distributionModule-unliquidated",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/distributionModule/unliquidated",windowTop:0}},{path:"/pages_category_page1/distributionModule/promotion",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"推广店铺",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page1-distributionModule-promotion",{slot:"page"})])}},meta:{name:"pages_category_page1-distributionModule-promotion",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/distributionModule/promotion",windowTop:0}},{path:"/pages_category_page1/distributionModule/commodity",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"推广商品"})},[e("pages_category_page1-distributionModule-commodity",{slot:"page"})])}},meta:{name:"pages_category_page1-distributionModule-commodity",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/distributionModule/commodity",windowTop:0}},{path:"/pages_category_page1/distributionModule/distributionOrder",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"我的分销订单"})},[e("pages_category_page1-distributionModule-distributionOrder",{slot:"page"})])}},meta:{name:"pages_category_page1-distributionModule-distributionOrder",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/distributionModule/distributionOrder",windowTop:0}},{path:"/pages_category_page1/distributionModule/invite",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"邀请下级"})},[e("pages_category_page1-distributionModule-invite",{slot:"page"})])}},meta:{name:"pages_category_page1-distributionModule-invite",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/distributionModule/invite",windowTop:0}},{path:"/pages_category_page1/orderModule/logisticsInfo",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"物流信息"})},[e("pages_category_page1-orderModule-logisticsInfo",{slot:"page"})])}},meta:{name:"pages_category_page1-orderModule-logisticsInfo",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/orderModule/logisticsInfo",windowTop:0}},{path:"/pages_category_page1/homeModule/special",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"专题分类"})},[e("pages_category_page1-homeModule-special",{slot:"page"})])}},meta:{name:"pages_category_page1-homeModule-special",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/homeModule/special",windowTop:0}},{path:"/pages_category_page1/goodsModule/invitePoster",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"生成邀请海报"})},[e("pages_category_page1-goodsModule-invitePoster",{slot:"page"})])}},meta:{name:"pages_category_page1-goodsModule-invitePoster",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/goodsModule/invitePoster",windowTop:0}},{path:"/pages_category_page1/goodsModule/inviteSpell",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"邀请好友拼单",enablePullDownRefresh:!1,navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page1-goodsModule-inviteSpell",{slot:"page"})])}},meta:{name:"pages_category_page1-goodsModule-inviteSpell",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/goodsModule/inviteSpell",windowTop:0}},{path:"/pages_category_page1/linkOthers/index",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"商家",enablePullDownRefresh:!1})},[e("pages_category_page1-linkOthers-index",{slot:"page"})])}},meta:{name:"pages_category_page1-linkOthers-index",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/linkOthers/index",windowTop:0}},{path:"/pages_category_page1/memberCenter/index",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationStyle:"custom",navigationBarTextStyle:"white"})},[e("pages_category_page1-memberCenter-index",{slot:"page"})])}},meta:{name:"pages_category_page1-memberCenter-index",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/memberCenter/index",windowTop:0}},{path:"/pages_category_page1/memberCenter/memberSign",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"会员签到",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white",enablePullDownRefresh:!0})},[e("pages_category_page1-memberCenter-memberSign",{slot:"page"})])}},meta:{name:"pages_category_page1-memberCenter-memberSign",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/memberCenter/memberSign",windowTop:0}},{path:"/pages_category_page1/askedquestion/askedquestion",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"常见问题",backgroundColor:"#F8F8F8"})},[e("pages_category_page1-askedquestion-askedquestion",{slot:"page"})])}},meta:{name:"pages_category_page1-askedquestion-askedquestion",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/askedquestion/askedquestion",windowTop:0}},{path:"/pages_category_page1/procedure/procedure",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"公告通知",backgroundColor:"#F8F8F8"})},[e("pages_category_page1-procedure-procedure",{slot:"page"})])}},meta:{name:"pages_category_page1-procedure-procedure",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/procedure/procedure",windowTop:0}},{path:"/pages_category_page1/customer/chatBox",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"客服",backgroundColor:"#F8F8F8"})},[e("pages_category_page1-customer-chatBox",{slot:"page"})])}},meta:{name:"pages_category_page1-customer-chatBox",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/customer/chatBox",windowTop:0}},{path:"/pages_category_page1/question/question",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationStyle:"custom"})},[e("pages_category_page1-question-question",{slot:"page"})])}},meta:{name:"pages_category_page1-question-question",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/question/question",windowTop:0}},{path:"/pages_category_page1/question/succe",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationStyle:"custom"})},[e("pages_category_page1-question-succe",{slot:"page"})])}},meta:{name:"pages_category_page1-question-succe",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/question/succe",windowTop:0}},{path:"/pages_category_page2/userModule/accountLogin",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"登录"})},[e("pages_category_page2-userModule-accountLogin",{slot:"page"})])}},meta:{name:"pages_category_page2-userModule-accountLogin",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/userModule/accountLogin",windowTop:0}},{path:"/pages_category_page2/userModule/addAddress",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"地址管理"})},[e("pages_category_page2-userModule-addAddress",{slot:"page"})])}},meta:{name:"pages_category_page2-userModule-addAddress",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/userModule/addAddress",windowTop:0}},{path:"/pages_category_page2/userModule/addBankcard",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"银行卡"})},[e("pages_category_page2-userModule-addBankcard",{slot:"page"})])}},meta:{name:"pages_category_page2-userModule-addBankcard",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/userModule/addBankcard",windowTop:0}},{path:"/pages_category_page2/userModule/address",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"地址管理"})},[e("pages_category_page2-userModule-address",{slot:"page"})])}},meta:{name:"pages_category_page2-userModule-address",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/userModule/address",windowTop:0}},{path:"/pages_category_page2/userModule/bankcard",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"银行卡",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page2-userModule-bankcard",{slot:"page"})])}},meta:{name:"pages_category_page2-userModule-bankcard",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/userModule/bankcard",windowTop:0}},{path:"/pages_category_page2/userModule/collection",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"我的收藏",enablePullDownRefresh:!1})},[e("pages_category_page2-userModule-collection",{slot:"page"})])}},meta:{name:"pages_category_page2-userModule-collection",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/userModule/collection",windowTop:0}},{path:"/pages_category_page2/userModule/footprintList",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"浏览足迹",enablePullDownRefresh:!1})},[e("pages_category_page2-userModule-footprintList",{slot:"page"})])}},meta:{name:"pages_category_page2-userModule-footprintList",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/userModule/footprintList",windowTop:0}},{path:"/pages_category_page2/userModule/questionList",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"我的问答",enablePullDownRefresh:!1})},[e("pages_category_page2-userModule-questionList",{slot:"page"})])}},meta:{name:"pages_category_page2-userModule-questionList",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/userModule/questionList",windowTop:0}},{path:"/pages_category_page2/userModule/personalDetails",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"个人信息"})},[e("pages_category_page2-userModule-personalDetails",{slot:"page"})])}},meta:{name:"pages_category_page2-userModule-personalDetails",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/userModule/personalDetails",windowTop:0}},{path:"/pages_category_page2/userModule/coupon",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"我的卡券"})},[e("pages_category_page2-userModule-coupon",{slot:"page"})])}},meta:{name:"pages_category_page2-userModule-coupon",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/userModule/coupon",windowTop:0}},{path:"/pages_category_page2/orderModule/afterSale",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"我的售后"})},[e("pages_category_page2-orderModule-afterSale",{slot:"page"})])}},meta:{name:"pages_category_page2-orderModule-afterSale",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/orderModule/afterSale",windowTop:0}},{path:"/pages_category_page2/orderModule/returnDetails",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"退货详情",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page2-orderModule-returnDetails",{slot:"page"})])}},meta:{name:"pages_category_page2-orderModule-returnDetails",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/orderModule/returnDetails",windowTop:0}},{path:"/pages_category_page2/orderModule/refundDetails",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"退款详情",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page2-orderModule-refundDetails",{slot:"page"})])}},meta:{name:"pages_category_page2-orderModule-refundDetails",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/orderModule/refundDetails",windowTop:0}},{path:"/pages_category_page2/userModule/login",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationStyle:"custom",navigationBarTitleText:"登录"})},[e("pages_category_page2-userModule-login",{slot:"page"})])}},meta:{name:"pages_category_page2-userModule-login",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/userModule/login",windowTop:0}},{path:"/pages_category_page2/userModule/protocol",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"《锦江公园》商城用户协议"})},[e("pages_category_page2-userModule-protocol",{slot:"page"})])}},meta:{name:"pages_category_page2-userModule-protocol",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/userModule/protocol",windowTop:0}},{path:"/pages_category_page2/userModule/register",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"注册"})},[e("pages_category_page2-userModule-register",{slot:"page"})])}},meta:{name:"pages_category_page2-userModule-register",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/userModule/register",windowTop:0}},{path:"/pages_category_page2/userModule/memberAccount",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"我的账户",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page2-userModule-memberAccount",{slot:"page"})])}},meta:{name:"pages_category_page2-userModule-memberAccount",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/userModule/memberAccount",windowTop:0}},{path:"/pages_category_page2/userModule/withdraw",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"提现"})},[e("pages_category_page2-userModule-withdraw",{slot:"page"})])}},meta:{name:"pages_category_page2-userModule-withdraw",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/userModule/withdraw",windowTop:0}},{path:"/pages_category_page2/userModule/messageCenter",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"消息中心"})},[e("pages_category_page2-userModule-messageCenter",{slot:"page"})])}},meta:{name:"pages_category_page2-userModule-messageCenter",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/userModule/messageCenter",windowTop:0}},{path:"/pages_category_page2/userModule/messageDetail",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"公告详情"})},[e("pages_category_page2-userModule-messageDetail",{slot:"page"})])}},meta:{name:"pages_category_page2-userModule-messageDetail",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/userModule/messageDetail",windowTop:0}},{path:"/pages_category_page2/userModule/bindPhone",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"绑定手机号",enablePullDownRefresh:!1})},[e("pages_category_page2-userModule-bindPhone",{slot:"page"})])}},meta:{name:"pages_category_page2-userModule-bindPhone",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/userModule/bindPhone",windowTop:0}},{path:"/pages_category_page2/userModule/mobilePhone",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"手机号授权",enablePullDownRefresh:!1})},[e("pages_category_page2-userModule-mobilePhone",{slot:"page"})])}},meta:{name:"pages_category_page2-userModule-mobilePhone",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/userModule/mobilePhone",windowTop:0}},{path:"/pages_category_page2/livePage/index",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"直播推荐",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white",enablePullDownRefresh:!0})},[e("pages_category_page2-livePage-index",{slot:"page"})])}},meta:{name:"pages_category_page2-livePage-index",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/livePage/index",windowTop:0}},{path:"/pages_category_page2/channelCoupon/index",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"",enablePullDownRefresh:!1})},[e("pages_category_page2-channelCoupon-index",{slot:"page"})])}},meta:{name:"pages_category_page2-channelCoupon-index",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/channelCoupon/index",windowTop:0}},{path:"/pages_category_page2/userModule/unsubscribe",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"账户注销",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page2-userModule-unsubscribe",{slot:"page"})])}},meta:{name:"pages_category_page2-userModule-unsubscribe",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/userModule/unsubscribe",windowTop:0}},{path:"/pages_category_page2/userModule/unsubscribeCode",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"注销账户手机认证"})},[e("pages_category_page2-userModule-unsubscribeCode",{slot:"page"})])}},meta:{name:"pages_category_page2-userModule-unsubscribeCode",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/userModule/unsubscribeCode",windowTop:0}},{path:"/choose-location",component:{render:function(e){return e("Page",{props:{navigationStyle:"custom"}},[e("system-choose-location",{slot:"page"})])}},meta:{name:"choose-location",pagePath:"/choose-location"}},{path:"/open-location",component:{render:function(e){return e("Page",{props:{navigationStyle:"custom"}},[e("system-open-location",{slot:"page"})])}},meta:{name:"open-location",pagePath:"/open-location"}}],e.UniApp&&new e.UniApp}).call(this,a("0ee4"))},"14ef":function(e,t,a){"use strict";a("6a54");var n=a("f5bd").default;Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0,a("d4b5");var o=n(a("2634")),r=n(a("2fdc")),i=n(a("39d8")),g=n(a("9b8e")),u=n(a("8f59")),p=a("cc42");g.default.use(u.default);var d=(0,i.default)({},"SET_SHOW_LOADING",(function(e,t){e.globalLoading.showLoading=t.flag,e.globalLoading.showInfo=t.info})),s={doPointer:function(e,t){return(0,r.default)((0,o.default)().mark((function e(){var a,n;return(0,o.default)().wrap((function(e){while(1)switch(e.prev=e.next){case 0:if(a={},uni.getStorageSync("storage_key")&&(a=uni.getStorageSync("storage_key")),"{}"!==JSON.stringify(a)){e.next=4;break}return e.abrupt("return");case 4:return e.next=6,(0,p.doPointRequest)(t);case 6:n=e.sent,console.log("埋点----------------------------------",n);case 8:case"end":return e.stop()}}),e)})))()}},c=new u.default.Store({state:{globalLoading:{showLoading:!1,showInfo:""}},getters:{loadingFlag:function(e){return e.globalLoading.showLoading},loadingInfo:function(e){return e.globalLoading.showInfo}},mutations:d,actions:s}),l=c;t.default=l},1867:function(e,t,a){var n=a("c86c"),o=a("2ec5"),r=a("aae8");t=n(!1);var i=o(r);t.push([e.i,'@charset "UTF-8";\r\n/**\r\n * 这里是uni-app内置的常用样式变量\r\n *\r\n * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量\r\n * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App\r\n *\r\n */\r\n/**\r\n * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能\r\n *\r\n * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件\r\n */\r\n/* 颜色变量 */\r\n/* 页面左右间距 */\r\n/* 行为相关颜色 */\r\n/* 文字基本颜色 */\r\n/* 背景颜色 */\r\n/* 边框颜色 */\r\n/* 尺寸变量 */\r\n/* 文字尺寸 */\r\n/*文字颜色*/\r\n/* 图片尺寸 */\r\n/* Border Radius */\r\n/* 水平间距 */\r\n/* 垂直间距 */\r\n/* 透明度 */\r\n/* 文章场景相关 */@-webkit-keyframes loading{0%{background:#e7e7e7}50%{background:#f8f8f8}100%{background:#e7e7e7}}@keyframes loading{0%{background:#e7e7e7}50%{background:#f8f8f8}100%{background:#e7e7e7}}.ske-loading .child-loading{-webkit-animation:loading 2s linear 0s infinite alternate;animation:loading 2s linear 0s infinite alternate}\r\n/*每个页面公共css */.u-relative,\r\n.u-rela{position:relative}.u-absolute,\r\n.u-abso{position:absolute}uni-image{display:inline-block}uni-view,\r\nuni-text{box-sizing:border-box}.u-font-xs{font-size:%?22?%}.u-font-sm{font-size:%?26?%}.u-font-md{font-size:%?28?%}.u-font-lg{font-size:%?30?%}.u-font-xl{font-size:%?34?%}.u-flex{display:flex;flex-direction:row;align-items:center}.u-flex-wrap{flex-wrap:wrap}.u-flex-nowrap{flex-wrap:nowrap}.u-col-center{align-items:center}.u-col-top{align-items:flex-start}.u-col-bottom{align-items:flex-end}.u-row-center{justify-content:center}.u-row-left{justify-content:flex-start}.u-row-right{justify-content:flex-end}.u-row-between{justify-content:space-between}.u-row-around{justify-content:space-around}.u-text-left{text-align:left}.u-text-center{text-align:center}.u-text-right{text-align:right}.u-flex-col{display:flex;flex-direction:column}.u-flex-0{flex:0}.u-flex-1{flex:1}.u-flex-2{flex:2}.u-flex-3{flex:3}.u-flex-4{flex:4}.u-flex-5{flex:5}.u-flex-6{flex:6}.u-flex-7{flex:7}.u-flex-8{flex:8}.u-flex-9{flex:9}.u-flex-10{flex:10}.u-flex-11{flex:11}.u-flex-12{flex:12}.u-font-9{font-size:9px}.u-font-10{font-size:10px}.u-font-11{font-size:11px}.u-font-12{font-size:12px}.u-font-13{font-size:13px}.u-font-14{font-size:14px}.u-font-15{font-size:15px}.u-font-16{font-size:16px}.u-font-17{font-size:17px}.u-font-18{font-size:18px}.u-font-19{font-size:19px}.u-font-20{font-size:%?20?%}.u-font-21{font-size:%?21?%}.u-font-22{font-size:%?22?%}.u-font-23{font-size:%?23?%}.u-font-24{font-size:%?24?%}.u-font-25{font-size:%?25?%}.u-font-26{font-size:%?26?%}.u-font-27{font-size:%?27?%}.u-font-28{font-size:%?28?%}.u-font-29{font-size:%?29?%}.u-font-30{font-size:%?30?%}.u-font-31{font-size:%?31?%}.u-font-32{font-size:%?32?%}.u-font-33{font-size:%?33?%}.u-font-34{font-size:%?34?%}.u-font-35{font-size:%?35?%}.u-font-36{font-size:%?36?%}.u-font-37{font-size:%?37?%}.u-font-38{font-size:%?38?%}.u-font-39{font-size:%?39?%}.u-font-40{font-size:%?40?%}.u-margin-0, .u-m-0{margin:%?0?%!important}.u-padding-0, .u-p-0{padding:%?0?%!important}.u-m-l-0{margin-left:%?0?%!important}.u-p-l-0{padding-left:%?0?%!important}.u-margin-left-0{margin-left:%?0?%!important}.u-padding-left-0{padding-left:%?0?%!important}.u-m-t-0{margin-top:%?0?%!important}.u-p-t-0{padding-top:%?0?%!important}.u-margin-top-0{margin-top:%?0?%!important}.u-padding-top-0{padding-top:%?0?%!important}.u-m-r-0{margin-right:%?0?%!important}.u-p-r-0{padding-right:%?0?%!important}.u-margin-right-0{margin-right:%?0?%!important}.u-padding-right-0{padding-right:%?0?%!important}.u-m-b-0{margin-bottom:%?0?%!important}.u-p-b-0{padding-bottom:%?0?%!important}.u-margin-bottom-0{margin-bottom:%?0?%!important}.u-padding-bottom-0{padding-bottom:%?0?%!important}.u-margin-2, .u-m-2{margin:%?2?%!important}.u-padding-2, .u-p-2{padding:%?2?%!important}.u-m-l-2{margin-left:%?2?%!important}.u-p-l-2{padding-left:%?2?%!important}.u-margin-left-2{margin-left:%?2?%!important}.u-padding-left-2{padding-left:%?2?%!important}.u-m-t-2{margin-top:%?2?%!important}.u-p-t-2{padding-top:%?2?%!important}.u-margin-top-2{margin-top:%?2?%!important}.u-padding-top-2{padding-top:%?2?%!important}.u-m-r-2{margin-right:%?2?%!important}.u-p-r-2{padding-right:%?2?%!important}.u-margin-right-2{margin-right:%?2?%!important}.u-padding-right-2{padding-right:%?2?%!important}.u-m-b-2{margin-bottom:%?2?%!important}.u-p-b-2{padding-bottom:%?2?%!important}.u-margin-bottom-2{margin-bottom:%?2?%!important}.u-padding-bottom-2{padding-bottom:%?2?%!important}.u-margin-4, .u-m-4{margin:%?4?%!important}.u-padding-4, .u-p-4{padding:%?4?%!important}.u-m-l-4{margin-left:%?4?%!important}.u-p-l-4{padding-left:%?4?%!important}.u-margin-left-4{margin-left:%?4?%!important}.u-padding-left-4{padding-left:%?4?%!important}.u-m-t-4{margin-top:%?4?%!important}.u-p-t-4{padding-top:%?4?%!important}.u-margin-top-4{margin-top:%?4?%!important}.u-padding-top-4{padding-top:%?4?%!important}.u-m-r-4{margin-right:%?4?%!important}.u-p-r-4{padding-right:%?4?%!important}.u-margin-right-4{margin-right:%?4?%!important}.u-padding-right-4{padding-right:%?4?%!important}.u-m-b-4{margin-bottom:%?4?%!important}.u-p-b-4{padding-bottom:%?4?%!important}.u-margin-bottom-4{margin-bottom:%?4?%!important}.u-padding-bottom-4{padding-bottom:%?4?%!important}.u-margin-5, .u-m-5{margin:%?5?%!important}.u-padding-5, .u-p-5{padding:%?5?%!important}.u-m-l-5{margin-left:%?5?%!important}.u-p-l-5{padding-left:%?5?%!important}.u-margin-left-5{margin-left:%?5?%!important}.u-padding-left-5{padding-left:%?5?%!important}.u-m-t-5{margin-top:%?5?%!important}.u-p-t-5{padding-top:%?5?%!important}.u-margin-top-5{margin-top:%?5?%!important}.u-padding-top-5{padding-top:%?5?%!important}.u-m-r-5{margin-right:%?5?%!important}.u-p-r-5{padding-right:%?5?%!important}.u-margin-right-5{margin-right:%?5?%!important}.u-padding-right-5{padding-right:%?5?%!important}.u-m-b-5{margin-bottom:%?5?%!important}.u-p-b-5{padding-bottom:%?5?%!important}.u-margin-bottom-5{margin-bottom:%?5?%!important}.u-padding-bottom-5{padding-bottom:%?5?%!important}.u-margin-6, .u-m-6{margin:%?6?%!important}.u-padding-6, .u-p-6{padding:%?6?%!important}.u-m-l-6{margin-left:%?6?%!important}.u-p-l-6{padding-left:%?6?%!important}.u-margin-left-6{margin-left:%?6?%!important}.u-padding-left-6{padding-left:%?6?%!important}.u-m-t-6{margin-top:%?6?%!important}.u-p-t-6{padding-top:%?6?%!important}.u-margin-top-6{margin-top:%?6?%!important}.u-padding-top-6{padding-top:%?6?%!important}.u-m-r-6{margin-right:%?6?%!important}.u-p-r-6{padding-right:%?6?%!important}.u-margin-right-6{margin-right:%?6?%!important}.u-padding-right-6{padding-right:%?6?%!important}.u-m-b-6{margin-bottom:%?6?%!important}.u-p-b-6{padding-bottom:%?6?%!important}.u-margin-bottom-6{margin-bottom:%?6?%!important}.u-padding-bottom-6{padding-bottom:%?6?%!important}.u-margin-8, .u-m-8{margin:%?8?%!important}.u-padding-8, .u-p-8{padding:%?8?%!important}.u-m-l-8{margin-left:%?8?%!important}.u-p-l-8{padding-left:%?8?%!important}.u-margin-left-8{margin-left:%?8?%!important}.u-padding-left-8{padding-left:%?8?%!important}.u-m-t-8{margin-top:%?8?%!important}.u-p-t-8{padding-top:%?8?%!important}.u-margin-top-8{margin-top:%?8?%!important}.u-padding-top-8{padding-top:%?8?%!important}.u-m-r-8{margin-right:%?8?%!important}.u-p-r-8{padding-right:%?8?%!important}.u-margin-right-8{margin-right:%?8?%!important}.u-padding-right-8{padding-right:%?8?%!important}.u-m-b-8{margin-bottom:%?8?%!important}.u-p-b-8{padding-bottom:%?8?%!important}.u-margin-bottom-8{margin-bottom:%?8?%!important}.u-padding-bottom-8{padding-bottom:%?8?%!important}.u-margin-10, .u-m-10{margin:%?10?%!important}.u-padding-10, .u-p-10{padding:%?10?%!important}.u-m-l-10{margin-left:%?10?%!important}.u-p-l-10{padding-left:%?10?%!important}.u-margin-left-10{margin-left:%?10?%!important}.u-padding-left-10{padding-left:%?10?%!important}.u-m-t-10{margin-top:%?10?%!important}.u-p-t-10{padding-top:%?10?%!important}.u-margin-top-10{margin-top:%?10?%!important}.u-padding-top-10{padding-top:%?10?%!important}.u-m-r-10{margin-right:%?10?%!important}.u-p-r-10{padding-right:%?10?%!important}.u-margin-right-10{margin-right:%?10?%!important}.u-padding-right-10{padding-right:%?10?%!important}.u-m-b-10{margin-bottom:%?10?%!important}.u-p-b-10{padding-bottom:%?10?%!important}.u-margin-bottom-10{margin-bottom:%?10?%!important}.u-padding-bottom-10{padding-bottom:%?10?%!important}.u-margin-12, .u-m-12{margin:%?12?%!important}.u-padding-12, .u-p-12{padding:%?12?%!important}.u-m-l-12{margin-left:%?12?%!important}.u-p-l-12{padding-left:%?12?%!important}.u-margin-left-12{margin-left:%?12?%!important}.u-padding-left-12{padding-left:%?12?%!important}.u-m-t-12{margin-top:%?12?%!important}.u-p-t-12{padding-top:%?12?%!important}.u-margin-top-12{margin-top:%?12?%!important}.u-padding-top-12{padding-top:%?12?%!important}.u-m-r-12{margin-right:%?12?%!important}.u-p-r-12{padding-right:%?12?%!important}.u-margin-right-12{margin-right:%?12?%!important}.u-padding-right-12{padding-right:%?12?%!important}.u-m-b-12{margin-bottom:%?12?%!important}.u-p-b-12{padding-bottom:%?12?%!important}.u-margin-bottom-12{margin-bottom:%?12?%!important}.u-padding-bottom-12{padding-bottom:%?12?%!important}.u-margin-14, .u-m-14{margin:%?14?%!important}.u-padding-14, .u-p-14{padding:%?14?%!important}.u-m-l-14{margin-left:%?14?%!important}.u-p-l-14{padding-left:%?14?%!important}.u-margin-left-14{margin-left:%?14?%!important}.u-padding-left-14{padding-left:%?14?%!important}.u-m-t-14{margin-top:%?14?%!important}.u-p-t-14{padding-top:%?14?%!important}.u-margin-top-14{margin-top:%?14?%!important}.u-padding-top-14{padding-top:%?14?%!important}.u-m-r-14{margin-right:%?14?%!important}.u-p-r-14{padding-right:%?14?%!important}.u-margin-right-14{margin-right:%?14?%!important}.u-padding-right-14{padding-right:%?14?%!important}.u-m-b-14{margin-bottom:%?14?%!important}.u-p-b-14{padding-bottom:%?14?%!important}.u-margin-bottom-14{margin-bottom:%?14?%!important}.u-padding-bottom-14{padding-bottom:%?14?%!important}.u-margin-15, .u-m-15{margin:%?15?%!important}.u-padding-15, .u-p-15{padding:%?15?%!important}.u-m-l-15{margin-left:%?15?%!important}.u-p-l-15{padding-left:%?15?%!important}.u-margin-left-15{margin-left:%?15?%!important}.u-padding-left-15{padding-left:%?15?%!important}.u-m-t-15{margin-top:%?15?%!important}.u-p-t-15{padding-top:%?15?%!important}.u-margin-top-15{margin-top:%?15?%!important}.u-padding-top-15{padding-top:%?15?%!important}.u-m-r-15{margin-right:%?15?%!important}.u-p-r-15{padding-right:%?15?%!important}.u-margin-right-15{margin-right:%?15?%!important}.u-padding-right-15{padding-right:%?15?%!important}.u-m-b-15{margin-bottom:%?15?%!important}.u-p-b-15{padding-bottom:%?15?%!important}.u-margin-bottom-15{margin-bottom:%?15?%!important}.u-padding-bottom-15{padding-bottom:%?15?%!important}.u-margin-16, .u-m-16{margin:%?16?%!important}.u-padding-16, .u-p-16{padding:%?16?%!important}.u-m-l-16{margin-left:%?16?%!important}.u-p-l-16{padding-left:%?16?%!important}.u-margin-left-16{margin-left:%?16?%!important}.u-padding-left-16{padding-left:%?16?%!important}.u-m-t-16{margin-top:%?16?%!important}.u-p-t-16{padding-top:%?16?%!important}.u-margin-top-16{margin-top:%?16?%!important}.u-padding-top-16{padding-top:%?16?%!important}.u-m-r-16{margin-right:%?16?%!important}.u-p-r-16{padding-right:%?16?%!important}.u-margin-right-16{margin-right:%?16?%!important}.u-padding-right-16{padding-right:%?16?%!important}.u-m-b-16{margin-bottom:%?16?%!important}.u-p-b-16{padding-bottom:%?16?%!important}.u-margin-bottom-16{margin-bottom:%?16?%!important}.u-padding-bottom-16{padding-bottom:%?16?%!important}.u-margin-18, .u-m-18{margin:%?18?%!important}.u-padding-18, .u-p-18{padding:%?18?%!important}.u-m-l-18{margin-left:%?18?%!important}.u-p-l-18{padding-left:%?18?%!important}.u-margin-left-18{margin-left:%?18?%!important}.u-padding-left-18{padding-left:%?18?%!important}.u-m-t-18{margin-top:%?18?%!important}.u-p-t-18{padding-top:%?18?%!important}.u-margin-top-18{margin-top:%?18?%!important}.u-padding-top-18{padding-top:%?18?%!important}.u-m-r-18{margin-right:%?18?%!important}.u-p-r-18{padding-right:%?18?%!important}.u-margin-right-18{margin-right:%?18?%!important}.u-padding-right-18{padding-right:%?18?%!important}.u-m-b-18{margin-bottom:%?18?%!important}.u-p-b-18{padding-bottom:%?18?%!important}.u-margin-bottom-18{margin-bottom:%?18?%!important}.u-padding-bottom-18{padding-bottom:%?18?%!important}.u-margin-20, .u-m-20{margin:%?20?%!important}.u-padding-20, .u-p-20{padding:%?20?%!important}.u-m-l-20{margin-left:%?20?%!important}.u-p-l-20{padding-left:%?20?%!important}.u-margin-left-20{margin-left:%?20?%!important}.u-padding-left-20{padding-left:%?20?%!important}.u-m-t-20{margin-top:%?20?%!important}.u-p-t-20{padding-top:%?20?%!important}.u-margin-top-20{margin-top:%?20?%!important}.u-padding-top-20{padding-top:%?20?%!important}.u-m-r-20{margin-right:%?20?%!important}.u-p-r-20{padding-right:%?20?%!important}.u-margin-right-20{margin-right:%?20?%!important}.u-padding-right-20{padding-right:%?20?%!important}.u-m-b-20{margin-bottom:%?20?%!important}.u-p-b-20{padding-bottom:%?20?%!important}.u-margin-bottom-20{margin-bottom:%?20?%!important}.u-padding-bottom-20{padding-bottom:%?20?%!important}.u-margin-22, .u-m-22{margin:%?22?%!important}.u-padding-22, .u-p-22{padding:%?22?%!important}.u-m-l-22{margin-left:%?22?%!important}.u-p-l-22{padding-left:%?22?%!important}.u-margin-left-22{margin-left:%?22?%!important}.u-padding-left-22{padding-left:%?22?%!important}.u-m-t-22{margin-top:%?22?%!important}.u-p-t-22{padding-top:%?22?%!important}.u-margin-top-22{margin-top:%?22?%!important}.u-padding-top-22{padding-top:%?22?%!important}.u-m-r-22{margin-right:%?22?%!important}.u-p-r-22{padding-right:%?22?%!important}.u-margin-right-22{margin-right:%?22?%!important}.u-padding-right-22{padding-right:%?22?%!important}.u-m-b-22{margin-bottom:%?22?%!important}.u-p-b-22{padding-bottom:%?22?%!important}.u-margin-bottom-22{margin-bottom:%?22?%!important}.u-padding-bottom-22{padding-bottom:%?22?%!important}.u-margin-24, .u-m-24{margin:%?24?%!important}.u-padding-24, .u-p-24{padding:%?24?%!important}.u-m-l-24{margin-left:%?24?%!important}.u-p-l-24{padding-left:%?24?%!important}.u-margin-left-24{margin-left:%?24?%!important}.u-padding-left-24{padding-left:%?24?%!important}.u-m-t-24{margin-top:%?24?%!important}.u-p-t-24{padding-top:%?24?%!important}.u-margin-top-24{margin-top:%?24?%!important}.u-padding-top-24{padding-top:%?24?%!important}.u-m-r-24{margin-right:%?24?%!important}.u-p-r-24{padding-right:%?24?%!important}.u-margin-right-24{margin-right:%?24?%!important}.u-padding-right-24{padding-right:%?24?%!important}.u-m-b-24{margin-bottom:%?24?%!important}.u-p-b-24{padding-bottom:%?24?%!important}.u-margin-bottom-24{margin-bottom:%?24?%!important}.u-padding-bottom-24{padding-bottom:%?24?%!important}.u-margin-25, .u-m-25{margin:%?25?%!important}.u-padding-25, .u-p-25{padding:%?25?%!important}.u-m-l-25{margin-left:%?25?%!important}.u-p-l-25{padding-left:%?25?%!important}.u-margin-left-25{margin-left:%?25?%!important}.u-padding-left-25{padding-left:%?25?%!important}.u-m-t-25{margin-top:%?25?%!important}.u-p-t-25{padding-top:%?25?%!important}.u-margin-top-25{margin-top:%?25?%!important}.u-padding-top-25{padding-top:%?25?%!important}.u-m-r-25{margin-right:%?25?%!important}.u-p-r-25{padding-right:%?25?%!important}.u-margin-right-25{margin-right:%?25?%!important}.u-padding-right-25{padding-right:%?25?%!important}.u-m-b-25{margin-bottom:%?25?%!important}.u-p-b-25{padding-bottom:%?25?%!important}.u-margin-bottom-25{margin-bottom:%?25?%!important}.u-padding-bottom-25{padding-bottom:%?25?%!important}.u-margin-26, .u-m-26{margin:%?26?%!important}.u-padding-26, .u-p-26{padding:%?26?%!important}.u-m-l-26{margin-left:%?26?%!important}.u-p-l-26{padding-left:%?26?%!important}.u-margin-left-26{margin-left:%?26?%!important}.u-padding-left-26{padding-left:%?26?%!important}.u-m-t-26{margin-top:%?26?%!important}.u-p-t-26{padding-top:%?26?%!important}.u-margin-top-26{margin-top:%?26?%!important}.u-padding-top-26{padding-top:%?26?%!important}.u-m-r-26{margin-right:%?26?%!important}.u-p-r-26{padding-right:%?26?%!important}.u-margin-right-26{margin-right:%?26?%!important}.u-padding-right-26{padding-right:%?26?%!important}.u-m-b-26{margin-bottom:%?26?%!important}.u-p-b-26{padding-bottom:%?26?%!important}.u-margin-bottom-26{margin-bottom:%?26?%!important}.u-padding-bottom-26{padding-bottom:%?26?%!important}.u-margin-28, .u-m-28{margin:%?28?%!important}.u-padding-28, .u-p-28{padding:%?28?%!important}.u-m-l-28{margin-left:%?28?%!important}.u-p-l-28{padding-left:%?28?%!important}.u-margin-left-28{margin-left:%?28?%!important}.u-padding-left-28{padding-left:%?28?%!important}.u-m-t-28{margin-top:%?28?%!important}.u-p-t-28{padding-top:%?28?%!important}.u-margin-top-28{margin-top:%?28?%!important}.u-padding-top-28{padding-top:%?28?%!important}.u-m-r-28{margin-right:%?28?%!important}.u-p-r-28{padding-right:%?28?%!important}.u-margin-right-28{margin-right:%?28?%!important}.u-padding-right-28{padding-right:%?28?%!important}.u-m-b-28{margin-bottom:%?28?%!important}.u-p-b-28{padding-bottom:%?28?%!important}.u-margin-bottom-28{margin-bottom:%?28?%!important}.u-padding-bottom-28{padding-bottom:%?28?%!important}.u-margin-30, .u-m-30{margin:%?30?%!important}.u-padding-30, .u-p-30{padding:%?30?%!important}.u-m-l-30{margin-left:%?30?%!important}.u-p-l-30{padding-left:%?30?%!important}.u-margin-left-30{margin-left:%?30?%!important}.u-padding-left-30{padding-left:%?30?%!important}.u-m-t-30{margin-top:%?30?%!important}.u-p-t-30{padding-top:%?30?%!important}.u-margin-top-30{margin-top:%?30?%!important}.u-padding-top-30{padding-top:%?30?%!important}.u-m-r-30{margin-right:%?30?%!important}.u-p-r-30{padding-right:%?30?%!important}.u-margin-right-30{margin-right:%?30?%!important}.u-padding-right-30{padding-right:%?30?%!important}.u-m-b-30{margin-bottom:%?30?%!important}.u-p-b-30{padding-bottom:%?30?%!important}.u-margin-bottom-30{margin-bottom:%?30?%!important}.u-padding-bottom-30{padding-bottom:%?30?%!important}.u-margin-32, .u-m-32{margin:%?32?%!important}.u-padding-32, .u-p-32{padding:%?32?%!important}.u-m-l-32{margin-left:%?32?%!important}.u-p-l-32{padding-left:%?32?%!important}.u-margin-left-32{margin-left:%?32?%!important}.u-padding-left-32{padding-left:%?32?%!important}.u-m-t-32{margin-top:%?32?%!important}.u-p-t-32{padding-top:%?32?%!important}.u-margin-top-32{margin-top:%?32?%!important}.u-padding-top-32{padding-top:%?32?%!important}.u-m-r-32{margin-right:%?32?%!important}.u-p-r-32{padding-right:%?32?%!important}.u-margin-right-32{margin-right:%?32?%!important}.u-padding-right-32{padding-right:%?32?%!important}.u-m-b-32{margin-bottom:%?32?%!important}.u-p-b-32{padding-bottom:%?32?%!important}.u-margin-bottom-32{margin-bottom:%?32?%!important}.u-padding-bottom-32{padding-bottom:%?32?%!important}.u-margin-34, .u-m-34{margin:%?34?%!important}.u-padding-34, .u-p-34{padding:%?34?%!important}.u-m-l-34{margin-left:%?34?%!important}.u-p-l-34{padding-left:%?34?%!important}.u-margin-left-34{margin-left:%?34?%!important}.u-padding-left-34{padding-left:%?34?%!important}.u-m-t-34{margin-top:%?34?%!important}.u-p-t-34{padding-top:%?34?%!important}.u-margin-top-34{margin-top:%?34?%!important}.u-padding-top-34{padding-top:%?34?%!important}.u-m-r-34{margin-right:%?34?%!important}.u-p-r-34{padding-right:%?34?%!important}.u-margin-right-34{margin-right:%?34?%!important}.u-padding-right-34{padding-right:%?34?%!important}.u-m-b-34{margin-bottom:%?34?%!important}.u-p-b-34{padding-bottom:%?34?%!important}.u-margin-bottom-34{margin-bottom:%?34?%!important}.u-padding-bottom-34{padding-bottom:%?34?%!important}.u-margin-35, .u-m-35{margin:%?35?%!important}.u-padding-35, .u-p-35{padding:%?35?%!important}.u-m-l-35{margin-left:%?35?%!important}.u-p-l-35{padding-left:%?35?%!important}.u-margin-left-35{margin-left:%?35?%!important}.u-padding-left-35{padding-left:%?35?%!important}.u-m-t-35{margin-top:%?35?%!important}.u-p-t-35{padding-top:%?35?%!important}.u-margin-top-35{margin-top:%?35?%!important}.u-padding-top-35{padding-top:%?35?%!important}.u-m-r-35{margin-right:%?35?%!important}.u-p-r-35{padding-right:%?35?%!important}.u-margin-right-35{margin-right:%?35?%!important}.u-padding-right-35{padding-right:%?35?%!important}.u-m-b-35{margin-bottom:%?35?%!important}.u-p-b-35{padding-bottom:%?35?%!important}.u-margin-bottom-35{margin-bottom:%?35?%!important}.u-padding-bottom-35{padding-bottom:%?35?%!important}.u-margin-36, .u-m-36{margin:%?36?%!important}.u-padding-36, .u-p-36{padding:%?36?%!important}.u-m-l-36{margin-left:%?36?%!important}.u-p-l-36{padding-left:%?36?%!important}.u-margin-left-36{margin-left:%?36?%!important}.u-padding-left-36{padding-left:%?36?%!important}.u-m-t-36{margin-top:%?36?%!important}.u-p-t-36{padding-top:%?36?%!important}.u-margin-top-36{margin-top:%?36?%!important}.u-padding-top-36{padding-top:%?36?%!important}.u-m-r-36{margin-right:%?36?%!important}.u-p-r-36{padding-right:%?36?%!important}.u-margin-right-36{margin-right:%?36?%!important}.u-padding-right-36{padding-right:%?36?%!important}.u-m-b-36{margin-bottom:%?36?%!important}.u-p-b-36{padding-bottom:%?36?%!important}.u-margin-bottom-36{margin-bottom:%?36?%!important}.u-padding-bottom-36{padding-bottom:%?36?%!important}.u-margin-38, .u-m-38{margin:%?38?%!important}.u-padding-38, .u-p-38{padding:%?38?%!important}.u-m-l-38{margin-left:%?38?%!important}.u-p-l-38{padding-left:%?38?%!important}.u-margin-left-38{margin-left:%?38?%!important}.u-padding-left-38{padding-left:%?38?%!important}.u-m-t-38{margin-top:%?38?%!important}.u-p-t-38{padding-top:%?38?%!important}.u-margin-top-38{margin-top:%?38?%!important}.u-padding-top-38{padding-top:%?38?%!important}.u-m-r-38{margin-right:%?38?%!important}.u-p-r-38{padding-right:%?38?%!important}.u-margin-right-38{margin-right:%?38?%!important}.u-padding-right-38{padding-right:%?38?%!important}.u-m-b-38{margin-bottom:%?38?%!important}.u-p-b-38{padding-bottom:%?38?%!important}.u-margin-bottom-38{margin-bottom:%?38?%!important}.u-padding-bottom-38{padding-bottom:%?38?%!important}.u-margin-40, .u-m-40{margin:%?40?%!important}.u-padding-40, .u-p-40{padding:%?40?%!important}.u-m-l-40{margin-left:%?40?%!important}.u-p-l-40{padding-left:%?40?%!important}.u-margin-left-40{margin-left:%?40?%!important}.u-padding-left-40{padding-left:%?40?%!important}.u-m-t-40{margin-top:%?40?%!important}.u-p-t-40{padding-top:%?40?%!important}.u-margin-top-40{margin-top:%?40?%!important}.u-padding-top-40{padding-top:%?40?%!important}.u-m-r-40{margin-right:%?40?%!important}.u-p-r-40{padding-right:%?40?%!important}.u-margin-right-40{margin-right:%?40?%!important}.u-padding-right-40{padding-right:%?40?%!important}.u-m-b-40{margin-bottom:%?40?%!important}.u-p-b-40{padding-bottom:%?40?%!important}.u-margin-bottom-40{margin-bottom:%?40?%!important}.u-padding-bottom-40{padding-bottom:%?40?%!important}.u-margin-42, .u-m-42{margin:%?42?%!important}.u-padding-42, .u-p-42{padding:%?42?%!important}.u-m-l-42{margin-left:%?42?%!important}.u-p-l-42{padding-left:%?42?%!important}.u-margin-left-42{margin-left:%?42?%!important}.u-padding-left-42{padding-left:%?42?%!important}.u-m-t-42{margin-top:%?42?%!important}.u-p-t-42{padding-top:%?42?%!important}.u-margin-top-42{margin-top:%?42?%!important}.u-padding-top-42{padding-top:%?42?%!important}.u-m-r-42{margin-right:%?42?%!important}.u-p-r-42{padding-right:%?42?%!important}.u-margin-right-42{margin-right:%?42?%!important}.u-padding-right-42{padding-right:%?42?%!important}.u-m-b-42{margin-bottom:%?42?%!important}.u-p-b-42{padding-bottom:%?42?%!important}.u-margin-bottom-42{margin-bottom:%?42?%!important}.u-padding-bottom-42{padding-bottom:%?42?%!important}.u-margin-44, .u-m-44{margin:%?44?%!important}.u-padding-44, .u-p-44{padding:%?44?%!important}.u-m-l-44{margin-left:%?44?%!important}.u-p-l-44{padding-left:%?44?%!important}.u-margin-left-44{margin-left:%?44?%!important}.u-padding-left-44{padding-left:%?44?%!important}.u-m-t-44{margin-top:%?44?%!important}.u-p-t-44{padding-top:%?44?%!important}.u-margin-top-44{margin-top:%?44?%!important}.u-padding-top-44{padding-top:%?44?%!important}.u-m-r-44{margin-right:%?44?%!important}.u-p-r-44{padding-right:%?44?%!important}.u-margin-right-44{margin-right:%?44?%!important}.u-padding-right-44{padding-right:%?44?%!important}.u-m-b-44{margin-bottom:%?44?%!important}.u-p-b-44{padding-bottom:%?44?%!important}.u-margin-bottom-44{margin-bottom:%?44?%!important}.u-padding-bottom-44{padding-bottom:%?44?%!important}.u-margin-45, .u-m-45{margin:%?45?%!important}.u-padding-45, .u-p-45{padding:%?45?%!important}.u-m-l-45{margin-left:%?45?%!important}.u-p-l-45{padding-left:%?45?%!important}.u-margin-left-45{margin-left:%?45?%!important}.u-padding-left-45{padding-left:%?45?%!important}.u-m-t-45{margin-top:%?45?%!important}.u-p-t-45{padding-top:%?45?%!important}.u-margin-top-45{margin-top:%?45?%!important}.u-padding-top-45{padding-top:%?45?%!important}.u-m-r-45{margin-right:%?45?%!important}.u-p-r-45{padding-right:%?45?%!important}.u-margin-right-45{margin-right:%?45?%!important}.u-padding-right-45{padding-right:%?45?%!important}.u-m-b-45{margin-bottom:%?45?%!important}.u-p-b-45{padding-bottom:%?45?%!important}.u-margin-bottom-45{margin-bottom:%?45?%!important}.u-padding-bottom-45{padding-bottom:%?45?%!important}.u-margin-46, .u-m-46{margin:%?46?%!important}.u-padding-46, .u-p-46{padding:%?46?%!important}.u-m-l-46{margin-left:%?46?%!important}.u-p-l-46{padding-left:%?46?%!important}.u-margin-left-46{margin-left:%?46?%!important}.u-padding-left-46{padding-left:%?46?%!important}.u-m-t-46{margin-top:%?46?%!important}.u-p-t-46{padding-top:%?46?%!important}.u-margin-top-46{margin-top:%?46?%!important}.u-padding-top-46{padding-top:%?46?%!important}.u-m-r-46{margin-right:%?46?%!important}.u-p-r-46{padding-right:%?46?%!important}.u-margin-right-46{margin-right:%?46?%!important}.u-padding-right-46{padding-right:%?46?%!important}.u-m-b-46{margin-bottom:%?46?%!important}.u-p-b-46{padding-bottom:%?46?%!important}.u-margin-bottom-46{margin-bottom:%?46?%!important}.u-padding-bottom-46{padding-bottom:%?46?%!important}.u-margin-48, .u-m-48{margin:%?48?%!important}.u-padding-48, .u-p-48{padding:%?48?%!important}.u-m-l-48{margin-left:%?48?%!important}.u-p-l-48{padding-left:%?48?%!important}.u-margin-left-48{margin-left:%?48?%!important}.u-padding-left-48{padding-left:%?48?%!important}.u-m-t-48{margin-top:%?48?%!important}.u-p-t-48{padding-top:%?48?%!important}.u-margin-top-48{margin-top:%?48?%!important}.u-padding-top-48{padding-top:%?48?%!important}.u-m-r-48{margin-right:%?48?%!important}.u-p-r-48{padding-right:%?48?%!important}.u-margin-right-48{margin-right:%?48?%!important}.u-padding-right-48{padding-right:%?48?%!important}.u-m-b-48{margin-bottom:%?48?%!important}.u-p-b-48{padding-bottom:%?48?%!important}.u-margin-bottom-48{margin-bottom:%?48?%!important}.u-padding-bottom-48{padding-bottom:%?48?%!important}.u-margin-50, .u-m-50{margin:%?50?%!important}.u-padding-50, .u-p-50{padding:%?50?%!important}.u-m-l-50{margin-left:%?50?%!important}.u-p-l-50{padding-left:%?50?%!important}.u-margin-left-50{margin-left:%?50?%!important}.u-padding-left-50{padding-left:%?50?%!important}.u-m-t-50{margin-top:%?50?%!important}.u-p-t-50{padding-top:%?50?%!important}.u-margin-top-50{margin-top:%?50?%!important}.u-padding-top-50{padding-top:%?50?%!important}.u-m-r-50{margin-right:%?50?%!important}.u-p-r-50{padding-right:%?50?%!important}.u-margin-right-50{margin-right:%?50?%!important}.u-padding-right-50{padding-right:%?50?%!important}.u-m-b-50{margin-bottom:%?50?%!important}.u-p-b-50{padding-bottom:%?50?%!important}.u-margin-bottom-50{margin-bottom:%?50?%!important}.u-padding-bottom-50{padding-bottom:%?50?%!important}.u-margin-52, .u-m-52{margin:%?52?%!important}.u-padding-52, .u-p-52{padding:%?52?%!important}.u-m-l-52{margin-left:%?52?%!important}.u-p-l-52{padding-left:%?52?%!important}.u-margin-left-52{margin-left:%?52?%!important}.u-padding-left-52{padding-left:%?52?%!important}.u-m-t-52{margin-top:%?52?%!important}.u-p-t-52{padding-top:%?52?%!important}.u-margin-top-52{margin-top:%?52?%!important}.u-padding-top-52{padding-top:%?52?%!important}.u-m-r-52{margin-right:%?52?%!important}.u-p-r-52{padding-right:%?52?%!important}.u-margin-right-52{margin-right:%?52?%!important}.u-padding-right-52{padding-right:%?52?%!important}.u-m-b-52{margin-bottom:%?52?%!important}.u-p-b-52{padding-bottom:%?52?%!important}.u-margin-bottom-52{margin-bottom:%?52?%!important}.u-padding-bottom-52{padding-bottom:%?52?%!important}.u-margin-54, .u-m-54{margin:%?54?%!important}.u-padding-54, .u-p-54{padding:%?54?%!important}.u-m-l-54{margin-left:%?54?%!important}.u-p-l-54{padding-left:%?54?%!important}.u-margin-left-54{margin-left:%?54?%!important}.u-padding-left-54{padding-left:%?54?%!important}.u-m-t-54{margin-top:%?54?%!important}.u-p-t-54{padding-top:%?54?%!important}.u-margin-top-54{margin-top:%?54?%!important}.u-padding-top-54{padding-top:%?54?%!important}.u-m-r-54{margin-right:%?54?%!important}.u-p-r-54{padding-right:%?54?%!important}.u-margin-right-54{margin-right:%?54?%!important}.u-padding-right-54{padding-right:%?54?%!important}.u-m-b-54{margin-bottom:%?54?%!important}.u-p-b-54{padding-bottom:%?54?%!important}.u-margin-bottom-54{margin-bottom:%?54?%!important}.u-padding-bottom-54{padding-bottom:%?54?%!important}.u-margin-55, .u-m-55{margin:%?55?%!important}.u-padding-55, .u-p-55{padding:%?55?%!important}.u-m-l-55{margin-left:%?55?%!important}.u-p-l-55{padding-left:%?55?%!important}.u-margin-left-55{margin-left:%?55?%!important}.u-padding-left-55{padding-left:%?55?%!important}.u-m-t-55{margin-top:%?55?%!important}.u-p-t-55{padding-top:%?55?%!important}.u-margin-top-55{margin-top:%?55?%!important}.u-padding-top-55{padding-top:%?55?%!important}.u-m-r-55{margin-right:%?55?%!important}.u-p-r-55{padding-right:%?55?%!important}.u-margin-right-55{margin-right:%?55?%!important}.u-padding-right-55{padding-right:%?55?%!important}.u-m-b-55{margin-bottom:%?55?%!important}.u-p-b-55{padding-bottom:%?55?%!important}.u-margin-bottom-55{margin-bottom:%?55?%!important}.u-padding-bottom-55{padding-bottom:%?55?%!important}.u-margin-56, .u-m-56{margin:%?56?%!important}.u-padding-56, .u-p-56{padding:%?56?%!important}.u-m-l-56{margin-left:%?56?%!important}.u-p-l-56{padding-left:%?56?%!important}.u-margin-left-56{margin-left:%?56?%!important}.u-padding-left-56{padding-left:%?56?%!important}.u-m-t-56{margin-top:%?56?%!important}.u-p-t-56{padding-top:%?56?%!important}.u-margin-top-56{margin-top:%?56?%!important}.u-padding-top-56{padding-top:%?56?%!important}.u-m-r-56{margin-right:%?56?%!important}.u-p-r-56{padding-right:%?56?%!important}.u-margin-right-56{margin-right:%?56?%!important}.u-padding-right-56{padding-right:%?56?%!important}.u-m-b-56{margin-bottom:%?56?%!important}.u-p-b-56{padding-bottom:%?56?%!important}.u-margin-bottom-56{margin-bottom:%?56?%!important}.u-padding-bottom-56{padding-bottom:%?56?%!important}.u-margin-58, .u-m-58{margin:%?58?%!important}.u-padding-58, .u-p-58{padding:%?58?%!important}.u-m-l-58{margin-left:%?58?%!important}.u-p-l-58{padding-left:%?58?%!important}.u-margin-left-58{margin-left:%?58?%!important}.u-padding-left-58{padding-left:%?58?%!important}.u-m-t-58{margin-top:%?58?%!important}.u-p-t-58{padding-top:%?58?%!important}.u-margin-top-58{margin-top:%?58?%!important}.u-padding-top-58{padding-top:%?58?%!important}.u-m-r-58{margin-right:%?58?%!important}.u-p-r-58{padding-right:%?58?%!important}.u-margin-right-58{margin-right:%?58?%!important}.u-padding-right-58{padding-right:%?58?%!important}.u-m-b-58{margin-bottom:%?58?%!important}.u-p-b-58{padding-bottom:%?58?%!important}.u-margin-bottom-58{margin-bottom:%?58?%!important}.u-padding-bottom-58{padding-bottom:%?58?%!important}.u-margin-60, .u-m-60{margin:%?60?%!important}.u-padding-60, .u-p-60{padding:%?60?%!important}.u-m-l-60{margin-left:%?60?%!important}.u-p-l-60{padding-left:%?60?%!important}.u-margin-left-60{margin-left:%?60?%!important}.u-padding-left-60{padding-left:%?60?%!important}.u-m-t-60{margin-top:%?60?%!important}.u-p-t-60{padding-top:%?60?%!important}.u-margin-top-60{margin-top:%?60?%!important}.u-padding-top-60{padding-top:%?60?%!important}.u-m-r-60{margin-right:%?60?%!important}.u-p-r-60{padding-right:%?60?%!important}.u-margin-right-60{margin-right:%?60?%!important}.u-padding-right-60{padding-right:%?60?%!important}.u-m-b-60{margin-bottom:%?60?%!important}.u-p-b-60{padding-bottom:%?60?%!important}.u-margin-bottom-60{margin-bottom:%?60?%!important}.u-padding-bottom-60{padding-bottom:%?60?%!important}.u-margin-62, .u-m-62{margin:%?62?%!important}.u-padding-62, .u-p-62{padding:%?62?%!important}.u-m-l-62{margin-left:%?62?%!important}.u-p-l-62{padding-left:%?62?%!important}.u-margin-left-62{margin-left:%?62?%!important}.u-padding-left-62{padding-left:%?62?%!important}.u-m-t-62{margin-top:%?62?%!important}.u-p-t-62{padding-top:%?62?%!important}.u-margin-top-62{margin-top:%?62?%!important}.u-padding-top-62{padding-top:%?62?%!important}.u-m-r-62{margin-right:%?62?%!important}.u-p-r-62{padding-right:%?62?%!important}.u-margin-right-62{margin-right:%?62?%!important}.u-padding-right-62{padding-right:%?62?%!important}.u-m-b-62{margin-bottom:%?62?%!important}.u-p-b-62{padding-bottom:%?62?%!important}.u-margin-bottom-62{margin-bottom:%?62?%!important}.u-padding-bottom-62{padding-bottom:%?62?%!important}.u-margin-64, .u-m-64{margin:%?64?%!important}.u-padding-64, .u-p-64{padding:%?64?%!important}.u-m-l-64{margin-left:%?64?%!important}.u-p-l-64{padding-left:%?64?%!important}.u-margin-left-64{margin-left:%?64?%!important}.u-padding-left-64{padding-left:%?64?%!important}.u-m-t-64{margin-top:%?64?%!important}.u-p-t-64{padding-top:%?64?%!important}.u-margin-top-64{margin-top:%?64?%!important}.u-padding-top-64{padding-top:%?64?%!important}.u-m-r-64{margin-right:%?64?%!important}.u-p-r-64{padding-right:%?64?%!important}.u-margin-right-64{margin-right:%?64?%!important}.u-padding-right-64{padding-right:%?64?%!important}.u-m-b-64{margin-bottom:%?64?%!important}.u-p-b-64{padding-bottom:%?64?%!important}.u-margin-bottom-64{margin-bottom:%?64?%!important}.u-padding-bottom-64{padding-bottom:%?64?%!important}.u-margin-65, .u-m-65{margin:%?65?%!important}.u-padding-65, .u-p-65{padding:%?65?%!important}.u-m-l-65{margin-left:%?65?%!important}.u-p-l-65{padding-left:%?65?%!important}.u-margin-left-65{margin-left:%?65?%!important}.u-padding-left-65{padding-left:%?65?%!important}.u-m-t-65{margin-top:%?65?%!important}.u-p-t-65{padding-top:%?65?%!important}.u-margin-top-65{margin-top:%?65?%!important}.u-padding-top-65{padding-top:%?65?%!important}.u-m-r-65{margin-right:%?65?%!important}.u-p-r-65{padding-right:%?65?%!important}.u-margin-right-65{margin-right:%?65?%!important}.u-padding-right-65{padding-right:%?65?%!important}.u-m-b-65{margin-bottom:%?65?%!important}.u-p-b-65{padding-bottom:%?65?%!important}.u-margin-bottom-65{margin-bottom:%?65?%!important}.u-padding-bottom-65{padding-bottom:%?65?%!important}.u-margin-66, .u-m-66{margin:%?66?%!important}.u-padding-66, .u-p-66{padding:%?66?%!important}.u-m-l-66{margin-left:%?66?%!important}.u-p-l-66{padding-left:%?66?%!important}.u-margin-left-66{margin-left:%?66?%!important}.u-padding-left-66{padding-left:%?66?%!important}.u-m-t-66{margin-top:%?66?%!important}.u-p-t-66{padding-top:%?66?%!important}.u-margin-top-66{margin-top:%?66?%!important}.u-padding-top-66{padding-top:%?66?%!important}.u-m-r-66{margin-right:%?66?%!important}.u-p-r-66{padding-right:%?66?%!important}.u-margin-right-66{margin-right:%?66?%!important}.u-padding-right-66{padding-right:%?66?%!important}.u-m-b-66{margin-bottom:%?66?%!important}.u-p-b-66{padding-bottom:%?66?%!important}.u-margin-bottom-66{margin-bottom:%?66?%!important}.u-padding-bottom-66{padding-bottom:%?66?%!important}.u-margin-68, .u-m-68{margin:%?68?%!important}.u-padding-68, .u-p-68{padding:%?68?%!important}.u-m-l-68{margin-left:%?68?%!important}.u-p-l-68{padding-left:%?68?%!important}.u-margin-left-68{margin-left:%?68?%!important}.u-padding-left-68{padding-left:%?68?%!important}.u-m-t-68{margin-top:%?68?%!important}.u-p-t-68{padding-top:%?68?%!important}.u-margin-top-68{margin-top:%?68?%!important}.u-padding-top-68{padding-top:%?68?%!important}.u-m-r-68{margin-right:%?68?%!important}.u-p-r-68{padding-right:%?68?%!important}.u-margin-right-68{margin-right:%?68?%!important}.u-padding-right-68{padding-right:%?68?%!important}.u-m-b-68{margin-bottom:%?68?%!important}.u-p-b-68{padding-bottom:%?68?%!important}.u-margin-bottom-68{margin-bottom:%?68?%!important}.u-padding-bottom-68{padding-bottom:%?68?%!important}.u-margin-70, .u-m-70{margin:%?70?%!important}.u-padding-70, .u-p-70{padding:%?70?%!important}.u-m-l-70{margin-left:%?70?%!important}.u-p-l-70{padding-left:%?70?%!important}.u-margin-left-70{margin-left:%?70?%!important}.u-padding-left-70{padding-left:%?70?%!important}.u-m-t-70{margin-top:%?70?%!important}.u-p-t-70{padding-top:%?70?%!important}.u-margin-top-70{margin-top:%?70?%!important}.u-padding-top-70{padding-top:%?70?%!important}.u-m-r-70{margin-right:%?70?%!important}.u-p-r-70{padding-right:%?70?%!important}.u-margin-right-70{margin-right:%?70?%!important}.u-padding-right-70{padding-right:%?70?%!important}.u-m-b-70{margin-bottom:%?70?%!important}.u-p-b-70{padding-bottom:%?70?%!important}.u-margin-bottom-70{margin-bottom:%?70?%!important}.u-padding-bottom-70{padding-bottom:%?70?%!important}.u-margin-72, .u-m-72{margin:%?72?%!important}.u-padding-72, .u-p-72{padding:%?72?%!important}.u-m-l-72{margin-left:%?72?%!important}.u-p-l-72{padding-left:%?72?%!important}.u-margin-left-72{margin-left:%?72?%!important}.u-padding-left-72{padding-left:%?72?%!important}.u-m-t-72{margin-top:%?72?%!important}.u-p-t-72{padding-top:%?72?%!important}.u-margin-top-72{margin-top:%?72?%!important}.u-padding-top-72{padding-top:%?72?%!important}.u-m-r-72{margin-right:%?72?%!important}.u-p-r-72{padding-right:%?72?%!important}.u-margin-right-72{margin-right:%?72?%!important}.u-padding-right-72{padding-right:%?72?%!important}.u-m-b-72{margin-bottom:%?72?%!important}.u-p-b-72{padding-bottom:%?72?%!important}.u-margin-bottom-72{margin-bottom:%?72?%!important}.u-padding-bottom-72{padding-bottom:%?72?%!important}.u-margin-74, .u-m-74{margin:%?74?%!important}.u-padding-74, .u-p-74{padding:%?74?%!important}.u-m-l-74{margin-left:%?74?%!important}.u-p-l-74{padding-left:%?74?%!important}.u-margin-left-74{margin-left:%?74?%!important}.u-padding-left-74{padding-left:%?74?%!important}.u-m-t-74{margin-top:%?74?%!important}.u-p-t-74{padding-top:%?74?%!important}.u-margin-top-74{margin-top:%?74?%!important}.u-padding-top-74{padding-top:%?74?%!important}.u-m-r-74{margin-right:%?74?%!important}.u-p-r-74{padding-right:%?74?%!important}.u-margin-right-74{margin-right:%?74?%!important}.u-padding-right-74{padding-right:%?74?%!important}.u-m-b-74{margin-bottom:%?74?%!important}.u-p-b-74{padding-bottom:%?74?%!important}.u-margin-bottom-74{margin-bottom:%?74?%!important}.u-padding-bottom-74{padding-bottom:%?74?%!important}.u-margin-75, .u-m-75{margin:%?75?%!important}.u-padding-75, .u-p-75{padding:%?75?%!important}.u-m-l-75{margin-left:%?75?%!important}.u-p-l-75{padding-left:%?75?%!important}.u-margin-left-75{margin-left:%?75?%!important}.u-padding-left-75{padding-left:%?75?%!important}.u-m-t-75{margin-top:%?75?%!important}.u-p-t-75{padding-top:%?75?%!important}.u-margin-top-75{margin-top:%?75?%!important}.u-padding-top-75{padding-top:%?75?%!important}.u-m-r-75{margin-right:%?75?%!important}.u-p-r-75{padding-right:%?75?%!important}.u-margin-right-75{margin-right:%?75?%!important}.u-padding-right-75{padding-right:%?75?%!important}.u-m-b-75{margin-bottom:%?75?%!important}.u-p-b-75{padding-bottom:%?75?%!important}.u-margin-bottom-75{margin-bottom:%?75?%!important}.u-padding-bottom-75{padding-bottom:%?75?%!important}.u-margin-76, .u-m-76{margin:%?76?%!important}.u-padding-76, .u-p-76{padding:%?76?%!important}.u-m-l-76{margin-left:%?76?%!important}.u-p-l-76{padding-left:%?76?%!important}.u-margin-left-76{margin-left:%?76?%!important}.u-padding-left-76{padding-left:%?76?%!important}.u-m-t-76{margin-top:%?76?%!important}.u-p-t-76{padding-top:%?76?%!important}.u-margin-top-76{margin-top:%?76?%!important}.u-padding-top-76{padding-top:%?76?%!important}.u-m-r-76{margin-right:%?76?%!important}.u-p-r-76{padding-right:%?76?%!important}.u-margin-right-76{margin-right:%?76?%!important}.u-padding-right-76{padding-right:%?76?%!important}.u-m-b-76{margin-bottom:%?76?%!important}.u-p-b-76{padding-bottom:%?76?%!important}.u-margin-bottom-76{margin-bottom:%?76?%!important}.u-padding-bottom-76{padding-bottom:%?76?%!important}.u-margin-78, .u-m-78{margin:%?78?%!important}.u-padding-78, .u-p-78{padding:%?78?%!important}.u-m-l-78{margin-left:%?78?%!important}.u-p-l-78{padding-left:%?78?%!important}.u-margin-left-78{margin-left:%?78?%!important}.u-padding-left-78{padding-left:%?78?%!important}.u-m-t-78{margin-top:%?78?%!important}.u-p-t-78{padding-top:%?78?%!important}.u-margin-top-78{margin-top:%?78?%!important}.u-padding-top-78{padding-top:%?78?%!important}.u-m-r-78{margin-right:%?78?%!important}.u-p-r-78{padding-right:%?78?%!important}.u-margin-right-78{margin-right:%?78?%!important}.u-padding-right-78{padding-right:%?78?%!important}.u-m-b-78{margin-bottom:%?78?%!important}.u-p-b-78{padding-bottom:%?78?%!important}.u-margin-bottom-78{margin-bottom:%?78?%!important}.u-padding-bottom-78{padding-bottom:%?78?%!important}.u-margin-80, .u-m-80{margin:%?80?%!important}.u-padding-80, .u-p-80{padding:%?80?%!important}.u-m-l-80{margin-left:%?80?%!important}.u-p-l-80{padding-left:%?80?%!important}.u-margin-left-80{margin-left:%?80?%!important}.u-padding-left-80{padding-left:%?80?%!important}.u-m-t-80{margin-top:%?80?%!important}.u-p-t-80{padding-top:%?80?%!important}.u-margin-top-80{margin-top:%?80?%!important}.u-padding-top-80{padding-top:%?80?%!important}.u-m-r-80{margin-right:%?80?%!important}.u-p-r-80{padding-right:%?80?%!important}.u-margin-right-80{margin-right:%?80?%!important}.u-padding-right-80{padding-right:%?80?%!important}.u-m-b-80{margin-bottom:%?80?%!important}.u-p-b-80{padding-bottom:%?80?%!important}.u-margin-bottom-80{margin-bottom:%?80?%!important}.u-padding-bottom-80{padding-bottom:%?80?%!important}.u-type-primary-light{color:#ecf5ff}.u-type-warning-light{color:#fdf6ec}.u-type-success-light{color:#dbf1e1}.u-type-error-light{color:#fef0f0}.u-type-info-light{color:#f4f4f5}.u-type-primary-light-bg{background-color:#ecf5ff}.u-type-warning-light-bg{background-color:#fdf6ec}.u-type-success-light-bg{background-color:#dbf1e1}.u-type-error-light-bg{background-color:#fef0f0}.u-type-info-light-bg{background-color:#f4f4f5}.u-type-primary-dark{color:#2b85e4}.u-type-warning-dark{color:#f29100}.u-type-success-dark{color:#18b566}.u-type-error-dark{color:#dd6161}.u-type-info-dark{color:#82848a}.u-type-primary-dark-bg{background-color:#2b85e4}.u-type-warning-dark-bg{background-color:#f29100}.u-type-success-dark-bg{background-color:#18b566}.u-type-error-dark-bg{background-color:#dd6161}.u-type-info-dark-bg{background-color:#82848a}.u-type-primary-disabled{color:#a0cfff}.u-type-warning-disabled{color:#fcbd71}.u-type-success-disabled{color:#71d5a1}.u-type-error-disabled{color:#fab6b6}.u-type-info-disabled{color:#c8c9cc}.u-type-primary{color:#2979ff}.u-type-warning{color:#f90}.u-type-success{color:#19be6b}.u-type-error{color:#fa3534}.u-type-info{color:#909399}.u-type-primary-bg{background-color:#2979ff}.u-type-warning-bg{background-color:#f90}.u-type-success-bg{background-color:#19be6b}.u-type-error-bg{background-color:#fa3534}.u-type-info-bg{background-color:#909399}.u-main-color{color:#303133}.u-content-color{color:#606266}.u-tips-color{color:#909399}.u-light-color{color:#c0c4cc}uni-page-body{color:#303133;font-size:%?28?%}\r\n/* start--去除webkit的默认样式--start */.u-fix-ios-appearance{-webkit-appearance:none}\r\n/* end--去除webkit的默认样式--end */\r\n/* start--icon图标外层套一个view,让其达到更好的垂直居中的效果--start */.u-icon-wrap{display:flex;align-items:center}\r\n/* end-icon图标外层套一个view,让其达到更好的垂直居中的效果--end */\r\n/* start--iPhoneX底部安全区定义--start */.safe-area-inset-bottom{padding-bottom:0;padding-bottom:constant(safe-area-inset-bottom);padding-bottom:env(safe-area-inset-bottom)}\r\n/* end-iPhoneX底部安全区定义--end */\r\n/* start--各种hover点击反馈相关的类名-start */.u-hover-class{opacity:.6}.u-cell-hover{background-color:#f7f8f9!important}\r\n/* end--各种hover点击反馈相关的类名--end */\r\n/* start--文本行数限制--start */.u-line-1{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.u-line-2{-webkit-line-clamp:2}.u-line-3{-webkit-line-clamp:3}.u-line-4{-webkit-line-clamp:4}.u-line-5{-webkit-line-clamp:5}.u-line-2, .u-line-3, .u-line-4, .u-line-5{overflow:hidden;word-break:break-all;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical}\r\n/* end--文本行数限制--end */\r\n/* start--Retina 屏幕下的 1px 边框--start */.u-border,\r\n.u-border-bottom,\r\n.u-border-left,\r\n.u-border-right,\r\n.u-border-top,\r\n.u-border-top-bottom{position:relative}.u-border-bottom:after,\r\n.u-border-left:after,\r\n.u-border-right:after,\r\n.u-border-top-bottom:after,\r\n.u-border-top:after,\r\n.u-border:after{content:" ";position:absolute;left:0;top:0;pointer-events:none;box-sizing:border-box;-webkit-transform-origin:0 0;transform-origin:0 0;width:199.8%;height:199.7%;-webkit-transform:scale(.5);transform:scale(.5);border:0 solid #e4e7ed;z-index:2}.u-border-top:after{border-top-width:1px}.u-border-left:after{border-left-width:1px}.u-border-right:after{border-right-width:1px}.u-border-bottom:after{border-bottom-width:1px}.u-border-top-bottom:after{border-width:1px 0}.u-border:after{border-width:1px}\r\n/* end--Retina 屏幕下的 1px 边框--end */\r\n/* start--clearfix--start */.u-clearfix:after,\r\n.clearfix:after{content:"";display:table;clear:both}\r\n/* end--clearfix--end */\r\n/* start--高斯模糊tabbar底部处理--start */.u-blur-effect-inset{width:%?750?%;height:var(--window-bottom);background-color:#fff}\r\n/* end--高斯模糊tabbar底部处理--end */\r\n/* start--提升H5端uni.toast()的层级,避免被uView的modal等遮盖--start */uni-toast{z-index:10090}uni-toast .uni-toast{z-index:10090}\r\n/* end--提升H5端uni.toast()的层级,避免被uView的modal等遮盖--end */\r\n/* H5的时候,隐藏滚动条 */::-webkit-scrollbar{display:none;width:0!important;height:0!important;-webkit-appearance:none;background:transparent}uni-rich-text img{max-width:100%!important}.pic-img{width:100%;height:100%}.default-img{background:url('+i+") no-repeat 50%;background-size:100% 100%}.line1{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.wid{width:100%}.fs4{font-size:%?4?%}.fs18{font-size:%?18?%}.fs20{font-size:%?20?%}.fs22{font-size:%?22?%}.fs24{font-size:%?24?%}.fs26{font-size:%?26?%}.fs28{font-size:%?28?%}.fs30{font-size:%?30?%}.fs32{font-size:%?32?%}.fs34{font-size:%?34?%}.fs36{font-size:%?36?%}.fs38{font-size:%?38?%}.fs40{font-size:%?40?%}.fs42{font-size:%?42?%}.fs44{font-size:%?44?%}.fs46{font-size:%?46?%}.fs48{font-size:%?46?%}.fs50{font-size:%?50?%}.fs60{font-size:%?60?%}.fs-bold{font-weight:700}.fs-weight-300{font-weight:300}.fs-weight-200{font-weight:200}.fs-weight-400{font-weight:400}.flex-display{display:flex}.flex-center{display:flex;justify-content:center}.flex-items{display:flex;align-items:center}.flex-items-plus{display:flex;justify-content:center;align-items:center}.flex-start{display:flex;justify-content:flex-start}.flex-end{display:flex;justify-content:flex-end}.flex-end-plus{display:flex;justify-content:flex-end;align-items:center}.flex-column{flex-direction:column}.flex-column-plus{display:flex;flex-direction:column}.flex-row{flex-direction:row}.flex-row-plus{display:flex;flex-direction:row}.flex-sp-around{justify-content:space-around}.flex-sp-between{justify-content:space-between}.text-align{text-align:center}.flex-wrap-1{display:flex;flex-wrap:wrap}.flex-nowrap-1{display:flex;flex-wrap:nowrap}.align-end{display:flex;align-items:flex-end}.align-sp-between{align-content:space-between}.mar-top-5{margin-top:%?5?%}.mar-top-10{margin-top:%?10?%}.mar-top-20{margin-top:%?20?%}.mar-top-30{margin-top:%?30?%}.mar-top-32{margin-top:%?32?%}.mar-top-36{margin-top:%?36?%}.mar-top-40{margin-top:%?40?%}.mar-top-50{margin-top:%?50?%}.mar-top-60{margin-top:%?60?%}.mar-top-70{margin-top:%?70?%}.mar-top-100{margin-top:%?100?%}.mar-top-percent40{margin-top:40%}.mar-top-half{margin-top:50%}.mar-left-6{margin-left:%?6?%}.mar-left-5{margin-left:%?5?%}.mar-left-10{margin-left:%?10?%}.mar-left-20{margin-left:%?20?%}.mar-left-30{margin-left:%?30?%}.mar-left-35{margin-left:%?35?%}.mar-left-40{margin-left:%?40?%}.mar-left-50{margin-left:%?50?%}.mar-left-60{margin-left:%?60?%}.mar-left-70{margin-left:%?70?%}.mar-right-10{margin-right:%?10?%}.mar-right-20{margin-right:%?20?%}.mar-right-25{margin-right:%?25?%}.mar-right-30{margin-right:%?30?%}.mar-right-35{margin-right:%?35?%}.mar-right-40{margin-right:%?40?%}.mar-right-50{margin-right:%?50?%}.pad-left-10{padding-left:%?10?%}.pad-left-20{padding-left:%?20?%}.pad-left-40{padding-left:%?40?%}.pad-right-20{padding-right:%?20?%}.pad-top-20{padding-top:%?20?%}.pad-top-40{padding-top:%?40?%}.pad-bot-20{padding-bottom:%?20?%}.pad-topbot-20{padding:%?20?% %?0?%}.pad-topbot-5{padding:%?0?% %?5?%}.pad-topbot-10{padding:%?0?% %?10?%}.pad-topbot-50{padding:%?50?% %?0?%}.pad-bot-20{padding-bottom:%?20?%}.pad-bot-30{padding-bottom:%?30?%}.pad-bot-40{padding-bottom:%?40?%}.pad-bot-100{padding-bottom:%?100?%}.pad-bot-140{padding-bottom:%?140?%}.bor-rad-30{border-radius:%?30?%}.bor-rad-45{border-radius:%?45?%}.bor-rad-half{border-radius:50%}.backColor{background-color:#009688}.backColorFFF{background-color:#fff}.pos-abs{position:absolute}.bor-bot-line{border-bottom:#c8c7cc %?1?% solid}.bor-line-F7F7F7{border-bottom:#f7f7f7 %?1?% solid}.bor-line-E5E5E5{border-bottom:#e5e5e5 %?1?% solid}.borRig-line-E5E5E5{border-right:#ddd %?2?% solid}.borRig-line-20{border-bottom:#f7f7f7 %?20?% solid}.font-color-red{color:red}.font-color-FFF{color:#fff}.font-color-8A734A{color:#8a734a}.font-color-71521B{color:#71521b}.font-color-222{color:#222}.font-color-333{color:#333}.font-color-666{color:#666}.font-color-999{color:#999}.font-color-656{color:#656565}.font-color-DDD{color:#ddd}.font-color-CCC{color:#ccc}.font-color-FFEBC4{color:#ffebc4}.font-color-1CC363{color:#1cc363}.font-color-47A7EE{color:#47a7ee}.font-color-C5AA7B{color:#c5aa7b}.font-color-FF7700{color:#f70}.font-color-FF7911{color:#ff7911}.font-color-80{color:grey}.font-color-DD{color:#dd524d}.font-color-C83732{color:#c83732}.font-color-3F{color:#3f536e}.font-color-009{color:#009688}.font-weight-500{font-weight:500}.font-weight-bold{font-weight:700}.overflow{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.overflowNoDot{display:block;overflow:hidden}.discountsPriceLine{text-decoration:line-through}.border-bottom-Line{border-bottom:%?1?% solid #ededed}.decoration{text-decoration:line-through}.anonymous{margin-top:%?25?%}.anonymous .uni-checkbox-input{border-color:#c5aa7b!important;width:%?30?%;height:%?30?%}.anonymous .uni-checkbox-input-checked:before{font-size:%?30?%!important}.anonymous .uni-checkbox-input-checked{background:#c5aa7b}.footprint .itemList .uni-checkbox-input{border-color:#c5aa7b!important;width:%?36?%;height:%?36?%;border-radius:50%;margin-right:%?20?%}.footprint .itemList .uni-checkbox-input-checked:before{font-size:%?36?%!important}.footprint .itemList .uni-checkbox-input-checked{background:#c5aa7b}.itemInfo uni-slider{margin:0}.itemInfo uni-slider .uni-slider-thumb{display:none}.itemInfo uni-slider .uni-slider-handle-wrapper{height:%?18?%;border-radius:0;border:%?1?% solid #ff736c}.itemInfo uni-slider .uni-slider-track{border-radius:0}.itemInfo uni-slider .uni-slider-tap-area{flex:0 0 70%;padding:0}.uni-modal{padding:%?20?%;box-sizing:border-box}uni-modal .uni-modal__ft:after{border-top:none}uni-modal .uni-modal__btn{color:#333;border:%?2?% solid #333;font-weight:400;margin:0 %?10?%;font-size:%?28?%}.uni-tabbar .uni-tabbar__reddot{background:#c5aa7b;color:#fff}uni-checkbox:not([disabled]) .uni-checkbox-input:hover{border-color:#c5aa7b}.u-arrow{display:inline-block;width:%?20?%;height:%?20?%;border-top:%?1?% solid #999;border-right:%?1?% solid #999}.u-arrow-up{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.u-arrow-down{-webkit-transform:rotate(135deg);transform:rotate(135deg)}.u-arrow-left{-webkit-transform:rotate(-135deg);transform:rotate(-135deg)}.u-arrow-right{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.uni-picker-container .uni-picker-action.uni-picker-action-confirm{color:#c5aa7b}",""]),e.exports=t},1899:function(e,t,a){"use strict";a("6a54"),Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1500;uni.showToast({title:e,icon:"none",duration:t})};t.default=n},"18b4":function(e,t,a){"use strict";var n;a("6a54"),Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:500,a=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];a?n||(n=!0,"function"===typeof e&&e(),setTimeout((function(){n=!1}),t)):n||(n=!0,setTimeout((function(){n=!1,"function"===typeof e&&e()}),t))};t.default=o},"1ce1":function(e,t,a){"use strict";function n(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],a=/^#([0-9a-fA-f]{3}|[0-9a-fA-f]{6})$/;if(e=e.toLowerCase(),e&&a.test(e)){if(4===e.length){for(var n="#",o=1;o<4;o+=1)n+=e.slice(o,o+1).concat(e.slice(o,o+1));e=n}for(var r=[],i=1;i<7;i+=2)r.push(parseInt("0x"+e.slice(i,i+2)));return t?"rgb(".concat(r[0],",").concat(r[1],",").concat(r[2],")"):r}if(/^(rgb|RGB)/.test(e)){var g=e.replace(/(?:\(|\)|rgb|RGB)*/g,"").split(",");return g.map((function(e){return Number(e)}))}return e}function o(e){var t=e;if(/^(rgb|RGB)/.test(t)){for(var a=t.replace(/(?:\(|\)|rgb|RGB)*/g,"").split(","),n="#",o=0;o<a.length;o++){var r=Number(a[o]).toString(16);r=1==String(r).length?"0"+r:r,"0"===r&&(r+=r),n+=r}return 7!==n.length&&(n=t),n}if(!/^#([0-9a-fA-f]{3}|[0-9a-fA-f]{6})$/.test(t))return t;var i=t.replace(/#/,"").split("");if(6===i.length)return t;if(3===i.length){for(var g="#",u=0;u<i.length;u+=1)g+=i[u]+i[u];return g}}a("6a54"),Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0,a("aa9c"),a("5c47"),a("0506"),a("c223"),a("f7a5"),a("e966"),a("a1c1"),a("fd3c"),a("64aa"),a("c9b5"),a("bf0f"),a("ab80");var r={colorGradient:function(){for(var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"rgb(0, 0, 0)",t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"rgb(255, 255, 255)",a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:10,r=n(e,!1),i=r[0],g=r[1],u=r[2],p=n(t,!1),d=p[0],s=p[1],c=p[2],l=(d-i)/a,m=(s-g)/a,_=(c-u)/a,f=[],y=0;y<a;y++){var b=o("rgb("+Math.round(l*y+i)+","+Math.round(m*y+g)+","+Math.round(_*y+u)+")");f.push(b)}return f},hexToRgb:n,rgbToHex:o};t.default=r},"1e8b":function(e,t,a){"use strict";a("6a54");var n=a("f5bd").default;Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0,a("5ef2");n(a("83c8")),n(a("6d56"));var o={onLoad:function(e){},onLaunch:function(e){e.query.token&&(uni.setStorageSync("storage_key",e.query),uni.setStorageSync("token",e.query.token)),e&&"pages_category_page1/goodsModule/goodsDetails"===e.path&&e.query&&(this.globalData.productShareItem=e.query),e&&"pages_category_page1/store/index"===e.path&&e.query&&(this.globalData.shopShareItem=e.query),e&&"pages_category_page1/distributionModule/recruit"===e.path&&e.query&&(this.globalData.distributeRecruitItem=e.query),e&&"pages_category_page1/goodsModule/inviteSpell"===e.path&&e.query&&(this.globalData.inviteSpellShareItem=e.query);var t=this;uni.getSystemInfo({success:function(e){console.log(e,"检查机型"),e.safeArea.top>20&&-1!==e.model.indexOf("iPhone")&&(t.globalData.isIphone=!0)}})},globalData:{isIphone:!1}};t.default=o},"1ebe":function(e,t,a){var n=a("b2d4");n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var o=a("967d").default;o("7dc1cad2",n,!0,{sourceMap:!1,shadowMode:!1})},2827:function(e,t,a){"use strict";a("6a54");var n=a("f5bd").default;Object.defineProperty(t,"__esModule",{value:!0}),t.jumpToTabbar=t.jump=t.goBack=t.getJumpParam=void 0;var o=n(a("fcf3"));a("c223"),a("d4b5");t.jump=function(e,t){var a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"default";setTimeout((function(){t&&(e="".concat(e,"?detail=").concat(encodeURIComponent(JSON.stringify(t)))),"default"===n?uni.navigateTo({url:e}):"redirect"===n?uni.redirectTo({url:e}):uni.reLaunch({url:e})}),a)};t.jumpToTabbar=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;setTimeout((function(){uni.switchTab({url:e})}),t)};t.goBack=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:1;uni.navigateBack({delta:e})};t.getJumpParam=function(e){return"object"===(0,o.default)(e)&&null!==e&&void 0!==e&&e.detail?JSON.parse(decodeURIComponent(e.detail)):{}}},2831:function(e,t,a){"use strict";a("6a54");var n=a("f5bd").default;Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0,a("64aa"),a("e966"),a("c9b5"),a("bf0f"),a("ab80");var o=n(a("8557a"));var r=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"yyyy-mm-dd";null==e&&(e=Number(new Date)),e=parseInt(e),10==e.toString().length&&(e*=1e3);var a=(new Date).getTime()-e;a=parseInt(a/1e3);var n="";switch(!0){case a<300:n="刚刚";break;case a>=300&&a<3600:n=parseInt(a/60)+"分钟前";break;case a>=3600&&a<86400:n=parseInt(a/3600)+"小时前";break;case a>=86400&&a<2592e3:n=parseInt(a/86400)+"天前";break;default:n=!1===t?a>=2592e3&&a<31536e3?parseInt(a/2592e3)+"个月前":parseInt(a/31536e3)+"年前":(0,o.default)(e,t)}return n};t.default=r},"29c5":function(e,t,a){var n=a("1867");n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var o=a("967d").default;o("ec2060a2",n,!0,{sourceMap:!1,shadowMode:!1})},"2c68":function(e,t,a){"use strict";var n=a("1ebe"),o=a.n(n);o.a},"322b":function(e,t,a){"use strict";a("6a54");var n=a("f5bd").default;Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=n(a("fcf3"));function r(e){switch((0,o.default)(e)){case"undefined":return!0;case"string":if(0==e.replace(/(^[ \t\n\r]*)|([ \t\n\r]*$)/g,"").length)return!0;break;case"boolean":if(!e)return!0;break;case"number":if(0===e||isNaN(e))return!0;break;case"object":if(null===e||0===e.length)return!0;for(var t in e)return!1;return!0}return!1}a("5c47"),a("0506"),a("c9b5"),a("bf0f"),a("ab80"),a("5ef2"),a("a1c1");var i={email:function(e){return/^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/.test(e)},mobile:function(e){return/^1[23456789]\d{9}$/.test(e)},url:function(e){return/^((https|http|ftp|rtsp|mms):\/\/)(([0-9a-zA-Z_!~*'().&=+$%-]+: )?[0-9a-zA-Z_!~*'().&=+$%-]+@)?(([0-9]{1,3}.){3}[0-9]{1,3}|([0-9a-zA-Z_!~*'()-]+.)*([0-9a-zA-Z][0-9a-zA-Z-]{0,61})?[0-9a-zA-Z].[a-zA-Z]{2,6})(:[0-9]{1,4})?((\/?)|(\/[0-9a-zA-Z_!~*'().;?:@&=+$,%#-]+)+\/?)$/.test(e)},date:function(e){return!/Invalid|NaN/.test(new Date(e).toString())},dateISO:function(e){return/^\d{4}[\/\-](0?[1-9]|1[012])[\/\-](0?[1-9]|[12][0-9]|3[01])$/.test(e)},number:function(e){return/^(?:-?\d+|-?\d{1,3}(?:,\d{3})+)?(?:\.\d+)?$/.test(e)},digits:function(e){return/^\d+$/.test(e)},idCard:function(e){return/^[1-9]\d{5}[1-9]\d{3}((0\d)|(1[0-2]))(([0|1|2]\d)|3[0-1])\d{3}([0-9]|X)$/.test(e)},carNo:function(e){return 7===e.length?/^[京津沪渝冀豫云辽黑湘皖鲁新苏浙赣鄂桂甘晋蒙陕吉闽贵粤青藏川宁琼使领A-Z]{1}[A-Z]{1}[A-HJ-NP-Z0-9]{4}[A-HJ-NP-Z0-9挂学警港澳]{1}$/.test(e):8===e.length&&/^[京津沪渝冀豫云辽黑湘皖鲁新苏浙赣鄂桂甘晋蒙陕吉闽贵粤青藏川宁琼使领A-Z]{1}[A-Z]{1}(([0-9]{5}[DF]$)|([DF][A-HJ-NP-Z0-9][0-9]{4}$))/.test(e)},amount:function(e){return/^[1-9]\d*(,\d{3})*(\.\d{1,2})?$|^0\.\d{1,2}$/.test(e)},chinese:function(e){return/^[\u4e00-\u9fa5]+$/gi.test(e)},letter:function(e){return/^[a-zA-Z]*$/.test(e)},enOrNum:function(e){return/^[0-9a-zA-Z]*$/g.test(e)},contains:function(e,t){return e.indexOf(t)>=0},range:function(e,t){return e>=t[0]&&e<=t[1]},rangeLength:function(e,t){return e.length>=t[0]&&e.length<=t[1]},empty:r,isEmpty:r,jsonString:function(e){if("string"==typeof e)try{var t=JSON.parse(e);return!("object"!=(0,o.default)(t)||!t)}catch(a){return!1}return!1},landline:function(e){return/^\d{3,4}-\d{7,8}(-\d{3,4})?$/.test(e)},object:function(e){return"[object Object]"===Object.prototype.toString.call(e)},array:function(e){return"function"===typeof Array.isArray?Array.isArray(e):"[object Array]"===Object.prototype.toString.call(e)}};t.default=i},"3a65":function(e,t,a){"use strict";a("6a54"),Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0,a("4100");var n=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];return e.sort((function(){return Math.random()-.5}))};t.default=n},"3a6d":function(e,t,a){"use strict";a("6a54");var n=a("f5bd").default;Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=n(a("fcf3"));a("bf0f"),a("4626");var r=function e(t){if([null,void 0,NaN,!1].includes(t))return t;if("object"!==(0,o.default)(t)&&"function"!==typeof t)return t;var a=function(e){return"[object Array]"===Object.prototype.toString.call(e)}(t)?[]:{};for(var n in t)t.hasOwnProperty(n)&&(a[n]="object"===(0,o.default)(t[n])?e(t[n]):t[n]);return a};t.default=r},"3f48":function(e,t,a){"use strict";a("6a54");var n=a("f5bd").default;Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e,t){var a=this.$parent;while(a)if(a.$options.name!==e)a=a.$parent;else{var n=function(){var e={};if(Array.isArray(t))t.map((function(t){e[t]=a[t]?a[t]:""}));else for(var n in t)Array.isArray(t[n])?t[n].length?e[n]=t[n]:e[n]=a[n]:t[n].constructor===Object?Object.keys(t[n]).length?e[n]=t[n]:e[n]=a[n]:e[n]=t[n]||!1===t[n]?t[n]:a[n];return{v:e}}();if("object"===(0,o.default)(n))return n.v}return{}};var o=n(a("fcf3"));a("fd3c"),a("dc8a")},4948:function(e,t,a){"use strict";a("6a54"),Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n={primary:"#2979ff",primaryDark:"#2b85e4",primaryDisabled:"#a0cfff",primaryLight:"#ecf5ff",bgColor:"#f3f4f6",info:"#909399",infoDark:"#82848a",infoDisabled:"#c8c9cc",infoLight:"#f4f4f5",warning:"#ff9900",warningDark:"#f29100",warningDisabled:"#fcbd71",warningLight:"#fdf6ec",error:"#fa3534",errorDark:"#dd6161",errorDisabled:"#fab6b6",errorLight:"#fef0f0",success:"#19be6b",successDark:"#18b566",successDisabled:"#71d5a1",successLight:"#dbf1e1",mainColor:"#303133",contentColor:"#606266",tipsColor:"#909399",lightColor:"#c0c4cc",borderColor:"#e4e7ed"};t.default=n},"4ed6":function(e,t,a){"use strict";a("6a54"),Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0,a("5ef2"),a("aa9c"),a("bf0f"),a("2797");var n=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"brackets",n=t?"?":"",o=[];-1==["indices","brackets","repeat","comma"].indexOf(a)&&(a="brackets");var r=function(t){var n=e[t];if(["",void 0,null].indexOf(n)>=0)return"continue";if(n.constructor===Array)switch(a){case"indices":for(var r=0;r<n.length;r++)o.push(t+"["+r+"]="+n[r]);break;case"brackets":n.forEach((function(e){o.push(t+"[]="+e)}));break;case"repeat":n.forEach((function(e){o.push(t+"="+e)}));break;case"comma":var i="";n.forEach((function(e){i+=(i?",":"")+e})),o.push(t+"="+i);break;default:n.forEach((function(e){o.push(t+"[]="+e)}))}else o.push(t+"="+n)};for(var i in e)r(i);return o.length?n+o.join("&"):""};t.default=n},5303:function(e,t,a){"use strict";a("6a54");var n=a("f5bd").default;Object.defineProperty(t,"__esModule",{value:!0}),t.hideLoading=g,t.showLoading=i,t.showLoadingAuto=u;var o=n(a("9b8e")),r=n(a("14ef"));function i(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";r.default.commit("SET_SHOW_LOADING",{flag:!0,info:e})}function g(){r.default.commit("SET_SHOW_LOADING",{flag:!1,info:""})}function u(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:2e3;r.default.commit("SET_SHOW_LOADING",{flag:!0,info:e}),setTimeout((function(){r.default.commit("SET_SHOW_LOADING",{flag:!1,info:""})}),t)}o.default.prototype.$showLoading=i,o.default.prototype.$hideLoading=g,o.default.prototype.$showLoadingAuto=u},"53cb":function(e,t,a){"use strict";a("6a54"),Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:void 0,t=this.$parent;while(t){if(!t.$options||t.$options.name===e)return t;t=t.$parent}return!1}},"681f":function(e,t,a){"use strict";a("6a54"),Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;t.default={toast:10090,noNetwork:10080,popup:10075,mask:10070,navbar:980,topTips:975,sticky:970,indexListSticky:965}},"6a70":function(e,t,a){"use strict";a("6a54");var n=a("f5bd").default;Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0,a("bf0f"),a("5ef2");var o=n(a("80b1")),r=n(a("efe5")),i=n(a("8a07")),g=n(a("322b")),u=function(){function e(){var t=this;(0,o.default)(this,e),this.config={baseUrl:"",header:{},method:"POST",dataType:"json",responseType:"text",showLoading:!0,loadingText:"请求中...",loadingTime:800,timer:null,originalData:!1,loadingMask:!0},this.interceptor={request:null,response:null},this.get=function(e){var a=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return t.request({method:"GET",url:e,header:n,data:a})},this.post=function(e){var a=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return t.request({url:e,method:"POST",header:n,data:a})},this.put=function(e){var a=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return t.request({url:e,method:"PUT",header:n,data:a})},this.delete=function(e){var a=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return t.request({url:e,method:"DELETE",header:n,data:a})}}return(0,r.default)(e,[{key:"setConfig",value:function(e){this.config=(0,i.default)(this.config,e)}},{key:"request",value:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(this.interceptor.request&&"function"===typeof this.interceptor.request){var a=this.interceptor.request(t);if(!1===a)return new Promise((function(){}));this.options=a}return t.dataType=t.dataType||this.config.dataType,t.responseType=t.responseType||this.config.responseType,t.url=t.url||"",t.params=t.params||{},t.header=Object.assign(this.config.header,t.header),t.method=t.method||this.config.method,new Promise((function(a,n){t.complete=function(t){if(uni.hideLoading(),clearTimeout(e.config.timer),e.config.timer=null,e.config.originalData)if(e.interceptor.response&&"function"===typeof e.interceptor.response){var o=e.interceptor.response(t);!1!==o?a(o):n(t)}else a(t);else if(200==t.statusCode)if(e.interceptor.response&&"function"===typeof e.interceptor.response){var r=e.interceptor.response(t.data);!1!==r?a(r):n(t.data)}else a(t.data);else t.errMsg&&uni.showModal({title:t.errMsg}),n(t)},t.url=g.default.url(t.url)?t.url:e.config.baseUrl+(0==t.url.indexOf("/")?t.url:"/"+t.url),e.config.showLoading&&!e.config.timer&&(e.config.timer=setTimeout((function(){uni.showLoading({title:e.config.loadingText,mask:e.config.loadingMask}),e.config.timer=null}),e.config.loadingTime)),uni.request(t)}))}}]),e}(),p=new u;t.default=p},"6d56":function(e,t,a){a("c223");var n="".concat(window.location.protocol,"//").concat(window.location.host),o="".concat(n,"/cdwlMall/meserver/admin-server"),r="".concat(n,"/cdwlMall/meserver/api"),i=r,g=o;e.exports={terminal:2,SettledMerchantPrefix:"https://jy.scjysm.asia:18086/cdwlMall/settled-merchant",shareLink:r+"/h5",verification:i+"/app/verification",Login:i+"/app/login",WxLogin:i+"/app/wxLogin",AlipayLogin:i+"/app/alipayLogin",GetSessionKey:i+"/app/getSessionKey",SetWxPhone:i+"/app/setWxPhone",UpdateWxPhone:i+"/app/updateWxPhone",UpdateAliPhone:i+"/app/updateAliPhone",WxAppLogin:i+"/app/wxAppLogin",delUser:i+"/user/delUser/",LiveRoomes:i+"/canvas/selectLiveList",SubScribeLive:i+"/live/subscribeLive",CustomerService:i+"/kf/getAppletKf",FindCategoryListByDepth:i+"/classify/getFirstClassify",SelectHotSearch:i+"/app/selectHotSearch",GetClaasifyProducts:i+"/classify/getClaasifyProducts",SearchHistory:i+"/app/getHistory",GgetSearchProducts:i+"/app/getSearchProducts",DeleteSearch:i+"/app/deleteSearch",Getindexdata:i+"/app/index",GetremenList:i+"/product/getRandomSortProduct",QueryProductDetail:i+"/product/getById",QueryProductSku:i+"/product/getProducts",getCouponProducts:i+"/coupon/getCouponProducts",QueryMemberAddres:i+"/receive/getAll",AddresAdd:i+"/receive/save",AddresDelete:i+"/receive/delete",AddresUpdate:i+"/receive/update",receiveGetInfo:i+"/receive/getById",Comment:i+"/order/addComment",AdditionalComment:i+"/order/addToComment",MyCommentList:i+"/comment/getAll",LikeOrUnLikeComment:i+"/comment/like",GetDistributor:i+"/distributor/getDistributor",FindCouponList:i+"/coupon/getCoupons",MemberAccountWithdraw:i+"/distributor/save",GetUser:i+"/user/getUser",UpdateUser:i+"/user/update",GetStore:i+"/shop/getShopProducts",GetStoreShopClassify:i+"/shop/getShopClassify",GetShopBanner:i+"/shop/getShopBanner",getShopIndex:i+"/shop/getIndex",AddBusinessBuyerUser:i+"/shop/addBusinessBuyerUser",getShopSeckillIndex:i+"/seckill/getIndex",QueryBankcardList:i+"/bank/getAll",SaveBankcard:i+"/bank/save",UpdateBankcard:i+"/bank/update",DelMemberBankcard:i+"/bank/delete",GetByIdBankcard:i+"/bank/getById",FindOrderList:i+"/order/getAll",Settlement:i+"/order/getSettlement",PlaceOrder:i+"/order/submit",GetOrderDetail:i+"/order/getById",CancelOrder:i+"/order/cancel",DelOrder:i+"/order/delete",ShippingTrace:i+"/order/getDilevery",payOrder:i+"/order/pay",gotoPay:i+"/order/gotoPay",paySuccess:i+"/order/paySuccess",gotoAppPay:i+"/order/gotoAppPay",gotoH5Pay:i+"/order/gotoH5Pay",ConfirmReceive:i+"/order/confirm",Orderrefund:i+"/order/refund",ReasonEnums:i+"/after/getReasonSelect",ApplyReturnMoney:i+"/after/submit",GetHuabeiConfig:i+"/order/getHuabeiConfig",GetRefundMoney:i+"/after/getReturnPrice",Gethu:i+"/order/handleWxLog",Wenlv:i+"/order/greenwayAggregatePayment",ShoppingaddCart:i+"/cart/addCart",ShoppingCart:i+"/cart/getCart",UpdateNumberCart:i+"/cart/updateNumber",DeleteCart:i+"/cart/delete",SelectedCart:i+"/cart/selected",UpdateSkuCart:i+"/cart/updateSku",getCoupons:i+"/canvas/getCoupons",ReceiveCoupon:i+"/coupon/takeCoupon",buildParam4Plug:i+"/coupon/buildParam4Plug",FindSaleStoreList:i+"/distributor/getDistributorAll",QuerySalesMainInfo:i+"/distributor/getShopDistributor",FindSalesOrderPage:i+"/distributor/getReward",GetNotReward:i+"/distributor/getNotReward",FindSalesCustomerList:i+"/distributor/getBuyers",FindSubordinateSalesList:i+"/distributor/getDistributors",FindSalesPromConfig:i+"/distributor/getShopExtension",StoreProductList:i+"/distributor/getExtensionProduct",FindMySalesPage:i+"/distributor/getDistributorOrder",HasApply:i+"/distributor/check",BindSalesCustomer:i+"/distributor/bind",getSharePic:i+"/product/getSharePic",getShareProductParam:i+"/product/getShareProductParam",shopGetSharePic:i+"/shop/getSharePic",FindReturnList:i+"/after/getAll",CancelRefund:i+"/after/returnRefund",ReturnDetail:i+"/after/getById",CancelReturnGoods:i+"/after/returnGoods",ShippingCompany:i+"/order/getExpressSelect",SendReturnGoods:i+"/order/returnExpress",deleteAfter:i+"/after/deleteAfter",Apply:i+"/distributor/addDistributor",getProducts:i+"/canvas/getProducts",Query:i+"/dict/getByName",DeleteAllSearch:i+"/product/deleteAllSearch",getMessage:i+"/notice/getAll",getMessageDateils:i+"/notice/getById",readNotice:i+"/notice/readNotice",getNotice:i+"/notice/getGongGaoAll",delMessage:i+"/notice/removeById",allMessage:i+"/notice/readAll",getProductCollect:i+"/collect/getAllProduct",getStoreCollect:i+"/collect/getAllShop",cancelCollect:i+"/collect/cancel",collect:i+"/collect/collect",deleteCollect:i+"/collect/delete",addAnswer:i+"/seckill/addAnswer",addProblem:i+"/seckill/addProblem",getSeckillList:i+"/seckill/getIndex",getProblems:i+"/seckill/getProblems",getProblemDetail:i+"/seckill/getProblemDetail",getQueryPlatformSeckillList:i+"/platform-seckill/queryPlatformSeckillList",getPlatformSeckills:i+"/canvas/getPlatformSeckills",getGroupSettlement:i+"/work/getSettlement",getGroupBuyList:i+"/work/getIndex",getInviteSpell:i+"/work/getInvite",getDiscountList:i+"/discount/getIndex",getFootprintList:i+"/footprint/getAll",deleteFootprint:i+"/footprint/delete",getProblemList:i+"/seckill/getProblem",getAnswerList:i+"/seckill/getAnswer",deleteProblem:i+"/seckill/deleteProblem",deleteAnswer:i+"/seckill/deleteAnswer",getShare:i+"/work/getShare",platform:i+"/after/platform",UploadUrl:i+"/file/upload",getMemberProducts:i+"/canvas/getMemberProducts",memberList:i+"/member/getAllMemberLevelInfo",getMemberShipList:i+"/member/getMemberShipList",selectSigninHistory:i+"/member/selectSigninHistory",selectSigninRecordList:i+"/member/selectSigninRecordList",signIn:i+"/member/signIn",welfareProductList:i+"/member/welfareProductList",getMemberByMemberLevel:i+"/member/getMemberByMemberLevelId",selectCompose:i+"/product/selectCompose",queryPlatformDiscount:i+"/platform-discount/queryPlatformDiscount",queryPlatformDiscountProductList:i+"/platform-discount/queryPlatformDiscountProductList",queryProductListBySession:i+"/platform-seckill/queryProductListBySession",querySession:i+"/platform-seckill/querySession",selectByPriceId:i+"/price/selectByPriceId",selectProductListByPriceId:i+"/product/selectProductListByPriceId",getOrderPolite:i+"/order/getOrderPolite",creditSignIn:i+"/credit/signIn",exchangeCoupon:i+"/credit/exchangeCoupon",selectByMonth:i+"/credit/selectByMonth",selectCreditCouponList:i+"/credit/selectCreditCouponList",selectCreditRecord:i+"/credit/selectCreditRecord",GetAd:i+"/advert/selectByCondition",adClose:i+"/advert/closeAdvert",takeBatchCoupon:i+"/coupon/takeBatchCoupon",getChannelCoupon:i+"/coupon/getChannelCouponDetail",getChannelProduct:i+"/credit/signIn",getRandomProduct:i+"/product/getRandomSortProduct",doPointer:i+"/user/trackReport",cereAnnouncement:g+"/cereAnnouncement/queryByPage",cereCarouselImage:g+"/cereCarouselImage/queryByPage",popularProductSearch:i+"/canvas/popularProductSearch",youhuiquan:i+"/coupon/getCoupons",DengJi:i+"/cereUserAccessRecords/add",wenjuanList:g+"/cereQuestionnaireTable/queryById",wenjuanUp:i+"/cereQuestionnaireAnswering/add",couponnew:i+"/coupon/myCoupons",cereCouponMainTablequeryByPage:g+"/cereCouponMainTable/queryByPage",receiveCoupons:i+"/coupon/receiveCoupons",cereCouponKeyUse:i+"/order/cereCouponKeyUse",jietoken:i+"/cereQuestionnaireAnswering/get/token",UpUrl:g+"/miniio/uploadQuestion",getFen:"https://jy.scjysm.asia:18086/liuliang/vip/member/v1/spi/member/getByPhone",ltoken:i+"/memberManagement/getMemberAccessToken",huiyuanList:i+"/memberManagement/getByPhone"}},"6f19b":function(e,t,a){"use strict";a("6a54"),Object.defineProperty(t,"__esModule",{value:!0}),t.os=function(){return uni.getSystemInfoSync().platform},t.sys=function(){return uni.getSystemInfoSync()}},7900:function(e,t,a){"use strict";a("6a54");var n=a("f5bd").default;Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0,a("8f71"),a("bf0f");var o=n(a("f55d")),r=n(a("6a70")),i=n(a("4ed6")),g=n(a("aca7")),u=n(a("8557a")),p=n(a("2831")),d=n(a("1ce1")),s=n(a("b38c")),c=n(a("4948")),l=n(a("d8e2")),m=n(a("3a65")),_=n(a("3a6d")),f=n(a("8a07")),y=n(a("bf2f")),b=n(a("322b")),h=n(a("c71f")),C=n(a("fda4")),v=n(a("1899")),M=n(a("3f48")),x=n(a("53cb")),S=a("6f19b"),w=n(a("c818")),P=n(a("18b4")),k=n(a("b28e")),T=n(a("681f"));var A={queryParams:i.default,route:g.default,timeFormat:u.default,date:u.default,timeFrom:p.default,colorGradient:d.default.colorGradient,guid:s.default,color:c.default,sys:S.sys,os:S.os,type2icon:l.default,randomArray:m.default,wranning:function(e){0},get:r.default.get,post:r.default.post,put:r.default.put,delete:r.default.delete,hexToRgb:d.default.hexToRgb,rgbToHex:d.default.rgbToHex,test:b.default,random:h.default,deepClone:_.default,deepMerge:f.default,getParent:M.default,$parent:x.default,addUnit:y.default,trim:C.default,type:["primary","success","error","warning","info"],http:r.default,toast:v.default,config:k.default,zIndex:T.default,debounce:w.default,throttle:P.default},L={install:function(e){e.mixin(o.default),e.prototype.openShare&&e.mixin(mpShare),e.filter("timeFormat",(function(e,t){return(0,u.default)(e,t)})),e.filter("date",(function(e,t){return(0,u.default)(e,t)})),e.filter("timeFrom",(function(e,t){return(0,p.default)(e,t)})),e.prototype.$u=A}};t.default=L},8276:function(e,t,a){"use strict";var n=a("29c5"),o=a.n(n);o.a},"83c8":function(e,t,a){"use strict";a("bf0f");var n=a("5303");e.exports={request:function(e,t){var a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"GET";return new Promise((function(o,r){var i={"Content-Type":"application/json"},g=uni.getStorageSync("storage_key"),u=g.token;u&&(i["Authorization"]=u),(0,n.showLoading)(),uni.request({url:e,data:t,method:a,header:i,success:function(e){(0,n.hideLoading)(),200==e.statusCode?"200"===e.data.code||""===e.data.code||"0"===e.data.code?o(e.data):"20004"===e.data.code||"20005"===e.data.code||"20003"===e.data.code?(uni.removeStorageSync("storage_key"),uni.navigateTo({url:"/pages_category_page2/userModule/login"})):uni.showToast({title:e.data.message,icon:"none"}):r(e)},fail:function(e){(0,n.hideLoading)(),r(e)}})}))},request1:function(e,t){var a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"GET";return new Promise((function(o,r){(0,n.showLoading)(),uni.request({url:e,data:t,method:a,header:{"Content-Type":"application/json",tenant:"MDAwMA=="},success:function(e){(0,n.hideLoading)(),"200"===e.data.code||""===t.code?o(e.data):r(e)},fail:function(e){(0,n.hideLoading)(),r(e)}})}))},request2:function(e,t){var a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"POST";return new Promise((function(o,r){(0,n.showLoading)(),uni.request({url:e,data:t,method:a,header:{"Content-Type":"application/json",tenant:"MDAwMA=="},success:function(e){(0,n.hideLoading)(),"200"===e.data.code||""===e.data.code?o(e.data):r(e)},fail:function(e){(0,n.hideLoading)(),r(e)}})}))},requestLiu:function(e,t){var a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"GET";return new Promise((function(o,r){var i={"Content-Type":"application/json",appId:"1664096962504089602",memberAccessToken:t.liutk};e=e+"/"+t.phone,(0,n.showLoading)(),uni.request({url:e,method:a,header:i,success:function(e){(0,n.hideLoading)(),200==e.statusCode?"200"===e.data.code||""===e.data.code?o(e.data):"20004"===e.data.code||"20005"===e.data.code||"20003"===e.data.code?(uni.removeStorageSync("storage_key"),uni.navigateTo({url:"/pages_category_page2/userModule/login"})):uni.showToast({title:e.data.message,icon:"none"}):r(e)},fail:function(e){(0,n.hideLoading)(),r(e)}})}))}}},"8557a":function(e,t,a){"use strict";a("6a54"),Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0,a("795c"),a("bf0f"),a("7a76"),a("c9b5"),a("f7a5"),a("e966"),a("64aa"),a("ab80"),a("5c47"),a("23f4"),a("7d2f"),a("9c4e"),a("a1c1"),String.prototype.padStart||(String.prototype.padStart=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:" ";if("[object String]"!==Object.prototype.toString.call(t))throw new TypeError("fillString must be String");var a=this;if(a.length>=e)return String(a);var n=e-a.length,o=Math.ceil(n/t.length);while(o>>=1)t+=t,1===o&&(t+=t);return t.slice(0,n)+a});var n=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"yyyy-mm-dd";e=parseInt(e),e||(e=Number(new Date)),10==e.toString().length&&(e*=1e3);var a,n=new Date(e),o={"y+":n.getFullYear().toString(),"m+":(n.getMonth()+1).toString(),"d+":n.getDate().toString(),"h+":n.getHours().toString(),"M+":n.getMinutes().toString(),"s+":n.getSeconds().toString()};for(var r in o)a=new RegExp("("+r+")").exec(t),a&&(t=t.replace(a[1],1==a[1].length?o[r]:o[r].padStart(a[1].length,"0")));return t};t.default=n},"8a07":function(e,t,a){"use strict";a("6a54");var n=a("f5bd").default;Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0,a("c223");var o=n(a("fcf3")),r=n(a("3a6d"));var i=function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},a=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(t=(0,r.default)(t),"object"!==(0,o.default)(t)||"object"!==(0,o.default)(a))return!1;for(var n in a)a.hasOwnProperty(n)&&(n in t?"object"!==(0,o.default)(t[n])||"object"!==(0,o.default)(a[n])?t[n]=a[n]:t[n].concat&&a[n].concat?t[n]=t[n].concat(a[n]):t[n]=e(t[n],a[n]):t[n]=a[n]);return t};t.default=i},"8cc2":function(e,t,a){"use strict";var n=a("f5bd").default;a("c223");var o=n(a("9b1b"));a("3dde"),a("a8b2"),a("1480"),a("6e4a"),a("027b"),a("9337");var r=n(a("9b8e")),i=n(a("fbe5")),g=n(a("7900")),u=n(a("14ef")),p=n(a("3387")),d=a("2827"),s=a("b378");r.default.use(g.default),r.default.config.productionTip=!1,r.default.prototype.$store=u.default,r.default.prototype.$lodash=p.default,r.default.prototype.$jump=d.jump,r.default.prototype.$jumpToTabbar=d.jumpToTabbar,r.default.prototype.$goBack=d.goBack,r.default.prototype.$getJumpParam=d.getJumpParam,r.default.prototype.$encrypt=s.encrypt,r.default.prototype.$decrypt=s.decrypt,r.default.prototype.$decryptall=s.decryptall;var c=window.location.host;r.default.prototype.$hostUrl="https://jy.scjysm.asia:18086/cdwlMall",r.default.prototype.$baseURL="localhost:8080"===c||"localhost:8081"===c||"localhost:9528"===c||"192.168.31.45:9528"===c?"https://jy.scjysm.asia:18086/cdwlMall":"".concat(window.location.protocol,"//").concat(window.location.host,"/cdwlMall"),i.default.mpType="app";var l=new r.default((0,o.default)({},i.default));console.log(u.default),l.$mount()},aae8:function(e,t,a){e.exports=a.p+"static/images/default.png"},aca7:function(e,t,a){"use strict";a("6a54");var n=a("f5bd").default;Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=n(a("fcf3"));a("dc8a"),a("5c47"),a("0506"),a("e966");var r=n(a("4ed6"));var i=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],a={type:"navigateTo",url:"",delta:1,params:{},animationType:"pop-in",animationDuration:300};if(a=Object.assign(a,e),"/"!=a.url[0]&&(a.url="/"+a.url),Object.keys(a.params).length&&"switchTab"!=a.type){var n="";/.*\/.*\?.*=.*/.test(a.url)?(n=(0,r.default)(a.params,!1),a.url+="&"+n):(n=(0,r.default)(a.params),a.url+=n)}if("string"===typeof e&&"object"==(0,o.default)(t)){var i="";/.*\/.*\?.*=.*/.test(e)?(i=(0,r.default)(t,!1),e+="&"+i):(i=(0,r.default)(t),e+=i)}return"string"===typeof e?("/"!=e[0]&&(e="/"+e),uni.navigateTo({url:e})):"navigateTo"==a.type||"to"==a.type?uni.navigateTo({url:a.url,animationType:a.animationType,animationDuration:a.animationDuration}):"redirectTo"==a.type||"redirect"==a.type?uni.redirectTo({url:a.url}):"switchTab"==a.type||"tab"==a.type?uni.switchTab({url:a.url}):"reLaunch"==a.type?uni.reLaunch({url:a.url}):"navigateBack"==a.type||"back"==a.type?uni.navigateBack({delta:parseInt(a.delta?a.delta:this.delta)}):void 0};t.default=i},b28e:function(e,t,a){"use strict";a("6a54"),Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n={v:"1.6.2",version:"1.6.2",type:["primary","success","info","error","warning"]};t.default=n},b2d4:function(e,t,a){var n=a("c86c");t=n(!1),t.push([e.i,".uni-modal__btn_primary{background:#333;color:#ffebc4!important}",""]),e.exports=t},b378:function(e,t,a){"use strict";a("6a54"),Object.defineProperty(t,"__esModule",{value:!0}),t.encryptall=t.encrypt=t.decryptall=t.decrypt=void 0,a("5ef2"),a("aa9c"),a("bf0f"),a("fd3c"),a("dc8a"),a("2797");var n=a("2579"),o="8bd8a83221742111c7532b7275a7fe9c",r=function(e){if(!e)return"";var t=n.sm4.encrypt(e,"cda4442f102f6396eea76902e37ad7cb",{iv:o,mode:"cbc",padding:"pkcs#7"});return t};t.encrypt=r;var i=function(e){if(!e)return"";try{var t=n.sm4.decrypt(e,"cda4442f102f6396eea76902e37ad7cb",{iv:o,mode:"cbc",padding:"pkcs#7"});return t}catch(a){return"解密失败!"}};t.decrypt=i;t.decryptall=function(e,t){var a=[],n={};for(var o in e){var i={typeis:"2",keyname:o,value:e[o]};t.length>0?(console.log(-1!=t.indexOf(o)),-1!=t.indexOf(o)&&(i.typeis="1")):i.typeis="1",a.push(i)}return a.forEach((function(e){"1"==e.typeis&&e.value&&(console.error(e),e.value=r(e.value)),n[e.keyname]=e.value})),n};t.encryptall=function(e,t){var a=e.map((function(e){var a=Object.keys(e);return a.forEach((function(a){t.length>0?(console.log(-1!=t.indexOf(a)),-1!=t.indexOf(a)&&(e[a]=i(e[a]))):e[a]=i(e[a])})),e}));return a}},b38c:function(e,t,a){"use strict";a("6a54"),Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:32,t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,n="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz".split(""),o=[];if(a=a||n.length,e)for(var r=0;r<e;r++)o[r]=n[0|Math.random()*a];else{var i;o[8]=o[13]=o[18]=o[23]="-",o[14]="4";for(var g=0;g<36;g++)o[g]||(i=0|16*Math.random(),o[g]=n[19==g?3&i|8:i])}return t?(o.shift(),"u"+o.join("")):o.join("")};t.default=n},bf2f:function(e,t,a){"use strict";a("6a54");var n=a("f5bd").default;Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"auto",t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"rpx";return e=String(e),o.default.number(e)?"".concat(e).concat(t):e},a("c223");var o=n(a("322b"))},c71f:function(e,t,a){"use strict";a("6a54"),Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=function(e,t){if(e>=0&&t>0&&t>=e){var a=t-e+1;return Math.floor(Math.random()*a+e)}return 0};t.default=n},c818:function(e,t,a){"use strict";a("6a54"),Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=null;var o=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:500,a=arguments.length>2&&void 0!==arguments[2]&&arguments[2];if(null!==n&&clearTimeout(n),a){var o=!n;n=setTimeout((function(){n=null}),t),o&&"function"===typeof e&&e()}else n=setTimeout((function(){"function"===typeof e&&e()}),t)};t.default=o},cc42:function(e,t,a){"use strict";a("6a54"),Object.defineProperty(t,"__esModule",{value:!0}),t.doPointRequest=function(e){return new Promise((function(t,a){var o={"Content-Type":"application/json"},r=uni.getStorageSync("storage_key"),i=r.token;i&&(o["Authorization"]=i),uni.request({url:n.doPointer,data:e,method:"post",header:o,success:function(e){t(e)},fail:function(e){a(e)}})}))},a("bf0f");a("5303");var n=a("6d56")},d8e2:function(e,t,a){"use strict";a("6a54"),Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0,a("5ef2");var n=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"success",t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];-1==["primary","info","error","warning","success"].indexOf(e)&&(e="success");var a="";switch(e){case"primary":a="info-circle";break;case"info":a="info-circle";break;case"error":a="close-circle";break;case"warning":a="error-circle";break;case"success":a="checkmark-circle";break;default:a="checkmark-circle"}return t&&(a+="-fill"),a};t.default=n},e9ce:function(e,t,a){"use strict";a.r(t);var n=a("1e8b"),o=a.n(n);for(var r in n)["default"].indexOf(r)<0&&function(e){a.d(t,e,(function(){return n[e]}))}(r);t["default"]=o.a},f55d:function(e,t,a){a("bf0f"),a("5c47"),e.exports={data:function(){return{}},onLoad:function(){this.$u.getRect=this.$uGetRect},methods:{$uGetRect:function(e,t){var a=this;return new Promise((function(n){uni.createSelectorQuery().in(a)[t?"selectAll":"select"](e).boundingClientRect((function(e){t&&Array.isArray(e)&&e.length&&n(e),!t&&e&&n(e)})).exec()}))}},onReachBottom:function(){uni.$emit("uOnReachBottom")}}},f6ba:function(e,t,a){"use strict";a.d(t,"b",(function(){return n})),a.d(t,"c",(function(){return o})),a.d(t,"a",(function(){}));var n=function(){var e=this.$createElement,t=this._self._c||e;return t("App",{attrs:{keepAliveInclude:this.keepAliveInclude}})},o=[]},fbe5:function(e,t,a){"use strict";a.r(t);var n=a("f6ba"),o=a("e9ce");for(var r in o)["default"].indexOf(r)<0&&function(e){a.d(t,e,(function(){return o[e]}))}(r);a("8276"),a("2c68");var i=a("828b"),g=Object(i["a"])(o["default"],n["b"],n["c"],!1,null,null,null,!1,n["a"],void 0);t["default"]=g.exports},fda4:function(e,t,a){"use strict";a("6a54"),Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0,a("5c47"),a("a1c1");var n=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"both";return"both"==t?e.replace(/^\s+|\s+$/g,""):"left"==t?e.replace(/^\s*/,""):"right"==t?e.replace(/(\s*$)/g,""):"all"==t?e.replace(/\s+/g,""):e};t.default=n}});
2 1 \ No newline at end of file
  2 +(function(e){function t(t){for(var n,i,g=t[0],u=t[1],p=t[2],s=0,c=[];s<g.length;s++)i=g[s],Object.prototype.hasOwnProperty.call(o,i)&&o[i]&&c.push(o[i][0]),o[i]=0;for(n in u)Object.prototype.hasOwnProperty.call(u,n)&&(e[n]=u[n]);d&&d(t);while(c.length)c.shift()();return r.push.apply(r,p||[]),a()}function a(){for(var e,t=0;t<r.length;t++){for(var a=r[t],n=!0,g=1;g<a.length;g++){var u=a[g];0!==o[u]&&(n=!1)}n&&(r.splice(t--,1),e=i(i.s=a[0]))}return e}var n={},o={index:0},r=[];function i(t){if(n[t])return n[t].exports;var a=n[t]={i:t,l:!1,exports:{}};return e[t].call(a.exports,a,a.exports,i),a.l=!0,a.exports}i.e=function(e){var t=[],a=o[e];if(0!==a)if(a)t.push(a[2]);else{var n=new Promise((function(t,n){a=o[e]=[t,n]}));t.push(a[2]=n);var r,g=document.createElement("script");g.charset="utf-8",g.timeout=120,i.nc&&g.setAttribute("nonce",i.nc),g.src=function(e){return i.p+"static/js/"+({"pages-tabbar-cart-index":"pages-tabbar-cart-index","pages-tabbar-category-index":"pages-tabbar-category-index","pages-tabbar-index-index~pages_category_page1-orderModule-paySuccessful":"pages-tabbar-index-index~pages_category_page1-orderModule-paySuccessful","pages_category_page1-orderModule-paySuccessful":"pages_category_page1-orderModule-paySuccessful","pages-tabbar-index-index~pages_category_page1-store-index":"pages-tabbar-index-index~pages_category_page1-store-index","pages-tabbar-index-index":"pages-tabbar-index-index","pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb":"pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb","pages-tabbar-user-index":"pages-tabbar-user-index","pages_category_page1-askedquestion-askedquestion":"pages_category_page1-askedquestion-askedquestion","pages_category_page1-distributionModule-recruit~pages_category_page1-goodsModule-combination~pages_c~aa7f3c4b":"pages_category_page1-distributionModule-recruit~pages_category_page1-goodsModule-combination~pages_c~aa7f3c4b","pages_category_page1-store-index":"pages_category_page1-store-index","pages_category_page1-distributionModule-recruit":"pages_category_page1-distributionModule-recruit","pages_category_page1-distributionModule-totalAward~pages_category_page1-distributionModule-unliquida~6efaba3e":"pages_category_page1-distributionModule-totalAward~pages_category_page1-distributionModule-unliquida~6efaba3e","pages_category_page1-goodsModule-goodsDetails~pages_category_page1-goodsModule-inviteSpell~pages_cat~bc1ad44c":"pages_category_page1-goodsModule-goodsDetails~pages_category_page1-goodsModule-inviteSpell~pages_cat~bc1ad44c","pages_category_page1-goodsModule-goodsDetails":"pages_category_page1-goodsModule-goodsDetails","pages_category_page1-orderModule-index~pages_category_page1-orderModule-orderConfirm~pages_category_~6d70e372":"pages_category_page1-orderModule-index~pages_category_page1-orderModule-orderConfirm~pages_category_~6d70e372","pages_category_page1-orderModule-index":"pages_category_page1-orderModule-index","pages_category_page1-goodsModule-addEvaluate~pages_category_page1-goodsModule-evaluate~pages_categor~062958de":"pages_category_page1-goodsModule-addEvaluate~pages_category_page1-goodsModule-evaluate~pages_categor~062958de","pages_category_page1-orderModule-afterSaleApplyRefund":"pages_category_page1-orderModule-afterSaleApplyRefund","pages_category_page1-orderModule-afterSaleApplyRetund":"pages_category_page1-orderModule-afterSaleApplyRetund","pages_category_page1-goodsModule-combination":"pages_category_page1-goodsModule-combination","pages_category_page1-goodsModule-inviteSpell":"pages_category_page1-goodsModule-inviteSpell","pages_category_page1-orderModule-orderDetails":"pages_category_page1-orderModule-orderDetails","pages_category_page1-orderModule-orderConfirm~pages_category_page1-question-question":"pages_category_page1-orderModule-orderConfirm~pages_category_page1-question-question","pages_category_page1-orderModule-orderConfirm":"pages_category_page1-orderModule-orderConfirm","pages_category_page2-orderModule-refundDetails":"pages_category_page2-orderModule-refundDetails","pages_category_page2-orderModule-returnDetails":"pages_category_page2-orderModule-returnDetails","pages_category_page2-userModule-addAddress~pages_category_page2-userModule-personalDetails":"pages_category_page2-userModule-addAddress~pages_category_page2-userModule-personalDetails","pages_category_page2-userModule-addAddress":"pages_category_page2-userModule-addAddress","pages_category_page2-userModule-personalDetails":"pages_category_page2-userModule-personalDetails","pages_category_page2-userModule-withdraw":"pages_category_page2-userModule-withdraw","pages_category_page1-goodsModule-addEvaluate":"pages_category_page1-goodsModule-addEvaluate","pages_category_page1-goodsModule-evaluate":"pages_category_page1-goodsModule-evaluate","pages_category_page1-orderModule-Intervene":"pages_category_page1-orderModule-Intervene","pages_category_page1-orderModule-addLogistics":"pages_category_page1-orderModule-addLogistics","pages_category_page1-orderModule-platformJoin":"pages_category_page1-orderModule-platformJoin","pages_category_page1-orderModule-afterSaleApply~pages_category_page1-question-question":"pages_category_page1-orderModule-afterSaleApply~pages_category_page1-question-question","pages_category_page1-orderModule-afterSaleApply":"pages_category_page1-orderModule-afterSaleApply","pages_category_page1-question-question":"pages_category_page1-question-question","pages_category_page1-activity":"pages_category_page1-activity","pages_category_page1-coupon-list":"pages_category_page1-coupon-list","pages_category_page1-coupon-product":"pages_category_page1-coupon-product","pages_category_page1-customer-chatBox":"pages_category_page1-customer-chatBox","pages_category_page1-discount-discount":"pages_category_page1-discount-discount","pages_category_page1-discount-platformDiscount":"pages_category_page1-discount-platformDiscount","pages_category_page1-discount-spikeList":"pages_category_page1-discount-spikeList","pages_category_page1-distributionModule-commodity~pages_category_page1-distributionModule-invite~pag~ec5c6895":"pages_category_page1-distributionModule-commodity~pages_category_page1-distributionModule-invite~pag~ec5c6895","pages_category_page1-distributionModule-commodity":"pages_category_page1-distributionModule-commodity","pages_category_page1-distributionModule-invite":"pages_category_page1-distributionModule-invite","pages_category_page1-distributionModule-promotion":"pages_category_page1-distributionModule-promotion","pages_category_page1-distributionModule-distributionOrder":"pages_category_page1-distributionModule-distributionOrder","pages_category_page1-distributionModule-index":"pages_category_page1-distributionModule-index","pages_category_page1-distributionModule-salesIndex":"pages_category_page1-distributionModule-salesIndex","pages_category_page1-distributionModule-shareProduct":"pages_category_page1-distributionModule-shareProduct","pages_category_page1-distributionModule-totalAward":"pages_category_page1-distributionModule-totalAward","pages_category_page1-distributionModule-unliquidated":"pages_category_page1-distributionModule-unliquidated","pages_category_page2-userModule-collection":"pages_category_page2-userModule-collection","pages_category_page2-userModule-questionList":"pages_category_page2-userModule-questionList","pages_category_page1-distributionModule-totalClient":"pages_category_page1-distributionModule-totalClient","pages_category_page1-distributionModule-totalPersonnel":"pages_category_page1-distributionModule-totalPersonnel","pages_category_page1-goodsModule-answerList":"pages_category_page1-goodsModule-answerList","pages_category_page1-goodsModule-canvasGoods":"pages_category_page1-goodsModule-canvasGoods","pages_category_page1-goodsModule-couponShopList":"pages_category_page1-goodsModule-couponShopList","pages_category_page1-goodsModule-evaSuccessful":"pages_category_page1-goodsModule-evaSuccessful","pages_category_page1-goodsModule-evaluateDetails":"pages_category_page1-goodsModule-evaluateDetails","pages_category_page1-goodsModule-evaluateList":"pages_category_page1-goodsModule-evaluateList","pages_category_page1-goodsModule-goodsList":"pages_category_page1-goodsModule-goodsList","pages_category_page1-goodsModule-invitePoster":"pages_category_page1-goodsModule-invitePoster","pages_category_page1-goodsModule-putQuestions":"pages_category_page1-goodsModule-putQuestions","pages_category_page1-goodsModule-qADetail":"pages_category_page1-goodsModule-qADetail","pages_category_page1-goodsModule-userEvaluate":"pages_category_page1-goodsModule-userEvaluate","pages_category_page1-homeModule-special":"pages_category_page1-homeModule-special","pages_category_page1-integral-exchangeDetail":"pages_category_page1-integral-exchangeDetail","pages_category_page1-integral-index":"pages_category_page1-integral-index","pages_category_page1-integral-sign":"pages_category_page1-integral-sign","pages_category_page1-linkOthers-index":"pages_category_page1-linkOthers-index","pages_category_page1-memberCenter-activityList":"pages_category_page1-memberCenter-activityList","pages_category_page1-memberCenter-index":"pages_category_page1-memberCenter-index","pages_category_page1-memberCenter-memberSign":"pages_category_page1-memberCenter-memberSign","pages_category_page1-orderModule-logisticsInfo":"pages_category_page1-orderModule-logisticsInfo","pages_category_page1-procedure-procedure":"pages_category_page1-procedure-procedure","pages_category_page1-question-succe":"pages_category_page1-question-succe","pages_category_page1-search-index-index":"pages_category_page1-search-index-index","pages_category_page2-channelCoupon-index":"pages_category_page2-channelCoupon-index","pages_category_page2-livePage-index":"pages_category_page2-livePage-index","pages_category_page2-orderModule-afterSale":"pages_category_page2-orderModule-afterSale","pages_category_page2-userModule-accountLogin":"pages_category_page2-userModule-accountLogin","pages_category_page2-userModule-addBankcard":"pages_category_page2-userModule-addBankcard","pages_category_page2-userModule-address":"pages_category_page2-userModule-address","pages_category_page2-userModule-bankcard":"pages_category_page2-userModule-bankcard","pages_category_page2-userModule-bindPhone":"pages_category_page2-userModule-bindPhone","pages_category_page2-userModule-coupon":"pages_category_page2-userModule-coupon","pages_category_page2-userModule-footprintList":"pages_category_page2-userModule-footprintList","pages_category_page2-userModule-login":"pages_category_page2-userModule-login","pages_category_page2-userModule-memberAccount":"pages_category_page2-userModule-memberAccount","pages_category_page2-userModule-messageCenter~pages_category_page2-userModule-messageDetail":"pages_category_page2-userModule-messageCenter~pages_category_page2-userModule-messageDetail","pages_category_page2-userModule-messageCenter":"pages_category_page2-userModule-messageCenter","pages_category_page2-userModule-messageDetail":"pages_category_page2-userModule-messageDetail","pages_category_page2-userModule-mobilePhone":"pages_category_page2-userModule-mobilePhone","pages_category_page2-userModule-protocol":"pages_category_page2-userModule-protocol","pages_category_page2-userModule-register":"pages_category_page2-userModule-register","pages_category_page2-userModule-unsubscribe":"pages_category_page2-userModule-unsubscribe","pages_category_page2-userModule-unsubscribeCode":"pages_category_page2-userModule-unsubscribeCode"}[e]||e)+"."+{"pages-tabbar-cart-index":"b162100b","pages-tabbar-category-index":"43c5d32b","pages-tabbar-index-index~pages_category_page1-orderModule-paySuccessful":"3431fe49","pages_category_page1-orderModule-paySuccessful":"0024b4b8","pages-tabbar-index-index~pages_category_page1-store-index":"f087d449","pages-tabbar-index-index":"d19404f7","pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb":"d06cb581","pages-tabbar-user-index":"04a1363c","pages_category_page1-askedquestion-askedquestion":"f03f0c75","pages_category_page1-distributionModule-recruit~pages_category_page1-goodsModule-combination~pages_c~aa7f3c4b":"2549038e","pages_category_page1-store-index":"196a6f8a","pages_category_page1-distributionModule-recruit":"077add14","pages_category_page1-distributionModule-totalAward~pages_category_page1-distributionModule-unliquida~6efaba3e":"1ef53932","pages_category_page1-goodsModule-goodsDetails~pages_category_page1-goodsModule-inviteSpell~pages_cat~bc1ad44c":"e6dafaa9","pages_category_page1-goodsModule-goodsDetails":"33420e94","pages_category_page1-orderModule-index~pages_category_page1-orderModule-orderConfirm~pages_category_~6d70e372":"84330afe","pages_category_page1-orderModule-index":"df86c5de","pages_category_page1-goodsModule-addEvaluate~pages_category_page1-goodsModule-evaluate~pages_categor~062958de":"2319e26a","pages_category_page1-orderModule-afterSaleApplyRefund":"6af48b70","pages_category_page1-orderModule-afterSaleApplyRetund":"9ea2c241","pages_category_page1-goodsModule-combination":"cf85fb5d","pages_category_page1-goodsModule-inviteSpell":"644a92b7","pages_category_page1-orderModule-orderDetails":"71e1ec64","pages_category_page1-orderModule-orderConfirm~pages_category_page1-question-question":"0aa7575d","pages_category_page1-orderModule-orderConfirm":"a7ad821d","pages_category_page2-orderModule-refundDetails":"7273fd8c","pages_category_page2-orderModule-returnDetails":"492b67d4","pages_category_page2-userModule-addAddress~pages_category_page2-userModule-personalDetails":"cd836e1c","pages_category_page2-userModule-addAddress":"8944632f","pages_category_page2-userModule-personalDetails":"6c39fb00","pages_category_page2-userModule-withdraw":"65e44609","pages_category_page1-goodsModule-addEvaluate":"be8c9d95","pages_category_page1-goodsModule-evaluate":"04e3eb7d","pages_category_page1-orderModule-Intervene":"2993d8e1","pages_category_page1-orderModule-addLogistics":"77e50a65","pages_category_page1-orderModule-platformJoin":"088c2452","pages_category_page1-orderModule-afterSaleApply~pages_category_page1-question-question":"84f4c534","pages_category_page1-orderModule-afterSaleApply":"67655e93","pages_category_page1-question-question":"fadae7b4","pages_category_page1-activity":"56b5fa29","pages_category_page1-coupon-list":"1181c05f","pages_category_page1-coupon-product":"8ff71ac4","pages_category_page1-customer-chatBox":"e2464ab7","pages_category_page1-discount-discount":"a2b3a75c","pages_category_page1-discount-platformDiscount":"f5221da0","pages_category_page1-discount-spikeList":"f7f6c7c4","pages_category_page1-distributionModule-commodity~pages_category_page1-distributionModule-invite~pag~ec5c6895":"4ddf8b06","pages_category_page1-distributionModule-commodity":"e1e3a32a","pages_category_page1-distributionModule-invite":"d1aaf2d9","pages_category_page1-distributionModule-promotion":"b1c2dc61","pages_category_page1-distributionModule-distributionOrder":"9ebd98ca","pages_category_page1-distributionModule-index":"3d89aa39","pages_category_page1-distributionModule-salesIndex":"54ee226d","pages_category_page1-distributionModule-shareProduct":"af64221e","pages_category_page1-distributionModule-totalAward":"76901fdf","pages_category_page1-distributionModule-unliquidated":"e114bd56","pages_category_page2-userModule-collection":"0d982e3d","pages_category_page2-userModule-questionList":"94aa4f09","pages_category_page1-distributionModule-totalClient":"2b17cad3","pages_category_page1-distributionModule-totalPersonnel":"48ddea2b","pages_category_page1-goodsModule-answerList":"759ae8f3","pages_category_page1-goodsModule-canvasGoods":"e518e1b8","pages_category_page1-goodsModule-couponShopList":"589d56b7","pages_category_page1-goodsModule-evaSuccessful":"ee838c3d","pages_category_page1-goodsModule-evaluateDetails":"3e040e85","pages_category_page1-goodsModule-evaluateList":"764aa31e","pages_category_page1-goodsModule-goodsList":"22ea972e","pages_category_page1-goodsModule-invitePoster":"f0ce2ba6","pages_category_page1-goodsModule-putQuestions":"0595d0f8","pages_category_page1-goodsModule-qADetail":"270265c8","pages_category_page1-goodsModule-userEvaluate":"453dbbe9","pages_category_page1-homeModule-special":"85f1caa9","pages_category_page1-integral-exchangeDetail":"e2409d1d","pages_category_page1-integral-index":"d8911ed7","pages_category_page1-integral-sign":"52ffd3e1","pages_category_page1-linkOthers-index":"e0488fe0","pages_category_page1-memberCenter-activityList":"320d306e","pages_category_page1-memberCenter-index":"98b9dd98","pages_category_page1-memberCenter-memberSign":"28a6f281","pages_category_page1-orderModule-logisticsInfo":"600bd286","pages_category_page1-procedure-procedure":"e522baf6","pages_category_page1-question-succe":"8c8f72ea","pages_category_page1-search-index-index":"13cc6bb0","pages_category_page2-channelCoupon-index":"1aeb838f","pages_category_page2-livePage-index":"be235c66","pages_category_page2-orderModule-afterSale":"bdf13692","pages_category_page2-userModule-accountLogin":"e338adca","pages_category_page2-userModule-addBankcard":"bd2b966d","pages_category_page2-userModule-address":"aad5182b","pages_category_page2-userModule-bankcard":"df518ada","pages_category_page2-userModule-bindPhone":"781d7787","pages_category_page2-userModule-coupon":"6484eaed","pages_category_page2-userModule-footprintList":"20745013","pages_category_page2-userModule-login":"ce965a96","pages_category_page2-userModule-memberAccount":"677f3352","pages_category_page2-userModule-messageCenter~pages_category_page2-userModule-messageDetail":"596c73dd","pages_category_page2-userModule-messageCenter":"4f2d1fdd","pages_category_page2-userModule-messageDetail":"bd413358","pages_category_page2-userModule-mobilePhone":"8d656608","pages_category_page2-userModule-protocol":"48d081bb","pages_category_page2-userModule-register":"8b24d718","pages_category_page2-userModule-unsubscribe":"e5b83cb5","pages_category_page2-userModule-unsubscribeCode":"3ae5bc72"}[e]+".js"}(e);var u=new Error;r=function(t){g.onerror=g.onload=null,clearTimeout(p);var a=o[e];if(0!==a){if(a){var n=t&&("load"===t.type?"missing":t.type),r=t&&t.target&&t.target.src;u.message="Loading chunk "+e+" failed.\n("+n+": "+r+")",u.name="ChunkLoadError",u.type=n,u.request=r,a[1](u)}o[e]=void 0}};var p=setTimeout((function(){r({type:"timeout",target:g})}),12e4);g.onerror=g.onload=r,document.head.appendChild(g)}return Promise.all(t)},i.m=e,i.c=n,i.d=function(e,t,a){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:a})},i.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.t=function(e,t){if(1&t&&(e=i(e)),8&t)return e;if(4&t&&"object"===typeof e&&e&&e.__esModule)return e;var a=Object.create(null);if(i.r(a),Object.defineProperty(a,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)i.d(a,n,function(t){return e[t]}.bind(null,n));return a},i.n=function(e){var t=e&&e.__esModule?function(){return e["default"]}:function(){return e};return i.d(t,"a",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p="/cdwlMall/meh5/",i.oe=function(e){throw console.error(e),e};var g=window["webpackJsonp"]=window["webpackJsonp"]||[],u=g.push.bind(g);g.push=t,g=g.slice();for(var p=0;p<g.length;p++)t(g[p]);var d=u;r.push([0,"chunk-vendors"]),a()})({0:function(e,t,a){e.exports=a("8cc2")},"027b":function(e,t,a){"use strict";(function(e){var t=a("f5bd").default;a("473f"),a("bf0f"),a("de6c"),a("5c47"),a("a1c1");var n=t(a("9b8e")),o={keys:function(){return[]}};e["____76D46D1____"]=!0,delete e["____76D46D1____"],e.__uniConfig={easycom:{"^u-(.*)":"@/uview-ui/components/u-$1/u-$1.vue","global-loading":"@/components/GlobalLoading/index.vue","^unicloud-db$":"@dcloudio/uni-cli-shared/components/unicloud-db.vue","^uniad$":"@dcloudio/uni-cli-shared/components/uniad.vue","^ad-rewarded-video$":"@dcloudio/uni-cli-shared/components/ad-rewarded-video.vue","^ad-fullscreen-video$":"@dcloudio/uni-cli-shared/components/ad-fullscreen-video.vue","^ad-interstitial$":"@dcloudio/uni-cli-shared/components/ad-interstitial.vue","^ad-interactive$":"@dcloudio/uni-cli-shared/components/ad-interactive.vue","^page-meta$":"@dcloudio/uni-cli-shared/components/page-meta.vue","^navigation-bar$":"@dcloudio/uni-cli-shared/components/navigation-bar.vue","^uni-match-media$":"@dcloudio/uni-cli-shared/components/uni-match-media.vue"},preloadRule:{"pages_category_page1/search/index/index":{network:"all",packages:["pages_category_page1"]},"pages_category_page1/goodsModule/inviteSpell":{network:"all",packages:["pages_category_page1"]},"pages_category_page1/goodsModule/invitePoster":{network:"all",packages:["pages_category_page1"]},"pages_category_page1/orderModule/orderDetails":{network:"all",packages:["pages_category_page1"]}},globalStyle:{navigationBarTextStyle:"black",navigationBarTitleText:"在线商城",navigationBarBackgroundColor:"#fff",titleNView:!1,navigationStyle:"custom",backgroundColor:"#F8F8F8"},tabBar:{borderStyle:"black",backgroundColor:"#fff",color:"#CCCCCC",selectedColor:"#39be7a",list:[{pagePath:"pages/tabbar/index/index",iconPath:"static/images/tabbar/home.png",selectedIconPath:"static/images/tabbar/homeactive.png",text:"首页",redDot:!1,badge:""},{pagePath:"pages/tabbar/category/index",iconPath:"static/images/tabbar/fenlei.png",selectedIconPath:"static/images/tabbar/fenleiactive.png",text:"分类",redDot:!1,badge:""},{pagePath:"pages/tabbar/cart/index",iconPath:"static/images/tabbar/gouwuche.png",selectedIconPath:"static/images/tabbar/gouwucheactive.png",text:"购物车",redDot:!1,badge:""},{pagePath:"pages/tabbar/user/index",iconPath:"static/images/tabbar/wode.png",selectedIconPath:"static/images/tabbar/wodeactive.png",text:"我的",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white",redDot:!1,badge:""}]},condition:{current:0,list:[{name:"",path:"",query:""}]}},e.__uniConfig.compilerVersion="4.45",e.__uniConfig.darkmode=!1,e.__uniConfig.themeConfig={},e.__uniConfig.uniPlatform="h5",e.__uniConfig.appId="__UNI__76D46D1",e.__uniConfig.appName="锦江公园",e.__uniConfig.appVersion="1.7.4",e.__uniConfig.appVersionCode="174",e.__uniConfig.router={mode:"history",base:"/cdwlMall/meh5/"},e.__uniConfig.publicPath="/cdwlMall/meh5/",e.__uniConfig["async"]={loading:"AsyncLoading",error:"AsyncError",delay:200,timeout:6e4},e.__uniConfig.debug=!1,e.__uniConfig.networkTimeout={request:6e4,connectSocket:6e4,uploadFile:6e4,downloadFile:6e4},e.__uniConfig.sdkConfigs={maps:{}},e.__uniConfig.qqMapKey=void 0,e.__uniConfig.googleMapKey=void 0,e.__uniConfig.aMapKey=void 0,e.__uniConfig.aMapSecurityJsCode=void 0,e.__uniConfig.aMapServiceHost=void 0,e.__uniConfig.locale="",e.__uniConfig.fallbackLocale=void 0,e.__uniConfig.locales=o.keys().reduce((function(e,t){var a=t.replace(/\.\/(uni-app.)?(.*).json/,"$2"),n=o(t);return Object.assign(e[a]||(e[a]={}),n.common||n),e}),{}),e.__uniConfig.nvue={"flex-direction":"column"},e.__uniConfig.__webpack_chunk_load__=a.e,n.default.component("pages-tabbar-index-index",(function(e){var t={component:Promise.all([a.e("pages-tabbar-index-index~pages_category_page1-store-index"),a.e("pages-tabbar-index-index~pages_category_page1-orderModule-paySuccessful"),a.e("pages-tabbar-index-index")]).then(function(){return e(a("fe72"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages-tabbar-category-index",(function(e){var t={component:a.e("pages-tabbar-category-index").then(function(){return e(a("22d6"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages-tabbar-cart-index",(function(e){var t={component:a.e("pages-tabbar-cart-index").then(function(){return e(a("e061"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages-tabbar-user-index",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages-tabbar-user-index")]).then(function(){return e(a("be3f"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-discount-spikeList",(function(e){var t={component:a.e("pages_category_page1-discount-spikeList").then(function(){return e(a("7761"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-discount-discount",(function(e){var t={component:a.e("pages_category_page1-discount-discount").then(function(){return e(a("4385"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-discount-platformDiscount",(function(e){var t={component:a.e("pages_category_page1-discount-platformDiscount").then(function(){return e(a("e66c"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-memberCenter-activityList",(function(e){var t={component:a.e("pages_category_page1-memberCenter-activityList").then(function(){return e(a("750a"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-integral-index",(function(e){var t={component:a.e("pages_category_page1-integral-index").then(function(){return e(a("d5c66"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-integral-exchangeDetail",(function(e){var t={component:a.e("pages_category_page1-integral-exchangeDetail").then(function(){return e(a("41a9"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-integral-sign",(function(e){var t={component:a.e("pages_category_page1-integral-sign").then(function(){return e(a("f4e0"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-coupon-list",(function(e){var t={component:a.e("pages_category_page1-coupon-list").then(function(){return e(a("0804"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-coupon-product",(function(e){var t={component:a.e("pages_category_page1-coupon-product").then(function(){return e(a("4bdc"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-goodsModule-combination",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages_category_page1-distributionModule-recruit~pages_category_page1-goodsModule-combination~pages_c~aa7f3c4b"),a.e("pages_category_page1-goodsModule-combination")]).then(function(){return e(a("7b02"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-activity",(function(e){var t={component:a.e("pages_category_page1-activity").then(function(){return e(a("3565"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-search-index-index",(function(e){var t={component:a.e("pages_category_page1-search-index-index").then(function(){return e(a("a5cd"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-store-index",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages_category_page1-distributionModule-recruit~pages_category_page1-goodsModule-combination~pages_c~aa7f3c4b"),a.e("pages-tabbar-index-index~pages_category_page1-store-index"),a.e("pages_category_page1-store-index")]).then(function(){return e(a("ac8a"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-goodsModule-goodsList",(function(e){var t={component:a.e("pages_category_page1-goodsModule-goodsList").then(function(){return e(a("97d4"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-goodsModule-canvasGoods",(function(e){var t={component:a.e("pages_category_page1-goodsModule-canvasGoods").then(function(){return e(a("0ad7"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-goodsModule-couponShopList",(function(e){var t={component:a.e("pages_category_page1-goodsModule-couponShopList").then(function(){return e(a("14c2"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-goodsModule-goodsDetails",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages_category_page1-distributionModule-recruit~pages_category_page1-goodsModule-combination~pages_c~aa7f3c4b"),a.e("pages_category_page1-distributionModule-totalAward~pages_category_page1-distributionModule-unliquida~6efaba3e"),a.e("pages_category_page1-goodsModule-goodsDetails~pages_category_page1-goodsModule-inviteSpell~pages_cat~bc1ad44c"),a.e("pages_category_page1-goodsModule-goodsDetails")]).then(function(){return e(a("2a7b"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-goodsModule-qADetail",(function(e){var t={component:a.e("pages_category_page1-goodsModule-qADetail").then(function(){return e(a("2a96"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-goodsModule-answerList",(function(e){var t={component:a.e("pages_category_page1-goodsModule-answerList").then(function(){return e(a("c33ac"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-goodsModule-putQuestions",(function(e){var t={component:a.e("pages_category_page1-goodsModule-putQuestions").then(function(){return e(a("d219"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-goodsModule-userEvaluate",(function(e){var t={component:a.e("pages_category_page1-goodsModule-userEvaluate").then(function(){return e(a("796a"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-goodsModule-evaSuccessful",(function(e){var t={component:a.e("pages_category_page1-goodsModule-evaSuccessful").then(function(){return e(a("4a2a"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-goodsModule-evaluateDetails",(function(e){var t={component:a.e("pages_category_page1-goodsModule-evaluateDetails").then(function(){return e(a("1f01"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-goodsModule-evaluateList",(function(e){var t={component:a.e("pages_category_page1-goodsModule-evaluateList").then(function(){return e(a("c166"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-goodsModule-addEvaluate",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages_category_page1-goodsModule-addEvaluate~pages_category_page1-goodsModule-evaluate~pages_categor~062958de"),a.e("pages_category_page1-goodsModule-addEvaluate")]).then(function(){return e(a("b25e"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-goodsModule-evaluate",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages_category_page1-goodsModule-addEvaluate~pages_category_page1-goodsModule-evaluate~pages_categor~062958de"),a.e("pages_category_page1-goodsModule-evaluate")]).then(function(){return e(a("e455"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-orderModule-index",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages_category_page1-distributionModule-recruit~pages_category_page1-goodsModule-combination~pages_c~aa7f3c4b"),a.e("pages_category_page1-distributionModule-totalAward~pages_category_page1-distributionModule-unliquida~6efaba3e"),a.e("pages_category_page1-orderModule-index~pages_category_page1-orderModule-orderConfirm~pages_category_~6d70e372"),a.e("pages_category_page1-orderModule-index")]).then(function(){return e(a("aaa7"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-orderModule-orderConfirm",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages_category_page1-distributionModule-recruit~pages_category_page1-goodsModule-combination~pages_c~aa7f3c4b"),a.e("pages_category_page1-orderModule-index~pages_category_page1-orderModule-orderConfirm~pages_category_~6d70e372"),a.e("pages_category_page1-orderModule-orderConfirm~pages_category_page1-question-question"),a.e("pages_category_page1-orderModule-orderConfirm")]).then(function(){return e(a("20d3"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-orderModule-orderDetails",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages_category_page1-distributionModule-recruit~pages_category_page1-goodsModule-combination~pages_c~aa7f3c4b"),a.e("pages_category_page1-goodsModule-goodsDetails~pages_category_page1-goodsModule-inviteSpell~pages_cat~bc1ad44c"),a.e("pages_category_page1-orderModule-index~pages_category_page1-orderModule-orderConfirm~pages_category_~6d70e372"),a.e("pages_category_page1-orderModule-orderDetails")]).then(function(){return e(a("c61a"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-orderModule-afterSaleApplyRefund",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages_category_page1-distributionModule-recruit~pages_category_page1-goodsModule-combination~pages_c~aa7f3c4b"),a.e("pages_category_page1-goodsModule-addEvaluate~pages_category_page1-goodsModule-evaluate~pages_categor~062958de"),a.e("pages_category_page1-orderModule-afterSaleApplyRefund")]).then(function(){return e(a("d639"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-orderModule-afterSaleApplyRetund",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages_category_page1-distributionModule-recruit~pages_category_page1-goodsModule-combination~pages_c~aa7f3c4b"),a.e("pages_category_page1-goodsModule-addEvaluate~pages_category_page1-goodsModule-evaluate~pages_categor~062958de"),a.e("pages_category_page1-orderModule-afterSaleApplyRetund")]).then(function(){return e(a("ec61"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-orderModule-afterSaleApply",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages_category_page1-orderModule-afterSaleApply~pages_category_page1-question-question"),a.e("pages_category_page1-orderModule-afterSaleApply")]).then(function(){return e(a("fad2"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-orderModule-platformJoin",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages_category_page1-goodsModule-addEvaluate~pages_category_page1-goodsModule-evaluate~pages_categor~062958de"),a.e("pages_category_page1-orderModule-platformJoin")]).then(function(){return e(a("52c5"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-orderModule-paySuccessful",(function(e){var t={component:Promise.all([a.e("pages-tabbar-index-index~pages_category_page1-orderModule-paySuccessful"),a.e("pages_category_page1-orderModule-paySuccessful")]).then(function(){return e(a("2cdb"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-orderModule-addLogistics",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages_category_page1-goodsModule-addEvaluate~pages_category_page1-goodsModule-evaluate~pages_categor~062958de"),a.e("pages_category_page1-orderModule-addLogistics")]).then(function(){return e(a("d5db"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-orderModule-Intervene",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages_category_page1-goodsModule-addEvaluate~pages_category_page1-goodsModule-evaluate~pages_categor~062958de"),a.e("pages_category_page1-orderModule-Intervene")]).then(function(){return e(a("8adb"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-distributionModule-index",(function(e){var t={component:a.e("pages_category_page1-distributionModule-index").then(function(){return e(a("0c7e"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-distributionModule-recruit",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages_category_page1-distributionModule-recruit~pages_category_page1-goodsModule-combination~pages_c~aa7f3c4b"),a.e("pages_category_page1-distributionModule-recruit")]).then(function(){return e(a("7cbe"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-distributionModule-salesIndex",(function(e){var t={component:a.e("pages_category_page1-distributionModule-salesIndex").then(function(){return e(a("117b1"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-distributionModule-shareProduct",(function(e){var t={component:a.e("pages_category_page1-distributionModule-shareProduct").then(function(){return e(a("5c9a"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-distributionModule-totalPersonnel",(function(e){var t={component:a.e("pages_category_page1-distributionModule-totalPersonnel").then(function(){return e(a("c0a8"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-distributionModule-totalAward",(function(e){var t={component:Promise.all([a.e("pages_category_page1-distributionModule-totalAward~pages_category_page1-distributionModule-unliquida~6efaba3e"),a.e("pages_category_page1-distributionModule-totalAward")]).then(function(){return e(a("232c"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-distributionModule-totalClient",(function(e){var t={component:a.e("pages_category_page1-distributionModule-totalClient").then(function(){return e(a("78396"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-distributionModule-unliquidated",(function(e){var t={component:Promise.all([a.e("pages_category_page1-distributionModule-totalAward~pages_category_page1-distributionModule-unliquida~6efaba3e"),a.e("pages_category_page1-distributionModule-unliquidated")]).then(function(){return e(a("6a64"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-distributionModule-promotion",(function(e){var t={component:Promise.all([a.e("pages_category_page1-distributionModule-commodity~pages_category_page1-distributionModule-invite~pag~ec5c6895"),a.e("pages_category_page1-distributionModule-promotion")]).then(function(){return e(a("5be1"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-distributionModule-commodity",(function(e){var t={component:Promise.all([a.e("pages_category_page1-distributionModule-commodity~pages_category_page1-distributionModule-invite~pag~ec5c6895"),a.e("pages_category_page1-distributionModule-commodity")]).then(function(){return e(a("ac35"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-distributionModule-distributionOrder",(function(e){var t={component:a.e("pages_category_page1-distributionModule-distributionOrder").then(function(){return e(a("1a2c"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-distributionModule-invite",(function(e){var t={component:Promise.all([a.e("pages_category_page1-distributionModule-commodity~pages_category_page1-distributionModule-invite~pag~ec5c6895"),a.e("pages_category_page1-distributionModule-invite")]).then(function(){return e(a("49ff"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-orderModule-logisticsInfo",(function(e){var t={component:a.e("pages_category_page1-orderModule-logisticsInfo").then(function(){return e(a("30f5"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-homeModule-special",(function(e){var t={component:a.e("pages_category_page1-homeModule-special").then(function(){return e(a("4c17"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-goodsModule-invitePoster",(function(e){var t={component:a.e("pages_category_page1-goodsModule-invitePoster").then(function(){return e(a("d33a"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-goodsModule-inviteSpell",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages_category_page1-distributionModule-recruit~pages_category_page1-goodsModule-combination~pages_c~aa7f3c4b"),a.e("pages_category_page1-goodsModule-goodsDetails~pages_category_page1-goodsModule-inviteSpell~pages_cat~bc1ad44c"),a.e("pages_category_page1-goodsModule-inviteSpell")]).then(function(){return e(a("3d17"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-linkOthers-index",(function(e){var t={component:a.e("pages_category_page1-linkOthers-index").then(function(){return e(a("c6e8"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-memberCenter-index",(function(e){var t={component:a.e("pages_category_page1-memberCenter-index").then(function(){return e(a("9450"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-memberCenter-memberSign",(function(e){var t={component:a.e("pages_category_page1-memberCenter-memberSign").then(function(){return e(a("bef4"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-askedquestion-askedquestion",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages_category_page1-askedquestion-askedquestion")]).then(function(){return e(a("8b39"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-procedure-procedure",(function(e){var t={component:a.e("pages_category_page1-procedure-procedure").then(function(){return e(a("8bc1"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-customer-chatBox",(function(e){var t={component:a.e("pages_category_page1-customer-chatBox").then(function(){return e(a("9af3"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-question-question",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages_category_page1-orderModule-afterSaleApply~pages_category_page1-question-question"),a.e("pages_category_page1-orderModule-orderConfirm~pages_category_page1-question-question"),a.e("pages_category_page1-question-question")]).then(function(){return e(a("58cd"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page1-question-succe",(function(e){var t={component:a.e("pages_category_page1-question-succe").then(function(){return e(a("4577"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-userModule-accountLogin",(function(e){var t={component:a.e("pages_category_page2-userModule-accountLogin").then(function(){return e(a("7fcd"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-userModule-addAddress",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages_category_page1-distributionModule-recruit~pages_category_page1-goodsModule-combination~pages_c~aa7f3c4b"),a.e("pages_category_page2-userModule-addAddress~pages_category_page2-userModule-personalDetails"),a.e("pages_category_page2-userModule-addAddress")]).then(function(){return e(a("5720"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-userModule-addBankcard",(function(e){var t={component:a.e("pages_category_page2-userModule-addBankcard").then(function(){return e(a("0d43"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-userModule-address",(function(e){var t={component:a.e("pages_category_page2-userModule-address").then(function(){return e(a("9687"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-userModule-bankcard",(function(e){var t={component:a.e("pages_category_page2-userModule-bankcard").then(function(){return e(a("fb26"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-userModule-collection",(function(e){var t={component:Promise.all([a.e("pages_category_page1-distributionModule-totalAward~pages_category_page1-distributionModule-unliquida~6efaba3e"),a.e("pages_category_page2-userModule-collection")]).then(function(){return e(a("e1f1"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-userModule-footprintList",(function(e){var t={component:a.e("pages_category_page2-userModule-footprintList").then(function(){return e(a("2fb8"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-userModule-questionList",(function(e){var t={component:Promise.all([a.e("pages_category_page1-distributionModule-totalAward~pages_category_page1-distributionModule-unliquida~6efaba3e"),a.e("pages_category_page2-userModule-questionList")]).then(function(){return e(a("c4b9"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-userModule-personalDetails",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages_category_page1-distributionModule-recruit~pages_category_page1-goodsModule-combination~pages_c~aa7f3c4b"),a.e("pages_category_page2-userModule-addAddress~pages_category_page2-userModule-personalDetails"),a.e("pages_category_page2-userModule-personalDetails")]).then(function(){return e(a("8ae6"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-userModule-coupon",(function(e){var t={component:a.e("pages_category_page2-userModule-coupon").then(function(){return e(a("e38e"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-orderModule-afterSale",(function(e){var t={component:a.e("pages_category_page2-orderModule-afterSale").then(function(){return e(a("c1f9"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-orderModule-returnDetails",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages_category_page1-distributionModule-recruit~pages_category_page1-goodsModule-combination~pages_c~aa7f3c4b"),a.e("pages_category_page2-orderModule-returnDetails")]).then(function(){return e(a("e780"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-orderModule-refundDetails",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages_category_page1-distributionModule-recruit~pages_category_page1-goodsModule-combination~pages_c~aa7f3c4b"),a.e("pages_category_page2-orderModule-refundDetails")]).then(function(){return e(a("a648"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-userModule-login",(function(e){var t={component:a.e("pages_category_page2-userModule-login").then(function(){return e(a("9c82"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-userModule-protocol",(function(e){var t={component:a.e("pages_category_page2-userModule-protocol").then(function(){return e(a("b2cd"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-userModule-register",(function(e){var t={component:a.e("pages_category_page2-userModule-register").then(function(){return e(a("2a44"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-userModule-memberAccount",(function(e){var t={component:a.e("pages_category_page2-userModule-memberAccount").then(function(){return e(a("ea97"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-userModule-withdraw",(function(e){var t={component:Promise.all([a.e("pages-tabbar-user-index~pages_category_page1-askedquestion-askedquestion~pages_category_page1-distri~43e96edb"),a.e("pages_category_page1-distributionModule-recruit~pages_category_page1-goodsModule-combination~pages_c~aa7f3c4b"),a.e("pages_category_page2-userModule-withdraw")]).then(function(){return e(a("3c58"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-userModule-messageCenter",(function(e){var t={component:Promise.all([a.e("pages_category_page2-userModule-messageCenter~pages_category_page2-userModule-messageDetail"),a.e("pages_category_page2-userModule-messageCenter")]).then(function(){return e(a("c4fe"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-userModule-messageDetail",(function(e){var t={component:Promise.all([a.e("pages_category_page2-userModule-messageCenter~pages_category_page2-userModule-messageDetail"),a.e("pages_category_page2-userModule-messageDetail")]).then(function(){return e(a("6e7f"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-userModule-bindPhone",(function(e){var t={component:a.e("pages_category_page2-userModule-bindPhone").then(function(){return e(a("acf1"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-userModule-mobilePhone",(function(e){var t={component:a.e("pages_category_page2-userModule-mobilePhone").then(function(){return e(a("22f8"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-livePage-index",(function(e){var t={component:a.e("pages_category_page2-livePage-index").then(function(){return e(a("5394"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-channelCoupon-index",(function(e){var t={component:a.e("pages_category_page2-channelCoupon-index").then(function(){return e(a("33d2"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-userModule-unsubscribe",(function(e){var t={component:a.e("pages_category_page2-userModule-unsubscribe").then(function(){return e(a("2c3e"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),n.default.component("pages_category_page2-userModule-unsubscribeCode",(function(e){var t={component:a.e("pages_category_page2-userModule-unsubscribeCode").then(function(){return e(a("5c8c"))}.bind(null,a)).catch(a.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(t.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(t.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),t})),e.__uniRoutes=[{path:"/",alias:"/pages/tabbar/index/index",component:{render:function(e){return e("Page",{props:Object.assign({isQuit:!0,isEntry:!0,isTabBar:!0,tabBarIndex:0},__uniConfig.globalStyle,{navigationStyle:"custom"})},[e("pages-tabbar-index-index",{slot:"page"})])}},meta:{id:1,name:"pages-tabbar-index-index",isNVue:!1,maxWidth:0,pagePath:"pages/tabbar/index/index",isQuit:!0,isEntry:!0,isTabBar:!0,tabBarIndex:0,windowTop:0}},{path:"/pages/tabbar/category/index",component:{render:function(e){return e("Page",{props:Object.assign({isQuit:!0,isTabBar:!0,tabBarIndex:1},__uniConfig.globalStyle,{navigationBarTitleText:"分类"})},[e("pages-tabbar-category-index",{slot:"page"})])}},meta:{id:2,name:"pages-tabbar-category-index",isNVue:!1,maxWidth:0,pagePath:"pages/tabbar/category/index",isQuit:!0,isTabBar:!0,tabBarIndex:1,windowTop:0}},{path:"/pages/tabbar/cart/index",component:{render:function(e){return e("Page",{props:Object.assign({isQuit:!0,isTabBar:!0,tabBarIndex:2},__uniConfig.globalStyle,{navigationBarTitleText:"购物车"})},[e("pages-tabbar-cart-index",{slot:"page"})])}},meta:{id:3,name:"pages-tabbar-cart-index",isNVue:!1,maxWidth:0,pagePath:"pages/tabbar/cart/index",isQuit:!0,isTabBar:!0,tabBarIndex:2,windowTop:0}},{path:"/pages/tabbar/user/index",component:{render:function(e){return e("Page",{props:Object.assign({isQuit:!0,isTabBar:!0,tabBarIndex:3},__uniConfig.globalStyle,{navigationBarTitleText:"我的",backgroundColor:"#F8F8F8"})},[e("pages-tabbar-user-index",{slot:"page"})])}},meta:{id:4,name:"pages-tabbar-user-index",isNVue:!1,maxWidth:0,pagePath:"pages/tabbar/user/index",isQuit:!0,isTabBar:!0,tabBarIndex:3,windowTop:0}},{path:"/pages_category_page1/discount/spikeList",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"秒杀专区",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page1-discount-spikeList",{slot:"page"})])}},meta:{name:"pages_category_page1-discount-spikeList",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/discount/spikeList",windowTop:0}},{path:"/pages_category_page1/discount/discount",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"限时折扣专区",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page1-discount-discount",{slot:"page"})])}},meta:{name:"pages_category_page1-discount-discount",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/discount/discount",windowTop:0}},{path:"/pages_category_page1/discount/platformDiscount",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"限时折扣专区",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page1-discount-platformDiscount",{slot:"page"})])}},meta:{name:"pages_category_page1-discount-platformDiscount",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/discount/platformDiscount",windowTop:0}},{path:"/pages_category_page1/memberCenter/activityList",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"会员专区",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page1-memberCenter-activityList",{slot:"page"})])}},meta:{name:"pages_category_page1-memberCenter-activityList",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/memberCenter/activityList",windowTop:0}},{path:"/pages_category_page1/integral/index",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"我的积分",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page1-integral-index",{slot:"page"})])}},meta:{name:"pages_category_page1-integral-index",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/integral/index",windowTop:0}},{path:"/pages_category_page1/integral/exchangeDetail",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"积分兑换",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page1-integral-exchangeDetail",{slot:"page"})])}},meta:{name:"pages_category_page1-integral-exchangeDetail",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/integral/exchangeDetail",windowTop:0}},{path:"/pages_category_page1/integral/sign",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"签到领积分",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page1-integral-sign",{slot:"page"})])}},meta:{name:"pages_category_page1-integral-sign",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/integral/sign",windowTop:0}},{path:"/pages_category_page1/coupon/list",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"优惠券"})},[e("pages_category_page1-coupon-list",{slot:"page"})])}},meta:{name:"pages_category_page1-coupon-list",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/coupon/list",windowTop:0}},{path:"/pages_category_page1/coupon/product",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"可用商品"})},[e("pages_category_page1-coupon-product",{slot:"page"})])}},meta:{name:"pages_category_page1-coupon-product",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/coupon/product",windowTop:0}},{path:"/pages_category_page1/goodsModule/combination",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"组合优惠",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page1-goodsModule-combination",{slot:"page"})])}},meta:{name:"pages_category_page1-goodsModule-combination",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/goodsModule/combination",windowTop:0}},{path:"/pages_category_page1/activity",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"热门推荐",enablePullDownRefresh:!0})},[e("pages_category_page1-activity",{slot:"page"})])}},meta:{name:"pages_category_page1-activity",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/activity",windowTop:0}},{path:"/pages_category_page1/search/index/index",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"搜索"})},[e("pages_category_page1-search-index-index",{slot:"page"})])}},meta:{name:"pages_category_page1-search-index-index",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/search/index/index",windowTop:0}},{path:"/pages_category_page1/store/index",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationStyle:"custom",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page1-store-index",{slot:"page"})])}},meta:{name:"pages_category_page1-store-index",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/store/index",windowTop:0}},{path:"/pages_category_page1/goodsModule/goodsList",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"商品列表"})},[e("pages_category_page1-goodsModule-goodsList",{slot:"page"})])}},meta:{name:"pages_category_page1-goodsModule-goodsList",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/goodsModule/goodsList",windowTop:0}},{path:"/pages_category_page1/goodsModule/canvasGoods",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"商品列表"})},[e("pages_category_page1-goodsModule-canvasGoods",{slot:"page"})])}},meta:{name:"pages_category_page1-goodsModule-canvasGoods",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/goodsModule/canvasGoods",windowTop:0}},{path:"/pages_category_page1/goodsModule/couponShopList",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"优惠券可用商品列表"})},[e("pages_category_page1-goodsModule-couponShopList",{slot:"page"})])}},meta:{name:"pages_category_page1-goodsModule-couponShopList",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/goodsModule/couponShopList",windowTop:0}},{path:"/pages_category_page1/goodsModule/goodsDetails",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"详情"})},[e("pages_category_page1-goodsModule-goodsDetails",{slot:"page"})])}},meta:{name:"pages_category_page1-goodsModule-goodsDetails",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/goodsModule/goodsDetails",windowTop:0}},{path:"/pages_category_page1/goodsModule/qADetail",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"问答详情"})},[e("pages_category_page1-goodsModule-qADetail",{slot:"page"})])}},meta:{name:"pages_category_page1-goodsModule-qADetail",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/goodsModule/qADetail",windowTop:0}},{path:"/pages_category_page1/goodsModule/answerList",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"全部问答"})},[e("pages_category_page1-goodsModule-answerList",{slot:"page"})])}},meta:{name:"pages_category_page1-goodsModule-answerList",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/goodsModule/answerList",windowTop:0}},{path:"/pages_category_page1/goodsModule/putQuestions",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"提问"})},[e("pages_category_page1-goodsModule-putQuestions",{slot:"page"})])}},meta:{name:"pages_category_page1-goodsModule-putQuestions",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/goodsModule/putQuestions",windowTop:0}},{path:"/pages_category_page1/goodsModule/userEvaluate",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"我的评价"})},[e("pages_category_page1-goodsModule-userEvaluate",{slot:"page"})])}},meta:{name:"pages_category_page1-goodsModule-userEvaluate",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/goodsModule/userEvaluate",windowTop:0}},{path:"/pages_category_page1/goodsModule/evaSuccessful",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"评价成功"})},[e("pages_category_page1-goodsModule-evaSuccessful",{slot:"page"})])}},meta:{name:"pages_category_page1-goodsModule-evaSuccessful",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/goodsModule/evaSuccessful",windowTop:0}},{path:"/pages_category_page1/goodsModule/evaluateDetails",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"评价详情"})},[e("pages_category_page1-goodsModule-evaluateDetails",{slot:"page"})])}},meta:{name:"pages_category_page1-goodsModule-evaluateDetails",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/goodsModule/evaluateDetails",windowTop:0}},{path:"/pages_category_page1/goodsModule/evaluateList",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"宝贝评价"})},[e("pages_category_page1-goodsModule-evaluateList",{slot:"page"})])}},meta:{name:"pages_category_page1-goodsModule-evaluateList",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/goodsModule/evaluateList",windowTop:0}},{path:"/pages_category_page1/goodsModule/addEvaluate",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"追加评价"})},[e("pages_category_page1-goodsModule-addEvaluate",{slot:"page"})])}},meta:{name:"pages_category_page1-goodsModule-addEvaluate",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/goodsModule/addEvaluate",windowTop:0}},{path:"/pages_category_page1/goodsModule/evaluate",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"评价"})},[e("pages_category_page1-goodsModule-evaluate",{slot:"page"})])}},meta:{name:"pages_category_page1-goodsModule-evaluate",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/goodsModule/evaluate",windowTop:0}},{path:"/pages_category_page1/orderModule/index",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"订单中心"})},[e("pages_category_page1-orderModule-index",{slot:"page"})])}},meta:{name:"pages_category_page1-orderModule-index",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/orderModule/index",windowTop:0}},{path:"/pages_category_page1/orderModule/orderConfirm",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"购买宝贝",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page1-orderModule-orderConfirm",{slot:"page"})])}},meta:{name:"pages_category_page1-orderModule-orderConfirm",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/orderModule/orderConfirm",windowTop:0}},{path:"/pages_category_page1/orderModule/orderDetails",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"订单详情",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page1-orderModule-orderDetails",{slot:"page"})])}},meta:{name:"pages_category_page1-orderModule-orderDetails",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/orderModule/orderDetails",windowTop:0}},{path:"/pages_category_page1/orderModule/afterSaleApplyRefund",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"申请退款"})},[e("pages_category_page1-orderModule-afterSaleApplyRefund",{slot:"page"})])}},meta:{name:"pages_category_page1-orderModule-afterSaleApplyRefund",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/orderModule/afterSaleApplyRefund",windowTop:0}},{path:"/pages_category_page1/orderModule/afterSaleApplyRetund",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"申请退货"})},[e("pages_category_page1-orderModule-afterSaleApplyRetund",{slot:"page"})])}},meta:{name:"pages_category_page1-orderModule-afterSaleApplyRetund",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/orderModule/afterSaleApplyRetund",windowTop:0}},{path:"/pages_category_page1/orderModule/afterSaleApply",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"选择商品",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page1-orderModule-afterSaleApply",{slot:"page"})])}},meta:{name:"pages_category_page1-orderModule-afterSaleApply",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/orderModule/afterSaleApply",windowTop:0}},{path:"/pages_category_page1/orderModule/platformJoin",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"平台介入"})},[e("pages_category_page1-orderModule-platformJoin",{slot:"page"})])}},meta:{name:"pages_category_page1-orderModule-platformJoin",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/orderModule/platformJoin",windowTop:0}},{path:"/pages_category_page1/orderModule/paySuccessful",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationStyle:"custom",navigationBarTitleText:"支付成功"})},[e("pages_category_page1-orderModule-paySuccessful",{slot:"page"})])}},meta:{name:"pages_category_page1-orderModule-paySuccessful",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/orderModule/paySuccessful",windowTop:0}},{path:"/pages_category_page1/orderModule/addLogistics",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"填写退货物流"})},[e("pages_category_page1-orderModule-addLogistics",{slot:"page"})])}},meta:{name:"pages_category_page1-orderModule-addLogistics",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/orderModule/addLogistics",windowTop:0}},{path:"/pages_category_page1/orderModule/Intervene",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"平台介入"})},[e("pages_category_page1-orderModule-Intervene",{slot:"page"})])}},meta:{name:"pages_category_page1-orderModule-Intervene",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/orderModule/Intervene",windowTop:0}},{path:"/pages_category_page1/distributionModule/index",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"分销中心",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page1-distributionModule-index",{slot:"page"})])}},meta:{name:"pages_category_page1-distributionModule-index",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/distributionModule/index",windowTop:0}},{path:"/pages_category_page1/distributionModule/recruit",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"分销员招募令",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page1-distributionModule-recruit",{slot:"page"})])}},meta:{name:"pages_category_page1-distributionModule-recruit",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/distributionModule/recruit",windowTop:0}},{path:"/pages_category_page1/distributionModule/salesIndex",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"分销中心",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page1-distributionModule-salesIndex",{slot:"page"})])}},meta:{name:"pages_category_page1-distributionModule-salesIndex",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/distributionModule/salesIndex",windowTop:0}},{path:"/pages_category_page1/distributionModule/shareProduct",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"分享"})},[e("pages_category_page1-distributionModule-shareProduct",{slot:"page"})])}},meta:{name:"pages_category_page1-distributionModule-shareProduct",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/distributionModule/shareProduct",windowTop:0}},{path:"/pages_category_page1/distributionModule/totalPersonnel",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"累计分销员",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page1-distributionModule-totalPersonnel",{slot:"page"})])}},meta:{name:"pages_category_page1-distributionModule-totalPersonnel",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/distributionModule/totalPersonnel",windowTop:0}},{path:"/pages_category_page1/distributionModule/totalAward",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"累计奖励",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page1-distributionModule-totalAward",{slot:"page"})])}},meta:{name:"pages_category_page1-distributionModule-totalAward",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/distributionModule/totalAward",windowTop:0}},{path:"/pages_category_page1/distributionModule/totalClient",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"累计客户",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page1-distributionModule-totalClient",{slot:"page"})])}},meta:{name:"pages_category_page1-distributionModule-totalClient",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/distributionModule/totalClient",windowTop:0}},{path:"/pages_category_page1/distributionModule/unliquidated",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"未结算奖励",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page1-distributionModule-unliquidated",{slot:"page"})])}},meta:{name:"pages_category_page1-distributionModule-unliquidated",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/distributionModule/unliquidated",windowTop:0}},{path:"/pages_category_page1/distributionModule/promotion",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"推广店铺",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page1-distributionModule-promotion",{slot:"page"})])}},meta:{name:"pages_category_page1-distributionModule-promotion",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/distributionModule/promotion",windowTop:0}},{path:"/pages_category_page1/distributionModule/commodity",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"推广商品"})},[e("pages_category_page1-distributionModule-commodity",{slot:"page"})])}},meta:{name:"pages_category_page1-distributionModule-commodity",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/distributionModule/commodity",windowTop:0}},{path:"/pages_category_page1/distributionModule/distributionOrder",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"我的分销订单"})},[e("pages_category_page1-distributionModule-distributionOrder",{slot:"page"})])}},meta:{name:"pages_category_page1-distributionModule-distributionOrder",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/distributionModule/distributionOrder",windowTop:0}},{path:"/pages_category_page1/distributionModule/invite",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"邀请下级"})},[e("pages_category_page1-distributionModule-invite",{slot:"page"})])}},meta:{name:"pages_category_page1-distributionModule-invite",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/distributionModule/invite",windowTop:0}},{path:"/pages_category_page1/orderModule/logisticsInfo",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"物流信息"})},[e("pages_category_page1-orderModule-logisticsInfo",{slot:"page"})])}},meta:{name:"pages_category_page1-orderModule-logisticsInfo",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/orderModule/logisticsInfo",windowTop:0}},{path:"/pages_category_page1/homeModule/special",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"专题分类"})},[e("pages_category_page1-homeModule-special",{slot:"page"})])}},meta:{name:"pages_category_page1-homeModule-special",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/homeModule/special",windowTop:0}},{path:"/pages_category_page1/goodsModule/invitePoster",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"生成邀请海报"})},[e("pages_category_page1-goodsModule-invitePoster",{slot:"page"})])}},meta:{name:"pages_category_page1-goodsModule-invitePoster",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/goodsModule/invitePoster",windowTop:0}},{path:"/pages_category_page1/goodsModule/inviteSpell",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"邀请好友拼单",enablePullDownRefresh:!1,navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page1-goodsModule-inviteSpell",{slot:"page"})])}},meta:{name:"pages_category_page1-goodsModule-inviteSpell",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/goodsModule/inviteSpell",windowTop:0}},{path:"/pages_category_page1/linkOthers/index",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"商家",enablePullDownRefresh:!1})},[e("pages_category_page1-linkOthers-index",{slot:"page"})])}},meta:{name:"pages_category_page1-linkOthers-index",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/linkOthers/index",windowTop:0}},{path:"/pages_category_page1/memberCenter/index",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationStyle:"custom",navigationBarTextStyle:"white"})},[e("pages_category_page1-memberCenter-index",{slot:"page"})])}},meta:{name:"pages_category_page1-memberCenter-index",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/memberCenter/index",windowTop:0}},{path:"/pages_category_page1/memberCenter/memberSign",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"会员签到",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white",enablePullDownRefresh:!0})},[e("pages_category_page1-memberCenter-memberSign",{slot:"page"})])}},meta:{name:"pages_category_page1-memberCenter-memberSign",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/memberCenter/memberSign",windowTop:0}},{path:"/pages_category_page1/askedquestion/askedquestion",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"常见问题",backgroundColor:"#F8F8F8"})},[e("pages_category_page1-askedquestion-askedquestion",{slot:"page"})])}},meta:{name:"pages_category_page1-askedquestion-askedquestion",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/askedquestion/askedquestion",windowTop:0}},{path:"/pages_category_page1/procedure/procedure",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"公告通知",backgroundColor:"#F8F8F8"})},[e("pages_category_page1-procedure-procedure",{slot:"page"})])}},meta:{name:"pages_category_page1-procedure-procedure",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/procedure/procedure",windowTop:0}},{path:"/pages_category_page1/customer/chatBox",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"客服",backgroundColor:"#F8F8F8"})},[e("pages_category_page1-customer-chatBox",{slot:"page"})])}},meta:{name:"pages_category_page1-customer-chatBox",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/customer/chatBox",windowTop:0}},{path:"/pages_category_page1/question/question",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationStyle:"custom"})},[e("pages_category_page1-question-question",{slot:"page"})])}},meta:{name:"pages_category_page1-question-question",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/question/question",windowTop:0}},{path:"/pages_category_page1/question/succe",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationStyle:"custom"})},[e("pages_category_page1-question-succe",{slot:"page"})])}},meta:{name:"pages_category_page1-question-succe",isNVue:!1,maxWidth:0,pagePath:"pages_category_page1/question/succe",windowTop:0}},{path:"/pages_category_page2/userModule/accountLogin",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"登录"})},[e("pages_category_page2-userModule-accountLogin",{slot:"page"})])}},meta:{name:"pages_category_page2-userModule-accountLogin",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/userModule/accountLogin",windowTop:0}},{path:"/pages_category_page2/userModule/addAddress",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"地址管理"})},[e("pages_category_page2-userModule-addAddress",{slot:"page"})])}},meta:{name:"pages_category_page2-userModule-addAddress",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/userModule/addAddress",windowTop:0}},{path:"/pages_category_page2/userModule/addBankcard",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"银行卡"})},[e("pages_category_page2-userModule-addBankcard",{slot:"page"})])}},meta:{name:"pages_category_page2-userModule-addBankcard",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/userModule/addBankcard",windowTop:0}},{path:"/pages_category_page2/userModule/address",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"地址管理"})},[e("pages_category_page2-userModule-address",{slot:"page"})])}},meta:{name:"pages_category_page2-userModule-address",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/userModule/address",windowTop:0}},{path:"/pages_category_page2/userModule/bankcard",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"银行卡",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page2-userModule-bankcard",{slot:"page"})])}},meta:{name:"pages_category_page2-userModule-bankcard",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/userModule/bankcard",windowTop:0}},{path:"/pages_category_page2/userModule/collection",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"我的收藏",enablePullDownRefresh:!1})},[e("pages_category_page2-userModule-collection",{slot:"page"})])}},meta:{name:"pages_category_page2-userModule-collection",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/userModule/collection",windowTop:0}},{path:"/pages_category_page2/userModule/footprintList",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"浏览足迹",enablePullDownRefresh:!1})},[e("pages_category_page2-userModule-footprintList",{slot:"page"})])}},meta:{name:"pages_category_page2-userModule-footprintList",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/userModule/footprintList",windowTop:0}},{path:"/pages_category_page2/userModule/questionList",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"我的问答",enablePullDownRefresh:!1})},[e("pages_category_page2-userModule-questionList",{slot:"page"})])}},meta:{name:"pages_category_page2-userModule-questionList",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/userModule/questionList",windowTop:0}},{path:"/pages_category_page2/userModule/personalDetails",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"个人信息"})},[e("pages_category_page2-userModule-personalDetails",{slot:"page"})])}},meta:{name:"pages_category_page2-userModule-personalDetails",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/userModule/personalDetails",windowTop:0}},{path:"/pages_category_page2/userModule/coupon",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"我的卡券"})},[e("pages_category_page2-userModule-coupon",{slot:"page"})])}},meta:{name:"pages_category_page2-userModule-coupon",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/userModule/coupon",windowTop:0}},{path:"/pages_category_page2/orderModule/afterSale",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"我的售后"})},[e("pages_category_page2-orderModule-afterSale",{slot:"page"})])}},meta:{name:"pages_category_page2-orderModule-afterSale",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/orderModule/afterSale",windowTop:0}},{path:"/pages_category_page2/orderModule/returnDetails",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"退货详情",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page2-orderModule-returnDetails",{slot:"page"})])}},meta:{name:"pages_category_page2-orderModule-returnDetails",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/orderModule/returnDetails",windowTop:0}},{path:"/pages_category_page2/orderModule/refundDetails",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"退款详情",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page2-orderModule-refundDetails",{slot:"page"})])}},meta:{name:"pages_category_page2-orderModule-refundDetails",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/orderModule/refundDetails",windowTop:0}},{path:"/pages_category_page2/userModule/login",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationStyle:"custom",navigationBarTitleText:"登录"})},[e("pages_category_page2-userModule-login",{slot:"page"})])}},meta:{name:"pages_category_page2-userModule-login",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/userModule/login",windowTop:0}},{path:"/pages_category_page2/userModule/protocol",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"《锦江公园》商城用户协议"})},[e("pages_category_page2-userModule-protocol",{slot:"page"})])}},meta:{name:"pages_category_page2-userModule-protocol",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/userModule/protocol",windowTop:0}},{path:"/pages_category_page2/userModule/register",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"注册"})},[e("pages_category_page2-userModule-register",{slot:"page"})])}},meta:{name:"pages_category_page2-userModule-register",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/userModule/register",windowTop:0}},{path:"/pages_category_page2/userModule/memberAccount",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"我的账户",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page2-userModule-memberAccount",{slot:"page"})])}},meta:{name:"pages_category_page2-userModule-memberAccount",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/userModule/memberAccount",windowTop:0}},{path:"/pages_category_page2/userModule/withdraw",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"提现"})},[e("pages_category_page2-userModule-withdraw",{slot:"page"})])}},meta:{name:"pages_category_page2-userModule-withdraw",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/userModule/withdraw",windowTop:0}},{path:"/pages_category_page2/userModule/messageCenter",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"消息中心"})},[e("pages_category_page2-userModule-messageCenter",{slot:"page"})])}},meta:{name:"pages_category_page2-userModule-messageCenter",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/userModule/messageCenter",windowTop:0}},{path:"/pages_category_page2/userModule/messageDetail",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"公告详情"})},[e("pages_category_page2-userModule-messageDetail",{slot:"page"})])}},meta:{name:"pages_category_page2-userModule-messageDetail",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/userModule/messageDetail",windowTop:0}},{path:"/pages_category_page2/userModule/bindPhone",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"绑定手机号",enablePullDownRefresh:!1})},[e("pages_category_page2-userModule-bindPhone",{slot:"page"})])}},meta:{name:"pages_category_page2-userModule-bindPhone",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/userModule/bindPhone",windowTop:0}},{path:"/pages_category_page2/userModule/mobilePhone",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"手机号授权",enablePullDownRefresh:!1})},[e("pages_category_page2-userModule-mobilePhone",{slot:"page"})])}},meta:{name:"pages_category_page2-userModule-mobilePhone",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/userModule/mobilePhone",windowTop:0}},{path:"/pages_category_page2/livePage/index",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"直播推荐",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white",enablePullDownRefresh:!0})},[e("pages_category_page2-livePage-index",{slot:"page"})])}},meta:{name:"pages_category_page2-livePage-index",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/livePage/index",windowTop:0}},{path:"/pages_category_page2/channelCoupon/index",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"",enablePullDownRefresh:!1})},[e("pages_category_page2-channelCoupon-index",{slot:"page"})])}},meta:{name:"pages_category_page2-channelCoupon-index",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/channelCoupon/index",windowTop:0}},{path:"/pages_category_page2/userModule/unsubscribe",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"账户注销",navigationBarBackgroundColor:"#39be7a",backgroundColor:"#39be7a",navigationBarTextStyle:"white"})},[e("pages_category_page2-userModule-unsubscribe",{slot:"page"})])}},meta:{name:"pages_category_page2-userModule-unsubscribe",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/userModule/unsubscribe",windowTop:0}},{path:"/pages_category_page2/userModule/unsubscribeCode",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"注销账户手机认证"})},[e("pages_category_page2-userModule-unsubscribeCode",{slot:"page"})])}},meta:{name:"pages_category_page2-userModule-unsubscribeCode",isNVue:!1,maxWidth:0,pagePath:"pages_category_page2/userModule/unsubscribeCode",windowTop:0}},{path:"/choose-location",component:{render:function(e){return e("Page",{props:{navigationStyle:"custom"}},[e("system-choose-location",{slot:"page"})])}},meta:{name:"choose-location",pagePath:"/choose-location"}},{path:"/open-location",component:{render:function(e){return e("Page",{props:{navigationStyle:"custom"}},[e("system-open-location",{slot:"page"})])}},meta:{name:"open-location",pagePath:"/open-location"}}],e.UniApp&&new e.UniApp}).call(this,a("0ee4"))},"14ef":function(e,t,a){"use strict";a("6a54");var n=a("f5bd").default;Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0,a("d4b5");var o=n(a("2634")),r=n(a("2fdc")),i=n(a("39d8")),g=n(a("9b8e")),u=n(a("8f59")),p=a("cc42");g.default.use(u.default);var d=(0,i.default)({},"SET_SHOW_LOADING",(function(e,t){e.globalLoading.showLoading=t.flag,e.globalLoading.showInfo=t.info})),s={doPointer:function(e,t){return(0,r.default)((0,o.default)().mark((function e(){var a,n;return(0,o.default)().wrap((function(e){while(1)switch(e.prev=e.next){case 0:if(a={},uni.getStorageSync("storage_key")&&(a=uni.getStorageSync("storage_key")),"{}"!==JSON.stringify(a)){e.next=4;break}return e.abrupt("return");case 4:return e.next=6,(0,p.doPointRequest)(t);case 6:n=e.sent,console.log("埋点----------------------------------",n);case 8:case"end":return e.stop()}}),e)})))()}},c=new u.default.Store({state:{globalLoading:{showLoading:!1,showInfo:""}},getters:{loadingFlag:function(e){return e.globalLoading.showLoading},loadingInfo:function(e){return e.globalLoading.showInfo}},mutations:d,actions:s}),l=c;t.default=l},1867:function(e,t,a){var n=a("c86c"),o=a("2ec5"),r=a("aae8");t=n(!1);var i=o(r);t.push([e.i,'@charset "UTF-8";\r\n/**\r\n * 这里是uni-app内置的常用样式变量\r\n *\r\n * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量\r\n * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App\r\n *\r\n */\r\n/**\r\n * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能\r\n *\r\n * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件\r\n */\r\n/* 颜色变量 */\r\n/* 页面左右间距 */\r\n/* 行为相关颜色 */\r\n/* 文字基本颜色 */\r\n/* 背景颜色 */\r\n/* 边框颜色 */\r\n/* 尺寸变量 */\r\n/* 文字尺寸 */\r\n/*文字颜色*/\r\n/* 图片尺寸 */\r\n/* Border Radius */\r\n/* 水平间距 */\r\n/* 垂直间距 */\r\n/* 透明度 */\r\n/* 文章场景相关 */@-webkit-keyframes loading{0%{background:#e7e7e7}50%{background:#f8f8f8}100%{background:#e7e7e7}}@keyframes loading{0%{background:#e7e7e7}50%{background:#f8f8f8}100%{background:#e7e7e7}}.ske-loading .child-loading{-webkit-animation:loading 2s linear 0s infinite alternate;animation:loading 2s linear 0s infinite alternate}\r\n/*每个页面公共css */.u-relative,\r\n.u-rela{position:relative}.u-absolute,\r\n.u-abso{position:absolute}uni-image{display:inline-block}uni-view,\r\nuni-text{box-sizing:border-box}.u-font-xs{font-size:%?22?%}.u-font-sm{font-size:%?26?%}.u-font-md{font-size:%?28?%}.u-font-lg{font-size:%?30?%}.u-font-xl{font-size:%?34?%}.u-flex{display:flex;flex-direction:row;align-items:center}.u-flex-wrap{flex-wrap:wrap}.u-flex-nowrap{flex-wrap:nowrap}.u-col-center{align-items:center}.u-col-top{align-items:flex-start}.u-col-bottom{align-items:flex-end}.u-row-center{justify-content:center}.u-row-left{justify-content:flex-start}.u-row-right{justify-content:flex-end}.u-row-between{justify-content:space-between}.u-row-around{justify-content:space-around}.u-text-left{text-align:left}.u-text-center{text-align:center}.u-text-right{text-align:right}.u-flex-col{display:flex;flex-direction:column}.u-flex-0{flex:0}.u-flex-1{flex:1}.u-flex-2{flex:2}.u-flex-3{flex:3}.u-flex-4{flex:4}.u-flex-5{flex:5}.u-flex-6{flex:6}.u-flex-7{flex:7}.u-flex-8{flex:8}.u-flex-9{flex:9}.u-flex-10{flex:10}.u-flex-11{flex:11}.u-flex-12{flex:12}.u-font-9{font-size:9px}.u-font-10{font-size:10px}.u-font-11{font-size:11px}.u-font-12{font-size:12px}.u-font-13{font-size:13px}.u-font-14{font-size:14px}.u-font-15{font-size:15px}.u-font-16{font-size:16px}.u-font-17{font-size:17px}.u-font-18{font-size:18px}.u-font-19{font-size:19px}.u-font-20{font-size:%?20?%}.u-font-21{font-size:%?21?%}.u-font-22{font-size:%?22?%}.u-font-23{font-size:%?23?%}.u-font-24{font-size:%?24?%}.u-font-25{font-size:%?25?%}.u-font-26{font-size:%?26?%}.u-font-27{font-size:%?27?%}.u-font-28{font-size:%?28?%}.u-font-29{font-size:%?29?%}.u-font-30{font-size:%?30?%}.u-font-31{font-size:%?31?%}.u-font-32{font-size:%?32?%}.u-font-33{font-size:%?33?%}.u-font-34{font-size:%?34?%}.u-font-35{font-size:%?35?%}.u-font-36{font-size:%?36?%}.u-font-37{font-size:%?37?%}.u-font-38{font-size:%?38?%}.u-font-39{font-size:%?39?%}.u-font-40{font-size:%?40?%}.u-margin-0, .u-m-0{margin:%?0?%!important}.u-padding-0, .u-p-0{padding:%?0?%!important}.u-m-l-0{margin-left:%?0?%!important}.u-p-l-0{padding-left:%?0?%!important}.u-margin-left-0{margin-left:%?0?%!important}.u-padding-left-0{padding-left:%?0?%!important}.u-m-t-0{margin-top:%?0?%!important}.u-p-t-0{padding-top:%?0?%!important}.u-margin-top-0{margin-top:%?0?%!important}.u-padding-top-0{padding-top:%?0?%!important}.u-m-r-0{margin-right:%?0?%!important}.u-p-r-0{padding-right:%?0?%!important}.u-margin-right-0{margin-right:%?0?%!important}.u-padding-right-0{padding-right:%?0?%!important}.u-m-b-0{margin-bottom:%?0?%!important}.u-p-b-0{padding-bottom:%?0?%!important}.u-margin-bottom-0{margin-bottom:%?0?%!important}.u-padding-bottom-0{padding-bottom:%?0?%!important}.u-margin-2, .u-m-2{margin:%?2?%!important}.u-padding-2, .u-p-2{padding:%?2?%!important}.u-m-l-2{margin-left:%?2?%!important}.u-p-l-2{padding-left:%?2?%!important}.u-margin-left-2{margin-left:%?2?%!important}.u-padding-left-2{padding-left:%?2?%!important}.u-m-t-2{margin-top:%?2?%!important}.u-p-t-2{padding-top:%?2?%!important}.u-margin-top-2{margin-top:%?2?%!important}.u-padding-top-2{padding-top:%?2?%!important}.u-m-r-2{margin-right:%?2?%!important}.u-p-r-2{padding-right:%?2?%!important}.u-margin-right-2{margin-right:%?2?%!important}.u-padding-right-2{padding-right:%?2?%!important}.u-m-b-2{margin-bottom:%?2?%!important}.u-p-b-2{padding-bottom:%?2?%!important}.u-margin-bottom-2{margin-bottom:%?2?%!important}.u-padding-bottom-2{padding-bottom:%?2?%!important}.u-margin-4, .u-m-4{margin:%?4?%!important}.u-padding-4, .u-p-4{padding:%?4?%!important}.u-m-l-4{margin-left:%?4?%!important}.u-p-l-4{padding-left:%?4?%!important}.u-margin-left-4{margin-left:%?4?%!important}.u-padding-left-4{padding-left:%?4?%!important}.u-m-t-4{margin-top:%?4?%!important}.u-p-t-4{padding-top:%?4?%!important}.u-margin-top-4{margin-top:%?4?%!important}.u-padding-top-4{padding-top:%?4?%!important}.u-m-r-4{margin-right:%?4?%!important}.u-p-r-4{padding-right:%?4?%!important}.u-margin-right-4{margin-right:%?4?%!important}.u-padding-right-4{padding-right:%?4?%!important}.u-m-b-4{margin-bottom:%?4?%!important}.u-p-b-4{padding-bottom:%?4?%!important}.u-margin-bottom-4{margin-bottom:%?4?%!important}.u-padding-bottom-4{padding-bottom:%?4?%!important}.u-margin-5, .u-m-5{margin:%?5?%!important}.u-padding-5, .u-p-5{padding:%?5?%!important}.u-m-l-5{margin-left:%?5?%!important}.u-p-l-5{padding-left:%?5?%!important}.u-margin-left-5{margin-left:%?5?%!important}.u-padding-left-5{padding-left:%?5?%!important}.u-m-t-5{margin-top:%?5?%!important}.u-p-t-5{padding-top:%?5?%!important}.u-margin-top-5{margin-top:%?5?%!important}.u-padding-top-5{padding-top:%?5?%!important}.u-m-r-5{margin-right:%?5?%!important}.u-p-r-5{padding-right:%?5?%!important}.u-margin-right-5{margin-right:%?5?%!important}.u-padding-right-5{padding-right:%?5?%!important}.u-m-b-5{margin-bottom:%?5?%!important}.u-p-b-5{padding-bottom:%?5?%!important}.u-margin-bottom-5{margin-bottom:%?5?%!important}.u-padding-bottom-5{padding-bottom:%?5?%!important}.u-margin-6, .u-m-6{margin:%?6?%!important}.u-padding-6, .u-p-6{padding:%?6?%!important}.u-m-l-6{margin-left:%?6?%!important}.u-p-l-6{padding-left:%?6?%!important}.u-margin-left-6{margin-left:%?6?%!important}.u-padding-left-6{padding-left:%?6?%!important}.u-m-t-6{margin-top:%?6?%!important}.u-p-t-6{padding-top:%?6?%!important}.u-margin-top-6{margin-top:%?6?%!important}.u-padding-top-6{padding-top:%?6?%!important}.u-m-r-6{margin-right:%?6?%!important}.u-p-r-6{padding-right:%?6?%!important}.u-margin-right-6{margin-right:%?6?%!important}.u-padding-right-6{padding-right:%?6?%!important}.u-m-b-6{margin-bottom:%?6?%!important}.u-p-b-6{padding-bottom:%?6?%!important}.u-margin-bottom-6{margin-bottom:%?6?%!important}.u-padding-bottom-6{padding-bottom:%?6?%!important}.u-margin-8, .u-m-8{margin:%?8?%!important}.u-padding-8, .u-p-8{padding:%?8?%!important}.u-m-l-8{margin-left:%?8?%!important}.u-p-l-8{padding-left:%?8?%!important}.u-margin-left-8{margin-left:%?8?%!important}.u-padding-left-8{padding-left:%?8?%!important}.u-m-t-8{margin-top:%?8?%!important}.u-p-t-8{padding-top:%?8?%!important}.u-margin-top-8{margin-top:%?8?%!important}.u-padding-top-8{padding-top:%?8?%!important}.u-m-r-8{margin-right:%?8?%!important}.u-p-r-8{padding-right:%?8?%!important}.u-margin-right-8{margin-right:%?8?%!important}.u-padding-right-8{padding-right:%?8?%!important}.u-m-b-8{margin-bottom:%?8?%!important}.u-p-b-8{padding-bottom:%?8?%!important}.u-margin-bottom-8{margin-bottom:%?8?%!important}.u-padding-bottom-8{padding-bottom:%?8?%!important}.u-margin-10, .u-m-10{margin:%?10?%!important}.u-padding-10, .u-p-10{padding:%?10?%!important}.u-m-l-10{margin-left:%?10?%!important}.u-p-l-10{padding-left:%?10?%!important}.u-margin-left-10{margin-left:%?10?%!important}.u-padding-left-10{padding-left:%?10?%!important}.u-m-t-10{margin-top:%?10?%!important}.u-p-t-10{padding-top:%?10?%!important}.u-margin-top-10{margin-top:%?10?%!important}.u-padding-top-10{padding-top:%?10?%!important}.u-m-r-10{margin-right:%?10?%!important}.u-p-r-10{padding-right:%?10?%!important}.u-margin-right-10{margin-right:%?10?%!important}.u-padding-right-10{padding-right:%?10?%!important}.u-m-b-10{margin-bottom:%?10?%!important}.u-p-b-10{padding-bottom:%?10?%!important}.u-margin-bottom-10{margin-bottom:%?10?%!important}.u-padding-bottom-10{padding-bottom:%?10?%!important}.u-margin-12, .u-m-12{margin:%?12?%!important}.u-padding-12, .u-p-12{padding:%?12?%!important}.u-m-l-12{margin-left:%?12?%!important}.u-p-l-12{padding-left:%?12?%!important}.u-margin-left-12{margin-left:%?12?%!important}.u-padding-left-12{padding-left:%?12?%!important}.u-m-t-12{margin-top:%?12?%!important}.u-p-t-12{padding-top:%?12?%!important}.u-margin-top-12{margin-top:%?12?%!important}.u-padding-top-12{padding-top:%?12?%!important}.u-m-r-12{margin-right:%?12?%!important}.u-p-r-12{padding-right:%?12?%!important}.u-margin-right-12{margin-right:%?12?%!important}.u-padding-right-12{padding-right:%?12?%!important}.u-m-b-12{margin-bottom:%?12?%!important}.u-p-b-12{padding-bottom:%?12?%!important}.u-margin-bottom-12{margin-bottom:%?12?%!important}.u-padding-bottom-12{padding-bottom:%?12?%!important}.u-margin-14, .u-m-14{margin:%?14?%!important}.u-padding-14, .u-p-14{padding:%?14?%!important}.u-m-l-14{margin-left:%?14?%!important}.u-p-l-14{padding-left:%?14?%!important}.u-margin-left-14{margin-left:%?14?%!important}.u-padding-left-14{padding-left:%?14?%!important}.u-m-t-14{margin-top:%?14?%!important}.u-p-t-14{padding-top:%?14?%!important}.u-margin-top-14{margin-top:%?14?%!important}.u-padding-top-14{padding-top:%?14?%!important}.u-m-r-14{margin-right:%?14?%!important}.u-p-r-14{padding-right:%?14?%!important}.u-margin-right-14{margin-right:%?14?%!important}.u-padding-right-14{padding-right:%?14?%!important}.u-m-b-14{margin-bottom:%?14?%!important}.u-p-b-14{padding-bottom:%?14?%!important}.u-margin-bottom-14{margin-bottom:%?14?%!important}.u-padding-bottom-14{padding-bottom:%?14?%!important}.u-margin-15, .u-m-15{margin:%?15?%!important}.u-padding-15, .u-p-15{padding:%?15?%!important}.u-m-l-15{margin-left:%?15?%!important}.u-p-l-15{padding-left:%?15?%!important}.u-margin-left-15{margin-left:%?15?%!important}.u-padding-left-15{padding-left:%?15?%!important}.u-m-t-15{margin-top:%?15?%!important}.u-p-t-15{padding-top:%?15?%!important}.u-margin-top-15{margin-top:%?15?%!important}.u-padding-top-15{padding-top:%?15?%!important}.u-m-r-15{margin-right:%?15?%!important}.u-p-r-15{padding-right:%?15?%!important}.u-margin-right-15{margin-right:%?15?%!important}.u-padding-right-15{padding-right:%?15?%!important}.u-m-b-15{margin-bottom:%?15?%!important}.u-p-b-15{padding-bottom:%?15?%!important}.u-margin-bottom-15{margin-bottom:%?15?%!important}.u-padding-bottom-15{padding-bottom:%?15?%!important}.u-margin-16, .u-m-16{margin:%?16?%!important}.u-padding-16, .u-p-16{padding:%?16?%!important}.u-m-l-16{margin-left:%?16?%!important}.u-p-l-16{padding-left:%?16?%!important}.u-margin-left-16{margin-left:%?16?%!important}.u-padding-left-16{padding-left:%?16?%!important}.u-m-t-16{margin-top:%?16?%!important}.u-p-t-16{padding-top:%?16?%!important}.u-margin-top-16{margin-top:%?16?%!important}.u-padding-top-16{padding-top:%?16?%!important}.u-m-r-16{margin-right:%?16?%!important}.u-p-r-16{padding-right:%?16?%!important}.u-margin-right-16{margin-right:%?16?%!important}.u-padding-right-16{padding-right:%?16?%!important}.u-m-b-16{margin-bottom:%?16?%!important}.u-p-b-16{padding-bottom:%?16?%!important}.u-margin-bottom-16{margin-bottom:%?16?%!important}.u-padding-bottom-16{padding-bottom:%?16?%!important}.u-margin-18, .u-m-18{margin:%?18?%!important}.u-padding-18, .u-p-18{padding:%?18?%!important}.u-m-l-18{margin-left:%?18?%!important}.u-p-l-18{padding-left:%?18?%!important}.u-margin-left-18{margin-left:%?18?%!important}.u-padding-left-18{padding-left:%?18?%!important}.u-m-t-18{margin-top:%?18?%!important}.u-p-t-18{padding-top:%?18?%!important}.u-margin-top-18{margin-top:%?18?%!important}.u-padding-top-18{padding-top:%?18?%!important}.u-m-r-18{margin-right:%?18?%!important}.u-p-r-18{padding-right:%?18?%!important}.u-margin-right-18{margin-right:%?18?%!important}.u-padding-right-18{padding-right:%?18?%!important}.u-m-b-18{margin-bottom:%?18?%!important}.u-p-b-18{padding-bottom:%?18?%!important}.u-margin-bottom-18{margin-bottom:%?18?%!important}.u-padding-bottom-18{padding-bottom:%?18?%!important}.u-margin-20, .u-m-20{margin:%?20?%!important}.u-padding-20, .u-p-20{padding:%?20?%!important}.u-m-l-20{margin-left:%?20?%!important}.u-p-l-20{padding-left:%?20?%!important}.u-margin-left-20{margin-left:%?20?%!important}.u-padding-left-20{padding-left:%?20?%!important}.u-m-t-20{margin-top:%?20?%!important}.u-p-t-20{padding-top:%?20?%!important}.u-margin-top-20{margin-top:%?20?%!important}.u-padding-top-20{padding-top:%?20?%!important}.u-m-r-20{margin-right:%?20?%!important}.u-p-r-20{padding-right:%?20?%!important}.u-margin-right-20{margin-right:%?20?%!important}.u-padding-right-20{padding-right:%?20?%!important}.u-m-b-20{margin-bottom:%?20?%!important}.u-p-b-20{padding-bottom:%?20?%!important}.u-margin-bottom-20{margin-bottom:%?20?%!important}.u-padding-bottom-20{padding-bottom:%?20?%!important}.u-margin-22, .u-m-22{margin:%?22?%!important}.u-padding-22, .u-p-22{padding:%?22?%!important}.u-m-l-22{margin-left:%?22?%!important}.u-p-l-22{padding-left:%?22?%!important}.u-margin-left-22{margin-left:%?22?%!important}.u-padding-left-22{padding-left:%?22?%!important}.u-m-t-22{margin-top:%?22?%!important}.u-p-t-22{padding-top:%?22?%!important}.u-margin-top-22{margin-top:%?22?%!important}.u-padding-top-22{padding-top:%?22?%!important}.u-m-r-22{margin-right:%?22?%!important}.u-p-r-22{padding-right:%?22?%!important}.u-margin-right-22{margin-right:%?22?%!important}.u-padding-right-22{padding-right:%?22?%!important}.u-m-b-22{margin-bottom:%?22?%!important}.u-p-b-22{padding-bottom:%?22?%!important}.u-margin-bottom-22{margin-bottom:%?22?%!important}.u-padding-bottom-22{padding-bottom:%?22?%!important}.u-margin-24, .u-m-24{margin:%?24?%!important}.u-padding-24, .u-p-24{padding:%?24?%!important}.u-m-l-24{margin-left:%?24?%!important}.u-p-l-24{padding-left:%?24?%!important}.u-margin-left-24{margin-left:%?24?%!important}.u-padding-left-24{padding-left:%?24?%!important}.u-m-t-24{margin-top:%?24?%!important}.u-p-t-24{padding-top:%?24?%!important}.u-margin-top-24{margin-top:%?24?%!important}.u-padding-top-24{padding-top:%?24?%!important}.u-m-r-24{margin-right:%?24?%!important}.u-p-r-24{padding-right:%?24?%!important}.u-margin-right-24{margin-right:%?24?%!important}.u-padding-right-24{padding-right:%?24?%!important}.u-m-b-24{margin-bottom:%?24?%!important}.u-p-b-24{padding-bottom:%?24?%!important}.u-margin-bottom-24{margin-bottom:%?24?%!important}.u-padding-bottom-24{padding-bottom:%?24?%!important}.u-margin-25, .u-m-25{margin:%?25?%!important}.u-padding-25, .u-p-25{padding:%?25?%!important}.u-m-l-25{margin-left:%?25?%!important}.u-p-l-25{padding-left:%?25?%!important}.u-margin-left-25{margin-left:%?25?%!important}.u-padding-left-25{padding-left:%?25?%!important}.u-m-t-25{margin-top:%?25?%!important}.u-p-t-25{padding-top:%?25?%!important}.u-margin-top-25{margin-top:%?25?%!important}.u-padding-top-25{padding-top:%?25?%!important}.u-m-r-25{margin-right:%?25?%!important}.u-p-r-25{padding-right:%?25?%!important}.u-margin-right-25{margin-right:%?25?%!important}.u-padding-right-25{padding-right:%?25?%!important}.u-m-b-25{margin-bottom:%?25?%!important}.u-p-b-25{padding-bottom:%?25?%!important}.u-margin-bottom-25{margin-bottom:%?25?%!important}.u-padding-bottom-25{padding-bottom:%?25?%!important}.u-margin-26, .u-m-26{margin:%?26?%!important}.u-padding-26, .u-p-26{padding:%?26?%!important}.u-m-l-26{margin-left:%?26?%!important}.u-p-l-26{padding-left:%?26?%!important}.u-margin-left-26{margin-left:%?26?%!important}.u-padding-left-26{padding-left:%?26?%!important}.u-m-t-26{margin-top:%?26?%!important}.u-p-t-26{padding-top:%?26?%!important}.u-margin-top-26{margin-top:%?26?%!important}.u-padding-top-26{padding-top:%?26?%!important}.u-m-r-26{margin-right:%?26?%!important}.u-p-r-26{padding-right:%?26?%!important}.u-margin-right-26{margin-right:%?26?%!important}.u-padding-right-26{padding-right:%?26?%!important}.u-m-b-26{margin-bottom:%?26?%!important}.u-p-b-26{padding-bottom:%?26?%!important}.u-margin-bottom-26{margin-bottom:%?26?%!important}.u-padding-bottom-26{padding-bottom:%?26?%!important}.u-margin-28, .u-m-28{margin:%?28?%!important}.u-padding-28, .u-p-28{padding:%?28?%!important}.u-m-l-28{margin-left:%?28?%!important}.u-p-l-28{padding-left:%?28?%!important}.u-margin-left-28{margin-left:%?28?%!important}.u-padding-left-28{padding-left:%?28?%!important}.u-m-t-28{margin-top:%?28?%!important}.u-p-t-28{padding-top:%?28?%!important}.u-margin-top-28{margin-top:%?28?%!important}.u-padding-top-28{padding-top:%?28?%!important}.u-m-r-28{margin-right:%?28?%!important}.u-p-r-28{padding-right:%?28?%!important}.u-margin-right-28{margin-right:%?28?%!important}.u-padding-right-28{padding-right:%?28?%!important}.u-m-b-28{margin-bottom:%?28?%!important}.u-p-b-28{padding-bottom:%?28?%!important}.u-margin-bottom-28{margin-bottom:%?28?%!important}.u-padding-bottom-28{padding-bottom:%?28?%!important}.u-margin-30, .u-m-30{margin:%?30?%!important}.u-padding-30, .u-p-30{padding:%?30?%!important}.u-m-l-30{margin-left:%?30?%!important}.u-p-l-30{padding-left:%?30?%!important}.u-margin-left-30{margin-left:%?30?%!important}.u-padding-left-30{padding-left:%?30?%!important}.u-m-t-30{margin-top:%?30?%!important}.u-p-t-30{padding-top:%?30?%!important}.u-margin-top-30{margin-top:%?30?%!important}.u-padding-top-30{padding-top:%?30?%!important}.u-m-r-30{margin-right:%?30?%!important}.u-p-r-30{padding-right:%?30?%!important}.u-margin-right-30{margin-right:%?30?%!important}.u-padding-right-30{padding-right:%?30?%!important}.u-m-b-30{margin-bottom:%?30?%!important}.u-p-b-30{padding-bottom:%?30?%!important}.u-margin-bottom-30{margin-bottom:%?30?%!important}.u-padding-bottom-30{padding-bottom:%?30?%!important}.u-margin-32, .u-m-32{margin:%?32?%!important}.u-padding-32, .u-p-32{padding:%?32?%!important}.u-m-l-32{margin-left:%?32?%!important}.u-p-l-32{padding-left:%?32?%!important}.u-margin-left-32{margin-left:%?32?%!important}.u-padding-left-32{padding-left:%?32?%!important}.u-m-t-32{margin-top:%?32?%!important}.u-p-t-32{padding-top:%?32?%!important}.u-margin-top-32{margin-top:%?32?%!important}.u-padding-top-32{padding-top:%?32?%!important}.u-m-r-32{margin-right:%?32?%!important}.u-p-r-32{padding-right:%?32?%!important}.u-margin-right-32{margin-right:%?32?%!important}.u-padding-right-32{padding-right:%?32?%!important}.u-m-b-32{margin-bottom:%?32?%!important}.u-p-b-32{padding-bottom:%?32?%!important}.u-margin-bottom-32{margin-bottom:%?32?%!important}.u-padding-bottom-32{padding-bottom:%?32?%!important}.u-margin-34, .u-m-34{margin:%?34?%!important}.u-padding-34, .u-p-34{padding:%?34?%!important}.u-m-l-34{margin-left:%?34?%!important}.u-p-l-34{padding-left:%?34?%!important}.u-margin-left-34{margin-left:%?34?%!important}.u-padding-left-34{padding-left:%?34?%!important}.u-m-t-34{margin-top:%?34?%!important}.u-p-t-34{padding-top:%?34?%!important}.u-margin-top-34{margin-top:%?34?%!important}.u-padding-top-34{padding-top:%?34?%!important}.u-m-r-34{margin-right:%?34?%!important}.u-p-r-34{padding-right:%?34?%!important}.u-margin-right-34{margin-right:%?34?%!important}.u-padding-right-34{padding-right:%?34?%!important}.u-m-b-34{margin-bottom:%?34?%!important}.u-p-b-34{padding-bottom:%?34?%!important}.u-margin-bottom-34{margin-bottom:%?34?%!important}.u-padding-bottom-34{padding-bottom:%?34?%!important}.u-margin-35, .u-m-35{margin:%?35?%!important}.u-padding-35, .u-p-35{padding:%?35?%!important}.u-m-l-35{margin-left:%?35?%!important}.u-p-l-35{padding-left:%?35?%!important}.u-margin-left-35{margin-left:%?35?%!important}.u-padding-left-35{padding-left:%?35?%!important}.u-m-t-35{margin-top:%?35?%!important}.u-p-t-35{padding-top:%?35?%!important}.u-margin-top-35{margin-top:%?35?%!important}.u-padding-top-35{padding-top:%?35?%!important}.u-m-r-35{margin-right:%?35?%!important}.u-p-r-35{padding-right:%?35?%!important}.u-margin-right-35{margin-right:%?35?%!important}.u-padding-right-35{padding-right:%?35?%!important}.u-m-b-35{margin-bottom:%?35?%!important}.u-p-b-35{padding-bottom:%?35?%!important}.u-margin-bottom-35{margin-bottom:%?35?%!important}.u-padding-bottom-35{padding-bottom:%?35?%!important}.u-margin-36, .u-m-36{margin:%?36?%!important}.u-padding-36, .u-p-36{padding:%?36?%!important}.u-m-l-36{margin-left:%?36?%!important}.u-p-l-36{padding-left:%?36?%!important}.u-margin-left-36{margin-left:%?36?%!important}.u-padding-left-36{padding-left:%?36?%!important}.u-m-t-36{margin-top:%?36?%!important}.u-p-t-36{padding-top:%?36?%!important}.u-margin-top-36{margin-top:%?36?%!important}.u-padding-top-36{padding-top:%?36?%!important}.u-m-r-36{margin-right:%?36?%!important}.u-p-r-36{padding-right:%?36?%!important}.u-margin-right-36{margin-right:%?36?%!important}.u-padding-right-36{padding-right:%?36?%!important}.u-m-b-36{margin-bottom:%?36?%!important}.u-p-b-36{padding-bottom:%?36?%!important}.u-margin-bottom-36{margin-bottom:%?36?%!important}.u-padding-bottom-36{padding-bottom:%?36?%!important}.u-margin-38, .u-m-38{margin:%?38?%!important}.u-padding-38, .u-p-38{padding:%?38?%!important}.u-m-l-38{margin-left:%?38?%!important}.u-p-l-38{padding-left:%?38?%!important}.u-margin-left-38{margin-left:%?38?%!important}.u-padding-left-38{padding-left:%?38?%!important}.u-m-t-38{margin-top:%?38?%!important}.u-p-t-38{padding-top:%?38?%!important}.u-margin-top-38{margin-top:%?38?%!important}.u-padding-top-38{padding-top:%?38?%!important}.u-m-r-38{margin-right:%?38?%!important}.u-p-r-38{padding-right:%?38?%!important}.u-margin-right-38{margin-right:%?38?%!important}.u-padding-right-38{padding-right:%?38?%!important}.u-m-b-38{margin-bottom:%?38?%!important}.u-p-b-38{padding-bottom:%?38?%!important}.u-margin-bottom-38{margin-bottom:%?38?%!important}.u-padding-bottom-38{padding-bottom:%?38?%!important}.u-margin-40, .u-m-40{margin:%?40?%!important}.u-padding-40, .u-p-40{padding:%?40?%!important}.u-m-l-40{margin-left:%?40?%!important}.u-p-l-40{padding-left:%?40?%!important}.u-margin-left-40{margin-left:%?40?%!important}.u-padding-left-40{padding-left:%?40?%!important}.u-m-t-40{margin-top:%?40?%!important}.u-p-t-40{padding-top:%?40?%!important}.u-margin-top-40{margin-top:%?40?%!important}.u-padding-top-40{padding-top:%?40?%!important}.u-m-r-40{margin-right:%?40?%!important}.u-p-r-40{padding-right:%?40?%!important}.u-margin-right-40{margin-right:%?40?%!important}.u-padding-right-40{padding-right:%?40?%!important}.u-m-b-40{margin-bottom:%?40?%!important}.u-p-b-40{padding-bottom:%?40?%!important}.u-margin-bottom-40{margin-bottom:%?40?%!important}.u-padding-bottom-40{padding-bottom:%?40?%!important}.u-margin-42, .u-m-42{margin:%?42?%!important}.u-padding-42, .u-p-42{padding:%?42?%!important}.u-m-l-42{margin-left:%?42?%!important}.u-p-l-42{padding-left:%?42?%!important}.u-margin-left-42{margin-left:%?42?%!important}.u-padding-left-42{padding-left:%?42?%!important}.u-m-t-42{margin-top:%?42?%!important}.u-p-t-42{padding-top:%?42?%!important}.u-margin-top-42{margin-top:%?42?%!important}.u-padding-top-42{padding-top:%?42?%!important}.u-m-r-42{margin-right:%?42?%!important}.u-p-r-42{padding-right:%?42?%!important}.u-margin-right-42{margin-right:%?42?%!important}.u-padding-right-42{padding-right:%?42?%!important}.u-m-b-42{margin-bottom:%?42?%!important}.u-p-b-42{padding-bottom:%?42?%!important}.u-margin-bottom-42{margin-bottom:%?42?%!important}.u-padding-bottom-42{padding-bottom:%?42?%!important}.u-margin-44, .u-m-44{margin:%?44?%!important}.u-padding-44, .u-p-44{padding:%?44?%!important}.u-m-l-44{margin-left:%?44?%!important}.u-p-l-44{padding-left:%?44?%!important}.u-margin-left-44{margin-left:%?44?%!important}.u-padding-left-44{padding-left:%?44?%!important}.u-m-t-44{margin-top:%?44?%!important}.u-p-t-44{padding-top:%?44?%!important}.u-margin-top-44{margin-top:%?44?%!important}.u-padding-top-44{padding-top:%?44?%!important}.u-m-r-44{margin-right:%?44?%!important}.u-p-r-44{padding-right:%?44?%!important}.u-margin-right-44{margin-right:%?44?%!important}.u-padding-right-44{padding-right:%?44?%!important}.u-m-b-44{margin-bottom:%?44?%!important}.u-p-b-44{padding-bottom:%?44?%!important}.u-margin-bottom-44{margin-bottom:%?44?%!important}.u-padding-bottom-44{padding-bottom:%?44?%!important}.u-margin-45, .u-m-45{margin:%?45?%!important}.u-padding-45, .u-p-45{padding:%?45?%!important}.u-m-l-45{margin-left:%?45?%!important}.u-p-l-45{padding-left:%?45?%!important}.u-margin-left-45{margin-left:%?45?%!important}.u-padding-left-45{padding-left:%?45?%!important}.u-m-t-45{margin-top:%?45?%!important}.u-p-t-45{padding-top:%?45?%!important}.u-margin-top-45{margin-top:%?45?%!important}.u-padding-top-45{padding-top:%?45?%!important}.u-m-r-45{margin-right:%?45?%!important}.u-p-r-45{padding-right:%?45?%!important}.u-margin-right-45{margin-right:%?45?%!important}.u-padding-right-45{padding-right:%?45?%!important}.u-m-b-45{margin-bottom:%?45?%!important}.u-p-b-45{padding-bottom:%?45?%!important}.u-margin-bottom-45{margin-bottom:%?45?%!important}.u-padding-bottom-45{padding-bottom:%?45?%!important}.u-margin-46, .u-m-46{margin:%?46?%!important}.u-padding-46, .u-p-46{padding:%?46?%!important}.u-m-l-46{margin-left:%?46?%!important}.u-p-l-46{padding-left:%?46?%!important}.u-margin-left-46{margin-left:%?46?%!important}.u-padding-left-46{padding-left:%?46?%!important}.u-m-t-46{margin-top:%?46?%!important}.u-p-t-46{padding-top:%?46?%!important}.u-margin-top-46{margin-top:%?46?%!important}.u-padding-top-46{padding-top:%?46?%!important}.u-m-r-46{margin-right:%?46?%!important}.u-p-r-46{padding-right:%?46?%!important}.u-margin-right-46{margin-right:%?46?%!important}.u-padding-right-46{padding-right:%?46?%!important}.u-m-b-46{margin-bottom:%?46?%!important}.u-p-b-46{padding-bottom:%?46?%!important}.u-margin-bottom-46{margin-bottom:%?46?%!important}.u-padding-bottom-46{padding-bottom:%?46?%!important}.u-margin-48, .u-m-48{margin:%?48?%!important}.u-padding-48, .u-p-48{padding:%?48?%!important}.u-m-l-48{margin-left:%?48?%!important}.u-p-l-48{padding-left:%?48?%!important}.u-margin-left-48{margin-left:%?48?%!important}.u-padding-left-48{padding-left:%?48?%!important}.u-m-t-48{margin-top:%?48?%!important}.u-p-t-48{padding-top:%?48?%!important}.u-margin-top-48{margin-top:%?48?%!important}.u-padding-top-48{padding-top:%?48?%!important}.u-m-r-48{margin-right:%?48?%!important}.u-p-r-48{padding-right:%?48?%!important}.u-margin-right-48{margin-right:%?48?%!important}.u-padding-right-48{padding-right:%?48?%!important}.u-m-b-48{margin-bottom:%?48?%!important}.u-p-b-48{padding-bottom:%?48?%!important}.u-margin-bottom-48{margin-bottom:%?48?%!important}.u-padding-bottom-48{padding-bottom:%?48?%!important}.u-margin-50, .u-m-50{margin:%?50?%!important}.u-padding-50, .u-p-50{padding:%?50?%!important}.u-m-l-50{margin-left:%?50?%!important}.u-p-l-50{padding-left:%?50?%!important}.u-margin-left-50{margin-left:%?50?%!important}.u-padding-left-50{padding-left:%?50?%!important}.u-m-t-50{margin-top:%?50?%!important}.u-p-t-50{padding-top:%?50?%!important}.u-margin-top-50{margin-top:%?50?%!important}.u-padding-top-50{padding-top:%?50?%!important}.u-m-r-50{margin-right:%?50?%!important}.u-p-r-50{padding-right:%?50?%!important}.u-margin-right-50{margin-right:%?50?%!important}.u-padding-right-50{padding-right:%?50?%!important}.u-m-b-50{margin-bottom:%?50?%!important}.u-p-b-50{padding-bottom:%?50?%!important}.u-margin-bottom-50{margin-bottom:%?50?%!important}.u-padding-bottom-50{padding-bottom:%?50?%!important}.u-margin-52, .u-m-52{margin:%?52?%!important}.u-padding-52, .u-p-52{padding:%?52?%!important}.u-m-l-52{margin-left:%?52?%!important}.u-p-l-52{padding-left:%?52?%!important}.u-margin-left-52{margin-left:%?52?%!important}.u-padding-left-52{padding-left:%?52?%!important}.u-m-t-52{margin-top:%?52?%!important}.u-p-t-52{padding-top:%?52?%!important}.u-margin-top-52{margin-top:%?52?%!important}.u-padding-top-52{padding-top:%?52?%!important}.u-m-r-52{margin-right:%?52?%!important}.u-p-r-52{padding-right:%?52?%!important}.u-margin-right-52{margin-right:%?52?%!important}.u-padding-right-52{padding-right:%?52?%!important}.u-m-b-52{margin-bottom:%?52?%!important}.u-p-b-52{padding-bottom:%?52?%!important}.u-margin-bottom-52{margin-bottom:%?52?%!important}.u-padding-bottom-52{padding-bottom:%?52?%!important}.u-margin-54, .u-m-54{margin:%?54?%!important}.u-padding-54, .u-p-54{padding:%?54?%!important}.u-m-l-54{margin-left:%?54?%!important}.u-p-l-54{padding-left:%?54?%!important}.u-margin-left-54{margin-left:%?54?%!important}.u-padding-left-54{padding-left:%?54?%!important}.u-m-t-54{margin-top:%?54?%!important}.u-p-t-54{padding-top:%?54?%!important}.u-margin-top-54{margin-top:%?54?%!important}.u-padding-top-54{padding-top:%?54?%!important}.u-m-r-54{margin-right:%?54?%!important}.u-p-r-54{padding-right:%?54?%!important}.u-margin-right-54{margin-right:%?54?%!important}.u-padding-right-54{padding-right:%?54?%!important}.u-m-b-54{margin-bottom:%?54?%!important}.u-p-b-54{padding-bottom:%?54?%!important}.u-margin-bottom-54{margin-bottom:%?54?%!important}.u-padding-bottom-54{padding-bottom:%?54?%!important}.u-margin-55, .u-m-55{margin:%?55?%!important}.u-padding-55, .u-p-55{padding:%?55?%!important}.u-m-l-55{margin-left:%?55?%!important}.u-p-l-55{padding-left:%?55?%!important}.u-margin-left-55{margin-left:%?55?%!important}.u-padding-left-55{padding-left:%?55?%!important}.u-m-t-55{margin-top:%?55?%!important}.u-p-t-55{padding-top:%?55?%!important}.u-margin-top-55{margin-top:%?55?%!important}.u-padding-top-55{padding-top:%?55?%!important}.u-m-r-55{margin-right:%?55?%!important}.u-p-r-55{padding-right:%?55?%!important}.u-margin-right-55{margin-right:%?55?%!important}.u-padding-right-55{padding-right:%?55?%!important}.u-m-b-55{margin-bottom:%?55?%!important}.u-p-b-55{padding-bottom:%?55?%!important}.u-margin-bottom-55{margin-bottom:%?55?%!important}.u-padding-bottom-55{padding-bottom:%?55?%!important}.u-margin-56, .u-m-56{margin:%?56?%!important}.u-padding-56, .u-p-56{padding:%?56?%!important}.u-m-l-56{margin-left:%?56?%!important}.u-p-l-56{padding-left:%?56?%!important}.u-margin-left-56{margin-left:%?56?%!important}.u-padding-left-56{padding-left:%?56?%!important}.u-m-t-56{margin-top:%?56?%!important}.u-p-t-56{padding-top:%?56?%!important}.u-margin-top-56{margin-top:%?56?%!important}.u-padding-top-56{padding-top:%?56?%!important}.u-m-r-56{margin-right:%?56?%!important}.u-p-r-56{padding-right:%?56?%!important}.u-margin-right-56{margin-right:%?56?%!important}.u-padding-right-56{padding-right:%?56?%!important}.u-m-b-56{margin-bottom:%?56?%!important}.u-p-b-56{padding-bottom:%?56?%!important}.u-margin-bottom-56{margin-bottom:%?56?%!important}.u-padding-bottom-56{padding-bottom:%?56?%!important}.u-margin-58, .u-m-58{margin:%?58?%!important}.u-padding-58, .u-p-58{padding:%?58?%!important}.u-m-l-58{margin-left:%?58?%!important}.u-p-l-58{padding-left:%?58?%!important}.u-margin-left-58{margin-left:%?58?%!important}.u-padding-left-58{padding-left:%?58?%!important}.u-m-t-58{margin-top:%?58?%!important}.u-p-t-58{padding-top:%?58?%!important}.u-margin-top-58{margin-top:%?58?%!important}.u-padding-top-58{padding-top:%?58?%!important}.u-m-r-58{margin-right:%?58?%!important}.u-p-r-58{padding-right:%?58?%!important}.u-margin-right-58{margin-right:%?58?%!important}.u-padding-right-58{padding-right:%?58?%!important}.u-m-b-58{margin-bottom:%?58?%!important}.u-p-b-58{padding-bottom:%?58?%!important}.u-margin-bottom-58{margin-bottom:%?58?%!important}.u-padding-bottom-58{padding-bottom:%?58?%!important}.u-margin-60, .u-m-60{margin:%?60?%!important}.u-padding-60, .u-p-60{padding:%?60?%!important}.u-m-l-60{margin-left:%?60?%!important}.u-p-l-60{padding-left:%?60?%!important}.u-margin-left-60{margin-left:%?60?%!important}.u-padding-left-60{padding-left:%?60?%!important}.u-m-t-60{margin-top:%?60?%!important}.u-p-t-60{padding-top:%?60?%!important}.u-margin-top-60{margin-top:%?60?%!important}.u-padding-top-60{padding-top:%?60?%!important}.u-m-r-60{margin-right:%?60?%!important}.u-p-r-60{padding-right:%?60?%!important}.u-margin-right-60{margin-right:%?60?%!important}.u-padding-right-60{padding-right:%?60?%!important}.u-m-b-60{margin-bottom:%?60?%!important}.u-p-b-60{padding-bottom:%?60?%!important}.u-margin-bottom-60{margin-bottom:%?60?%!important}.u-padding-bottom-60{padding-bottom:%?60?%!important}.u-margin-62, .u-m-62{margin:%?62?%!important}.u-padding-62, .u-p-62{padding:%?62?%!important}.u-m-l-62{margin-left:%?62?%!important}.u-p-l-62{padding-left:%?62?%!important}.u-margin-left-62{margin-left:%?62?%!important}.u-padding-left-62{padding-left:%?62?%!important}.u-m-t-62{margin-top:%?62?%!important}.u-p-t-62{padding-top:%?62?%!important}.u-margin-top-62{margin-top:%?62?%!important}.u-padding-top-62{padding-top:%?62?%!important}.u-m-r-62{margin-right:%?62?%!important}.u-p-r-62{padding-right:%?62?%!important}.u-margin-right-62{margin-right:%?62?%!important}.u-padding-right-62{padding-right:%?62?%!important}.u-m-b-62{margin-bottom:%?62?%!important}.u-p-b-62{padding-bottom:%?62?%!important}.u-margin-bottom-62{margin-bottom:%?62?%!important}.u-padding-bottom-62{padding-bottom:%?62?%!important}.u-margin-64, .u-m-64{margin:%?64?%!important}.u-padding-64, .u-p-64{padding:%?64?%!important}.u-m-l-64{margin-left:%?64?%!important}.u-p-l-64{padding-left:%?64?%!important}.u-margin-left-64{margin-left:%?64?%!important}.u-padding-left-64{padding-left:%?64?%!important}.u-m-t-64{margin-top:%?64?%!important}.u-p-t-64{padding-top:%?64?%!important}.u-margin-top-64{margin-top:%?64?%!important}.u-padding-top-64{padding-top:%?64?%!important}.u-m-r-64{margin-right:%?64?%!important}.u-p-r-64{padding-right:%?64?%!important}.u-margin-right-64{margin-right:%?64?%!important}.u-padding-right-64{padding-right:%?64?%!important}.u-m-b-64{margin-bottom:%?64?%!important}.u-p-b-64{padding-bottom:%?64?%!important}.u-margin-bottom-64{margin-bottom:%?64?%!important}.u-padding-bottom-64{padding-bottom:%?64?%!important}.u-margin-65, .u-m-65{margin:%?65?%!important}.u-padding-65, .u-p-65{padding:%?65?%!important}.u-m-l-65{margin-left:%?65?%!important}.u-p-l-65{padding-left:%?65?%!important}.u-margin-left-65{margin-left:%?65?%!important}.u-padding-left-65{padding-left:%?65?%!important}.u-m-t-65{margin-top:%?65?%!important}.u-p-t-65{padding-top:%?65?%!important}.u-margin-top-65{margin-top:%?65?%!important}.u-padding-top-65{padding-top:%?65?%!important}.u-m-r-65{margin-right:%?65?%!important}.u-p-r-65{padding-right:%?65?%!important}.u-margin-right-65{margin-right:%?65?%!important}.u-padding-right-65{padding-right:%?65?%!important}.u-m-b-65{margin-bottom:%?65?%!important}.u-p-b-65{padding-bottom:%?65?%!important}.u-margin-bottom-65{margin-bottom:%?65?%!important}.u-padding-bottom-65{padding-bottom:%?65?%!important}.u-margin-66, .u-m-66{margin:%?66?%!important}.u-padding-66, .u-p-66{padding:%?66?%!important}.u-m-l-66{margin-left:%?66?%!important}.u-p-l-66{padding-left:%?66?%!important}.u-margin-left-66{margin-left:%?66?%!important}.u-padding-left-66{padding-left:%?66?%!important}.u-m-t-66{margin-top:%?66?%!important}.u-p-t-66{padding-top:%?66?%!important}.u-margin-top-66{margin-top:%?66?%!important}.u-padding-top-66{padding-top:%?66?%!important}.u-m-r-66{margin-right:%?66?%!important}.u-p-r-66{padding-right:%?66?%!important}.u-margin-right-66{margin-right:%?66?%!important}.u-padding-right-66{padding-right:%?66?%!important}.u-m-b-66{margin-bottom:%?66?%!important}.u-p-b-66{padding-bottom:%?66?%!important}.u-margin-bottom-66{margin-bottom:%?66?%!important}.u-padding-bottom-66{padding-bottom:%?66?%!important}.u-margin-68, .u-m-68{margin:%?68?%!important}.u-padding-68, .u-p-68{padding:%?68?%!important}.u-m-l-68{margin-left:%?68?%!important}.u-p-l-68{padding-left:%?68?%!important}.u-margin-left-68{margin-left:%?68?%!important}.u-padding-left-68{padding-left:%?68?%!important}.u-m-t-68{margin-top:%?68?%!important}.u-p-t-68{padding-top:%?68?%!important}.u-margin-top-68{margin-top:%?68?%!important}.u-padding-top-68{padding-top:%?68?%!important}.u-m-r-68{margin-right:%?68?%!important}.u-p-r-68{padding-right:%?68?%!important}.u-margin-right-68{margin-right:%?68?%!important}.u-padding-right-68{padding-right:%?68?%!important}.u-m-b-68{margin-bottom:%?68?%!important}.u-p-b-68{padding-bottom:%?68?%!important}.u-margin-bottom-68{margin-bottom:%?68?%!important}.u-padding-bottom-68{padding-bottom:%?68?%!important}.u-margin-70, .u-m-70{margin:%?70?%!important}.u-padding-70, .u-p-70{padding:%?70?%!important}.u-m-l-70{margin-left:%?70?%!important}.u-p-l-70{padding-left:%?70?%!important}.u-margin-left-70{margin-left:%?70?%!important}.u-padding-left-70{padding-left:%?70?%!important}.u-m-t-70{margin-top:%?70?%!important}.u-p-t-70{padding-top:%?70?%!important}.u-margin-top-70{margin-top:%?70?%!important}.u-padding-top-70{padding-top:%?70?%!important}.u-m-r-70{margin-right:%?70?%!important}.u-p-r-70{padding-right:%?70?%!important}.u-margin-right-70{margin-right:%?70?%!important}.u-padding-right-70{padding-right:%?70?%!important}.u-m-b-70{margin-bottom:%?70?%!important}.u-p-b-70{padding-bottom:%?70?%!important}.u-margin-bottom-70{margin-bottom:%?70?%!important}.u-padding-bottom-70{padding-bottom:%?70?%!important}.u-margin-72, .u-m-72{margin:%?72?%!important}.u-padding-72, .u-p-72{padding:%?72?%!important}.u-m-l-72{margin-left:%?72?%!important}.u-p-l-72{padding-left:%?72?%!important}.u-margin-left-72{margin-left:%?72?%!important}.u-padding-left-72{padding-left:%?72?%!important}.u-m-t-72{margin-top:%?72?%!important}.u-p-t-72{padding-top:%?72?%!important}.u-margin-top-72{margin-top:%?72?%!important}.u-padding-top-72{padding-top:%?72?%!important}.u-m-r-72{margin-right:%?72?%!important}.u-p-r-72{padding-right:%?72?%!important}.u-margin-right-72{margin-right:%?72?%!important}.u-padding-right-72{padding-right:%?72?%!important}.u-m-b-72{margin-bottom:%?72?%!important}.u-p-b-72{padding-bottom:%?72?%!important}.u-margin-bottom-72{margin-bottom:%?72?%!important}.u-padding-bottom-72{padding-bottom:%?72?%!important}.u-margin-74, .u-m-74{margin:%?74?%!important}.u-padding-74, .u-p-74{padding:%?74?%!important}.u-m-l-74{margin-left:%?74?%!important}.u-p-l-74{padding-left:%?74?%!important}.u-margin-left-74{margin-left:%?74?%!important}.u-padding-left-74{padding-left:%?74?%!important}.u-m-t-74{margin-top:%?74?%!important}.u-p-t-74{padding-top:%?74?%!important}.u-margin-top-74{margin-top:%?74?%!important}.u-padding-top-74{padding-top:%?74?%!important}.u-m-r-74{margin-right:%?74?%!important}.u-p-r-74{padding-right:%?74?%!important}.u-margin-right-74{margin-right:%?74?%!important}.u-padding-right-74{padding-right:%?74?%!important}.u-m-b-74{margin-bottom:%?74?%!important}.u-p-b-74{padding-bottom:%?74?%!important}.u-margin-bottom-74{margin-bottom:%?74?%!important}.u-padding-bottom-74{padding-bottom:%?74?%!important}.u-margin-75, .u-m-75{margin:%?75?%!important}.u-padding-75, .u-p-75{padding:%?75?%!important}.u-m-l-75{margin-left:%?75?%!important}.u-p-l-75{padding-left:%?75?%!important}.u-margin-left-75{margin-left:%?75?%!important}.u-padding-left-75{padding-left:%?75?%!important}.u-m-t-75{margin-top:%?75?%!important}.u-p-t-75{padding-top:%?75?%!important}.u-margin-top-75{margin-top:%?75?%!important}.u-padding-top-75{padding-top:%?75?%!important}.u-m-r-75{margin-right:%?75?%!important}.u-p-r-75{padding-right:%?75?%!important}.u-margin-right-75{margin-right:%?75?%!important}.u-padding-right-75{padding-right:%?75?%!important}.u-m-b-75{margin-bottom:%?75?%!important}.u-p-b-75{padding-bottom:%?75?%!important}.u-margin-bottom-75{margin-bottom:%?75?%!important}.u-padding-bottom-75{padding-bottom:%?75?%!important}.u-margin-76, .u-m-76{margin:%?76?%!important}.u-padding-76, .u-p-76{padding:%?76?%!important}.u-m-l-76{margin-left:%?76?%!important}.u-p-l-76{padding-left:%?76?%!important}.u-margin-left-76{margin-left:%?76?%!important}.u-padding-left-76{padding-left:%?76?%!important}.u-m-t-76{margin-top:%?76?%!important}.u-p-t-76{padding-top:%?76?%!important}.u-margin-top-76{margin-top:%?76?%!important}.u-padding-top-76{padding-top:%?76?%!important}.u-m-r-76{margin-right:%?76?%!important}.u-p-r-76{padding-right:%?76?%!important}.u-margin-right-76{margin-right:%?76?%!important}.u-padding-right-76{padding-right:%?76?%!important}.u-m-b-76{margin-bottom:%?76?%!important}.u-p-b-76{padding-bottom:%?76?%!important}.u-margin-bottom-76{margin-bottom:%?76?%!important}.u-padding-bottom-76{padding-bottom:%?76?%!important}.u-margin-78, .u-m-78{margin:%?78?%!important}.u-padding-78, .u-p-78{padding:%?78?%!important}.u-m-l-78{margin-left:%?78?%!important}.u-p-l-78{padding-left:%?78?%!important}.u-margin-left-78{margin-left:%?78?%!important}.u-padding-left-78{padding-left:%?78?%!important}.u-m-t-78{margin-top:%?78?%!important}.u-p-t-78{padding-top:%?78?%!important}.u-margin-top-78{margin-top:%?78?%!important}.u-padding-top-78{padding-top:%?78?%!important}.u-m-r-78{margin-right:%?78?%!important}.u-p-r-78{padding-right:%?78?%!important}.u-margin-right-78{margin-right:%?78?%!important}.u-padding-right-78{padding-right:%?78?%!important}.u-m-b-78{margin-bottom:%?78?%!important}.u-p-b-78{padding-bottom:%?78?%!important}.u-margin-bottom-78{margin-bottom:%?78?%!important}.u-padding-bottom-78{padding-bottom:%?78?%!important}.u-margin-80, .u-m-80{margin:%?80?%!important}.u-padding-80, .u-p-80{padding:%?80?%!important}.u-m-l-80{margin-left:%?80?%!important}.u-p-l-80{padding-left:%?80?%!important}.u-margin-left-80{margin-left:%?80?%!important}.u-padding-left-80{padding-left:%?80?%!important}.u-m-t-80{margin-top:%?80?%!important}.u-p-t-80{padding-top:%?80?%!important}.u-margin-top-80{margin-top:%?80?%!important}.u-padding-top-80{padding-top:%?80?%!important}.u-m-r-80{margin-right:%?80?%!important}.u-p-r-80{padding-right:%?80?%!important}.u-margin-right-80{margin-right:%?80?%!important}.u-padding-right-80{padding-right:%?80?%!important}.u-m-b-80{margin-bottom:%?80?%!important}.u-p-b-80{padding-bottom:%?80?%!important}.u-margin-bottom-80{margin-bottom:%?80?%!important}.u-padding-bottom-80{padding-bottom:%?80?%!important}.u-type-primary-light{color:#ecf5ff}.u-type-warning-light{color:#fdf6ec}.u-type-success-light{color:#dbf1e1}.u-type-error-light{color:#fef0f0}.u-type-info-light{color:#f4f4f5}.u-type-primary-light-bg{background-color:#ecf5ff}.u-type-warning-light-bg{background-color:#fdf6ec}.u-type-success-light-bg{background-color:#dbf1e1}.u-type-error-light-bg{background-color:#fef0f0}.u-type-info-light-bg{background-color:#f4f4f5}.u-type-primary-dark{color:#2b85e4}.u-type-warning-dark{color:#f29100}.u-type-success-dark{color:#18b566}.u-type-error-dark{color:#dd6161}.u-type-info-dark{color:#82848a}.u-type-primary-dark-bg{background-color:#2b85e4}.u-type-warning-dark-bg{background-color:#f29100}.u-type-success-dark-bg{background-color:#18b566}.u-type-error-dark-bg{background-color:#dd6161}.u-type-info-dark-bg{background-color:#82848a}.u-type-primary-disabled{color:#a0cfff}.u-type-warning-disabled{color:#fcbd71}.u-type-success-disabled{color:#71d5a1}.u-type-error-disabled{color:#fab6b6}.u-type-info-disabled{color:#c8c9cc}.u-type-primary{color:#2979ff}.u-type-warning{color:#f90}.u-type-success{color:#19be6b}.u-type-error{color:#fa3534}.u-type-info{color:#909399}.u-type-primary-bg{background-color:#2979ff}.u-type-warning-bg{background-color:#f90}.u-type-success-bg{background-color:#19be6b}.u-type-error-bg{background-color:#fa3534}.u-type-info-bg{background-color:#909399}.u-main-color{color:#303133}.u-content-color{color:#606266}.u-tips-color{color:#909399}.u-light-color{color:#c0c4cc}uni-page-body{color:#303133;font-size:%?28?%}\r\n/* start--去除webkit的默认样式--start */.u-fix-ios-appearance{-webkit-appearance:none}\r\n/* end--去除webkit的默认样式--end */\r\n/* start--icon图标外层套一个view,让其达到更好的垂直居中的效果--start */.u-icon-wrap{display:flex;align-items:center}\r\n/* end-icon图标外层套一个view,让其达到更好的垂直居中的效果--end */\r\n/* start--iPhoneX底部安全区定义--start */.safe-area-inset-bottom{padding-bottom:0;padding-bottom:constant(safe-area-inset-bottom);padding-bottom:env(safe-area-inset-bottom)}\r\n/* end-iPhoneX底部安全区定义--end */\r\n/* start--各种hover点击反馈相关的类名-start */.u-hover-class{opacity:.6}.u-cell-hover{background-color:#f7f8f9!important}\r\n/* end--各种hover点击反馈相关的类名--end */\r\n/* start--文本行数限制--start */.u-line-1{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.u-line-2{-webkit-line-clamp:2}.u-line-3{-webkit-line-clamp:3}.u-line-4{-webkit-line-clamp:4}.u-line-5{-webkit-line-clamp:5}.u-line-2, .u-line-3, .u-line-4, .u-line-5{overflow:hidden;word-break:break-all;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical}\r\n/* end--文本行数限制--end */\r\n/* start--Retina 屏幕下的 1px 边框--start */.u-border,\r\n.u-border-bottom,\r\n.u-border-left,\r\n.u-border-right,\r\n.u-border-top,\r\n.u-border-top-bottom{position:relative}.u-border-bottom:after,\r\n.u-border-left:after,\r\n.u-border-right:after,\r\n.u-border-top-bottom:after,\r\n.u-border-top:after,\r\n.u-border:after{content:" ";position:absolute;left:0;top:0;pointer-events:none;box-sizing:border-box;-webkit-transform-origin:0 0;transform-origin:0 0;width:199.8%;height:199.7%;-webkit-transform:scale(.5);transform:scale(.5);border:0 solid #e4e7ed;z-index:2}.u-border-top:after{border-top-width:1px}.u-border-left:after{border-left-width:1px}.u-border-right:after{border-right-width:1px}.u-border-bottom:after{border-bottom-width:1px}.u-border-top-bottom:after{border-width:1px 0}.u-border:after{border-width:1px}\r\n/* end--Retina 屏幕下的 1px 边框--end */\r\n/* start--clearfix--start */.u-clearfix:after,\r\n.clearfix:after{content:"";display:table;clear:both}\r\n/* end--clearfix--end */\r\n/* start--高斯模糊tabbar底部处理--start */.u-blur-effect-inset{width:%?750?%;height:var(--window-bottom);background-color:#fff}\r\n/* end--高斯模糊tabbar底部处理--end */\r\n/* start--提升H5端uni.toast()的层级,避免被uView的modal等遮盖--start */uni-toast{z-index:10090}uni-toast .uni-toast{z-index:10090}\r\n/* end--提升H5端uni.toast()的层级,避免被uView的modal等遮盖--end */\r\n/* H5的时候,隐藏滚动条 */::-webkit-scrollbar{display:none;width:0!important;height:0!important;-webkit-appearance:none;background:transparent}uni-rich-text img{max-width:100%!important}.pic-img{width:100%;height:100%}.default-img{background:url('+i+") no-repeat 50%;background-size:100% 100%}.line1{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.wid{width:100%}.fs4{font-size:%?4?%}.fs18{font-size:%?18?%}.fs20{font-size:%?20?%}.fs22{font-size:%?22?%}.fs24{font-size:%?24?%}.fs26{font-size:%?26?%}.fs28{font-size:%?28?%}.fs30{font-size:%?30?%}.fs32{font-size:%?32?%}.fs34{font-size:%?34?%}.fs36{font-size:%?36?%}.fs38{font-size:%?38?%}.fs40{font-size:%?40?%}.fs42{font-size:%?42?%}.fs44{font-size:%?44?%}.fs46{font-size:%?46?%}.fs48{font-size:%?46?%}.fs50{font-size:%?50?%}.fs60{font-size:%?60?%}.fs-bold{font-weight:700}.fs-weight-300{font-weight:300}.fs-weight-200{font-weight:200}.fs-weight-400{font-weight:400}.flex-display{display:flex}.flex-center{display:flex;justify-content:center}.flex-items{display:flex;align-items:center}.flex-items-plus{display:flex;justify-content:center;align-items:center}.flex-start{display:flex;justify-content:flex-start}.flex-end{display:flex;justify-content:flex-end}.flex-end-plus{display:flex;justify-content:flex-end;align-items:center}.flex-column{flex-direction:column}.flex-column-plus{display:flex;flex-direction:column}.flex-row{flex-direction:row}.flex-row-plus{display:flex;flex-direction:row}.flex-sp-around{justify-content:space-around}.flex-sp-between{justify-content:space-between}.text-align{text-align:center}.flex-wrap-1{display:flex;flex-wrap:wrap}.flex-nowrap-1{display:flex;flex-wrap:nowrap}.align-end{display:flex;align-items:flex-end}.align-sp-between{align-content:space-between}.mar-top-5{margin-top:%?5?%}.mar-top-10{margin-top:%?10?%}.mar-top-20{margin-top:%?20?%}.mar-top-30{margin-top:%?30?%}.mar-top-32{margin-top:%?32?%}.mar-top-36{margin-top:%?36?%}.mar-top-40{margin-top:%?40?%}.mar-top-50{margin-top:%?50?%}.mar-top-60{margin-top:%?60?%}.mar-top-70{margin-top:%?70?%}.mar-top-100{margin-top:%?100?%}.mar-top-percent40{margin-top:40%}.mar-top-half{margin-top:50%}.mar-left-6{margin-left:%?6?%}.mar-left-5{margin-left:%?5?%}.mar-left-10{margin-left:%?10?%}.mar-left-20{margin-left:%?20?%}.mar-left-30{margin-left:%?30?%}.mar-left-35{margin-left:%?35?%}.mar-left-40{margin-left:%?40?%}.mar-left-50{margin-left:%?50?%}.mar-left-60{margin-left:%?60?%}.mar-left-70{margin-left:%?70?%}.mar-right-10{margin-right:%?10?%}.mar-right-20{margin-right:%?20?%}.mar-right-25{margin-right:%?25?%}.mar-right-30{margin-right:%?30?%}.mar-right-35{margin-right:%?35?%}.mar-right-40{margin-right:%?40?%}.mar-right-50{margin-right:%?50?%}.pad-left-10{padding-left:%?10?%}.pad-left-20{padding-left:%?20?%}.pad-left-40{padding-left:%?40?%}.pad-right-20{padding-right:%?20?%}.pad-top-20{padding-top:%?20?%}.pad-top-40{padding-top:%?40?%}.pad-bot-20{padding-bottom:%?20?%}.pad-topbot-20{padding:%?20?% %?0?%}.pad-topbot-5{padding:%?0?% %?5?%}.pad-topbot-10{padding:%?0?% %?10?%}.pad-topbot-50{padding:%?50?% %?0?%}.pad-bot-20{padding-bottom:%?20?%}.pad-bot-30{padding-bottom:%?30?%}.pad-bot-40{padding-bottom:%?40?%}.pad-bot-100{padding-bottom:%?100?%}.pad-bot-140{padding-bottom:%?140?%}.bor-rad-30{border-radius:%?30?%}.bor-rad-45{border-radius:%?45?%}.bor-rad-half{border-radius:50%}.backColor{background-color:#009688}.backColorFFF{background-color:#fff}.pos-abs{position:absolute}.bor-bot-line{border-bottom:#c8c7cc %?1?% solid}.bor-line-F7F7F7{border-bottom:#f7f7f7 %?1?% solid}.bor-line-E5E5E5{border-bottom:#e5e5e5 %?1?% solid}.borRig-line-E5E5E5{border-right:#ddd %?2?% solid}.borRig-line-20{border-bottom:#f7f7f7 %?20?% solid}.font-color-red{color:red}.font-color-FFF{color:#fff}.font-color-8A734A{color:#8a734a}.font-color-71521B{color:#71521b}.font-color-222{color:#222}.font-color-333{color:#333}.font-color-666{color:#666}.font-color-999{color:#999}.font-color-656{color:#656565}.font-color-DDD{color:#ddd}.font-color-CCC{color:#ccc}.font-color-FFEBC4{color:#ffebc4}.font-color-1CC363{color:#1cc363}.font-color-47A7EE{color:#47a7ee}.font-color-C5AA7B{color:#c5aa7b}.font-color-FF7700{color:#f70}.font-color-FF7911{color:#ff7911}.font-color-80{color:grey}.font-color-DD{color:#dd524d}.font-color-C83732{color:#c83732}.font-color-3F{color:#3f536e}.font-color-009{color:#009688}.font-weight-500{font-weight:500}.font-weight-bold{font-weight:700}.overflow{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.overflowNoDot{display:block;overflow:hidden}.discountsPriceLine{text-decoration:line-through}.border-bottom-Line{border-bottom:%?1?% solid #ededed}.decoration{text-decoration:line-through}.anonymous{margin-top:%?25?%}.anonymous .uni-checkbox-input{border-color:#c5aa7b!important;width:%?30?%;height:%?30?%}.anonymous .uni-checkbox-input-checked:before{font-size:%?30?%!important}.anonymous .uni-checkbox-input-checked{background:#c5aa7b}.footprint .itemList .uni-checkbox-input{border-color:#c5aa7b!important;width:%?36?%;height:%?36?%;border-radius:50%;margin-right:%?20?%}.footprint .itemList .uni-checkbox-input-checked:before{font-size:%?36?%!important}.footprint .itemList .uni-checkbox-input-checked{background:#c5aa7b}.itemInfo uni-slider{margin:0}.itemInfo uni-slider .uni-slider-thumb{display:none}.itemInfo uni-slider .uni-slider-handle-wrapper{height:%?18?%;border-radius:0;border:%?1?% solid #ff736c}.itemInfo uni-slider .uni-slider-track{border-radius:0}.itemInfo uni-slider .uni-slider-tap-area{flex:0 0 70%;padding:0}.uni-modal{padding:%?20?%;box-sizing:border-box}uni-modal .uni-modal__ft:after{border-top:none}uni-modal .uni-modal__btn{color:#333;border:%?2?% solid #333;font-weight:400;margin:0 %?10?%;font-size:%?28?%}.uni-tabbar .uni-tabbar__reddot{background:#c5aa7b;color:#fff}uni-checkbox:not([disabled]) .uni-checkbox-input:hover{border-color:#c5aa7b}.u-arrow{display:inline-block;width:%?20?%;height:%?20?%;border-top:%?1?% solid #999;border-right:%?1?% solid #999}.u-arrow-up{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.u-arrow-down{-webkit-transform:rotate(135deg);transform:rotate(135deg)}.u-arrow-left{-webkit-transform:rotate(-135deg);transform:rotate(-135deg)}.u-arrow-right{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.uni-picker-container .uni-picker-action.uni-picker-action-confirm{color:#c5aa7b}",""]),e.exports=t},1899:function(e,t,a){"use strict";a("6a54"),Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1500;uni.showToast({title:e,icon:"none",duration:t})};t.default=n},"18b4":function(e,t,a){"use strict";var n;a("6a54"),Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:500,a=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];a?n||(n=!0,"function"===typeof e&&e(),setTimeout((function(){n=!1}),t)):n||(n=!0,setTimeout((function(){n=!1,"function"===typeof e&&e()}),t))};t.default=o},"1ce1":function(e,t,a){"use strict";function n(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],a=/^#([0-9a-fA-f]{3}|[0-9a-fA-f]{6})$/;if(e=e.toLowerCase(),e&&a.test(e)){if(4===e.length){for(var n="#",o=1;o<4;o+=1)n+=e.slice(o,o+1).concat(e.slice(o,o+1));e=n}for(var r=[],i=1;i<7;i+=2)r.push(parseInt("0x"+e.slice(i,i+2)));return t?"rgb(".concat(r[0],",").concat(r[1],",").concat(r[2],")"):r}if(/^(rgb|RGB)/.test(e)){var g=e.replace(/(?:\(|\)|rgb|RGB)*/g,"").split(",");return g.map((function(e){return Number(e)}))}return e}function o(e){var t=e;if(/^(rgb|RGB)/.test(t)){for(var a=t.replace(/(?:\(|\)|rgb|RGB)*/g,"").split(","),n="#",o=0;o<a.length;o++){var r=Number(a[o]).toString(16);r=1==String(r).length?"0"+r:r,"0"===r&&(r+=r),n+=r}return 7!==n.length&&(n=t),n}if(!/^#([0-9a-fA-f]{3}|[0-9a-fA-f]{6})$/.test(t))return t;var i=t.replace(/#/,"").split("");if(6===i.length)return t;if(3===i.length){for(var g="#",u=0;u<i.length;u+=1)g+=i[u]+i[u];return g}}a("6a54"),Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0,a("aa9c"),a("5c47"),a("0506"),a("c223"),a("f7a5"),a("e966"),a("a1c1"),a("fd3c"),a("64aa"),a("c9b5"),a("bf0f"),a("ab80");var r={colorGradient:function(){for(var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"rgb(0, 0, 0)",t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"rgb(255, 255, 255)",a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:10,r=n(e,!1),i=r[0],g=r[1],u=r[2],p=n(t,!1),d=p[0],s=p[1],c=p[2],l=(d-i)/a,m=(s-g)/a,_=(c-u)/a,f=[],y=0;y<a;y++){var b=o("rgb("+Math.round(l*y+i)+","+Math.round(m*y+g)+","+Math.round(_*y+u)+")");f.push(b)}return f},hexToRgb:n,rgbToHex:o};t.default=r},"1e8b":function(e,t,a){"use strict";a("6a54");var n=a("f5bd").default;Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0,a("5ef2");n(a("83c8")),n(a("6d56"));var o={onLoad:function(e){},onLaunch:function(e){e.query.token&&(uni.setStorageSync("storage_key",e.query),uni.setStorageSync("token",e.query.token)),e&&"pages_category_page1/goodsModule/goodsDetails"===e.path&&e.query&&(this.globalData.productShareItem=e.query),e&&"pages_category_page1/store/index"===e.path&&e.query&&(this.globalData.shopShareItem=e.query),e&&"pages_category_page1/distributionModule/recruit"===e.path&&e.query&&(this.globalData.distributeRecruitItem=e.query),e&&"pages_category_page1/goodsModule/inviteSpell"===e.path&&e.query&&(this.globalData.inviteSpellShareItem=e.query);var t=this;uni.getSystemInfo({success:function(e){console.log(e,"检查机型"),e.safeArea.top>20&&-1!==e.model.indexOf("iPhone")&&(t.globalData.isIphone=!0)}})},globalData:{isIphone:!1}};t.default=o},"1ebe":function(e,t,a){var n=a("b2d4");n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var o=a("967d").default;o("7dc1cad2",n,!0,{sourceMap:!1,shadowMode:!1})},2827:function(e,t,a){"use strict";a("6a54");var n=a("f5bd").default;Object.defineProperty(t,"__esModule",{value:!0}),t.jumpToTabbar=t.jump=t.goBack=t.getJumpParam=void 0;var o=n(a("fcf3"));a("c223"),a("d4b5");t.jump=function(e,t){var a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"default";setTimeout((function(){t&&(e="".concat(e,"?detail=").concat(encodeURIComponent(JSON.stringify(t)))),"default"===n?uni.navigateTo({url:e}):"redirect"===n?uni.redirectTo({url:e}):uni.reLaunch({url:e})}),a)};t.jumpToTabbar=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;setTimeout((function(){uni.switchTab({url:e})}),t)};t.goBack=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:1;uni.navigateBack({delta:e})};t.getJumpParam=function(e){return"object"===(0,o.default)(e)&&null!==e&&void 0!==e&&e.detail?JSON.parse(decodeURIComponent(e.detail)):{}}},2831:function(e,t,a){"use strict";a("6a54");var n=a("f5bd").default;Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0,a("64aa"),a("e966"),a("c9b5"),a("bf0f"),a("ab80");var o=n(a("8557a"));var r=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"yyyy-mm-dd";null==e&&(e=Number(new Date)),e=parseInt(e),10==e.toString().length&&(e*=1e3);var a=(new Date).getTime()-e;a=parseInt(a/1e3);var n="";switch(!0){case a<300:n="刚刚";break;case a>=300&&a<3600:n=parseInt(a/60)+"分钟前";break;case a>=3600&&a<86400:n=parseInt(a/3600)+"小时前";break;case a>=86400&&a<2592e3:n=parseInt(a/86400)+"天前";break;default:n=!1===t?a>=2592e3&&a<31536e3?parseInt(a/2592e3)+"个月前":parseInt(a/31536e3)+"年前":(0,o.default)(e,t)}return n};t.default=r},"29c5":function(e,t,a){var n=a("1867");n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var o=a("967d").default;o("ec2060a2",n,!0,{sourceMap:!1,shadowMode:!1})},"2c68":function(e,t,a){"use strict";var n=a("1ebe"),o=a.n(n);o.a},"322b":function(e,t,a){"use strict";a("6a54");var n=a("f5bd").default;Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=n(a("fcf3"));function r(e){switch((0,o.default)(e)){case"undefined":return!0;case"string":if(0==e.replace(/(^[ \t\n\r]*)|([ \t\n\r]*$)/g,"").length)return!0;break;case"boolean":if(!e)return!0;break;case"number":if(0===e||isNaN(e))return!0;break;case"object":if(null===e||0===e.length)return!0;for(var t in e)return!1;return!0}return!1}a("5c47"),a("0506"),a("c9b5"),a("bf0f"),a("ab80"),a("5ef2"),a("a1c1");var i={email:function(e){return/^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/.test(e)},mobile:function(e){return/^1[23456789]\d{9}$/.test(e)},url:function(e){return/^((https|http|ftp|rtsp|mms):\/\/)(([0-9a-zA-Z_!~*'().&=+$%-]+: )?[0-9a-zA-Z_!~*'().&=+$%-]+@)?(([0-9]{1,3}.){3}[0-9]{1,3}|([0-9a-zA-Z_!~*'()-]+.)*([0-9a-zA-Z][0-9a-zA-Z-]{0,61})?[0-9a-zA-Z].[a-zA-Z]{2,6})(:[0-9]{1,4})?((\/?)|(\/[0-9a-zA-Z_!~*'().;?:@&=+$,%#-]+)+\/?)$/.test(e)},date:function(e){return!/Invalid|NaN/.test(new Date(e).toString())},dateISO:function(e){return/^\d{4}[\/\-](0?[1-9]|1[012])[\/\-](0?[1-9]|[12][0-9]|3[01])$/.test(e)},number:function(e){return/^(?:-?\d+|-?\d{1,3}(?:,\d{3})+)?(?:\.\d+)?$/.test(e)},digits:function(e){return/^\d+$/.test(e)},idCard:function(e){return/^[1-9]\d{5}[1-9]\d{3}((0\d)|(1[0-2]))(([0|1|2]\d)|3[0-1])\d{3}([0-9]|X)$/.test(e)},carNo:function(e){return 7===e.length?/^[京津沪渝冀豫云辽黑湘皖鲁新苏浙赣鄂桂甘晋蒙陕吉闽贵粤青藏川宁琼使领A-Z]{1}[A-Z]{1}[A-HJ-NP-Z0-9]{4}[A-HJ-NP-Z0-9挂学警港澳]{1}$/.test(e):8===e.length&&/^[京津沪渝冀豫云辽黑湘皖鲁新苏浙赣鄂桂甘晋蒙陕吉闽贵粤青藏川宁琼使领A-Z]{1}[A-Z]{1}(([0-9]{5}[DF]$)|([DF][A-HJ-NP-Z0-9][0-9]{4}$))/.test(e)},amount:function(e){return/^[1-9]\d*(,\d{3})*(\.\d{1,2})?$|^0\.\d{1,2}$/.test(e)},chinese:function(e){return/^[\u4e00-\u9fa5]+$/gi.test(e)},letter:function(e){return/^[a-zA-Z]*$/.test(e)},enOrNum:function(e){return/^[0-9a-zA-Z]*$/g.test(e)},contains:function(e,t){return e.indexOf(t)>=0},range:function(e,t){return e>=t[0]&&e<=t[1]},rangeLength:function(e,t){return e.length>=t[0]&&e.length<=t[1]},empty:r,isEmpty:r,jsonString:function(e){if("string"==typeof e)try{var t=JSON.parse(e);return!("object"!=(0,o.default)(t)||!t)}catch(a){return!1}return!1},landline:function(e){return/^\d{3,4}-\d{7,8}(-\d{3,4})?$/.test(e)},object:function(e){return"[object Object]"===Object.prototype.toString.call(e)},array:function(e){return"function"===typeof Array.isArray?Array.isArray(e):"[object Array]"===Object.prototype.toString.call(e)}};t.default=i},"3a65":function(e,t,a){"use strict";a("6a54"),Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0,a("4100");var n=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];return e.sort((function(){return Math.random()-.5}))};t.default=n},"3a6d":function(e,t,a){"use strict";a("6a54");var n=a("f5bd").default;Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=n(a("fcf3"));a("bf0f"),a("4626");var r=function e(t){if([null,void 0,NaN,!1].includes(t))return t;if("object"!==(0,o.default)(t)&&"function"!==typeof t)return t;var a=function(e){return"[object Array]"===Object.prototype.toString.call(e)}(t)?[]:{};for(var n in t)t.hasOwnProperty(n)&&(a[n]="object"===(0,o.default)(t[n])?e(t[n]):t[n]);return a};t.default=r},"3f48":function(e,t,a){"use strict";a("6a54");var n=a("f5bd").default;Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e,t){var a=this.$parent;while(a)if(a.$options.name!==e)a=a.$parent;else{var n=function(){var e={};if(Array.isArray(t))t.map((function(t){e[t]=a[t]?a[t]:""}));else for(var n in t)Array.isArray(t[n])?t[n].length?e[n]=t[n]:e[n]=a[n]:t[n].constructor===Object?Object.keys(t[n]).length?e[n]=t[n]:e[n]=a[n]:e[n]=t[n]||!1===t[n]?t[n]:a[n];return{v:e}}();if("object"===(0,o.default)(n))return n.v}return{}};var o=n(a("fcf3"));a("fd3c"),a("dc8a")},4948:function(e,t,a){"use strict";a("6a54"),Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n={primary:"#2979ff",primaryDark:"#2b85e4",primaryDisabled:"#a0cfff",primaryLight:"#ecf5ff",bgColor:"#f3f4f6",info:"#909399",infoDark:"#82848a",infoDisabled:"#c8c9cc",infoLight:"#f4f4f5",warning:"#ff9900",warningDark:"#f29100",warningDisabled:"#fcbd71",warningLight:"#fdf6ec",error:"#fa3534",errorDark:"#dd6161",errorDisabled:"#fab6b6",errorLight:"#fef0f0",success:"#19be6b",successDark:"#18b566",successDisabled:"#71d5a1",successLight:"#dbf1e1",mainColor:"#303133",contentColor:"#606266",tipsColor:"#909399",lightColor:"#c0c4cc",borderColor:"#e4e7ed"};t.default=n},"4ed6":function(e,t,a){"use strict";a("6a54"),Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0,a("5ef2"),a("aa9c"),a("bf0f"),a("2797");var n=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"brackets",n=t?"?":"",o=[];-1==["indices","brackets","repeat","comma"].indexOf(a)&&(a="brackets");var r=function(t){var n=e[t];if(["",void 0,null].indexOf(n)>=0)return"continue";if(n.constructor===Array)switch(a){case"indices":for(var r=0;r<n.length;r++)o.push(t+"["+r+"]="+n[r]);break;case"brackets":n.forEach((function(e){o.push(t+"[]="+e)}));break;case"repeat":n.forEach((function(e){o.push(t+"="+e)}));break;case"comma":var i="";n.forEach((function(e){i+=(i?",":"")+e})),o.push(t+"="+i);break;default:n.forEach((function(e){o.push(t+"[]="+e)}))}else o.push(t+"="+n)};for(var i in e)r(i);return o.length?n+o.join("&"):""};t.default=n},5303:function(e,t,a){"use strict";a("6a54");var n=a("f5bd").default;Object.defineProperty(t,"__esModule",{value:!0}),t.hideLoading=g,t.showLoading=i,t.showLoadingAuto=u;var o=n(a("9b8e")),r=n(a("14ef"));function i(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";r.default.commit("SET_SHOW_LOADING",{flag:!0,info:e})}function g(){r.default.commit("SET_SHOW_LOADING",{flag:!1,info:""})}function u(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:2e3;r.default.commit("SET_SHOW_LOADING",{flag:!0,info:e}),setTimeout((function(){r.default.commit("SET_SHOW_LOADING",{flag:!1,info:""})}),t)}o.default.prototype.$showLoading=i,o.default.prototype.$hideLoading=g,o.default.prototype.$showLoadingAuto=u},"53cb":function(e,t,a){"use strict";a("6a54"),Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:void 0,t=this.$parent;while(t){if(!t.$options||t.$options.name===e)return t;t=t.$parent}return!1}},"681f":function(e,t,a){"use strict";a("6a54"),Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;t.default={toast:10090,noNetwork:10080,popup:10075,mask:10070,navbar:980,topTips:975,sticky:970,indexListSticky:965}},"6a70":function(e,t,a){"use strict";a("6a54");var n=a("f5bd").default;Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0,a("bf0f"),a("5ef2");var o=n(a("80b1")),r=n(a("efe5")),i=n(a("8a07")),g=n(a("322b")),u=function(){function e(){var t=this;(0,o.default)(this,e),this.config={baseUrl:"",header:{},method:"POST",dataType:"json",responseType:"text",showLoading:!0,loadingText:"请求中...",loadingTime:800,timer:null,originalData:!1,loadingMask:!0},this.interceptor={request:null,response:null},this.get=function(e){var a=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return t.request({method:"GET",url:e,header:n,data:a})},this.post=function(e){var a=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return t.request({url:e,method:"POST",header:n,data:a})},this.put=function(e){var a=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return t.request({url:e,method:"PUT",header:n,data:a})},this.delete=function(e){var a=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return t.request({url:e,method:"DELETE",header:n,data:a})}}return(0,r.default)(e,[{key:"setConfig",value:function(e){this.config=(0,i.default)(this.config,e)}},{key:"request",value:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(this.interceptor.request&&"function"===typeof this.interceptor.request){var a=this.interceptor.request(t);if(!1===a)return new Promise((function(){}));this.options=a}return t.dataType=t.dataType||this.config.dataType,t.responseType=t.responseType||this.config.responseType,t.url=t.url||"",t.params=t.params||{},t.header=Object.assign(this.config.header,t.header),t.method=t.method||this.config.method,new Promise((function(a,n){t.complete=function(t){if(uni.hideLoading(),clearTimeout(e.config.timer),e.config.timer=null,e.config.originalData)if(e.interceptor.response&&"function"===typeof e.interceptor.response){var o=e.interceptor.response(t);!1!==o?a(o):n(t)}else a(t);else if(200==t.statusCode)if(e.interceptor.response&&"function"===typeof e.interceptor.response){var r=e.interceptor.response(t.data);!1!==r?a(r):n(t.data)}else a(t.data);else t.errMsg&&uni.showModal({title:t.errMsg}),n(t)},t.url=g.default.url(t.url)?t.url:e.config.baseUrl+(0==t.url.indexOf("/")?t.url:"/"+t.url),e.config.showLoading&&!e.config.timer&&(e.config.timer=setTimeout((function(){uni.showLoading({title:e.config.loadingText,mask:e.config.loadingMask}),e.config.timer=null}),e.config.loadingTime)),uni.request(t)}))}}]),e}(),p=new u;t.default=p},"6d56":function(e,t,a){a("c223");var n="".concat(window.location.protocol,"//").concat(window.location.host),o="".concat(n,"/cdwlMall/meserver/admin-server"),r="".concat(n,"/cdwlMall/meserver/api"),i=r,g=o;e.exports={terminal:2,SettledMerchantPrefix:"https://jy.scjysm.asia:18086/cdwlMall/settled-merchant",shareLink:r+"/h5",verification:i+"/app/verification",Login:i+"/app/login",WxLogin:i+"/app/wxLogin",AlipayLogin:i+"/app/alipayLogin",GetSessionKey:i+"/app/getSessionKey",SetWxPhone:i+"/app/setWxPhone",UpdateWxPhone:i+"/app/updateWxPhone",UpdateAliPhone:i+"/app/updateAliPhone",WxAppLogin:i+"/app/wxAppLogin",delUser:i+"/user/delUser/",LiveRoomes:i+"/canvas/selectLiveList",SubScribeLive:i+"/live/subscribeLive",CustomerService:i+"/kf/getAppletKf",FindCategoryListByDepth:i+"/classify/getFirstClassify",SelectHotSearch:i+"/app/selectHotSearch",GetClaasifyProducts:i+"/classify/getClaasifyProducts",SearchHistory:i+"/app/getHistory",GgetSearchProducts:i+"/app/getSearchProducts",DeleteSearch:i+"/app/deleteSearch",Getindexdata:i+"/app/index",GetremenList:i+"/product/getRandomSortProduct",QueryProductDetail:i+"/product/getById",QueryProductSku:i+"/product/getProducts",getCouponProducts:i+"/coupon/getCouponProducts",QueryMemberAddres:i+"/receive/getAll",AddresAdd:i+"/receive/save",AddresDelete:i+"/receive/delete",AddresUpdate:i+"/receive/update",receiveGetInfo:i+"/receive/getById",Comment:i+"/order/addComment",AdditionalComment:i+"/order/addToComment",MyCommentList:i+"/comment/getAll",LikeOrUnLikeComment:i+"/comment/like",GetDistributor:i+"/distributor/getDistributor",FindCouponList:i+"/coupon/getCoupons",MemberAccountWithdraw:i+"/distributor/save",GetUser:i+"/user/getUser",UpdateUser:i+"/user/update",GetStore:i+"/shop/getShopProducts",GetStoreShopClassify:i+"/shop/getShopClassify",GetShopBanner:i+"/shop/getShopBanner",getShopIndex:i+"/shop/getIndex",AddBusinessBuyerUser:i+"/shop/addBusinessBuyerUser",getShopSeckillIndex:i+"/seckill/getIndex",QueryBankcardList:i+"/bank/getAll",SaveBankcard:i+"/bank/save",UpdateBankcard:i+"/bank/update",DelMemberBankcard:i+"/bank/delete",GetByIdBankcard:i+"/bank/getById",FindOrderList:i+"/order/getAll",Settlement:i+"/order/getSettlement",PlaceOrder:i+"/order/submit",GetOrderDetail:i+"/order/getById",CancelOrder:i+"/order/cancel",DelOrder:i+"/order/delete",ShippingTrace:i+"/order/getDilevery",payOrder:i+"/order/pay",gotoPay:i+"/order/gotoPay",paySuccess:i+"/order/paySuccess",gotoAppPay:i+"/order/gotoAppPay",gotoH5Pay:i+"/order/gotoH5Pay",ConfirmReceive:i+"/order/confirm",Orderrefund:i+"/order/refund",ReasonEnums:i+"/after/getReasonSelect",ApplyReturnMoney:i+"/after/submit",GetHuabeiConfig:i+"/order/getHuabeiConfig",GetRefundMoney:i+"/after/getReturnPrice",Gethu:i+"/order/handleWxLog",Wenlv:i+"/order/greenwayAggregatePayment",ShoppingaddCart:i+"/cart/addCart",ShoppingCart:i+"/cart/getCart",UpdateNumberCart:i+"/cart/updateNumber",DeleteCart:i+"/cart/delete",SelectedCart:i+"/cart/selected",UpdateSkuCart:i+"/cart/updateSku",getCoupons:i+"/canvas/getCoupons",ReceiveCoupon:i+"/coupon/takeCoupon",buildParam4Plug:i+"/coupon/buildParam4Plug",FindSaleStoreList:i+"/distributor/getDistributorAll",QuerySalesMainInfo:i+"/distributor/getShopDistributor",FindSalesOrderPage:i+"/distributor/getReward",GetNotReward:i+"/distributor/getNotReward",FindSalesCustomerList:i+"/distributor/getBuyers",FindSubordinateSalesList:i+"/distributor/getDistributors",FindSalesPromConfig:i+"/distributor/getShopExtension",StoreProductList:i+"/distributor/getExtensionProduct",FindMySalesPage:i+"/distributor/getDistributorOrder",HasApply:i+"/distributor/check",BindSalesCustomer:i+"/distributor/bind",getSharePic:i+"/product/getSharePic",getShareProductParam:i+"/product/getShareProductParam",shopGetSharePic:i+"/shop/getSharePic",FindReturnList:i+"/after/getAll",CancelRefund:i+"/after/returnRefund",ReturnDetail:i+"/after/getById",CancelReturnGoods:i+"/after/returnGoods",ShippingCompany:i+"/order/getExpressSelect",SendReturnGoods:i+"/order/returnExpress",deleteAfter:i+"/after/deleteAfter",Apply:i+"/distributor/addDistributor",getProducts:i+"/canvas/getProducts",Query:i+"/dict/getByName",DeleteAllSearch:i+"/product/deleteAllSearch",getMessage:i+"/notice/getAll",getMessageDateils:i+"/notice/getById",readNotice:i+"/notice/readNotice",getNotice:i+"/notice/getGongGaoAll",delMessage:i+"/notice/removeById",allMessage:i+"/notice/readAll",getProductCollect:i+"/collect/getAllProduct",getStoreCollect:i+"/collect/getAllShop",cancelCollect:i+"/collect/cancel",collect:i+"/collect/collect",deleteCollect:i+"/collect/delete",addAnswer:i+"/seckill/addAnswer",addProblem:i+"/seckill/addProblem",getSeckillList:i+"/seckill/getIndex",getProblems:i+"/seckill/getProblems",getProblemDetail:i+"/seckill/getProblemDetail",getQueryPlatformSeckillList:i+"/platform-seckill/queryPlatformSeckillList",getPlatformSeckills:i+"/canvas/getPlatformSeckills",getGroupSettlement:i+"/work/getSettlement",getGroupBuyList:i+"/work/getIndex",getInviteSpell:i+"/work/getInvite",getDiscountList:i+"/discount/getIndex",getFootprintList:i+"/footprint/getAll",deleteFootprint:i+"/footprint/delete",getProblemList:i+"/seckill/getProblem",getAnswerList:i+"/seckill/getAnswer",deleteProblem:i+"/seckill/deleteProblem",deleteAnswer:i+"/seckill/deleteAnswer",getShare:i+"/work/getShare",platform:i+"/after/platform",UploadUrl:i+"/file/upload",getMemberProducts:i+"/canvas/getMemberProducts",memberList:i+"/member/getAllMemberLevelInfo",getMemberShipList:i+"/member/getMemberShipList",selectSigninHistory:i+"/member/selectSigninHistory",selectSigninRecordList:i+"/member/selectSigninRecordList",signIn:i+"/member/signIn",welfareProductList:i+"/member/welfareProductList",getMemberByMemberLevel:i+"/member/getMemberByMemberLevelId",selectCompose:i+"/product/selectCompose",queryPlatformDiscount:i+"/platform-discount/queryPlatformDiscount",queryPlatformDiscountProductList:i+"/platform-discount/queryPlatformDiscountProductList",queryProductListBySession:i+"/platform-seckill/queryProductListBySession",querySession:i+"/platform-seckill/querySession",selectByPriceId:i+"/price/selectByPriceId",selectProductListByPriceId:i+"/product/selectProductListByPriceId",getOrderPolite:i+"/order/getOrderPolite",creditSignIn:i+"/credit/signIn",exchangeCoupon:i+"/credit/exchangeCoupon",selectByMonth:i+"/credit/selectByMonth",selectCreditCouponList:i+"/credit/selectCreditCouponList",selectCreditRecord:i+"/credit/selectCreditRecord",GetAd:i+"/advert/selectByCondition",adClose:i+"/advert/closeAdvert",takeBatchCoupon:i+"/coupon/takeBatchCoupon",getChannelCoupon:i+"/coupon/getChannelCouponDetail",getChannelProduct:i+"/credit/signIn",getRandomProduct:i+"/product/getRandomSortProduct",doPointer:i+"/user/trackReport",cereAnnouncement:g+"/cereAnnouncement/queryByPage",cereCarouselImage:g+"/cereCarouselImage/queryByPage",popularProductSearch:i+"/canvas/popularProductSearch",youhuiquan:i+"/coupon/getCoupons",DengJi:i+"/cereUserAccessRecords/add",wenjuanList:g+"/cereQuestionnaireTable/queryById",wenjuanUp:i+"/cereQuestionnaireAnswering/add",couponnew:i+"/coupon/myCoupons",cereCouponMainTablequeryByPage:g+"/cereCouponMainTable/queryByPage",receiveCoupons:i+"/coupon/receiveCoupons",cereCouponKeyUse:i+"/order/cereCouponKeyUse",jietoken:i+"/cereQuestionnaireAnswering/get/token",UpUrl:g+"/miniio/uploadQuestion",getFen:"https://jy.scjysm.asia:18086/liuliang/vip/member/v1/spi/member/getByPhone",ltoken:i+"/memberManagement/getMemberAccessToken",huiyuanList:i+"/memberManagement/getByPhone"}},"6f19b":function(e,t,a){"use strict";a("6a54"),Object.defineProperty(t,"__esModule",{value:!0}),t.os=function(){return uni.getSystemInfoSync().platform},t.sys=function(){return uni.getSystemInfoSync()}},7900:function(e,t,a){"use strict";a("6a54");var n=a("f5bd").default;Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0,a("8f71"),a("bf0f");var o=n(a("f55d")),r=n(a("6a70")),i=n(a("4ed6")),g=n(a("aca7")),u=n(a("8557a")),p=n(a("2831")),d=n(a("1ce1")),s=n(a("b38c")),c=n(a("4948")),l=n(a("d8e2")),m=n(a("3a65")),_=n(a("3a6d")),f=n(a("8a07")),y=n(a("bf2f")),b=n(a("322b")),h=n(a("c71f")),C=n(a("fda4")),v=n(a("1899")),M=n(a("3f48")),x=n(a("53cb")),S=a("6f19b"),w=n(a("c818")),P=n(a("18b4")),k=n(a("b28e")),T=n(a("681f"));var A={queryParams:i.default,route:g.default,timeFormat:u.default,date:u.default,timeFrom:p.default,colorGradient:d.default.colorGradient,guid:s.default,color:c.default,sys:S.sys,os:S.os,type2icon:l.default,randomArray:m.default,wranning:function(e){0},get:r.default.get,post:r.default.post,put:r.default.put,delete:r.default.delete,hexToRgb:d.default.hexToRgb,rgbToHex:d.default.rgbToHex,test:b.default,random:h.default,deepClone:_.default,deepMerge:f.default,getParent:M.default,$parent:x.default,addUnit:y.default,trim:C.default,type:["primary","success","error","warning","info"],http:r.default,toast:v.default,config:k.default,zIndex:T.default,debounce:w.default,throttle:P.default},L={install:function(e){e.mixin(o.default),e.prototype.openShare&&e.mixin(mpShare),e.filter("timeFormat",(function(e,t){return(0,u.default)(e,t)})),e.filter("date",(function(e,t){return(0,u.default)(e,t)})),e.filter("timeFrom",(function(e,t){return(0,p.default)(e,t)})),e.prototype.$u=A}};t.default=L},8276:function(e,t,a){"use strict";var n=a("29c5"),o=a.n(n);o.a},"83c8":function(e,t,a){"use strict";a("bf0f");var n=a("5303");e.exports={request:function(e,t){var a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"GET";return new Promise((function(o,r){var i={"Content-Type":"application/json"},g=uni.getStorageSync("storage_key"),u=g.token;u&&(i["Authorization"]=u),(0,n.showLoading)(),uni.request({url:e,data:t,method:a,header:i,success:function(e){(0,n.hideLoading)(),200==e.statusCode?"200"===e.data.code||""===e.data.code||"0"===e.data.code?o(e.data):"20004"===e.data.code||"20005"===e.data.code||"20003"===e.data.code?(uni.removeStorageSync("storage_key"),uni.navigateTo({url:"/pages_category_page2/userModule/login"})):uni.showToast({title:e.data.message,icon:"none"}):r(e)},fail:function(e){(0,n.hideLoading)(),r(e)}})}))},request1:function(e,t){var a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"GET";return new Promise((function(o,r){(0,n.showLoading)(),uni.request({url:e,data:t,method:a,header:{"Content-Type":"application/json",tenant:"MDAwMA=="},success:function(e){(0,n.hideLoading)(),"200"===e.data.code||""===t.code?o(e.data):r(e)},fail:function(e){(0,n.hideLoading)(),r(e)}})}))},request2:function(e,t){var a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"POST";return new Promise((function(o,r){(0,n.showLoading)(),uni.request({url:e,data:t,method:a,header:{"Content-Type":"application/json",tenant:"MDAwMA=="},success:function(e){(0,n.hideLoading)(),"200"===e.data.code||""===e.data.code?o(e.data):r(e)},fail:function(e){(0,n.hideLoading)(),r(e)}})}))},requestLiu:function(e,t){var a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"GET";return new Promise((function(o,r){var i={"Content-Type":"application/json",appId:"1664096962504089602",memberAccessToken:t.liutk};e=e+"/"+t.phone,(0,n.showLoading)(),uni.request({url:e,method:a,header:i,success:function(e){(0,n.hideLoading)(),200==e.statusCode?"200"===e.data.code||""===e.data.code?o(e.data):"20004"===e.data.code||"20005"===e.data.code||"20003"===e.data.code?(uni.removeStorageSync("storage_key"),uni.navigateTo({url:"/pages_category_page2/userModule/login"})):uni.showToast({title:e.data.message,icon:"none"}):r(e)},fail:function(e){(0,n.hideLoading)(),r(e)}})}))}}},"8557a":function(e,t,a){"use strict";a("6a54"),Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0,a("795c"),a("bf0f"),a("7a76"),a("c9b5"),a("f7a5"),a("e966"),a("64aa"),a("ab80"),a("5c47"),a("23f4"),a("7d2f"),a("9c4e"),a("a1c1"),String.prototype.padStart||(String.prototype.padStart=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:" ";if("[object String]"!==Object.prototype.toString.call(t))throw new TypeError("fillString must be String");var a=this;if(a.length>=e)return String(a);var n=e-a.length,o=Math.ceil(n/t.length);while(o>>=1)t+=t,1===o&&(t+=t);return t.slice(0,n)+a});var n=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"yyyy-mm-dd";e=parseInt(e),e||(e=Number(new Date)),10==e.toString().length&&(e*=1e3);var a,n=new Date(e),o={"y+":n.getFullYear().toString(),"m+":(n.getMonth()+1).toString(),"d+":n.getDate().toString(),"h+":n.getHours().toString(),"M+":n.getMinutes().toString(),"s+":n.getSeconds().toString()};for(var r in o)a=new RegExp("("+r+")").exec(t),a&&(t=t.replace(a[1],1==a[1].length?o[r]:o[r].padStart(a[1].length,"0")));return t};t.default=n},"8a07":function(e,t,a){"use strict";a("6a54");var n=a("f5bd").default;Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0,a("c223");var o=n(a("fcf3")),r=n(a("3a6d"));var i=function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},a=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(t=(0,r.default)(t),"object"!==(0,o.default)(t)||"object"!==(0,o.default)(a))return!1;for(var n in a)a.hasOwnProperty(n)&&(n in t?"object"!==(0,o.default)(t[n])||"object"!==(0,o.default)(a[n])?t[n]=a[n]:t[n].concat&&a[n].concat?t[n]=t[n].concat(a[n]):t[n]=e(t[n],a[n]):t[n]=a[n]);return t};t.default=i},"8cc2":function(e,t,a){"use strict";var n=a("f5bd").default;a("c223");var o=n(a("9b1b"));a("3dde"),a("a8b2"),a("1480"),a("6e4a"),a("027b"),a("9337");var r=n(a("9b8e")),i=n(a("fbe5")),g=n(a("7900")),u=n(a("14ef")),p=n(a("3387")),d=a("2827"),s=a("b378");r.default.use(g.default),r.default.config.productionTip=!1,r.default.prototype.$store=u.default,r.default.prototype.$lodash=p.default,r.default.prototype.$jump=d.jump,r.default.prototype.$jumpToTabbar=d.jumpToTabbar,r.default.prototype.$goBack=d.goBack,r.default.prototype.$getJumpParam=d.getJumpParam,r.default.prototype.$encrypt=s.encrypt,r.default.prototype.$decrypt=s.decrypt,r.default.prototype.$decryptall=s.decryptall;var c=window.location.host;r.default.prototype.$hostUrl="https://jy.scjysm.asia:18086/cdwlMall",r.default.prototype.$baseURL="localhost:8080"===c||"localhost:8081"===c||"localhost:9528"===c||"192.168.31.45:9528"===c?"https://jy.scjysm.asia:18086/cdwlMall":"".concat(window.location.protocol,"//").concat(window.location.host,"/cdwlMall"),i.default.mpType="app";var l=new r.default((0,o.default)({},i.default));console.log(u.default),l.$mount()},aae8:function(e,t,a){e.exports=a.p+"static/images/default.png"},aca7:function(e,t,a){"use strict";a("6a54");var n=a("f5bd").default;Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=n(a("fcf3"));a("dc8a"),a("5c47"),a("0506"),a("e966");var r=n(a("4ed6"));var i=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],a={type:"navigateTo",url:"",delta:1,params:{},animationType:"pop-in",animationDuration:300};if(a=Object.assign(a,e),"/"!=a.url[0]&&(a.url="/"+a.url),Object.keys(a.params).length&&"switchTab"!=a.type){var n="";/.*\/.*\?.*=.*/.test(a.url)?(n=(0,r.default)(a.params,!1),a.url+="&"+n):(n=(0,r.default)(a.params),a.url+=n)}if("string"===typeof e&&"object"==(0,o.default)(t)){var i="";/.*\/.*\?.*=.*/.test(e)?(i=(0,r.default)(t,!1),e+="&"+i):(i=(0,r.default)(t),e+=i)}return"string"===typeof e?("/"!=e[0]&&(e="/"+e),uni.navigateTo({url:e})):"navigateTo"==a.type||"to"==a.type?uni.navigateTo({url:a.url,animationType:a.animationType,animationDuration:a.animationDuration}):"redirectTo"==a.type||"redirect"==a.type?uni.redirectTo({url:a.url}):"switchTab"==a.type||"tab"==a.type?uni.switchTab({url:a.url}):"reLaunch"==a.type?uni.reLaunch({url:a.url}):"navigateBack"==a.type||"back"==a.type?uni.navigateBack({delta:parseInt(a.delta?a.delta:this.delta)}):void 0};t.default=i},b28e:function(e,t,a){"use strict";a("6a54"),Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n={v:"1.6.2",version:"1.6.2",type:["primary","success","info","error","warning"]};t.default=n},b2d4:function(e,t,a){var n=a("c86c");t=n(!1),t.push([e.i,".uni-modal__btn_primary{background:#333;color:#ffebc4!important}",""]),e.exports=t},b378:function(e,t,a){"use strict";a("6a54"),Object.defineProperty(t,"__esModule",{value:!0}),t.encryptall=t.encrypt=t.decryptall=t.decrypt=void 0,a("5ef2"),a("aa9c"),a("bf0f"),a("fd3c"),a("dc8a"),a("2797");var n=a("2579"),o="8bd8a83221742111c7532b7275a7fe9c",r=function(e){if(!e)return"";var t=n.sm4.encrypt(e,"cda4442f102f6396eea76902e37ad7cb",{iv:o,mode:"cbc",padding:"pkcs#7"});return t};t.encrypt=r;var i=function(e){if(!e)return"";try{var t=n.sm4.decrypt(e,"cda4442f102f6396eea76902e37ad7cb",{iv:o,mode:"cbc",padding:"pkcs#7"});return t}catch(a){return"解密失败!"}};t.decrypt=i;t.decryptall=function(e,t){var a=[],n={};for(var o in e){var i={typeis:"2",keyname:o,value:e[o]};t.length>0?(console.log(-1!=t.indexOf(o)),-1!=t.indexOf(o)&&(i.typeis="1")):i.typeis="1",a.push(i)}return a.forEach((function(e){"1"==e.typeis&&e.value&&(console.error(e),e.value=r(e.value)),n[e.keyname]=e.value})),n};t.encryptall=function(e,t){var a=e.map((function(e){var a=Object.keys(e);return a.forEach((function(a){t.length>0?(console.log(-1!=t.indexOf(a)),-1!=t.indexOf(a)&&(e[a]=i(e[a]))):e[a]=i(e[a])})),e}));return a}},b38c:function(e,t,a){"use strict";a("6a54"),Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:32,t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,n="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz".split(""),o=[];if(a=a||n.length,e)for(var r=0;r<e;r++)o[r]=n[0|Math.random()*a];else{var i;o[8]=o[13]=o[18]=o[23]="-",o[14]="4";for(var g=0;g<36;g++)o[g]||(i=0|16*Math.random(),o[g]=n[19==g?3&i|8:i])}return t?(o.shift(),"u"+o.join("")):o.join("")};t.default=n},bf2f:function(e,t,a){"use strict";a("6a54");var n=a("f5bd").default;Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"auto",t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"rpx";return e=String(e),o.default.number(e)?"".concat(e).concat(t):e},a("c223");var o=n(a("322b"))},c71f:function(e,t,a){"use strict";a("6a54"),Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=function(e,t){if(e>=0&&t>0&&t>=e){var a=t-e+1;return Math.floor(Math.random()*a+e)}return 0};t.default=n},c818:function(e,t,a){"use strict";a("6a54"),Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=null;var o=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:500,a=arguments.length>2&&void 0!==arguments[2]&&arguments[2];if(null!==n&&clearTimeout(n),a){var o=!n;n=setTimeout((function(){n=null}),t),o&&"function"===typeof e&&e()}else n=setTimeout((function(){"function"===typeof e&&e()}),t)};t.default=o},cc42:function(e,t,a){"use strict";a("6a54"),Object.defineProperty(t,"__esModule",{value:!0}),t.doPointRequest=function(e){return new Promise((function(t,a){var o={"Content-Type":"application/json"},r=uni.getStorageSync("storage_key"),i=r.token;i&&(o["Authorization"]=i),uni.request({url:n.doPointer,data:e,method:"post",header:o,success:function(e){t(e)},fail:function(e){a(e)}})}))},a("bf0f");a("5303");var n=a("6d56")},d8e2:function(e,t,a){"use strict";a("6a54"),Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0,a("5ef2");var n=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"success",t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];-1==["primary","info","error","warning","success"].indexOf(e)&&(e="success");var a="";switch(e){case"primary":a="info-circle";break;case"info":a="info-circle";break;case"error":a="close-circle";break;case"warning":a="error-circle";break;case"success":a="checkmark-circle";break;default:a="checkmark-circle"}return t&&(a+="-fill"),a};t.default=n},e9ce:function(e,t,a){"use strict";a.r(t);var n=a("1e8b"),o=a.n(n);for(var r in n)["default"].indexOf(r)<0&&function(e){a.d(t,e,(function(){return n[e]}))}(r);t["default"]=o.a},f55d:function(e,t,a){a("bf0f"),a("5c47"),e.exports={data:function(){return{}},onLoad:function(){this.$u.getRect=this.$uGetRect},methods:{$uGetRect:function(e,t){var a=this;return new Promise((function(n){uni.createSelectorQuery().in(a)[t?"selectAll":"select"](e).boundingClientRect((function(e){t&&Array.isArray(e)&&e.length&&n(e),!t&&e&&n(e)})).exec()}))}},onReachBottom:function(){uni.$emit("uOnReachBottom")}}},f6ba:function(e,t,a){"use strict";a.d(t,"b",(function(){return n})),a.d(t,"c",(function(){return o})),a.d(t,"a",(function(){}));var n=function(){var e=this.$createElement,t=this._self._c||e;return t("App",{attrs:{keepAliveInclude:this.keepAliveInclude}})},o=[]},fbe5:function(e,t,a){"use strict";a.r(t);var n=a("f6ba"),o=a("e9ce");for(var r in o)["default"].indexOf(r)<0&&function(e){a.d(t,e,(function(){return o[e]}))}(r);a("8276"),a("2c68");var i=a("828b"),g=Object(i["a"])(o["default"],n["b"],n["c"],!1,null,null,null,!1,n["a"],void 0);t["default"]=g.exports},fda4:function(e,t,a){"use strict";a("6a54"),Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0,a("5c47"),a("a1c1");var n=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"both";return"both"==t?e.replace(/^\s+|\s+$/g,""):"left"==t?e.replace(/^\s*/,""):"right"==t?e.replace(/(\s*$)/g,""):"all"==t?e.replace(/\s+/g,""):e};t.default=n}});
3 3 \ No newline at end of file
... ...
ceres-uniapp-master/unpackage/dist/build/web/static/js/pages-tabbar-cart-index.21951a54.js renamed to ceres-uniapp-master/unpackage/dist/build/web/static/js/pages-tabbar-cart-index.b162100b.js
ceres-uniapp-master/unpackage/dist/build/web/static/js/pages-tabbar-index-index~pages_category_page1-store-index.21103dd3.js renamed to ceres-uniapp-master/unpackage/dist/build/web/static/js/pages-tabbar-index-index~pages_category_page1-store-index.f087d449.js
ceres-uniapp-master/unpackage/dist/build/web/static/js/pages_category_page1-orderModule-orderConfirm.6a1fab50.js deleted
1   -(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["pages_category_page1-orderModule-orderConfirm"],{1223:function(t,e,i){"use strict";i.d(e,"b",(function(){return n})),i.d(e,"c",(function(){return s})),i.d(e,"a",(function(){return o}));var o={uRadioGroup:i("81d4").default,uRadio:i("00c4").default},n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("v-uni-view",{staticClass:"cashier-list-content"},[i("u-radio-group",{attrs:{placement:"row",iconPlacement:"right"},on:{change:function(e){arguments[0]=e=t.$handleEvent(e),t.handleChangePaymentMode.apply(void 0,arguments)}},model:{value:t.paymentMode,callback:function(e){t.paymentMode=e},expression:"paymentMode"}},t._l(t.paymentList,(function(e){return i("v-uni-view",{key:e.id,staticClass:"cashier"},[i("v-uni-view",{staticClass:"cashier-item",on:{click:function(i){arguments[0]=i=t.$handleEvent(i),t.handleChangePaymentMode(e.paymentMode,e.disabled)}}},[i("v-uni-view",{staticClass:"icon-text"},[i("v-uni-image",{staticClass:"pay-type-img-inner",attrs:{src:e.icon,mode:"widthFix"}}),t._v(t._s(e.label)),3===t.paymentMode&&t.paymentMode===e.paymentMode?i("span",[t._v("(手续费:¥"+t._s(t.flowerObj.hbServiceChargeTotal)+")")]):t._e()],1),i("v-uni-view",{staticClass:"radio"},[i("u-radio",{attrs:{disabled:!e.disabled,activeColor:"#c5aa7b",name:e.paymentMode}})],1)],1),3===t.paymentMode&&t.paymentMode===e.paymentMode?i("v-uni-view",{staticClass:"ali-hb-content"},[i("u-radio-group",{attrs:{placement:"row",iconPlacement:"right"},on:{change:function(e){arguments[0]=e=t.$handleEvent(e),t.handleChangePeriods.apply(void 0,arguments)}},model:{value:t.flowerObj.hbByStagesPeriods,callback:function(e){t.$set(t.flowerObj,"hbByStagesPeriods",e)},expression:"flowerObj.hbByStagesPeriods"}},t._l(t.flowerObj.hbByStagesList,(function(e,o){return i("v-uni-view",{key:o,staticClass:"cashier"},[i("v-uni-view",{staticClass:"cashier-item",on:{click:function(i){arguments[0]=i=t.$handleEvent(i),t.handleChangePeriods(e.numberOfStages,e.disabled)}}},[i("v-uni-view",{staticClass:"icon-text"},[t._v(t._s(e.numberOfStages)+"期(¥"+t._s(e.price)+"/期)")]),i("v-uni-view",{staticClass:"radio-context"},[t._v("手续费:¥"+t._s(e.serviceCharge)+"/期"),i("u-radio",{staticClass:"radio",attrs:{activeColor:"#c5aa7b",disabled:e.disabled,name:e.numberOfStages}})],1)],1)],1)})),1)],1):t._e()],1)})),1)],1)},s=[]},"1abf":function(t,e,i){"use strict";i.r(e);var o=i("fa9d"),n=i("ac93");for(var s in n)["default"].indexOf(s)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(s);i("9a30");var a=i("828b"),r=Object(a["a"])(n["default"],o["b"],o["c"],!1,null,"137eceae",null,!1,o["a"],void 0);e["default"]=r.exports},"20d3":function(t,e,i){"use strict";i.r(e);var o=i("380d"),n=i("a5a6");for(var s in n)["default"].indexOf(s)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(s);i("8ffb"),i("424b");var a=i("828b"),r=Object(a["a"])(n["default"],o["b"],o["c"],!1,null,"874a3818",null,!1,o["a"],void 0);e["default"]=r.exports},2411:function(t,e,i){"use strict";i("6a54");var o=i("f5bd").default;Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=o(i("2634")),s=o(i("b7c7")),a=o(i("3471")),r=o(i("2fdc"));i("e966"),i("bf0f"),i("2797"),i("64aa"),i("aa9c"),i("c223"),i("e838"),i("d4b5"),i("fd3c"),i("5ef2"),i("2823"),i("c9b5"),i("ab80"),i("9327"),i("f7a5"),i("18f7"),i("de6c"),i("8f71");var c=i("a36f"),l=i("782e"),u=o(i("60ae")),d=i("83c8"),h=i("6d56"),p={components:{CashierList:u.default},data:function(){return{pointProductIds:"",couponActiveShowFalg:!1,settlement:{},type:0,skuItemDTOList:[],userAddressInfo:{},isShowDiscount:!1,isShopCoupons:!1,usableListLength:0,shopCouponsLength:0,shopCouponslist:[],promotionInfoDTO:{couponId:0,ifAdd:1,reduceMoney:0},shopInfoDTO:{},reduceMoney:0,submitActive:!0,distributionPrice:0,totalPrice:0,receiveId:"",totalCount:0,skuItemList:{},shopGroupWorkId:0,sumitType:"",collageId:null,couponIfAdd:!0,couponsList:[],shopCouIndex:0,shopIndex:0,shopCheckedType:!0,discountPrice:0,selectShopCoupon:[],huabeiDetail:!0,showHuabeiPopup:!1,huabeiChargeType:0,huabeiFeerateList:[],paymentMode:1,huabeiPeriod:3,chargeFeeList:[],fenqiFeeList:[],showWechatPayType:!1,showAlipayPayType:!1,showHuabeiPayType:!1,orderId:null,couponType:0,selectIntegral:!0,integralNum:0,ifShow:!1,integralRatio:0,integralPrice:0,orderCreditThreshold:0,integralShow:!1,checkedPlatformCoupon:void 0,oneClickSubmit:!0,isRegionalScope:!1,payObj:{},couponList:[],iscoupon:!1,couponId:{},ptyh:0}},onLoad:function(t){this.getQuery(),console.log(t,"options"),this.type=t.type,t.receiveId&&(this.receiveId=t.receiveId)},onShow:function(){uni.getStorageSync("receiveItem")&&(this.receiveId=uni.getStorageSync("receiveItem").receiveId),""!=uni.getStorageSync("skuItemDTOList")?(this.skuItemDTOList=uni.getStorageSync("skuItemDTOList"),console.log(this.skuItemDTOList,"66666"),this.skuItemDTOList[0].shopDiscountId>0?this.sumitType=4:this.skuItemDTOList[0].shopSeckillId>0&&(this.sumitType=3),this.getSettlement(!1)):""!=uni.getStorageSync("skuItemList")&&(this.skuItemList=uni.getStorageSync("skuItemList"),this.shopGroupWorkId=this.skuItemList.shopGroupWorkId,this.sumitType=this.skuItemList.type,this.collageId=this.skuItemList.collageId,this.getSettlement(!0))},onBackPress:function(t){return"navigateBack"!==t.from&&(this.back(),!0)},filters:{clip2Decimal:function(t){return void 0===t||null===t?"0.00":(parseInt(100*t)/100).toFixed(2)}},methods:{changecoupon:function(){this.iscoupon=!0,this.getcon()},getcon:function(){var t=this,e=this;d.request(h.couponnew,{page:1,pageSize:10,userPhone:uni.getStorageSync("storage_key").phone},"POST").then((function(i){if(i.data.length>0){t.couponList=[];var o=[],n=[];i.data.forEach((function(i){console.error(i),"1"==i.couponType?(i.usageThreshold=Number(i.usageThreshold)/100,i.discountContent=Number(i.discountContent)/100,i.maxDiscountAmount=Number(i.maxDiscountAmount)/100):(i.discountContent=Number(i.discountContent),i.usageThreshold=Number(i.usageThreshold)/100,i.maxDiscountAmount=Number(i.maxDiscountAmount)/100),"2"==i.coupon.couponStatus&&function(){var s=0;if(i.istrue=!0,i.cereCouponCategories.length>0)for(var a=e.settlement.shops.length,r=function(o){var n=i.cereCouponCategories[o];if("3"==n.usedMerchants)for(var r=0;r<a;r++){var c=e.settlement.shops[r];c.skus.forEach((function(t){s+=t.price*t.number})),c.shopId!=n.categoryId&&(i.istrue=!1)}if("1"==n.usedMerchants)for(var l=0;l<a;l++){var u=t.settlement.shops[l];u.skus.forEach((function(t){t.categoryId!=n.categoryId&&(i.istrue=!1,s+=t.price*t.number)}))}},c=0;c<i.cereCouponCategories.length;c++)r(c);else for(var l=e.settlement.shops.length,u=0;u<l;u++){var d=e.settlement.shops[u];d.skus.forEach((function(t){s+=t.price*t.number}))}console.error(s,i.usageThreshold),"1"==i.couponType&&(s>=i.usageThreshold||(i.istrue=!1,console.error("满减不够"))),i.istrue?o.push(i):n.push(i)}()})),t.couponList=[].concat(o,n),t.couponList.forEach((function(t){t.checked=!1,t.usedMerchants="1"}))}}))},changemony:function(){console.error(this.couponId);this.couponId.id&&("1"==this.couponId.useCategory&&"1"==this.couponId.usedMerchants?console.log("直接使用平台券"):"1"==this.couponId.useCategory&&"3"==this.couponId.usedMerchants?console.log("限制商家id"):"2"==this.couponId.useCategory&&"3"==this.couponId.usedMerchants?console.log("限制商家id类别"):"2"==this.couponId.useCategory&&"1"==this.couponId.usedMerchants&&console.log("限制类别"));var t=0;if(console.error(this.settlement.shops),this.couponId.cereCouponCategories.length>0)for(var e=0;e<this.couponId.cereCouponCategories.length;e++){var i=this.couponId.cereCouponCategories[e];if("3"==i.usedMerchants)for(var o=0;o<this.settlement.shops.length;o++){var n=this.settlement.shops[o];if(n.shopId==i.categoryId){console.error("===");for(var s=0;s<n.skus.length;s++)console.error(n.skus[s].price),t+=n.skus[s].price*n.skus[s].number}}if("1"==i.usedMerchants)for(var a=0;a<this.settlement.shops.length;a++)for(var r=this.settlement.shops[a],c=0;c<r.skus.length;c++)console.error(r.skus[c].price),r.skus[c].categoryId==i.categoryId&&(t+=r.skus[c].price*r.skus[c].number)}else for(var l=0;l<this.settlement.shops.length;l++)for(var u=this.settlement.shops[l],d=0;d<u.skus.length;d++)console.error(u.skus[d].price),t+=u.skus[d].price*u.skus[d].number;console.error("可以优惠的金额",t);var h=0;if("1"==this.couponId.couponType)t>=this.couponId.usageThreshold?h=this.couponId.discountContent:uni.showToast({icon:"none",title:"满减不够"});else if(t*(1-this.couponId.discountContent/10)>=this.couponId.maxDiscountAmount)h=this.couponId.maxDiscountAmount;else{var p=t*(1-this.couponId.discountContent/10);h=p.toFixed(2)}this.ptyh=h,console.error(h)},getQuery:function(){var t=this;d.request(h.Query,{name:"credit_exchange_rate"},"GET").then((function(e){t.integralRatio=parseFloat(e.data.dictDescribe)})).catch((function(t){console.log("平台端未配置积分兑换比例(1积分抵扣多少金额)")}))},changeIntegral:function(){this.selectIntegral=!this.selectIntegral,this.selectIntegral?this.totalPrice=this.totalPrice-this.integralPrice:this.totalPrice=this.totalPrice+this.integralPrice},back:function(){2==this.type||this.type?uni.switchTab({url:"../../pages/tabbar/cart/index"}):uni.navigateBack({delta:1})},getSettlement:function(t){var e=this;uni.showLoading({title:"加载中..."}),this.ifShow=!0;var i="",o="";t?(i=h.getGroupSettlement,o=this.skuItemList):(i=h.Settlement,o={type:this.type,shops:this.skuItemDTOList,receiveId:this.receiveId},console.log(this.skuItemDTOList,"this.skuItemDTOList")),console.error(JSON.stringify(o)),d.request(i,o,"POST").then((function(t){uni.hideLoading(),e.settlement=t.data,e.couponsList=t.data.coupons,e.huabeiChargeType=t.data.huabeiChargeType,2===e.huabeiChargeType?e.huabeiFeerateList=t.data.huabeiFeerateList:e.huabeiFeerateList=[0,0,0];var i=e.settlement.shops.length;e.settlement.shops.forEach((function(t){t["totalNum"]=t.total,t["pricing"]=0})),e.settlement.receive.receiveAdress||e.settlement.shops.map((function(t){e.totalCount+=t.number,e.totalPrice+=t.total||t.totalNum})),e.settlement.coupons.length>0&&e.settlement.coupons.forEach((function(t){t.checked=!1})),e.settlement.shops.forEach((function(t){t.totalAfterDiscount=t.total}));for(var o=0;o<i;o++){var n=e.settlement.shops[o];if(n.skus.forEach((function(t){t["skuTotalNum"]=t.total})),n.shopCoupons.length>0){n.shopCoupons.forEach((function(t){t.checked=!1}));var s=n.shopCoupons[0];e.shopCouponItemTap(0,s)}}if(uni.getStorageSync("receiveItem")){var a=uni.getStorageSync("receiveItem");e.userAddressInfo=a,e.receiveId=a.receiveId,e.userAddressInfo.receivePhone=(0,c.hidden)(e.userAddressInfo.receivePhone,3,4)}else t.data.receive&&(e.receiveId=t.data.receive.receiveId,e.userAddressInfo=t.data.receive,e.userAddressInfo.receivePhone=(0,c.hidden)(e.userAddressInfo.receivePhone,3,4));uni.removeStorageSync("receiveItem"),e.usableListLength=t.data.coupons.length,e.isReceiveCan(),e.getTotal()})).catch((function(t){uni.hideLoading()}))},isReceiveCan:function(){var t=this;this.settlement.shops.map((function(e){e.receiveNotMatch&&(t.isRegionalScope=e.receiveNotMatch),t.isRegionalScope&&uni.showToast({title:"当前地址不支持配送,请参与红色字提示",icon:"none"})}))},addAddressTap:function(){uni.navigateTo({url:"../../pages_category_page2/userModule/address?type="+this.type})},getDate:function(t){return t?t.split(" ")[0]:""},couponItemTap:function(t,e){if(!e.checked&&this.selectShopCoupon.length)return uni.showToast({title:"不可与商家券叠加使用!",icon:"none"}),!1;if(e.checked){var i={};e.couponId&&(i["couponId"]=0,i["ifAdd"]=1,i["reduceMoney"]=0),this.promotionInfoDTO=i,e.checked=!1,this.isShowDiscount=!1,this.checkedPlatformCoupon=void 0,this.settlement.shops.forEach((function(t){t.skus&&t.skus.forEach((function(t){t.buyerCouponId=null}))})),this.getTotal()}else{this.settlement.coupons.forEach((function(t){t.checked=!1}));for(var o=0,n=this.settlement.shops.length,s=[],a=0;a<n;a++){for(var r=0,c=0,l=this.settlement.shops[a],u=l.skus.length,d=[],h=0;h<u;h++){var p=l.skus[h];p.priceId>0&&c++;var f=e.ids;f.indexOf(p.productId)>-1&&(p.priceId>0?d.push(p):(s.push(p),r+=p.price*p.number))}c===d.length&&(o+=l.priceAfterDiscount,s=s.concat(d)),o+=r}if(this.settlement.shops[this.shopIndex].total<e.fullMoney)return uni.showToast({title:"不满足优惠券使用条件!",icon:"none"}),!1;if(1===e.couponType&&e.reduceMoney>=o)return uni.showToast({title:"不可使用大于等于合计金额的优惠劵!",icon:"none"}),!1;e.useMoney=o;var v={};e.couponId&&(v["couponId"]=e.couponId,v["ifAdd"]=e.ifAdd,v["couponType"]=e.couponType,v["reduceMoney"]=e.reduceMoney),this.promotionInfoDTO=v,this.isShowDiscount=!1,this.checkedPlatformCoupon=e,s.forEach((function(t){t.buyerCouponId=e.couponId})),this.getTotal(),e.checked=!0}},couponcouponList:function(t,e){if(e.istrue){for(var i=0;i<this.couponList.length;i++)this.couponList[i].ischecked=!1;this.couponList[t].ischecked=!0,this.couponId=this.couponList[t],this.changemony(),this.$forceUpdate(),this.iscoupon=!1}else uni.showToast({icon:"none",title:"当前优惠券无法使用"})},shopCouponItemTap:function(t,e){if(console.log(t,e.checked),e.checked)return e.checked=!1,this.settlement.shops[this.shopIndex].totalAfterDiscount=this.settlement.shops[this.shopIndex].total,this.settlement.shops[this.shopIndex].currentCoupon={},this.settlement.shops[this.shopIndex].skus.forEach((function(t){t.buyerShopCouponId=null})),this.isShopCoupons=!1,this.selectShopCoupon=[],this.getTotal(),!1;if(this.settlement.shops[this.shopIndex].total<e.fullMoney)uni.showToast({title:"不满足优惠券使用条件!",icon:"none"});else if(1===e.couponType&&this.settlement.shops[this.shopIndex].total<e.reduceMoney)uni.showToast({title:"不可使用大于商品金额的优惠劵!",icon:"none"});else{if(0!==this.promotionInfoDTO.couponId)return uni.showToast({title:"此券不可与平台券叠加!",icon:"none"}),!1;if(1===e.couponType&&e.reduceMoney>=this.settlement.shops[this.shopIndex].total)return uni.showToast({title:"优惠券优惠金额不能大于等于合计金额!",icon:"none"}),!1;this.isShopCoupons=!1;var i=this.useShopCoupon(this.shopIndex,t);if(console.log(i),i){for(var o=0;o<this.selectShopCoupon.length;o++)this.selectShopCoupon[o].checked=!1;this.selectShopCoupon=[],e.checked=!0,this.settlement.shops[this.shopIndex].currentCoupon=e,this.settlement.shops[this.shopIndex].skus.forEach((function(t){t.buyerShopCouponId>0&&t.buyerShopCouponId!==e.shopCouponId&&(t.buyerShopCouponId=null)})),this.selectShopCoupon.push(e)}else this.settlement.shops[this.shopIndex].totalAfterDiscount=this.settlement.shops[this.shopIndex].total;this.getTotal()}},useShopCoupon:function(t,e){var i,o=this.settlement.shops[t];if(o.totalAfterDiscount=0,o.shopCoupons&&o.shopCoupons.length>0&&(i=o.shopCoupons[e]),!i)return!1;var n=!1,s=[],a=[];if(1!==i.applyType){for(var r=i.ids,c=o.skus.length,l=0,u=0,d=0,h=0;h<c;h++){var p=o.skus[h];p.priceId>0&&d++,r.indexOf(p.productId)>-1&&(p.priceId>0?a.push(p):(s.push(p),l+=p.price*p.number))}d===a.length&&(u=o.priceAfterDiscount);var f=u+l;if(f<i.fullMoney||1===i.couponType&&f<=i.reduceMoney)return!1;if(1===i.couponType)o.totalAfterDiscount=o.total-i.reduceMoney,n=!0;else{var v=(f*((10-i.reduceMoney)/10)).toFixed(2),g=o.total-v;g.toFixed(2)>=.01&&(o.totalAfterDiscount=g.toFixed(2),n=!0)}if(n){if(d===a.length)for(var m=a.length,b=0;b<m;b++)a[b].buyerShopCouponId=i.shopCouponId;for(var y=s.length,x=0;x<y;x++)s[x].buyerShopCouponId=i.shopCouponId}}else{if(1===i.couponType)o.total>i.reduceMoney&&(o.totalAfterDiscount=o.total-i.reduceMoney,n=!0);else if(o.total>i.fullMoney){var w=(o.total*((10-i.reduceMoney)/10)).toFixed(2),C=o.total-w;C.toFixed(2)>=.01&&(o.totalAfterDiscount=C.toFixed(2),n=!0)}if(n)for(var I=o.skus.length,k=0;k<I;k++)o.skus[k].buyerShopCouponId=i.shopCouponId}return n},getTotal:function(){var t=this;this.totalPrice=0,this.totalCount=0,this.integralPrice=0,this.integralNum=0;var e=0,i=this.settlement.shops.length;console.log(this.settlement,"fsfsfs");for(var o=0;o<i;o++)this.totalPrice+=parseFloat(this.settlement.shops[o].totalAfterDiscount),e+=parseFloat(this.settlement.shops[o].totalAfterDiscount),this.totalCount+=this.settlement.shops[o].number;if(this.checkedPlatformCoupon){var n=this.checkedPlatformCoupon.couponType,s=this.checkedPlatformCoupon.reduceMoney;if(1===n&&this.totalPrice-s>0)this.totalPrice=e-s;else if(2===n&&s>0){var a=this.checkedPlatformCoupon.useMoney;this.totalPrice=e-a+a*s/10}}this.calcCredit(),this.settlement.shops.forEach((function(e){t.totalPrice=t.totalPrice+(e.distribution.distributionPrice||0)}))},calcCredit:function(){var t=this.settlement.shops.length,e=this.calcSkuRemainMap(),i=this.settlement.skuCreditMap;if(i&&this.integralRatio>0){this.orderCreditThreshold=this.settlement.orderCreditThreshold;var o=this.settlement.userTotalCredit,n=Math.round(100*(this.totalPrice+Number.EPSILON))/100,s=this.settlement.creditDeductLimit;if(this.totalPrice>=this.orderCreditThreshold&&o>0&&s>0)for(var a=0;a<t;a++)for(var r=this.settlement.shops[a],c=r.skus.length,l=0;l<c;l++){var u=r.skus[l],d=u.skuId;if(i[d]>0&&e[d]>0&&o>0&&n>0){n-e[d]<.01&&(e[d]-=.01);var h=parseInt((e[d]/this.integralRatio).toString());i[d]<h&&(h=i[d]),o<h&&(h=o),s<h&&(h=s),u.cachedCredit=h,this.integralNum+=h,o-=h,s-=h,n-=h}}0!==this.integralNum?(this.integralNum=parseInt(this.integralNum),this.integralPrice=this.integralNum*this.integralRatio,0!==this.integralNum&&(this.integralShow=!0),this.selectIntegral&&(this.totalPrice=this.totalPrice-this.integralPrice)):this.integralShow=!1}},calcSkuRemainMap:function(){for(var t={},e=this.settlement.shops.length,i=this.settlement.skuCreditMap,o=0;o<e;o++){var n=this.settlement.shops[o],s=n.skus.length,a=void 0;n.shopCoupons.forEach((function(t){t.checked&&(a=t)}));for(var r=0;r<s;r++){var c=n.skus[r],l=c.skuId;if(!c.priceId>0&&i[l]>0){var u=c.price*c.number;if(a){var d=u/n.total,h=0;h=1===a.couponType?a.reduceMoney*d:u*(10-a.reduceMoney)/10,u-=h}if(this.checkedPlatformCoupon&&u>0)if(1===this.checkedPlatformCoupon.couponType){var p=u/this.totalPrice;u-=this.checkedPlatformCoupon.reduceMoney*p}else u=u*this.checkedPlatformCoupon.reduceMoney/10;t[l]=u}}}return t},showDiscount:function(){if(this.settlement.coupons.length>0){for(var t=0;t<this.selectShopCoupon.length;t++)if(0==this.selectShopCoupon[t].ifAdd)return uni.showToast({title:"不可叠加已选择的店铺券",icon:"none"}),!1;this.isShowDiscount=!0}else uni.showToast({title:"暂无可用优惠券",icon:"none"})},showShopCoupons:function(t,e){t.shopCoupons.length>0?(this.isShopCoupons=!0,this.shopCouponslist=t,this.shopCouponsLength=t.shopCoupons.length,this.shopIndex=e):uni.showToast({title:"暂无可用优惠券",icon:"none"})},onDiscountClose:function(){this.isShowDiscount=!1},onshopClose:function(){this.isShopCoupons=!1},handleCheckOrderForm:function(){return this.payObj.paymentMode?this.oneClickSubmit?this.userAddressInfo.receiveName?(this.oneClickSubmit=!1,!0):(uni.showToast({icon:"none",title:"请选择收货地址"}),!1):(uni.showToast({title:"已提交,请勿重新操作!",icon:"none"}),!1):(uni.showToast({title:"请选择支付方式",icon:"none"}),!1)},handleChangeCashier:function(t){this.payObj=t,console.log(t)},handlePackageData:function(){uni.showLoading({mask:!0,title:"订单提交中..."});var t=null;this.promotionInfoDTO.couponId&&(t=this.promotionInfoDTO.couponId);var e={shopDiscountId:null,collageId:this.collageId,type:this.sumitType,shopGroupWorkId:null,receiveId:this.receiveId,couponId:t,price:this.totalPrice,remark:"",shops:[],discountPrice:this.discountPrice,shopSeckillId:null};this.shopGroupWorkId>0&&(e.shopGroupWorkId=this.shopGroupWorkId),""!=this.skuItemDTOList&&(this.skuItemDTOList[0].shopDiscountId>0?e.shopDiscountId=this.skuItemDTOList[0].shopDiscountId:this.skuItemDTOList[0].shopSeckillId>0&&(e.shopSeckillId=this.skuItemDTOList[0].shopSeckillId));for(var i=this.settlement.shops.length,o=0;o<i;o++){var n={};n["shopId"]=this.settlement.shops[o].shopId,n["sceneId"]=this.settlement.shops[o].sceneId,n["distribution"]={},n["skus"]=[],this.settlement.shops[o].currentCoupon&&(n["id"]=this.settlement.shops[o].currentCoupon.id),e.shops.push(n),e.shops[o].distribution.distributionPrice=this.settlement.shops[o].distribution.distributionPrice,e.shops[o].distribution.distributionName=this.settlement.shops[o].distribution.distributionName;for(var s=this.settlement.shops[o].skus.length,a=0;a<s;a++){var r={},c=this.settlement.shops[o].skus[a];r["skuId"]=c.skuId,r["number"]=c.number,r["ifLogistics"]=c.ifLogistics,r["selected"]=c.selected,r["platformSeckillId"]=c.platformSeckillId,r["platformDiscountId"]=c.platformDiscountId,r["shopSeckillId"]=c.shopSeckillId,r["shopDiscountId"]=c.shopDiscountId,r["sceneId"]=c.sceneId,r["priceId"]=c.priceId,r["useMember"]=c.useMember,r["composeId"]=c.composeId,this.pointProductIds+=c.productId+",",this.selectIntegral&&c.cachedCredit&&(r["useCredit"]=c.cachedCredit,r["useCreditAmount"]=(c.cachedCredit*this.integralRatio).toFixed(2)),e.shops[o].skus.push(r)}}return this.pointProductIds.endsWith(",")&&(this.pointProductIds=this.pointProductIds.slice(0,-1)),this.handleSetPayMode(e),uni.hideLoading(),e},handleSetPayMode:function(t){t.paymentMode=this.payObj.paymentMode,t.subPaymentMode=3},submitOrder:function(){var t=this;return(0,r.default)((0,n.default)().mark((function e(){var i,o,r,c,u;return(0,n.default)().wrap((function(e){while(1)switch(e.prev=e.next){case 0:if(t,t.handleCheckOrderForm()){e.next=3;break}return e.abrupt("return");case 3:return i=t.handlePackageData(),console.error(t.couponId),t.couponId.id&&(i.couponId=t.couponId.coupon.keyId,i.discountPrice=i.discountPrice+t.ptyh,i.price=i.price-t.ptyh),console.error(i),uni.showLoading({mask:!0,title:"结算中..."}),e.prev=8,console.log("结算中结算中结算中结算中结算中结算中",i),o={},uni.getStorageSync("storage_key")&&(o={phone:uni.getStorageSync("storage_key").phone}),e.next=14,d.request(h.huiyuanList,o,"POST");case 14:return r=e.sent,i.merchantId=JSON.parse(r.data).data.id,e.next=18,d.request(h.PlaceOrder,i,"POST");case 18:if(c=e.sent,t.$store.dispatch("doPointer",{eventType:3,productIds:t.pointProductIds}),2!=t.type){e.next=22;break}return e.delegateYield((0,n.default)().mark((function t(){var e,o,r,c,l,u,p,f;return(0,n.default)().wrap((function(t){while(1)switch(t.prev=t.next){case 0:e=i.shops,o=uni.getStorageSync("dataList"),r=[],c=(0,a.default)(o);try{for(c.s();!(l=c.n()).done;)u=l.value,r=[].concat((0,s.default)(r),(0,s.default)(u.skus.filter((function(t){return 1===t.selected||!0===t.selected})).map((function(t){return t.skuId}))))}catch(n){c.e(n)}finally{c.f()}return t.next=7,d.request(h.DeleteCart,{ids:r},"POST");case 7:for(p=[],f=0;f<e.length;f++)e[f].skus.map((function(t){p.push(t.skuId)}));case 9:case"end":return t.stop()}}),t)}))(),"t0",22);case 22:return u=c.data,t.orderId=c.data.orderId,u.type=1,u.paymentMode=i.paymentMode,t.payObj.paymentMode&&t.payObj.huabeiPeriod&&(u.huabeiPeriod=t.payObj.huabeiPeriod),e.next=29,l.handleDoPay.call(t,u);case 29:e.next=35;break;case 31:e.prev=31,e.t1=e["catch"](8),t.oneClickSubmit=!0,uni.showToast({title:"订单结算错误",icon:"none"});case 35:return e.prev=35,uni.hideLoading(),e.finish(35);case 38:case"end":return e.stop()}}),e,null,[[8,31,35,38]])})))()}}};e.default=p},2823:function(t,e,i){"use strict";var o=i("8bdb");o({target:"Number",stat:!0,nonConfigurable:!0,nonWritable:!0},{EPSILON:Math.pow(2,-52)})},"30f7":function(t,e,i){"use strict";i("6a54"),Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")},i("7a76"),i("c9b5")},3471:function(t,e,i){"use strict";i("6a54"),Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(t,e){var i="undefined"!==typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!i){if(Array.isArray(t)||(i=(0,o.default)(t))||e&&t&&"number"===typeof t.length){i&&(t=i);var n=0,s=function(){};return{s:s,n:function(){return n>=t.length?{done:!0}:{done:!1,value:t[n++]}},e:function(t){throw t},f:s}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,r=!0,c=!1;return{s:function(){i=i.call(t)},n:function(){var t=i.next();return r=t.done,t},e:function(t){c=!0,a=t},f:function(){try{r||null==i["return"]||i["return"]()}finally{if(c)throw a}}}},i("01a2"),i("e39c"),i("bf0f"),i("844d"),i("18f7"),i("de6c"),i("7a76"),i("c9b5");var o=function(t){return t&&t.__esModule?t:{default:t}}(i("5d6b"))},"380d":function(t,e,i){"use strict";i.d(e,"b",(function(){return n})),i.d(e,"c",(function(){return s})),i.d(e,"a",(function(){return o}));var o={globalLoading:i("1abf").default,uPopup:i("7bd4").default},n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("v-uni-view",[i("global-loading"),t.ifShow?i("v-uni-view",[i("v-uni-view",{staticClass:"content"},[i("v-uni-view",{staticClass:"address-box",on:{click:function(e){arguments[0]=e=t.$handleEvent(e),t.addAddressTap.apply(void 0,arguments)}}},[i("v-uni-image",{staticClass:"address-img",attrs:{src:"https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/orderAddress.png"}}),t.userAddressInfo.receiveName?i("v-uni-view",{staticClass:"address-r"},[i("v-uni-view",{staticClass:"address-name-box"},[i("v-uni-text",[t._v(t._s(t.userAddressInfo.receiveName))]),i("v-uni-text",{staticClass:"phone"},[t._v(t._s(t.userAddressInfo.receivePhone))])],1),i("v-uni-view",{staticClass:"address-info"},[i("v-uni-text",[t._v(t._s(t.userAddressInfo.receiveAdress)+" "+t._s(t.userAddressInfo.address))])],1)],1):i("v-uni-view",{staticClass:"address-r"},[i("v-uni-text",[t._v("你还没有收货地址哦,点击这里添加")])],1),i("v-uni-image",{staticClass:"arrow-right-img",attrs:{src:"https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/greyArrow.png"}})],1),i("v-uni-view",{staticClass:"order-list-box"},t._l(t.settlement.shops,(function(e,o){return i("v-uni-view",{key:e.shopId,staticClass:"item"},[i("v-uni-view",{staticClass:"order-list-top"},[i("v-uni-view",{staticClass:"top-l"},[i("v-uni-image",{staticClass:"shop-img",attrs:{src:"https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/orderStoreIcon.png"}}),i("v-uni-text",{staticClass:"shop-name"},[t._v(t._s(e.shopName))])],1)],1),i("v-uni-view",{staticClass:"order-info-box"},[i("v-uni-view",{staticClass:"order-info"},[t._l(e.skus,(function(e,o){return i("v-uni-view",{key:e.productId,staticClass:"order-info-item"},[i("v-uni-image",{staticClass:"product-img",attrs:{src:t.$baseURL+e.image}}),i("v-uni-view",{staticClass:"info-box"},[i("v-uni-text",{staticClass:"product-name"},[t._v(t._s(e.productName))]),i("v-uni-view",{staticClass:"product-sku"},t._l(e.values,(function(e,o){return i("v-uni-view",[i("v-uni-label",{staticClass:"mar-left-20"},[t._v("规格:"+t._s(e))])],1)})),1),i("v-uni-view",{staticClass:"price-sku-box flex-display flex-sp-between"},[i("v-uni-view",{staticClass:"product-price"},[i("v-uni-text",{staticClass:"fuhao"},[t._v("¥")]),t._v(t._s(e.price))],1),i("v-uni-view",{staticClass:"product-num"},[t._v("x "+t._s(e.number))])],1)],1)],1)})),e.receiveNotMatch?i("v-uni-view",{staticClass:"adressTips"},[t._v("当前地址不支持配送,可更换其他地址试试")]):t._e(),i("v-uni-view",{staticClass:"delivery-way-box"},[i("v-uni-view",[i("v-uni-view",{staticClass:"item"},[i("v-uni-view",{staticClass:"flex-items"},[i("v-uni-text",[t._v("配送方式")])],1),i("v-uni-view",{staticClass:"flex-row-plus flex-items"},[e.distribution.distributionPrice>0?i("v-uni-text",[t._v("快递 ¥\n\t\t\t\t\t\t\t\t\t\t\t\t\t"+t._s(e.distribution.distributionPrice))]):i("v-uni-text",[t._v("快递 免邮")])],1)],1),i("v-uni-view",{staticClass:"flex-item"},t._l(e.skuDiscountInfoMap,(function(e,o){return i("v-uni-text",{staticClass:"font-color-666 fs24"},[t._v(t._s(e[0]))])})),1)],1)],1)],2),e.shopCoupons.length>0?i("v-uni-view",{staticClass:"discount-item1",on:{click:function(i){arguments[0]=i=t.$handleEvent(i),t.showShopCoupons(e,o)}}},[i("v-uni-view",{staticClass:"discount-label"},[t._v("店铺优惠")]),i("v-uni-view",{staticClass:"discount-info-box flex-items"},[e.currentCoupon&&1===e.currentCoupon.couponType?i("v-uni-view",{staticClass:"discount-info2"},[t._v("-¥"+t._s(e.currentCoupon.reduceMoney))]):t._e(),e.currentCoupon&&2===e.currentCoupon.couponType?i("v-uni-view",{staticClass:"discount-info2"},[t._v(t._s(e.currentCoupon.reduceMoney)+"折券")]):t._e(),i("v-uni-image",{staticClass:"discount-img",attrs:{src:"https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/arrowRight.png"}})],1)],1):t._e(),i("v-uni-view",{staticClass:"order-total-box"},[i("v-uni-text",{staticClass:"total-num"},[t._v("共"+t._s(e.number)+"件")]),i("v-uni-text",{staticClass:"total-num ml10"},[t._v("总计")]),e.totalAfterDiscount>0?i("v-uni-text",{staticClass:"total-price ml10"},[t._v("¥"+t._s((parseFloat(e.totalAfterDiscount)+parseFloat(e.distribution.distributionPrice||0)).toFixed(2)))]):i("v-uni-text",{staticClass:"total-price ml10"},[t._v("¥0.00")])],1)],1)],1)})),1),i("v-uni-view",{staticClass:"discount-item",on:{click:function(e){arguments[0]=e=t.$handleEvent(e),t.changecoupon.apply(void 0,arguments)}}},[i("v-uni-view",{staticClass:"discount-label"},[t._v("优惠券选择")]),i("v-uni-view",{staticClass:"discount-info-box flex-items"},[0==t.couponList.length?i("v-uni-view",{staticClass:"discount-info1"},[t._v("暂无优惠券")]):t.couponId.couponName?i("v-uni-view",{staticClass:"discount-info1"},[t._v(t._s(t.couponId.couponName))]):i("v-uni-view",{staticClass:"discount-info1"},[t._v("暂无选择")]),i("v-uni-image",{staticClass:"discount-img",attrs:{src:"https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/arrowRight.png"}})],1)],1),t.integralShow?i("v-uni-view",{staticClass:"integralPayBox"},[i("v-uni-view",{staticClass:"integralBg"},[i("v-uni-view",{staticClass:"integralTit fs26"},[t._v("可用"+t._s(t.integralNum)+"积分抵扣"+t._s(t.integralPrice.toFixed(2))+"元")]),i("v-uni-view",{staticClass:"maxIntegral"},[i("v-uni-checkbox-group",{staticStyle:{width:"50rpx"},on:{change:function(e){arguments[0]=e=t.$handleEvent(e),t.changeIntegral.apply(void 0,arguments)}}},[i("v-uni-checkbox",{staticClass:"integralCheckbox",staticStyle:{transform:"scale(0.7)"},attrs:{color:"#C5AA7B",value:"1",checked:t.selectIntegral}})],1)],1)],1)],1):t._e(),i("v-uni-view",{staticClass:"cashier-box"},[i("CashierList",{attrs:{"total-price":t.totalPrice},on:{change:function(e){arguments[0]=e=t.$handleEvent(e),t.handleChangeCashier.apply(void 0,arguments)}}})],1),i("v-uni-view",{staticClass:"order-flow-box"},[i("v-uni-view",{staticClass:"flow-word"},[t._v("交易流程:")]),i("v-uni-view",{staticClass:"flow-word mt25"},[i("v-uni-text",[t._v("1、填写收货信息并完成支付")]),i("v-uni-text",[t._v("2、双方根据物品的交易方式进行交易")]),i("v-uni-text",[t._v("3、拿到物品,交易结束")])],1),i("v-uni-view",{staticClass:"flow-word mt50"},[t._v("注:应国家邮政总局的要求,即日起涉及到个人快递包裹必须收件人实名制,否则将影响到收寄配送。请避免使用「先生,男士,小姐,女士,昵称」等模糊称谓。")])],1)],1),i("v-uni-view",{staticClass:"order-confirm-box",staticStyle:{"padding-bottom":"30upx"}},[i("v-uni-view",{staticClass:"flex-items flex-sp-between"},[i("v-uni-text",{staticClass:"num-box"},[t._v("共"+t._s(t.totalCount)+"件")]),i("v-uni-view",[t.ptyh?i("v-uni-text",{staticStyle:{color:"#999","font-size":"24rpx"}},[t._v("(平台优惠:¥"+t._s(t.ptyh)+")")]):t._e(),i("v-uni-text",{staticClass:"total"},[t._v("合计:")]),t.totalPrice>0?i("v-uni-text",{staticClass:"price"},[t._v("¥"+t._s((t.totalPrice-t.ptyh).toFixed(2)))]):i("v-uni-text",{staticClass:"price"},[t._v("¥0.00")])],1)],1),t.isRegionalScope?i("v-uni-button",{staticClass:"btn unActive",attrs:{type:"default",disabled:!1}},[t._v("提交订单")]):i("v-uni-button",{class:[t.submitActive?"btn active":"btn"],on:{click:function(e){arguments[0]=e=t.$handleEvent(e),t.submitOrder.apply(void 0,arguments)}}},[t._v("提交订单")])],1),i("u-popup",{staticClass:"activity-con",attrs:{mode:"bottom","border-radius":"14","close-icon-pos":"top-right","close-icon-size":"20"},model:{value:t.isShowDiscount,callback:function(e){t.isShowDiscount=e},expression:"isShowDiscount"}},[i("v-uni-view",{staticClass:"activity-box",staticStyle:{height:"1000rpx"}},[i("v-uni-view",{staticClass:"title-box"},[i("v-uni-image",{staticClass:"close-btn",attrs:{src:"https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/close.png"},on:{click:function(e){arguments[0]=e=t.$handleEvent(e),t.onDiscountClose.apply(void 0,arguments)}}})],1),i("v-uni-view",{staticClass:"activity-coupon-box"},[i("v-uni-scroll-view",{staticStyle:{height:"900rpx"},attrs:{"scroll-y":"true"}},[i("v-uni-view",{staticClass:"content-box"},[i("v-uni-view",[i("v-uni-view",{staticClass:"label-lingqu"},[t._v("可用优惠券列表")]),i("v-uni-view",{staticClass:"couponBox"},t._l(t.settlement.coupons,(function(e,o){return i("v-uni-view",{key:o,staticClass:"coupon-item",on:{click:function(i){arguments[0]=i=t.$handleEvent(i),t.couponItemTap(o,e)}}},[1===e.couponType?i("v-uni-view",{staticClass:"money-box"},[t._v("¥"+t._s(e.reduceMoney))]):i("v-uni-view",{staticClass:"money-box"},[t._v(t._s(e.reduceMoney)+"折券")]),i("v-uni-view",{staticClass:"info-box"},[i("v-uni-view",{staticClass:"date font-color-999",staticStyle:{"font-size":"22upx","margin-top":"20upx"}},[t._v(t._s(t.getDate(e.startTime.replace(/-/g,".")))+"-"+t._s(t.getDate(e.endTime.replace(/-/g,"."))))]),i("v-uni-view",{staticClass:"info font-color-999"},[t._v("满"+t._s(e.fullMoney)+"元可用")])],1),e.checked?i("v-uni-image",{staticClass:"check-img",attrs:{src:"https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectActive.png"}}):i("v-uni-image",{staticClass:"check-img",attrs:{src:"https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectEmpty.png"}})],1)})),1)],1)],1)],1)],1)],1)],1),i("u-popup",{staticClass:"activity-con",attrs:{mode:"bottom","border-radius":"14","close-icon-pos":"top-right","close-icon-size":"20"},model:{value:t.isShopCoupons,callback:function(e){t.isShopCoupons=e},expression:"isShopCoupons"}},[i("v-uni-view",{staticClass:"activity-box"},[i("v-uni-view",{staticClass:"title-box"},[i("v-uni-image",{staticClass:"close-btn",attrs:{src:"https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/close.png"},on:{click:function(e){arguments[0]=e=t.$handleEvent(e),t.onshopClose.apply(void 0,arguments)}}})],1),i("v-uni-view",{staticClass:"activity-coupon-box"},[i("v-uni-scroll-view",{staticStyle:{height:"900rpx"},attrs:{"scroll-y":"true"}},[i("v-uni-view",{staticClass:"content-box"},[t.shopCouponsLength?i("v-uni-view",[i("v-uni-view",{staticClass:"label-lingqu"},[t._v("可用优惠券列表")]),i("v-uni-view",{staticClass:"couponBox"},t._l(t.shopCouponslist.shopCoupons,(function(e,o){return i("v-uni-view",{key:e.id,staticClass:"coupon-item",on:{click:function(i){arguments[0]=i=t.$handleEvent(i),t.shopCouponItemTap(o,e)}}},[1===e.couponType?i("v-uni-view",{staticClass:"money-box"},[t._v("¥"+t._s(e.reduceMoney))]):i("v-uni-view",{staticClass:"money-box"},[t._v(t._s(e.reduceMoney)+"折券")]),i("v-uni-view",{staticClass:"date font-color-999",staticStyle:{"font-size":"22upx","margin-top":"10upx"}},[t._v(t._s(t.getDate(e.startTime.replace(/-/g,".")))+"-"+t._s(t.getDate(e.endTime.replace(/-/g,"."))))]),i("v-uni-view",{staticClass:"info-box"},[i("v-uni-view",{staticClass:"info font-color-999"},[t._v("满"+t._s(e.fullMoney)+"元可用")])],1),e.checked?i("v-uni-image",{staticClass:"check-img",attrs:{src:"https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectActive.png"}}):i("v-uni-image",{staticClass:"check-img",attrs:{src:"https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectEmpty.png"}})],1)})),1)],1):t._e()],1)],1)],1)],1)],1),i("u-popup",{staticClass:"activity-con",attrs:{mode:"bottom","border-radius":"14","close-icon-pos":"top-right","close-icon-size":"20"},model:{value:t.iscoupon,callback:function(e){t.iscoupon=e},expression:"iscoupon"}},[i("v-uni-view",{staticClass:"activity-box",staticStyle:{height:"1000rpx"}},[i("v-uni-view",{staticClass:"title-box"},[i("v-uni-image",{staticClass:"close-btn",attrs:{src:"https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/close.png"},on:{click:function(e){arguments[0]=e=t.$handleEvent(e),t.iscoupon=!1}}})],1),i("v-uni-view",{staticClass:"activity-coupon-box"},[i("v-uni-scroll-view",{staticStyle:{height:"900rpx"},attrs:{"scroll-y":"true"}},[i("v-uni-view",{staticClass:"content-box"},[i("v-uni-view",[i("v-uni-view",{staticClass:"label-lingqu"},[t._v("可用优惠券列表")]),t.couponList.length>0&&this.settlement.shops&&this.settlement.shops.length>0?i("v-uni-view",{staticClass:"couponBox"},t._l(t.couponList,(function(e,o){return i("v-uni-view",{key:o,staticClass:"coupon-item",style:e.istrue?"opacity: 1;":"opacity: 0.5;",on:{click:function(i){arguments[0]=i=t.$handleEvent(i),t.couponcouponList(o,e)}}},["1"==e.couponType?i("v-uni-view",{staticClass:"money-box"},[t._v("¥"+t._s(e.discountContent))]):i("v-uni-view",{staticClass:"money-box"},[t._v(t._s(e.discountContent)+"折券")]),i("v-uni-view",{staticClass:"info-box"},[i("v-uni-view",{staticClass:"date font-color-999",staticStyle:{"font-size":"22upx","margin-top":"20upx"}},[t._v(t._s(t.getDate(e.startTime.replace(/-/g,".")))+"-"+t._s(t.getDate(e.endTime.replace(/-/g,"."))))]),i("v-uni-view",{staticClass:"info font-color-999"},[t._v(t._s("1"==e.couponType?"满"+e.usageThreshold+"元可用":"最高"+e.maxDiscountAmount+"元"))])],1),e.checked?i("v-uni-image",{staticClass:"check-img",attrs:{src:"https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectActive.png"}}):i("v-uni-image",{staticClass:"check-img",attrs:{src:"https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectEmpty.png"}})],1)})),1):t._e()],1)],1)],1)],1)],1)],1)],1):t._e()],1)},s=[]},"424b":function(t,e,i){"use strict";var o=i("8ad8"),n=i.n(o);n.a},4733:function(t,e,i){"use strict";i("6a54"),Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(t){if(Array.isArray(t))return(0,o.default)(t)};var o=function(t){return t&&t.__esModule?t:{default:t}}(i("8d0b"))},"53df":function(t,e,i){"use strict";function o(t,e,i){this.$children.map((function(n){t===n.$options.name?n.$emit.apply(n,[e].concat(i)):o.apply(n,[t,e].concat(i))}))}i("6a54"),Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0,i("fd3c"),i("c223");var n={methods:{dispatch:function(t,e,i){var o=this.$parent||this.$root,n=o.$options.name;while(o&&(!n||n!==t))o=o.$parent,o&&(n=o.$options.name);o&&o.$emit.apply(o,[e].concat(i))},broadcast:function(t,e,i){o.call(this,t,e,i)}}};e.default=n},"60ae":function(t,e,i){"use strict";i.r(e);var o=i("1223"),n=i("9e03");for(var s in n)["default"].indexOf(s)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(s);i("e6ff");var a=i("828b"),r=Object(a["a"])(n["default"],o["b"],o["c"],!1,null,"2d7510f8",null,!1,o["a"],void 0);e["default"]=r.exports},"7c19":function(t,e,i){var o=i("c86c");e=o(!1),e.push([t.i,'@charset "UTF-8";\r\n/**\r\n * 这里是uni-app内置的常用样式变量\r\n *\r\n * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量\r\n * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App\r\n *\r\n */\r\n/**\r\n * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能\r\n *\r\n * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件\r\n */\r\n/* 颜色变量 */\r\n/* 页面左右间距 */\r\n/* 行为相关颜色 */\r\n/* 文字基本颜色 */\r\n/* 背景颜色 */\r\n/* 边框颜色 */\r\n/* 尺寸变量 */\r\n/* 文字尺寸 */\r\n/*文字颜色*/\r\n/* 图片尺寸 */\r\n/* Border Radius */\r\n/* 水平间距 */\r\n/* 垂直间距 */\r\n/* 透明度 */\r\n/* 文章场景相关 */.cashier-list-content[data-v-2d7510f8]{width:100%;padding:%?0?% %?15?%;box-sizing:border-box;background:#fff}.cashier-list-content .u-radio-group[data-v-2d7510f8]{display:block!important}.cashier-list-content .cashier[data-v-2d7510f8]{border-bottom:%?2?% solid #d0d0d0}.cashier-list-content .cashier[data-v-2d7510f8]:last-child{border-bottom:none}.cashier-list-content .cashier .cashier-item[data-v-2d7510f8]{display:flex;align-items:center;justify-content:space-between;padding:%?20?% 0;box-sizing:border-box;position:relative}.cashier-list-content .cashier .cashier-item .icon-text[data-v-2d7510f8]{display:flex;align-items:center;justify-content:center}.cashier-list-content .cashier .cashier-item .icon-text uni-image[data-v-2d7510f8]{width:%?50?%;height:%?50?%;margin-right:%?15?%}.cashier-list-content .cashier .cashier-item .radio-context[data-v-2d7510f8]{display:flex;align-items:center;font-size:%?14?%}.cashier-list-content .cashier .cashier-item .radio-context .radio[data-v-2d7510f8]{margin-left:%?15?%}.cashier-list-content .cashier .ali-hb-content[data-v-2d7510f8]{padding:%?10?% 20px;box-sizing:border-box;border-top:%?2?% solid #d0d0d0}',""]),t.exports=e},"8ad8":function(t,e,i){var o=i("c98c");o.__esModule&&(o=o.default),"string"===typeof o&&(o=[[t.i,o,""]]),o.locals&&(t.exports=o.locals);var n=i("967d").default;n("3b0c6ea6",o,!0,{sourceMap:!1,shadowMode:!1})},"8df6":function(t,e,i){"use strict";i("6a54");var o=i("f5bd").default;Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=o(i("9b1b")),s=i("8f59"),a={name:"GlobalLoading",methods:{moveHandle:function(){}},mounted:function(){console.log("+++++++++++++++++++__++++++++++++++++++++"),console.log(this.loadingFlag,this.loadingInfo)},computed:(0,n.default)({},(0,s.mapGetters)(["loadingFlag","loadingInfo"]))};e.default=a},"8ffb":function(t,e,i){"use strict";var o=i("9ac7"),n=i.n(o);n.a},9327:function(t,e,i){"use strict";var o=i("8bdb"),n=i("9f69"),s=i("1ded").f,a=i("c435"),r=i("9e70"),c=i("b6a1"),l=i("862c"),u=i("0931"),d=i("a734"),h=n("".slice),p=Math.min,f=u("endsWith"),v=!d&&!f&&!!function(){var t=s(String.prototype,"endsWith");return t&&!t.writable}();o({target:"String",proto:!0,forced:!v&&!f},{endsWith:function(t){var e=r(l(this));c(t);var i=arguments.length>1?arguments[1]:void 0,o=e.length,n=void 0===i?o:p(a(i),o),s=r(t);return h(e,n-s.length,n)===s}})},"946d":function(t,e,i){var o=i("c821");o.__esModule&&(o=o.default),"string"===typeof o&&(o=[[t.i,o,""]]),o.locals&&(t.exports=o.locals);var n=i("967d").default;n("07345ce8",o,!0,{sourceMap:!1,shadowMode:!1})},"954c":function(t,e,i){"use strict";i("6a54");var o=i("f5bd").default;Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=o(i("2634")),s=o(i("2fdc"));i("64aa"),i("4626"),i("fd3c"),i("bf0f"),i("2797");var a=o(i("83c8")),r=o(i("6d56")),c={name:"CashierList",props:{totalPrice:{type:Number,default:function(){return 200}}},data:function(){return{paymentMode:0,paymentList:[{id:1,label:"微信支付",paymentMode:1,icon:"https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/wechat_pay.png",disabled:!0}],flowerObj:{hbChargeType:1,hbByStagesPeriods:-1,hbByStagesList:[{rate:0,price:0,numberOfStages:3,serviceCharge:0,disabled:!1},{rate:0,price:0,numberOfStages:6,serviceCharge:0,disabled:!1},{rate:0,price:0,numberOfStages:12,serviceCharge:0,disabled:!1}],hbServiceChargeTotal:0}}},mounted:function(){this.getTheFlowerConfig(),this.handleSetDisable(),this.handleNoticeFather()},methods:{handleSetDisable:function(){this.paymentList[0].disabled=!0,this.paymentMode=1},handleChangePaymentMode:function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(console.log(t),!e){this.paymentMode=t;var i=this.flowerObj;[1,2].includes(t)?(i.hbByStagesPeriods=-1,i.hbByStagesList.map((function(t){t.disabled=!0}))):i.hbByStagesPeriods=3,this.handleHbStagesAndPrice(),this.handleNoticeFather()}},getTheFlowerConfig:function(){var t=this;return(0,s.default)((0,n.default)().mark((function e(){var i,o,s;return(0,n.default)().wrap((function(e){while(1)switch(e.prev=e.next){case 0:return e.next=2,a.default.request(r.default.GetHuabeiConfig,{},"GET");case 2:i=e.sent,o=i.data,s=t.flowerObj,s.hbChargeType=o.huabeiChargeType,1===o.huabeiChargeType&&o.huabeiFeeRateList.forEach((function(t,e){s.hbByStagesList[e].rate=t})),console.log(s);case 8:case"end":return e.stop()}}),e)})))()},handleChangePeriods:function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(!e){var i=this.flowerObj;i.hbByStagesPeriods=t,this.handleHbStagesAndPrice(),this.handleNoticeFather()}},handleHbStagesAndPrice:function(){var t=this,e=this.flowerObj,i=this.totalPrice;3===this.paymentMode&&e.hbByStagesList.forEach((function(o){o.price=(i*(1+o.rate/100)/o.numberOfStages).toFixed(2),o.serviceCharge=(i*(o.rate/100)/o.numberOfStages).toFixed(2),o.numberOfStages===Number(e.hbByStagesPeriods)&&(e.hbServiceChargeTotal=(i*(o.rate/100)).toFixed(2)),t.totalPrice<o.numberOfStages/100?o.disabled=!0:o.disabled=!1}))},handleNoticeFather:function(){var t=this.paymentMode,e=this.flowerObj,i={paymentMode:t,huabeiPeriod:e.hbByStagesPeriods};this.$emit("change",i)}}};e.default=c},"9a30":function(t,e,i){"use strict";var o=i("946d"),n=i.n(o);n.a},"9ac7":function(t,e,i){var o=i("d8ff");o.__esModule&&(o=o.default),"string"===typeof o&&(o=[[t.i,o,""]]),o.locals&&(t.exports=o.locals);var n=i("967d").default;n("13e917ab",o,!0,{sourceMap:!1,shadowMode:!1})},"9e03":function(t,e,i){"use strict";i.r(e);var o=i("954c"),n=i.n(o);for(var s in o)["default"].indexOf(s)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(s);e["default"]=n.a},a36f:function(t,e,i){"use strict";i("6a54"),Object.defineProperty(e,"__esModule",{value:!0}),e.hidden=function(t,e,i){var o=0;if(!t.length||!t)return"";2!==t.length&&(o=i);for(var n=t.length-e-o,s="",a=0;a<n;a++)s+="*";return t.substring(0,e)+s+t.substring(t.length-o)}},a5a6:function(t,e,i){"use strict";i.r(e);var o=i("2411"),n=i.n(o);for(var s in o)["default"].indexOf(s)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(s);e["default"]=n.a},a91a:function(t,e,i){t.exports=i.p+"static/images/loading/loading.gif"},ac93:function(t,e,i){"use strict";i.r(e);var o=i("8df6"),n=i.n(o);for(var s in o)["default"].indexOf(s)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(s);e["default"]=n.a},b7c7:function(t,e,i){"use strict";i("6a54"),Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(t){return(0,o.default)(t)||(0,n.default)(t)||(0,s.default)(t)||(0,a.default)()};var o=r(i("4733")),n=r(i("d14d")),s=r(i("5d6b")),a=r(i("30f7"));function r(t){return t&&t.__esModule?t:{default:t}}},bdef:function(t,e,i){var o=i("7c19");o.__esModule&&(o=o.default),"string"===typeof o&&(o=[[t.i,o,""]]),o.locals&&(t.exports=o.locals);var n=i("967d").default;n("1444b509",o,!0,{sourceMap:!1,shadowMode:!1})},c821:function(t,e,i){var o=i("c86c");e=o(!1),e.push([t.i,'@charset "UTF-8";\r\n/**\r\n * 这里是uni-app内置的常用样式变量\r\n *\r\n * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量\r\n * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App\r\n *\r\n */\r\n/**\r\n * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能\r\n *\r\n * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件\r\n */\r\n/* 颜色变量 */\r\n/* 页面左右间距 */\r\n/* 行为相关颜色 */\r\n/* 文字基本颜色 */\r\n/* 背景颜色 */\r\n/* 边框颜色 */\r\n/* 尺寸变量 */\r\n/* 文字尺寸 */\r\n/*文字颜色*/\r\n/* 图片尺寸 */\r\n/* Border Radius */\r\n/* 水平间距 */\r\n/* 垂直间距 */\r\n/* 透明度 */\r\n/* 文章场景相关 */.loading-content[data-v-137eceae]{position:fixed;top:0;left:0;width:100vw;height:100vh;z-index:9999}.loading-content .full-mask[data-v-137eceae]{position:absolute;width:100vw;height:100vh;background-color:rgba(0,0,0,.52);z-index:9998;pointer-events:none}.loading-content .loading-gif[data-v-137eceae]{z-index:9999;position:relative;width:100%;height:100%}.loading-content .loading-gif .flex[data-v-137eceae]{width:%?200?%;height:%?200?%;position:absolute;border-radius:%?15?%;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);display:flex;align-items:center;justify-content:center;flex-direction:column}.loading-content .loading-gif .flex uni-image[data-v-137eceae]{width:%?150?%;height:%?150?%}.loading-content .loading-gif .flex p[data-v-137eceae]{color:#fff}',""]),t.exports=e},c98c:function(t,e,i){var o=i("c86c");e=o(!1),e.push([t.i,".pay-type-item[data-v-874a3818] .uni-radio-input-checked{background-color:#c5aa7b!important;border-color:#c5aa7b!important}.maxIntegral[data-v-874a3818] .uni-checkbox-input{width:%?30?%;height:%?30?%}.maxIntegral[data-v-874a3818] .uni-checkbox-input-checked:before{font-size:%?30?%}.maxIntegral[data-v-874a3818] .uni-checkbox-input-checked{border:%?2?% solid #c5aa7b!important}",""]),t.exports=e},d14d:function(t,e,i){"use strict";i("6a54"),Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(t){if("undefined"!==typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)},i("01a2"),i("e39c"),i("bf0f"),i("844d"),i("18f7"),i("de6c"),i("08eb")},d8ff:function(t,e,i){var o=i("c86c");e=o(!1),e.push([t.i,'@charset "UTF-8";\r\n/**\r\n * 这里是uni-app内置的常用样式变量\r\n *\r\n * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量\r\n * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App\r\n *\r\n */\r\n/**\r\n * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能\r\n *\r\n * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件\r\n */\r\n/* 颜色变量 */\r\n/* 页面左右间距 */\r\n/* 行为相关颜色 */\r\n/* 文字基本颜色 */\r\n/* 背景颜色 */\r\n/* 边框颜色 */\r\n/* 尺寸变量 */\r\n/* 文字尺寸 */\r\n/*文字颜色*/\r\n/* 图片尺寸 */\r\n/* Border Radius */\r\n/* 水平间距 */\r\n/* 垂直间距 */\r\n/* 透明度 */\r\n/* 文章场景相关 */uni-page-body[data-v-874a3818]{background-color:#f7f7f7}body.?%PAGE?%[data-v-874a3818]{background-color:#f7f7f7}.content[data-v-874a3818]{padding:0 %?30?% %?198?%;box-sizing:border-box}.address-box[data-v-874a3818]{margin-top:%?20?%;background:#fff;border-radius:%?10?%;width:100%;padding:%?30?%;box-sizing:border-box;display:flex;flex-direction:row;align-items:center;margin-bottom:%?20?%}.address-box .address-img[data-v-874a3818]{width:%?71?%;height:%?57?%;margin-right:%?20?%}.address-box .address-r[data-v-874a3818]{flex:1;display:flex;flex-direction:column;font-size:%?28?%;color:#333}.arrow-right-img[data-v-874a3818]{width:%?62?%;height:%?62?%;margin-left:%?20?%}.address-name-box[data-v-874a3818]{font-size:%?30?%;color:#333}.phone[data-v-874a3818]{font-size:%?24?%;color:#999;margin-left:%?20?%}.address-info[data-v-874a3818]{font-size:%?28?%;color:#333;margin-top:%?15?%}.order-list-box .item[data-v-874a3818]{background:#fff;border-radius:%?10?%}.order-list-top[data-v-874a3818]{height:%?96?%;padding:0 %?30?%;box-sizing:border-box;display:flex;flex-direction:row;align-items:center;justify-content:space-between;border-bottom:%?2?% solid #eee}.top-l[data-v-874a3818]{display:flex;flex-direction:row;align-items:center}.shop-img[data-v-874a3818]{width:%?34?%;height:%?34?%;margin-right:%?10?%}.shop-name[data-v-874a3818]{font-size:%?30?%;color:#333;font-weight:700}.arrow-img[data-v-874a3818]{margin-left:%?15?%;width:%?62?%;height:%?62?%}.order-info-box[data-v-874a3818]{padding:0 %?30?%;box-sizing:border-box}.order-info-item[data-v-874a3818]{display:flex;flex-direction:row;padding:%?20?% 0}.product-img[data-v-874a3818]{width:%?180?%;height:%?180?%;border-radius:%?10?%;margin-right:%?30?%}.info-box[data-v-874a3818]{flex:1}.product-name[data-v-874a3818]{font-size:%?26?%;color:#333;height:%?68?%;line-height:%?34?%;display:-webkit-box;overflow:hidden;text-overflow:ellipsis;word-break:break-all;-webkit-box-orient:vertical;-webkit-line-clamp:2}.price-sku-box[data-v-874a3818]{width:100%;display:flex;flex-direction:row;justify-content:space-between}.product-sku[data-v-874a3818]{font-size:%?24?%;font-weight:500;color:#999;margin-left:%?-20?%;width:100%;display:flex;flex-direction:row}.product-price[data-v-874a3818]{font-size:%?32?%;color:#c83732;font-weight:400}.product-price .fuhao[data-v-874a3818]{font-size:%?28?%}.product-num[data-v-874a3818]{font-size:%?28?%;color:#999;font-weight:400}.adressTips[data-v-874a3818]{margin-bottom:%?19?%;color:#d53912}.delivery-way-box[data-v-874a3818]{display:flex;flex-direction:column;border:%?2?% solid #e4e5e6;padding:%?20?%;margin-bottom:%?20?%;box-sizing:initial}.delivery-way-box .item[data-v-874a3818]{display:flex;flex-direction:row;align-items:center;justify-content:space-between;font-size:%?26?%;color:#333}.delivery-way-box .item[data-v-874a3818]{display:flex;flex-direction:row;align-items:center;justify-content:space-between;font-size:%?26?%;color:#333}.delivery-way-box .item .way[data-v-874a3818]{color:#999;margin-left:%?30?%}.order-total-box[data-v-874a3818]{padding:%?20?% 0;text-align:right}.total-num[data-v-874a3818]{font-size:%?26?%;color:#333}.total-price[data-v-874a3818]{font-size:%?46?%;color:#333}.ml10[data-v-874a3818]{margin-left:%?10?%}.order-flow-box[data-v-874a3818]{display:flex;flex-direction:column}.flow-word[data-v-874a3818]{font-size:%?24?%;color:#999;display:flex;flex-direction:column}.mt25[data-v-874a3818]{margin-top:%?20?%}.mt50[data-v-874a3818]{margin-top:%?30?%;margin-bottom:%?20?%}.order-confirm-box[data-v-874a3818]{position:fixed;bottom:0;left:0;width:100%;background:#fff;padding:%?30?%}.num-box[data-v-874a3818]{font-size:%?30?%;color:#999}.num-box .total[data-v-874a3818]{color:#333}.num-box .price[data-v-874a3818]{color:#ff7911;font-weight:700}.order-confirm-box .btn[data-v-874a3818]{width:100%;height:%?80?%;line-height:%?80?%;background:#eee;font-size:%?28?%;color:#ffebc4;text-align:center;margin-top:%?20?%}.order-confirm-box .btn.active[data-v-874a3818]{background:#333;color:#ffebc4}.order-confirm-box .btn.unActive[data-v-874a3818]{background:#333;color:#ffebc4;opacity:.7}.discount-item1[data-v-874a3818]{width:100%;box-sizing:border-box;display:flex;flex-direction:row;align-items:center;justify-content:space-between;background:#fff;padding:%?20?%;border:%?2?% solid #e4e5e6}.discount-item[data-v-874a3818]{width:100%;height:%?98?%;box-sizing:border-box;margin:%?30?% 0;display:flex;flex-direction:row;align-items:center;justify-content:space-between;padding:0 %?20?%;background:#fff}.pay-type-item .pay-type-radio[data-v-874a3818]{background-color:#fff;border-bottom:%?1?% solid #ededed;margin-bottom:%?20?%;padding:%?24?% %?20?% %?24?% %?20?%}.pay-type-item .pay-type-radio .pay-type-img[data-v-874a3818]{display:inline-block}.pay-type-item .pay-type-radio .pay-type-img .pay-type-img-inner[data-v-874a3818]{width:%?50?%;height:%?50?%;vertical-align:middle}.pay-type-item .pay-type-radio .pay-type-label[data-v-874a3818]{vertical-align:middle;margin-left:%?30?%}.pay-type-item .pay-type-radio .pay-type-radio-item[data-v-874a3818]{float:right;width:%?50?%;height:%?50?%}.pay-type-item .pay-type-radio .huabei-detail[data-v-874a3818]{margin-top:%?20?%}.pay-type-item .pay-type-radio .huabei-detail .fenqi-wenzi[data-v-874a3818]{display:inline-block;margin-left:%?64?%}.pay-type-item .pay-type-radio .huabei-detail .fenqi-amount[data-v-874a3818]{display:block;margin-left:%?64?%;margin-top:%?14?%;color:#babbbc}.pay-type-item .pay-type-radio .huabei-detail .fenqi-charge-fee[data-v-874a3818]{float:right;margin-right:%?68?%;color:#babbbc}.pay-type-item .pay-type-radio .huabei-detail .fenqi-modal[data-v-874a3818]{width:%?40?%;height:%?40?%;margin-left:%?20?%;float:right;position:relative;top:%?-80?%}.period-radio[data-v-874a3818]{margin:%?30?%;width:95%;border-bottom:1px solid #efefef}.period-radio .period-amount[data-v-874a3818]{display:inline-block}.period-radio .period-amount .period-each-charge[data-v-874a3818]{display:inline-block;margin-top:%?12?%;margin-left:%?6?%;font-size:%?26?%;color:#b7b7b7;margin-bottom:%?13?%}.period-radio .period-each[data-v-874a3818]{display:block}.period-radio .period-type-radio-item[data-v-874a3818]{float:right}.huabei-confirm[data-v-874a3818]{height:%?120?%;padding:%?0?% %?108?% %?0?% %?32?%}.huabei-confirm .fenqi-all[data-v-874a3818]{display:inline-block;width:100%}.huabei-confirm .fenqi-total-amount[data-v-874a3818]{float:left}.huabei-confirm .fenqi-confirm[data-v-874a3818]{float:right;width:%?160?%;padding:%?0?% %?20?%}.huabei-confirm .fenqi-confirm .btn[data-v-874a3818]{width:%?216?%;height:%?80?%;line-height:%?80?%;border-radius:%?40?%;font-size:%?28?%;text-align:center;background:linear-gradient(90deg,#ffa200,#ff7911);color:#fff;display:inline-block;margin-right:%?66?%}.discount-info-box[data-v-874a3818]{display:flex;flex-direction:row}.discount-label[data-v-874a3818],\r\n.discount-info1[data-v-874a3818]{font-size:%?26?%;color:#333}.discount-info2[data-v-874a3818]{color:#c5aa7b}.discount-img[data-v-874a3818]{width:%?30?%;height:%?30?%;margin-left:%?20?%}.activity-con .activity-box[data-v-874a3818]{display:flex;flex-direction:column;width:100%;height:%?1000?%}.activity-box .title-box[data-v-874a3818]{width:100%;height:%?100?%;display:flex;flex-direction:row;align-items:center;justify-content:center;position:relative;border-bottom:solid 1px #eee}.activity-coupon-box[data-v-874a3818]{display:flex;flex-direction:column;width:100%;overflow:auto;flex:1}.title-box .close-btn[data-v-874a3818]{width:%?100?%;height:%?100?%;box-sizing:border-box;padding:%?30?%;position:absolute;top:0;right:0}.content-box[data-v-874a3818]{width:100%;box-sizing:border-box;display:flex;flex-direction:column;padding:%?30?%}.tag-box[data-v-874a3818]{width:100%;box-sizing:border-box;height:%?80?%;line-height:%?80?%;font-size:%?28?%;font-weight:500;color:#ff7911}.label-lingqu[data-v-874a3818]{width:100%;font-size:%?28?%;font-weight:500;color:#333}.coupon-item1[data-v-874a3818]{width:%?690?%;height:%?120?%;margin-top:%?20?%;color:#fff;flex-shrink:0}.coupon-item2[data-v-874a3818]{width:%?690?%;height:%?120?%;background-size:%?690?% %?120?%;margin-top:%?20?%;color:#ff7911;flex-shrink:0}.un-coupon-item[data-v-874a3818]{color:#bbb}.money-box[data-v-874a3818]{font-size:%?40?%;font-weight:500}.info-box[data-v-874a3818]{font-size:%?24?%;font-weight:400;margin:%?10?%}.receive-success[data-v-874a3818]{width:100%;position:fixed;top:0;bottom:0;left:0;display:flex;flex-direction:column;align-items:center;justify-content:center;z-index:9999}.success-box[data-v-874a3818]{width:%?380?%;height:%?280?%;background:rgba(0,0,0,.5);border-radius:%?10?%;display:flex;flex-direction:column;align-items:center;justify-content:center}.success-box .success-img[data-v-874a3818]{width:%?200?%;height:%?130?%}.success-box .text[data-v-874a3818]{font-size:%?28?%;margin-top:%?50?%;font-weight:400;color:#fff}.check-img[data-v-874a3818]{width:%?40?%;height:%?40?%;margin-top:%?40?%}.mt30[data-v-874a3818]{margin-top:%?30?%}.activity-con .activity-box[data-v-874a3818]{display:flex;flex-direction:column;width:100%;height:%?1000?%}.activity-box .title-box[data-v-874a3818]{width:100%;height:%?100?%;display:flex;flex-direction:row;align-items:center;justify-content:center;position:relative;border-bottom:solid 1px #eee}.activity-coupon-box[data-v-874a3818]{display:flex;flex-direction:column;width:100%;overflow:auto;flex:1}.title-box .close-btn[data-v-874a3818]{width:%?100?%;height:%?100?%;box-sizing:border-box;padding:%?30?%;position:absolute;top:0;right:0}.content-box[data-v-874a3818]{width:100%;box-sizing:border-box;display:flex;flex-direction:column;padding:%?30?%}.tag-box[data-v-874a3818]{width:100%;box-sizing:border-box;height:%?80?%;line-height:%?80?%;font-size:%?28?%;font-weight:500;color:#ff7911}.label-lingqu[data-v-874a3818]{width:100%;font-size:%?28?%;font-weight:500;color:#333}.couponBox[data-v-874a3818]{display:flex;flex-flow:wrap;margin-top:%?30?%;justify-content:space-between}.coupon-item[data-v-874a3818]{width:48%;height:%?291?%;background:url(https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/couponsIcon.png) no-repeat top;margin-top:%?20?%;color:#c5aa7b;flex-shrink:0;text-align:center;padding-top:%?1?%;background-size:contain}.un-coupon-item[data-v-874a3818]{color:#bbb}.money-box[data-v-874a3818]{font-size:%?40?%;font-weight:500;margin-top:%?30?%}.integralPayBox[data-v-874a3818]{margin:%?20?% 0}.integralPayBox .integralBg[data-v-874a3818]{height:%?98?%;display:flex;justify-content:space-between;align-items:center;background:#fff;padding:0 %?20?%}.integralPayBox .integralBg .maxDeduction[data-v-874a3818]{margin-right:%?15?%}',""]),t.exports=e},e6ff:function(t,e,i){"use strict";var o=i("bdef"),n=i.n(o);n.a},fa9d:function(t,e,i){"use strict";i.d(e,"b",(function(){return o})),i.d(e,"c",(function(){return n})),i.d(e,"a",(function(){}));var o=function(){var t=this,e=t.$createElement,o=t._self._c||e;return t.loadingFlag?o("v-uni-view",{staticClass:"loading-content",on:{touchmove:function(e){e.stopPropagation(),e.preventDefault(),arguments[0]=e=t.$handleEvent(e),t.moveHandle.apply(void 0,arguments)},click:function(e){e.stopPropagation(),e.preventDefault(),arguments[0]=e=t.$handleEvent(e),t.moveHandle.apply(void 0,arguments)}}},[t._e(),o("v-uni-view",{staticClass:"loading-gif"},[o("v-uni-view",{staticClass:"flex mask"},[o("v-uni-image",{attrs:{src:i("a91a")}})],1)],1)],1):t._e()},n=[]}}]);
2 0 \ No newline at end of file
ceres-uniapp-master/unpackage/dist/build/web/static/js/pages_category_page1-orderModule-orderConfirm.a7ad821d.js 0 → 100644
  1 +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["pages_category_page1-orderModule-orderConfirm"],{"0a94":function(t,e,i){var o=i("c86c");e=o(!1),e.push([t.i,".pay-type-item[data-v-2da1c781] .uni-radio-input-checked{background-color:#c5aa7b!important;border-color:#c5aa7b!important}.maxIntegral[data-v-2da1c781] .uni-checkbox-input{width:%?30?%;height:%?30?%}.maxIntegral[data-v-2da1c781] .uni-checkbox-input-checked:before{font-size:%?30?%}.maxIntegral[data-v-2da1c781] .uni-checkbox-input-checked{border:%?2?% solid #c5aa7b!important}",""]),t.exports=e},1223:function(t,e,i){"use strict";i.d(e,"b",(function(){return n})),i.d(e,"c",(function(){return s})),i.d(e,"a",(function(){return o}));var o={uRadioGroup:i("81d4").default,uRadio:i("00c4").default},n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("v-uni-view",{staticClass:"cashier-list-content"},[i("u-radio-group",{attrs:{placement:"row",iconPlacement:"right"},on:{change:function(e){arguments[0]=e=t.$handleEvent(e),t.handleChangePaymentMode.apply(void 0,arguments)}},model:{value:t.paymentMode,callback:function(e){t.paymentMode=e},expression:"paymentMode"}},t._l(t.paymentList,(function(e){return i("v-uni-view",{key:e.id,staticClass:"cashier"},[i("v-uni-view",{staticClass:"cashier-item",on:{click:function(i){arguments[0]=i=t.$handleEvent(i),t.handleChangePaymentMode(e.paymentMode,e.disabled)}}},[i("v-uni-view",{staticClass:"icon-text"},[i("v-uni-image",{staticClass:"pay-type-img-inner",attrs:{src:e.icon,mode:"widthFix"}}),t._v(t._s(e.label)),3===t.paymentMode&&t.paymentMode===e.paymentMode?i("span",[t._v("(手续费:¥"+t._s(t.flowerObj.hbServiceChargeTotal)+")")]):t._e()],1),i("v-uni-view",{staticClass:"radio"},[i("u-radio",{attrs:{disabled:!e.disabled,activeColor:"#c5aa7b",name:e.paymentMode}})],1)],1),3===t.paymentMode&&t.paymentMode===e.paymentMode?i("v-uni-view",{staticClass:"ali-hb-content"},[i("u-radio-group",{attrs:{placement:"row",iconPlacement:"right"},on:{change:function(e){arguments[0]=e=t.$handleEvent(e),t.handleChangePeriods.apply(void 0,arguments)}},model:{value:t.flowerObj.hbByStagesPeriods,callback:function(e){t.$set(t.flowerObj,"hbByStagesPeriods",e)},expression:"flowerObj.hbByStagesPeriods"}},t._l(t.flowerObj.hbByStagesList,(function(e,o){return i("v-uni-view",{key:o,staticClass:"cashier"},[i("v-uni-view",{staticClass:"cashier-item",on:{click:function(i){arguments[0]=i=t.$handleEvent(i),t.handleChangePeriods(e.numberOfStages,e.disabled)}}},[i("v-uni-view",{staticClass:"icon-text"},[t._v(t._s(e.numberOfStages)+"期(¥"+t._s(e.price)+"/期)")]),i("v-uni-view",{staticClass:"radio-context"},[t._v("手续费:¥"+t._s(e.serviceCharge)+"/期"),i("u-radio",{staticClass:"radio",attrs:{activeColor:"#c5aa7b",disabled:e.disabled,name:e.numberOfStages}})],1)],1)],1)})),1)],1):t._e()],1)})),1)],1)},s=[]},"1abf":function(t,e,i){"use strict";i.r(e);var o=i("fa9d"),n=i("ac93");for(var s in n)["default"].indexOf(s)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(s);i("9a30");var a=i("828b"),r=Object(a["a"])(n["default"],o["b"],o["c"],!1,null,"137eceae",null,!1,o["a"],void 0);e["default"]=r.exports},"20d3":function(t,e,i){"use strict";i.r(e);var o=i("399d"),n=i("a5a6");for(var s in n)["default"].indexOf(s)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(s);i("4cbb"),i("6e80");var a=i("828b"),r=Object(a["a"])(n["default"],o["b"],o["c"],!1,null,"2da1c781",null,!1,o["a"],void 0);e["default"]=r.exports},2411:function(t,e,i){"use strict";i("6a54");var o=i("f5bd").default;Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=o(i("2634")),s=o(i("b7c7")),a=o(i("3471")),r=o(i("2fdc"));i("e966"),i("bf0f"),i("2797"),i("64aa"),i("aa9c"),i("c223"),i("e838"),i("d4b5"),i("fd3c"),i("5ef2"),i("2823"),i("c9b5"),i("ab80"),i("9327"),i("f7a5"),i("18f7"),i("de6c"),i("8f71");var c=i("a36f"),d=i("782e"),l=o(i("60ae")),u=i("83c8"),h=i("6d56"),p={components:{CashierList:l.default},data:function(){return{pointProductIds:"",couponActiveShowFalg:!1,settlement:{},type:0,skuItemDTOList:[],userAddressInfo:{},isShowDiscount:!1,isShopCoupons:!1,usableListLength:0,shopCouponsLength:0,shopCouponslist:[],promotionInfoDTO:{couponId:0,ifAdd:1,reduceMoney:0},shopInfoDTO:{},reduceMoney:0,submitActive:!0,distributionPrice:0,totalPrice:0,receiveId:"",totalCount:0,skuItemList:{},shopGroupWorkId:0,sumitType:"",collageId:null,couponIfAdd:!0,couponsList:[],shopCouIndex:0,shopIndex:0,shopCheckedType:!0,discountPrice:0,selectShopCoupon:[],huabeiDetail:!0,showHuabeiPopup:!1,huabeiChargeType:0,huabeiFeerateList:[],paymentMode:1,huabeiPeriod:3,chargeFeeList:[],fenqiFeeList:[],showWechatPayType:!1,showAlipayPayType:!1,showHuabeiPayType:!1,orderId:null,couponType:0,selectIntegral:!0,integralNum:0,ifShow:!1,integralRatio:0,integralPrice:0,orderCreditThreshold:0,integralShow:!1,checkedPlatformCoupon:void 0,oneClickSubmit:!0,isRegionalScope:!1,payObj:{},couponList:[],iscoupon:!1,couponId:{},ptyh:0}},onLoad:function(t){this.getQuery(),console.log(t,"options"),this.type=t.type,t.receiveId&&(this.receiveId=t.receiveId)},onShow:function(){uni.getStorageSync("receiveItem")&&(this.receiveId=uni.getStorageSync("receiveItem").receiveId),""!=uni.getStorageSync("skuItemDTOList")?(this.skuItemDTOList=uni.getStorageSync("skuItemDTOList"),console.log(this.skuItemDTOList,"66666"),this.skuItemDTOList[0].shopDiscountId>0?this.sumitType=4:this.skuItemDTOList[0].shopSeckillId>0&&(this.sumitType=3),this.getSettlement(!1)):""!=uni.getStorageSync("skuItemList")&&(this.skuItemList=uni.getStorageSync("skuItemList"),this.shopGroupWorkId=this.skuItemList.shopGroupWorkId,this.sumitType=this.skuItemList.type,this.collageId=this.skuItemList.collageId,this.getSettlement(!0))},onBackPress:function(t){return"navigateBack"!==t.from&&(this.back(),!0)},filters:{clip2Decimal:function(t){return void 0===t||null===t?"0.00":(parseInt(100*t)/100).toFixed(2)}},methods:{changecoupon:function(){this.iscoupon=!0,this.getcon()},getcon:function(){var t=this,e=this;u.request(h.couponnew,{page:1,pageSize:10,userPhone:uni.getStorageSync("storage_key").phone},"POST").then((function(i){if(i.data.length>0){t.couponList=[];var o=[],n=[];i.data.forEach((function(i){console.error(i),"1"==i.couponType?(i.usageThreshold=Number(i.usageThreshold)/100,i.discountContent=Number(i.discountContent)/100,i.maxDiscountAmount=Number(i.maxDiscountAmount)/100):(i.discountContent=Number(i.discountContent),i.usageThreshold=Number(i.usageThreshold)/100,i.maxDiscountAmount=Number(i.maxDiscountAmount)/100),"2"==i.coupon.couponStatus&&function(){var s=0;if(i.istrue=!0,i.cereCouponCategories.length>0)for(var a=e.settlement.shops.length,r=function(o){var n=i.cereCouponCategories[o];if("3"==n.usedMerchants)for(var r=0;r<a;r++){var c=e.settlement.shops[r];c.skus.forEach((function(t){s+=t.price*t.number})),c.shopId!=n.categoryId&&(i.istrue=!1)}if("1"==n.usedMerchants)for(var d=0;d<a;d++){var l=t.settlement.shops[d];l.skus.forEach((function(t){t.categoryId!=n.categoryId&&(i.istrue=!1,s+=t.price*t.number)}))}},c=0;c<i.cereCouponCategories.length;c++)r(c);else for(var d=e.settlement.shops.length,l=0;l<d;l++){var u=e.settlement.shops[l];u.skus.forEach((function(t){s+=t.price*t.number}))}console.error(s,i.usageThreshold),"1"==i.couponType&&(s>=i.usageThreshold||(i.istrue=!1,console.error("满减不够"))),i.istrue?o.push(i):n.push(i)}()})),t.couponList=[].concat(o,n),t.couponList.forEach((function(t){t.checked=!1,t.usedMerchants="1"}))}}))},changemony:function(){console.error(this.couponId);this.couponId.id&&("1"==this.couponId.useCategory&&"1"==this.couponId.usedMerchants?console.log("直接使用平台券"):"1"==this.couponId.useCategory&&"3"==this.couponId.usedMerchants?console.log("限制商家id"):"2"==this.couponId.useCategory&&"3"==this.couponId.usedMerchants?console.log("限制商家id类别"):"2"==this.couponId.useCategory&&"1"==this.couponId.usedMerchants&&console.log("限制类别"));var t=0;if(console.error(this.settlement.shops),this.couponId.cereCouponCategories.length>0)for(var e=0;e<this.couponId.cereCouponCategories.length;e++){var i=this.couponId.cereCouponCategories[e];if("3"==i.usedMerchants)for(var o=0;o<this.settlement.shops.length;o++){var n=this.settlement.shops[o];if(n.shopId==i.categoryId){console.error("===");for(var s=0;s<n.skus.length;s++)console.error(n.skus[s].price),t+=n.skus[s].price*n.skus[s].number}}if("1"==i.usedMerchants)for(var a=0;a<this.settlement.shops.length;a++)for(var r=this.settlement.shops[a],c=0;c<r.skus.length;c++)console.error(r.skus[c].price),r.skus[c].categoryId==i.categoryId&&(t+=r.skus[c].price*r.skus[c].number)}else for(var d=0;d<this.settlement.shops.length;d++)for(var l=this.settlement.shops[d],u=0;u<l.skus.length;u++)console.error(l.skus[u].price),t+=l.skus[u].price*l.skus[u].number;console.error("可以优惠的金额",t);var h=0;if("1"==this.couponId.couponType)t>=this.couponId.usageThreshold?h=this.couponId.discountContent:uni.showToast({icon:"none",title:"满减不够"});else if(t*(1-this.couponId.discountContent/10)>=this.couponId.maxDiscountAmount)h=this.couponId.maxDiscountAmount;else{var p=t*(1-this.couponId.discountContent/10);h=p.toFixed(2)}this.ptyh=h,console.error(h)},getQuery:function(){var t=this;u.request(h.Query,{name:"credit_exchange_rate"},"GET").then((function(e){t.integralRatio=parseFloat(e.data.dictDescribe)})).catch((function(t){console.log("平台端未配置积分兑换比例(1积分抵扣多少金额)")}))},changeIntegral:function(){this.selectIntegral=!this.selectIntegral,this.selectIntegral?this.totalPrice=this.totalPrice-this.integralPrice:this.totalPrice=this.totalPrice+this.integralPrice},back:function(){2==this.type||this.type?uni.switchTab({url:"../../pages/tabbar/cart/index"}):uni.navigateBack({delta:1})},getSettlement:function(t){var e=this;uni.showLoading({title:"加载中..."}),this.ifShow=!0;var i="",o="";t?(i=h.getGroupSettlement,o=this.skuItemList):(i=h.Settlement,o={type:this.type,shops:this.skuItemDTOList,receiveId:this.receiveId},console.log(this.skuItemDTOList,"this.skuItemDTOList")),console.error(JSON.stringify(o)),u.request(i,o,"POST").then((function(t){uni.hideLoading(),e.settlement=t.data,e.couponsList=t.data.coupons,e.huabeiChargeType=t.data.huabeiChargeType,2===e.huabeiChargeType?e.huabeiFeerateList=t.data.huabeiFeerateList:e.huabeiFeerateList=[0,0,0];var i=e.settlement.shops.length;e.settlement.shops.forEach((function(t){t["totalNum"]=t.total,t["pricing"]=0})),e.settlement.receive.receiveAdress||e.settlement.shops.map((function(t){e.totalCount+=t.number,e.totalPrice+=t.total||t.totalNum})),e.settlement.coupons.length>0&&e.settlement.coupons.forEach((function(t){t.checked=!1})),e.settlement.shops.forEach((function(t){t.totalAfterDiscount=t.total}));for(var o=0;o<i;o++){var n=e.settlement.shops[o];if(n.skus.forEach((function(t){t["skuTotalNum"]=t.total})),n.shopCoupons.length>0){n.shopCoupons.forEach((function(t){t.checked=!1}));var s=n.shopCoupons[0];e.shopCouponItemTap(0,s)}}if(uni.getStorageSync("receiveItem")){var a=uni.getStorageSync("receiveItem");e.userAddressInfo=a,e.receiveId=a.receiveId,e.userAddressInfo.receivePhone=(0,c.hidden)(e.userAddressInfo.receivePhone,3,4)}else t.data.receive&&(e.receiveId=t.data.receive.receiveId,e.userAddressInfo=t.data.receive,e.userAddressInfo.receivePhone=(0,c.hidden)(e.userAddressInfo.receivePhone,3,4));uni.removeStorageSync("receiveItem"),e.usableListLength=t.data.coupons.length,e.isReceiveCan(),e.getTotal()})).catch((function(t){uni.hideLoading()}))},isReceiveCan:function(){var t=this;this.settlement.shops.map((function(e){e.receiveNotMatch&&(t.isRegionalScope=e.receiveNotMatch),t.isRegionalScope&&uni.showToast({title:"当前地址不支持配送,请参与红色字提示",icon:"none"})}))},addAddressTap:function(){uni.navigateTo({url:"../../pages_category_page2/userModule/address?type="+this.type})},getDate:function(t){return t?t.split(" ")[0]:""},couponItemTap:function(t,e){if(!e.checked&&this.selectShopCoupon.length)return uni.showToast({title:"不可与商家券叠加使用!",icon:"none"}),!1;if(e.checked){var i={};e.couponId&&(i["couponId"]=0,i["ifAdd"]=1,i["reduceMoney"]=0),this.promotionInfoDTO=i,e.checked=!1,this.isShowDiscount=!1,this.checkedPlatformCoupon=void 0,this.settlement.shops.forEach((function(t){t.skus&&t.skus.forEach((function(t){t.buyerCouponId=null}))})),this.getTotal()}else{this.settlement.coupons.forEach((function(t){t.checked=!1}));for(var o=0,n=this.settlement.shops.length,s=[],a=0;a<n;a++){for(var r=0,c=0,d=this.settlement.shops[a],l=d.skus.length,u=[],h=0;h<l;h++){var p=d.skus[h];p.priceId>0&&c++;var f=e.ids;f.indexOf(p.productId)>-1&&(p.priceId>0?u.push(p):(s.push(p),r+=p.price*p.number))}c===u.length&&(o+=d.priceAfterDiscount,s=s.concat(u)),o+=r}if(this.settlement.shops[this.shopIndex].total<e.fullMoney)return uni.showToast({title:"不满足优惠券使用条件!",icon:"none"}),!1;if(1===e.couponType&&e.reduceMoney>=o)return uni.showToast({title:"不可使用大于等于合计金额的优惠劵!",icon:"none"}),!1;e.useMoney=o;var v={};e.couponId&&(v["couponId"]=e.couponId,v["ifAdd"]=e.ifAdd,v["couponType"]=e.couponType,v["reduceMoney"]=e.reduceMoney),this.promotionInfoDTO=v,this.isShowDiscount=!1,this.checkedPlatformCoupon=e,s.forEach((function(t){t.buyerCouponId=e.couponId})),this.getTotal(),e.checked=!0}},couponcouponList:function(t,e){if(e.istrue){for(var i=0;i<this.couponList.length;i++)this.couponList[i].ischecked=!1;this.couponList[t].ischecked=!0,this.couponId=this.couponList[t],this.changemony(),this.$forceUpdate(),this.iscoupon=!1}else uni.showToast({icon:"none",title:"当前优惠券无法使用"})},shopCouponItemTap:function(t,e){if(console.log(t,e.checked),e.checked)return e.checked=!1,this.settlement.shops[this.shopIndex].totalAfterDiscount=this.settlement.shops[this.shopIndex].total,this.settlement.shops[this.shopIndex].currentCoupon={},this.settlement.shops[this.shopIndex].skus.forEach((function(t){t.buyerShopCouponId=null})),this.isShopCoupons=!1,this.selectShopCoupon=[],this.getTotal(),!1;if(this.settlement.shops[this.shopIndex].total<e.fullMoney)uni.showToast({title:"不满足优惠券使用条件!",icon:"none"});else if(1===e.couponType&&this.settlement.shops[this.shopIndex].total<e.reduceMoney)uni.showToast({title:"不可使用大于商品金额的优惠劵!",icon:"none"});else{if(0!==this.promotionInfoDTO.couponId)return uni.showToast({title:"此券不可与平台券叠加!",icon:"none"}),!1;if(1===e.couponType&&e.reduceMoney>=this.settlement.shops[this.shopIndex].total)return uni.showToast({title:"优惠券优惠金额不能大于等于合计金额!",icon:"none"}),!1;this.isShopCoupons=!1;var i=this.useShopCoupon(this.shopIndex,t);if(console.log(i),i){for(var o=0;o<this.selectShopCoupon.length;o++)this.selectShopCoupon[o].checked=!1;this.selectShopCoupon=[],e.checked=!0,this.settlement.shops[this.shopIndex].currentCoupon=e,this.settlement.shops[this.shopIndex].skus.forEach((function(t){t.buyerShopCouponId>0&&t.buyerShopCouponId!==e.shopCouponId&&(t.buyerShopCouponId=null)})),this.selectShopCoupon.push(e)}else this.settlement.shops[this.shopIndex].totalAfterDiscount=this.settlement.shops[this.shopIndex].total;this.getTotal()}},useShopCoupon:function(t,e){var i,o=this.settlement.shops[t];if(o.totalAfterDiscount=0,o.shopCoupons&&o.shopCoupons.length>0&&(i=o.shopCoupons[e]),!i)return!1;var n=!1,s=[],a=[];if(1!==i.applyType){for(var r=i.ids,c=o.skus.length,d=0,l=0,u=0,h=0;h<c;h++){var p=o.skus[h];p.priceId>0&&u++,r.indexOf(p.productId)>-1&&(p.priceId>0?a.push(p):(s.push(p),d+=p.price*p.number))}u===a.length&&(l=o.priceAfterDiscount);var f=l+d;if(f<i.fullMoney||1===i.couponType&&f<=i.reduceMoney)return!1;if(1===i.couponType)o.totalAfterDiscount=o.total-i.reduceMoney,n=!0;else{var v=(f*((10-i.reduceMoney)/10)).toFixed(2),g=o.total-v;g.toFixed(2)>=.01&&(o.totalAfterDiscount=g.toFixed(2),n=!0)}if(n){if(u===a.length)for(var m=a.length,b=0;b<m;b++)a[b].buyerShopCouponId=i.shopCouponId;for(var y=s.length,x=0;x<y;x++)s[x].buyerShopCouponId=i.shopCouponId}}else{if(1===i.couponType)o.total>i.reduceMoney&&(o.totalAfterDiscount=o.total-i.reduceMoney,n=!0);else if(o.total>i.fullMoney){var w=(o.total*((10-i.reduceMoney)/10)).toFixed(2),C=o.total-w;C.toFixed(2)>=.01&&(o.totalAfterDiscount=C.toFixed(2),n=!0)}if(n)for(var I=o.skus.length,k=0;k<I;k++)o.skus[k].buyerShopCouponId=i.shopCouponId}return n},getTotal:function(){var t=this;this.totalPrice=0,this.totalCount=0,this.integralPrice=0,this.integralNum=0;var e=0,i=this.settlement.shops.length;console.log(this.settlement,"fsfsfs");for(var o=0;o<i;o++)this.totalPrice+=parseFloat(this.settlement.shops[o].totalAfterDiscount),e+=parseFloat(this.settlement.shops[o].totalAfterDiscount),this.totalCount+=this.settlement.shops[o].number;if(this.checkedPlatformCoupon){var n=this.checkedPlatformCoupon.couponType,s=this.checkedPlatformCoupon.reduceMoney;if(1===n&&this.totalPrice-s>0)this.totalPrice=e-s;else if(2===n&&s>0){var a=this.checkedPlatformCoupon.useMoney;this.totalPrice=e-a+a*s/10}}this.calcCredit(),this.settlement.shops.forEach((function(e){t.totalPrice=t.totalPrice+(e.distribution.distributionPrice||0)}))},calcCredit:function(){var t=this.settlement.shops.length,e=this.calcSkuRemainMap(),i=this.settlement.skuCreditMap;if(i&&this.integralRatio>0){this.orderCreditThreshold=this.settlement.orderCreditThreshold;var o=this.settlement.userTotalCredit,n=Math.round(100*(this.totalPrice+Number.EPSILON))/100,s=this.settlement.creditDeductLimit;if(this.totalPrice>=this.orderCreditThreshold&&o>0&&s>0)for(var a=0;a<t;a++)for(var r=this.settlement.shops[a],c=r.skus.length,d=0;d<c;d++){var l=r.skus[d],u=l.skuId;if(i[u]>0&&e[u]>0&&o>0&&n>0){n-e[u]<.01&&(e[u]-=.01);var h=parseInt((e[u]/this.integralRatio).toString());i[u]<h&&(h=i[u]),o<h&&(h=o),s<h&&(h=s),l.cachedCredit=h,this.integralNum+=h,o-=h,s-=h,n-=h}}0!==this.integralNum?(this.integralNum=parseInt(this.integralNum),this.integralPrice=this.integralNum*this.integralRatio,0!==this.integralNum&&(this.integralShow=!0),this.selectIntegral&&(this.totalPrice=this.totalPrice-this.integralPrice)):this.integralShow=!1}},calcSkuRemainMap:function(){for(var t={},e=this.settlement.shops.length,i=this.settlement.skuCreditMap,o=0;o<e;o++){var n=this.settlement.shops[o],s=n.skus.length,a=void 0;n.shopCoupons.forEach((function(t){t.checked&&(a=t)}));for(var r=0;r<s;r++){var c=n.skus[r],d=c.skuId;if(!c.priceId>0&&i[d]>0){var l=c.price*c.number;if(a){var u=l/n.total,h=0;h=1===a.couponType?a.reduceMoney*u:l*(10-a.reduceMoney)/10,l-=h}if(this.checkedPlatformCoupon&&l>0)if(1===this.checkedPlatformCoupon.couponType){var p=l/this.totalPrice;l-=this.checkedPlatformCoupon.reduceMoney*p}else l=l*this.checkedPlatformCoupon.reduceMoney/10;t[d]=l}}}return t},showDiscount:function(){if(this.settlement.coupons.length>0){for(var t=0;t<this.selectShopCoupon.length;t++)if(0==this.selectShopCoupon[t].ifAdd)return uni.showToast({title:"不可叠加已选择的店铺券",icon:"none"}),!1;this.isShowDiscount=!0}else uni.showToast({title:"暂无可用优惠券",icon:"none"})},showShopCoupons:function(t,e){t.shopCoupons.length>0?(this.isShopCoupons=!0,this.shopCouponslist=t,this.shopCouponsLength=t.shopCoupons.length,this.shopIndex=e):uni.showToast({title:"暂无可用优惠券",icon:"none"})},onDiscountClose:function(){this.isShowDiscount=!1},onshopClose:function(){this.isShopCoupons=!1},handleCheckOrderForm:function(){return this.payObj.paymentMode?this.oneClickSubmit?this.userAddressInfo.receiveName?(this.oneClickSubmit=!1,!0):(uni.showToast({icon:"none",title:"请选择收货地址"}),!1):(uni.showToast({title:"已提交,请勿重新操作!",icon:"none"}),!1):(uni.showToast({title:"请选择支付方式",icon:"none"}),!1)},handleChangeCashier:function(t){this.payObj=t,console.log(t)},handlePackageData:function(){uni.showLoading({mask:!0,title:"订单提交中..."});var t=null;this.promotionInfoDTO.couponId&&(t=this.promotionInfoDTO.couponId);var e={shopDiscountId:null,collageId:this.collageId,type:this.sumitType,shopGroupWorkId:null,receiveId:this.receiveId,couponId:t,price:this.totalPrice,remark:"",shops:[],discountPrice:this.discountPrice,shopSeckillId:null};this.shopGroupWorkId>0&&(e.shopGroupWorkId=this.shopGroupWorkId),""!=this.skuItemDTOList&&(this.skuItemDTOList[0].shopDiscountId>0?e.shopDiscountId=this.skuItemDTOList[0].shopDiscountId:this.skuItemDTOList[0].shopSeckillId>0&&(e.shopSeckillId=this.skuItemDTOList[0].shopSeckillId));for(var i=this.settlement.shops.length,o=0;o<i;o++){var n={};n["shopId"]=this.settlement.shops[o].shopId,n["sceneId"]=this.settlement.shops[o].sceneId,n["distribution"]={},n["skus"]=[],this.settlement.shops[o].currentCoupon&&(n["id"]=this.settlement.shops[o].currentCoupon.id),e.shops.push(n),e.shops[o].distribution.distributionPrice=this.settlement.shops[o].distribution.distributionPrice,e.shops[o].distribution.distributionName=this.settlement.shops[o].distribution.distributionName;for(var s=this.settlement.shops[o].skus.length,a=0;a<s;a++){var r={},c=this.settlement.shops[o].skus[a];r["skuId"]=c.skuId,r["number"]=c.number,r["ifLogistics"]=c.ifLogistics,r["selected"]=c.selected,r["platformSeckillId"]=c.platformSeckillId,r["platformDiscountId"]=c.platformDiscountId,r["shopSeckillId"]=c.shopSeckillId,r["shopDiscountId"]=c.shopDiscountId,r["sceneId"]=c.sceneId,r["priceId"]=c.priceId,r["useMember"]=c.useMember,r["composeId"]=c.composeId,this.pointProductIds+=c.productId+",",this.selectIntegral&&c.cachedCredit&&(r["useCredit"]=c.cachedCredit,r["useCreditAmount"]=(c.cachedCredit*this.integralRatio).toFixed(2)),e.shops[o].skus.push(r)}}return this.pointProductIds.endsWith(",")&&(this.pointProductIds=this.pointProductIds.slice(0,-1)),this.handleSetPayMode(e),uni.hideLoading(),e},handleSetPayMode:function(t){t.paymentMode=this.payObj.paymentMode,t.subPaymentMode=3},submitOrder:function(){var t=this;return(0,r.default)((0,n.default)().mark((function e(){var i,o,r,c,l;return(0,n.default)().wrap((function(e){while(1)switch(e.prev=e.next){case 0:if(t,t.handleCheckOrderForm()){e.next=3;break}return e.abrupt("return");case 3:if(i=t.handlePackageData(),console.error(t.couponId),t.couponId.id&&(i.couponId=t.couponId.coupon.keyId,i.discountPrice=i.discountPrice+t.ptyh,i.price=i.price-t.ptyh),console.error(i),uni.showLoading({mask:!0,title:"结算中..."}),e.prev=8,console.log("结算中结算中结算中结算中结算中结算中",i),o={},uni.getStorageSync("storage_key")&&(o={phone:uni.getStorageSync("storage_key").phone}),1!=t.integralShow||1!=t.selectIntegral){e.next=17;break}return e.next=15,u.request(h.huiyuanList,o,"POST");case 15:r=e.sent,i.merchantId=JSON.parse(r.data).data.id;case 17:return e.next=19,u.request(h.PlaceOrder,i,"POST");case 19:if(c=e.sent,t.$store.dispatch("doPointer",{eventType:3,productIds:t.pointProductIds}),2!=t.type){e.next=23;break}return e.delegateYield((0,n.default)().mark((function t(){var e,o,r,c,d,l,p,f;return(0,n.default)().wrap((function(t){while(1)switch(t.prev=t.next){case 0:e=i.shops,o=uni.getStorageSync("dataList"),r=[],c=(0,a.default)(o);try{for(c.s();!(d=c.n()).done;)l=d.value,r=[].concat((0,s.default)(r),(0,s.default)(l.skus.filter((function(t){return 1===t.selected||!0===t.selected})).map((function(t){return t.skuId}))))}catch(n){c.e(n)}finally{c.f()}return t.next=7,u.request(h.DeleteCart,{ids:r},"POST");case 7:for(p=[],f=0;f<e.length;f++)e[f].skus.map((function(t){p.push(t.skuId)}));case 9:case"end":return t.stop()}}),t)}))(),"t0",23);case 23:return l=c.data,t.orderId=c.data.orderId,l.type=1,l.paymentMode=i.paymentMode,t.payObj.paymentMode&&t.payObj.huabeiPeriod&&(l.huabeiPeriod=t.payObj.huabeiPeriod),e.next=30,d.handleDoPay.call(t,l);case 30:e.next=36;break;case 32:e.prev=32,e.t1=e["catch"](8),t.oneClickSubmit=!0,uni.showToast({title:"订单结算错误",icon:"none"});case 36:return e.prev=36,uni.hideLoading(),e.finish(36);case 39:case"end":return e.stop()}}),e,null,[[8,32,36,39]])})))()}}};e.default=p},2823:function(t,e,i){"use strict";var o=i("8bdb");o({target:"Number",stat:!0,nonConfigurable:!0,nonWritable:!0},{EPSILON:Math.pow(2,-52)})},"30f7":function(t,e,i){"use strict";i("6a54"),Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")},i("7a76"),i("c9b5")},"324e":function(t,e,i){var o=i("0a94");o.__esModule&&(o=o.default),"string"===typeof o&&(o=[[t.i,o,""]]),o.locals&&(t.exports=o.locals);var n=i("967d").default;n("4e1989f6",o,!0,{sourceMap:!1,shadowMode:!1})},3471:function(t,e,i){"use strict";i("6a54"),Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(t,e){var i="undefined"!==typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!i){if(Array.isArray(t)||(i=(0,o.default)(t))||e&&t&&"number"===typeof t.length){i&&(t=i);var n=0,s=function(){};return{s:s,n:function(){return n>=t.length?{done:!0}:{done:!1,value:t[n++]}},e:function(t){throw t},f:s}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,r=!0,c=!1;return{s:function(){i=i.call(t)},n:function(){var t=i.next();return r=t.done,t},e:function(t){c=!0,a=t},f:function(){try{r||null==i["return"]||i["return"]()}finally{if(c)throw a}}}},i("01a2"),i("e39c"),i("bf0f"),i("844d"),i("18f7"),i("de6c"),i("7a76"),i("c9b5");var o=function(t){return t&&t.__esModule?t:{default:t}}(i("5d6b"))},"399d":function(t,e,i){"use strict";i.d(e,"b",(function(){return n})),i.d(e,"c",(function(){return s})),i.d(e,"a",(function(){return o}));var o={globalLoading:i("1abf").default,uPopup:i("7bd4").default},n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("v-uni-view",[i("global-loading"),t.ifShow?i("v-uni-view",[i("v-uni-view",{staticClass:"content"},[i("v-uni-view",{staticClass:"address-box",on:{click:function(e){arguments[0]=e=t.$handleEvent(e),t.addAddressTap.apply(void 0,arguments)}}},[i("v-uni-image",{staticClass:"address-img",attrs:{src:"https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/orderAddress.png"}}),t.userAddressInfo.receiveName?i("v-uni-view",{staticClass:"address-r"},[i("v-uni-view",{staticClass:"address-name-box"},[i("v-uni-text",[t._v(t._s(t.userAddressInfo.receiveName))]),i("v-uni-text",{staticClass:"phone"},[t._v(t._s(t.userAddressInfo.receivePhone))])],1),i("v-uni-view",{staticClass:"address-info"},[i("v-uni-text",[t._v(t._s(t.userAddressInfo.receiveAdress)+" "+t._s(t.userAddressInfo.address))])],1)],1):i("v-uni-view",{staticClass:"address-r"},[i("v-uni-text",[t._v("你还没有收货地址哦,点击这里添加")])],1),i("v-uni-image",{staticClass:"arrow-right-img",attrs:{src:"https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/greyArrow.png"}})],1),i("v-uni-view",{staticClass:"order-list-box"},t._l(t.settlement.shops,(function(e,o){return i("v-uni-view",{key:e.shopId,staticClass:"item"},[i("v-uni-view",{staticClass:"order-list-top"},[i("v-uni-view",{staticClass:"top-l"},[i("v-uni-image",{staticClass:"shop-img",attrs:{src:"https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/orderStoreIcon.png"}}),i("v-uni-text",{staticClass:"shop-name"},[t._v(t._s(e.shopName))])],1)],1),i("v-uni-view",{staticClass:"order-info-box"},[i("v-uni-view",{staticClass:"order-info"},[t._l(e.skus,(function(e,o){return i("v-uni-view",{key:e.productId,staticClass:"order-info-item"},[i("v-uni-image",{staticClass:"product-img",attrs:{src:t.$baseURL+e.image}}),i("v-uni-view",{staticClass:"info-box"},[i("v-uni-text",{staticClass:"product-name"},[t._v(t._s(e.productName))]),i("v-uni-view",{staticClass:"product-sku"},t._l(e.values,(function(e,o){return i("v-uni-view",[i("v-uni-label",{staticClass:"mar-left-20"},[t._v("规格:"+t._s(e))])],1)})),1),i("v-uni-view",{staticClass:"price-sku-box flex-display flex-sp-between"},[i("v-uni-view",{staticClass:"product-price"},[i("v-uni-text",{staticClass:"fuhao"},[t._v("¥")]),t._v(t._s(e.price))],1),i("v-uni-view",{staticClass:"product-num"},[t._v("x "+t._s(e.number))])],1)],1)],1)})),e.receiveNotMatch?i("v-uni-view",{staticClass:"adressTips"},[t._v("当前地址不支持配送,可更换其他地址试试")]):t._e(),i("v-uni-view",{staticClass:"delivery-way-box"},[i("v-uni-view",[i("v-uni-view",{staticClass:"item"},[i("v-uni-view",{staticClass:"flex-items"},[i("v-uni-text",[t._v("配送方式")])],1),i("v-uni-view",{staticClass:"flex-row-plus flex-items"},[e.distribution.distributionPrice>0?i("v-uni-text",[t._v("快递 ¥\n\t\t\t\t\t\t\t\t\t\t\t\t\t"+t._s(e.distribution.distributionPrice))]):i("v-uni-text",[t._v("快递 免邮")])],1)],1),i("v-uni-view",{staticClass:"flex-item"},t._l(e.skuDiscountInfoMap,(function(e,o){return i("v-uni-text",{staticClass:"font-color-666 fs24"},[t._v(t._s(e[0]))])})),1)],1)],1)],2),e.shopCoupons.length>0?i("v-uni-view",{staticClass:"discount-item1",on:{click:function(i){arguments[0]=i=t.$handleEvent(i),t.showShopCoupons(e,o)}}},[i("v-uni-view",{staticClass:"discount-label"},[t._v("店铺优惠")]),i("v-uni-view",{staticClass:"discount-info-box flex-items"},[e.currentCoupon&&1===e.currentCoupon.couponType?i("v-uni-view",{staticClass:"discount-info2"},[t._v("-¥"+t._s(e.currentCoupon.reduceMoney))]):t._e(),e.currentCoupon&&2===e.currentCoupon.couponType?i("v-uni-view",{staticClass:"discount-info2"},[t._v(t._s(e.currentCoupon.reduceMoney)+"折券")]):t._e(),i("v-uni-image",{staticClass:"discount-img",attrs:{src:"https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/arrowRight.png"}})],1)],1):t._e(),i("v-uni-view",{staticClass:"order-total-box"},[i("v-uni-text",{staticClass:"total-num"},[t._v("共"+t._s(e.number)+"件")]),i("v-uni-text",{staticClass:"total-num ml10"},[t._v("总计")]),e.totalAfterDiscount>0?i("v-uni-text",{staticClass:"total-price ml10"},[t._v("¥"+t._s((parseFloat(e.totalAfterDiscount)+parseFloat(e.distribution.distributionPrice||0)).toFixed(2)))]):i("v-uni-text",{staticClass:"total-price ml10"},[t._v("¥0.00")])],1)],1)],1)})),1),i("v-uni-view",{staticClass:"discount-item",on:{click:function(e){arguments[0]=e=t.$handleEvent(e),t.changecoupon.apply(void 0,arguments)}}},[i("v-uni-view",{staticClass:"discount-label"},[t._v("优惠券选择")]),i("v-uni-view",{staticClass:"discount-info-box flex-items"},[0==t.couponList.length?i("v-uni-view",{staticClass:"discount-info1"},[t._v("暂无优惠券")]):t.couponId.couponName?i("v-uni-view",{staticClass:"discount-info1"},[t._v(t._s(t.couponId.couponName))]):i("v-uni-view",{staticClass:"discount-info1"},[t._v("暂无选择")]),i("v-uni-image",{staticClass:"discount-img",attrs:{src:"https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/arrowRight.png"}})],1)],1),t.integralShow?i("v-uni-view",{staticClass:"integralPayBox"},[i("v-uni-view",{staticClass:"integralBg"},[i("v-uni-view",{staticClass:"integralTit fs26"},[t._v("可用"+t._s(t.integralNum)+"积分抵扣"+t._s(t.integralPrice.toFixed(2))+"元")]),i("v-uni-view",{staticClass:"maxIntegral"},[i("v-uni-checkbox-group",{staticStyle:{width:"50rpx"},on:{change:function(e){arguments[0]=e=t.$handleEvent(e),t.changeIntegral.apply(void 0,arguments)}}},[i("v-uni-checkbox",{staticClass:"integralCheckbox",staticStyle:{transform:"scale(0.7)"},attrs:{color:"#C5AA7B",value:"1",checked:t.selectIntegral}})],1)],1)],1)],1):t._e(),i("v-uni-view",{staticClass:"cashier-box"},[i("CashierList",{attrs:{"total-price":t.totalPrice},on:{change:function(e){arguments[0]=e=t.$handleEvent(e),t.handleChangeCashier.apply(void 0,arguments)}}})],1),i("v-uni-view",{staticClass:"order-flow-box"},[i("v-uni-view",{staticClass:"flow-word"},[t._v("交易流程:")]),i("v-uni-view",{staticClass:"flow-word mt25"},[i("v-uni-text",[t._v("1、填写收货信息并完成支付")]),i("v-uni-text",[t._v("2、双方根据物品的交易方式进行交易")]),i("v-uni-text",[t._v("3、拿到物品,交易结束")])],1),i("v-uni-view",{staticClass:"flow-word mt50"},[t._v("注:应国家邮政总局的要求,即日起涉及到个人快递包裹必须收件人实名制,否则将影响到收寄配送。请避免使用「先生,男士,小姐,女士,昵称」等模糊称谓。")])],1)],1),i("v-uni-view",{staticClass:"order-confirm-box",staticStyle:{"padding-bottom":"30upx"}},[i("v-uni-view",{staticClass:"flex-items flex-sp-between"},[i("v-uni-text",{staticClass:"num-box"},[t._v("共"+t._s(t.totalCount)+"件")]),i("v-uni-view",[t.ptyh?i("v-uni-text",{staticStyle:{color:"#999","font-size":"24rpx"}},[t._v("(平台优惠:¥"+t._s(t.ptyh)+")")]):t._e(),i("v-uni-text",{staticClass:"total"},[t._v("合计:")]),t.totalPrice>0?i("v-uni-text",{staticClass:"price"},[t._v("¥"+t._s((t.totalPrice-t.ptyh).toFixed(2)))]):i("v-uni-text",{staticClass:"price"},[t._v("¥0.00")])],1)],1),t.isRegionalScope?i("v-uni-button",{staticClass:"btn unActive",attrs:{type:"default",disabled:!1}},[t._v("提交订单")]):i("v-uni-button",{class:[t.submitActive?"btn active":"btn"],on:{click:function(e){arguments[0]=e=t.$handleEvent(e),t.submitOrder.apply(void 0,arguments)}}},[t._v("提交订单")])],1),i("u-popup",{staticClass:"activity-con",attrs:{mode:"bottom","border-radius":"14","close-icon-pos":"top-right","close-icon-size":"20"},model:{value:t.isShowDiscount,callback:function(e){t.isShowDiscount=e},expression:"isShowDiscount"}},[i("v-uni-view",{staticClass:"activity-box",staticStyle:{height:"1000rpx"}},[i("v-uni-view",{staticClass:"title-box"},[i("v-uni-image",{staticClass:"close-btn",attrs:{src:"https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/close.png"},on:{click:function(e){arguments[0]=e=t.$handleEvent(e),t.onDiscountClose.apply(void 0,arguments)}}})],1),i("v-uni-view",{staticClass:"activity-coupon-box"},[i("v-uni-scroll-view",{staticStyle:{height:"900rpx"},attrs:{"scroll-y":"true"}},[i("v-uni-view",{staticClass:"content-box"},[i("v-uni-view",[i("v-uni-view",{staticClass:"label-lingqu"},[t._v("可用优惠券列表")]),i("v-uni-view",{staticClass:"couponBox"},t._l(t.settlement.coupons,(function(e,o){return i("v-uni-view",{key:o,staticClass:"coupon-item",on:{click:function(i){arguments[0]=i=t.$handleEvent(i),t.couponItemTap(o,e)}}},[1===e.couponType?i("v-uni-view",{staticClass:"money-box"},[t._v("¥"+t._s(e.reduceMoney))]):i("v-uni-view",{staticClass:"money-box"},[t._v(t._s(e.reduceMoney)+"折券")]),i("v-uni-view",{staticClass:"info-box"},[i("v-uni-view",{staticClass:"date font-color-999",staticStyle:{"font-size":"22upx","margin-top":"20upx"}},[t._v(t._s(t.getDate(e.startTime.replace(/-/g,".")))+"-"+t._s(t.getDate(e.endTime.replace(/-/g,"."))))]),i("v-uni-view",{staticClass:"info font-color-999"},[t._v("满"+t._s(e.fullMoney)+"元可用")])],1),e.checked?i("v-uni-image",{staticClass:"check-img",attrs:{src:"https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectActive.png"}}):i("v-uni-image",{staticClass:"check-img",attrs:{src:"https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectEmpty.png"}})],1)})),1)],1)],1)],1)],1)],1)],1),i("u-popup",{staticClass:"activity-con",attrs:{mode:"bottom","border-radius":"14","close-icon-pos":"top-right","close-icon-size":"20"},model:{value:t.isShopCoupons,callback:function(e){t.isShopCoupons=e},expression:"isShopCoupons"}},[i("v-uni-view",{staticClass:"activity-box"},[i("v-uni-view",{staticClass:"title-box"},[i("v-uni-image",{staticClass:"close-btn",attrs:{src:"https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/close.png"},on:{click:function(e){arguments[0]=e=t.$handleEvent(e),t.onshopClose.apply(void 0,arguments)}}})],1),i("v-uni-view",{staticClass:"activity-coupon-box"},[i("v-uni-scroll-view",{staticStyle:{height:"900rpx"},attrs:{"scroll-y":"true"}},[i("v-uni-view",{staticClass:"content-box"},[t.shopCouponsLength?i("v-uni-view",[i("v-uni-view",{staticClass:"label-lingqu"},[t._v("可用优惠券列表")]),i("v-uni-view",{staticClass:"couponBox"},t._l(t.shopCouponslist.shopCoupons,(function(e,o){return i("v-uni-view",{key:e.id,staticClass:"coupon-item",on:{click:function(i){arguments[0]=i=t.$handleEvent(i),t.shopCouponItemTap(o,e)}}},[1===e.couponType?i("v-uni-view",{staticClass:"money-box"},[t._v("¥"+t._s(e.reduceMoney))]):i("v-uni-view",{staticClass:"money-box"},[t._v(t._s(e.reduceMoney)+"折券")]),i("v-uni-view",{staticClass:"date font-color-999",staticStyle:{"font-size":"22upx","margin-top":"10upx"}},[t._v(t._s(t.getDate(e.startTime.replace(/-/g,".")))+"-"+t._s(t.getDate(e.endTime.replace(/-/g,"."))))]),i("v-uni-view",{staticClass:"info-box"},[i("v-uni-view",{staticClass:"info font-color-999"},[t._v("满"+t._s(e.fullMoney)+"元可用")])],1),e.checked?i("v-uni-image",{staticClass:"check-img",attrs:{src:"https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectActive.png"}}):i("v-uni-image",{staticClass:"check-img",attrs:{src:"https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectEmpty.png"}})],1)})),1)],1):t._e()],1)],1)],1)],1)],1),i("u-popup",{staticClass:"activity-con",attrs:{mode:"bottom","border-radius":"14","close-icon-pos":"top-right","close-icon-size":"20"},model:{value:t.iscoupon,callback:function(e){t.iscoupon=e},expression:"iscoupon"}},[i("v-uni-view",{staticClass:"activity-box",staticStyle:{height:"1000rpx"}},[i("v-uni-view",{staticClass:"title-box"},[i("v-uni-image",{staticClass:"close-btn",attrs:{src:"https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/close.png"},on:{click:function(e){arguments[0]=e=t.$handleEvent(e),t.iscoupon=!1}}})],1),i("v-uni-view",{staticClass:"activity-coupon-box"},[i("v-uni-scroll-view",{staticStyle:{height:"900rpx"},attrs:{"scroll-y":"true"}},[i("v-uni-view",{staticClass:"content-box"},[i("v-uni-view",[i("v-uni-view",{staticClass:"label-lingqu"},[t._v("可用优惠券列表")]),t.couponList.length>0&&this.settlement.shops&&this.settlement.shops.length>0?i("v-uni-view",{staticClass:"couponBox"},t._l(t.couponList,(function(e,o){return i("v-uni-view",{key:o,staticClass:"coupon-item",style:e.istrue?"opacity: 1;":"opacity: 0.5;",on:{click:function(i){arguments[0]=i=t.$handleEvent(i),t.couponcouponList(o,e)}}},["1"==e.couponType?i("v-uni-view",{staticClass:"money-box"},[t._v("¥"+t._s(e.discountContent))]):i("v-uni-view",{staticClass:"money-box"},[t._v(t._s(e.discountContent)+"折券")]),i("v-uni-view",{staticClass:"info-box"},[i("v-uni-view",{staticClass:"date font-color-999",staticStyle:{"font-size":"22upx","margin-top":"20upx"}},[t._v(t._s(t.getDate(e.startTime.replace(/-/g,".")))+"-"+t._s(t.getDate(e.endTime.replace(/-/g,"."))))]),i("v-uni-view",{staticClass:"info font-color-999"},[t._v(t._s("1"==e.couponType?"满"+e.usageThreshold+"元可用":"最高"+e.maxDiscountAmount+"元"))])],1),e.checked?i("v-uni-image",{staticClass:"check-img",attrs:{src:"https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectActive.png"}}):i("v-uni-image",{staticClass:"check-img",attrs:{src:"https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectEmpty.png"}})],1)})),1):t._e()],1)],1)],1)],1)],1)],1)],1):t._e()],1)},s=[]},4733:function(t,e,i){"use strict";i("6a54"),Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(t){if(Array.isArray(t))return(0,o.default)(t)};var o=function(t){return t&&t.__esModule?t:{default:t}}(i("8d0b"))},"4cbb":function(t,e,i){"use strict";var o=i("df9b"),n=i.n(o);n.a},"53df":function(t,e,i){"use strict";function o(t,e,i){this.$children.map((function(n){t===n.$options.name?n.$emit.apply(n,[e].concat(i)):o.apply(n,[t,e].concat(i))}))}i("6a54"),Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0,i("fd3c"),i("c223");var n={methods:{dispatch:function(t,e,i){var o=this.$parent||this.$root,n=o.$options.name;while(o&&(!n||n!==t))o=o.$parent,o&&(n=o.$options.name);o&&o.$emit.apply(o,[e].concat(i))},broadcast:function(t,e,i){o.call(this,t,e,i)}}};e.default=n},"5a1c":function(t,e,i){var o=i("c86c");e=o(!1),e.push([t.i,'@charset "UTF-8";\r\n/**\r\n * 这里是uni-app内置的常用样式变量\r\n *\r\n * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量\r\n * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App\r\n *\r\n */\r\n/**\r\n * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能\r\n *\r\n * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件\r\n */\r\n/* 颜色变量 */\r\n/* 页面左右间距 */\r\n/* 行为相关颜色 */\r\n/* 文字基本颜色 */\r\n/* 背景颜色 */\r\n/* 边框颜色 */\r\n/* 尺寸变量 */\r\n/* 文字尺寸 */\r\n/*文字颜色*/\r\n/* 图片尺寸 */\r\n/* Border Radius */\r\n/* 水平间距 */\r\n/* 垂直间距 */\r\n/* 透明度 */\r\n/* 文章场景相关 */uni-page-body[data-v-2da1c781]{background-color:#f7f7f7}body.?%PAGE?%[data-v-2da1c781]{background-color:#f7f7f7}.content[data-v-2da1c781]{padding:0 %?30?% %?198?%;box-sizing:border-box}.address-box[data-v-2da1c781]{margin-top:%?20?%;background:#fff;border-radius:%?10?%;width:100%;padding:%?30?%;box-sizing:border-box;display:flex;flex-direction:row;align-items:center;margin-bottom:%?20?%}.address-box .address-img[data-v-2da1c781]{width:%?71?%;height:%?57?%;margin-right:%?20?%}.address-box .address-r[data-v-2da1c781]{flex:1;display:flex;flex-direction:column;font-size:%?28?%;color:#333}.arrow-right-img[data-v-2da1c781]{width:%?62?%;height:%?62?%;margin-left:%?20?%}.address-name-box[data-v-2da1c781]{font-size:%?30?%;color:#333}.phone[data-v-2da1c781]{font-size:%?24?%;color:#999;margin-left:%?20?%}.address-info[data-v-2da1c781]{font-size:%?28?%;color:#333;margin-top:%?15?%}.order-list-box .item[data-v-2da1c781]{background:#fff;border-radius:%?10?%}.order-list-top[data-v-2da1c781]{height:%?96?%;padding:0 %?30?%;box-sizing:border-box;display:flex;flex-direction:row;align-items:center;justify-content:space-between;border-bottom:%?2?% solid #eee}.top-l[data-v-2da1c781]{display:flex;flex-direction:row;align-items:center}.shop-img[data-v-2da1c781]{width:%?34?%;height:%?34?%;margin-right:%?10?%}.shop-name[data-v-2da1c781]{font-size:%?30?%;color:#333;font-weight:700}.arrow-img[data-v-2da1c781]{margin-left:%?15?%;width:%?62?%;height:%?62?%}.order-info-box[data-v-2da1c781]{padding:0 %?30?%;box-sizing:border-box}.order-info-item[data-v-2da1c781]{display:flex;flex-direction:row;padding:%?20?% 0}.product-img[data-v-2da1c781]{width:%?180?%;height:%?180?%;border-radius:%?10?%;margin-right:%?30?%}.info-box[data-v-2da1c781]{flex:1}.product-name[data-v-2da1c781]{font-size:%?26?%;color:#333;height:%?68?%;line-height:%?34?%;display:-webkit-box;overflow:hidden;text-overflow:ellipsis;word-break:break-all;-webkit-box-orient:vertical;-webkit-line-clamp:2}.price-sku-box[data-v-2da1c781]{width:100%;display:flex;flex-direction:row;justify-content:space-between}.product-sku[data-v-2da1c781]{font-size:%?24?%;font-weight:500;color:#999;margin-left:%?-20?%;width:100%;display:flex;flex-direction:row}.product-price[data-v-2da1c781]{font-size:%?32?%;color:#c83732;font-weight:400}.product-price .fuhao[data-v-2da1c781]{font-size:%?28?%}.product-num[data-v-2da1c781]{font-size:%?28?%;color:#999;font-weight:400}.adressTips[data-v-2da1c781]{margin-bottom:%?19?%;color:#d53912}.delivery-way-box[data-v-2da1c781]{display:flex;flex-direction:column;border:%?2?% solid #e4e5e6;padding:%?20?%;margin-bottom:%?20?%;box-sizing:initial}.delivery-way-box .item[data-v-2da1c781]{display:flex;flex-direction:row;align-items:center;justify-content:space-between;font-size:%?26?%;color:#333}.delivery-way-box .item[data-v-2da1c781]{display:flex;flex-direction:row;align-items:center;justify-content:space-between;font-size:%?26?%;color:#333}.delivery-way-box .item .way[data-v-2da1c781]{color:#999;margin-left:%?30?%}.order-total-box[data-v-2da1c781]{padding:%?20?% 0;text-align:right}.total-num[data-v-2da1c781]{font-size:%?26?%;color:#333}.total-price[data-v-2da1c781]{font-size:%?46?%;color:#333}.ml10[data-v-2da1c781]{margin-left:%?10?%}.order-flow-box[data-v-2da1c781]{display:flex;flex-direction:column}.flow-word[data-v-2da1c781]{font-size:%?24?%;color:#999;display:flex;flex-direction:column}.mt25[data-v-2da1c781]{margin-top:%?20?%}.mt50[data-v-2da1c781]{margin-top:%?30?%;margin-bottom:%?20?%}.order-confirm-box[data-v-2da1c781]{position:fixed;bottom:0;left:0;width:100%;background:#fff;padding:%?30?%}.num-box[data-v-2da1c781]{font-size:%?30?%;color:#999}.num-box .total[data-v-2da1c781]{color:#333}.num-box .price[data-v-2da1c781]{color:#ff7911;font-weight:700}.order-confirm-box .btn[data-v-2da1c781]{width:100%;height:%?80?%;line-height:%?80?%;background:#eee;font-size:%?28?%;color:#ffebc4;text-align:center;margin-top:%?20?%}.order-confirm-box .btn.active[data-v-2da1c781]{background:#333;color:#ffebc4}.order-confirm-box .btn.unActive[data-v-2da1c781]{background:#333;color:#ffebc4;opacity:.7}.discount-item1[data-v-2da1c781]{width:100%;box-sizing:border-box;display:flex;flex-direction:row;align-items:center;justify-content:space-between;background:#fff;padding:%?20?%;border:%?2?% solid #e4e5e6}.discount-item[data-v-2da1c781]{width:100%;height:%?98?%;box-sizing:border-box;margin:%?30?% 0;display:flex;flex-direction:row;align-items:center;justify-content:space-between;padding:0 %?20?%;background:#fff}.pay-type-item .pay-type-radio[data-v-2da1c781]{background-color:#fff;border-bottom:%?1?% solid #ededed;margin-bottom:%?20?%;padding:%?24?% %?20?% %?24?% %?20?%}.pay-type-item .pay-type-radio .pay-type-img[data-v-2da1c781]{display:inline-block}.pay-type-item .pay-type-radio .pay-type-img .pay-type-img-inner[data-v-2da1c781]{width:%?50?%;height:%?50?%;vertical-align:middle}.pay-type-item .pay-type-radio .pay-type-label[data-v-2da1c781]{vertical-align:middle;margin-left:%?30?%}.pay-type-item .pay-type-radio .pay-type-radio-item[data-v-2da1c781]{float:right;width:%?50?%;height:%?50?%}.pay-type-item .pay-type-radio .huabei-detail[data-v-2da1c781]{margin-top:%?20?%}.pay-type-item .pay-type-radio .huabei-detail .fenqi-wenzi[data-v-2da1c781]{display:inline-block;margin-left:%?64?%}.pay-type-item .pay-type-radio .huabei-detail .fenqi-amount[data-v-2da1c781]{display:block;margin-left:%?64?%;margin-top:%?14?%;color:#babbbc}.pay-type-item .pay-type-radio .huabei-detail .fenqi-charge-fee[data-v-2da1c781]{float:right;margin-right:%?68?%;color:#babbbc}.pay-type-item .pay-type-radio .huabei-detail .fenqi-modal[data-v-2da1c781]{width:%?40?%;height:%?40?%;margin-left:%?20?%;float:right;position:relative;top:%?-80?%}.period-radio[data-v-2da1c781]{margin:%?30?%;width:95%;border-bottom:1px solid #efefef}.period-radio .period-amount[data-v-2da1c781]{display:inline-block}.period-radio .period-amount .period-each-charge[data-v-2da1c781]{display:inline-block;margin-top:%?12?%;margin-left:%?6?%;font-size:%?26?%;color:#b7b7b7;margin-bottom:%?13?%}.period-radio .period-each[data-v-2da1c781]{display:block}.period-radio .period-type-radio-item[data-v-2da1c781]{float:right}.huabei-confirm[data-v-2da1c781]{height:%?120?%;padding:%?0?% %?108?% %?0?% %?32?%}.huabei-confirm .fenqi-all[data-v-2da1c781]{display:inline-block;width:100%}.huabei-confirm .fenqi-total-amount[data-v-2da1c781]{float:left}.huabei-confirm .fenqi-confirm[data-v-2da1c781]{float:right;width:%?160?%;padding:%?0?% %?20?%}.huabei-confirm .fenqi-confirm .btn[data-v-2da1c781]{width:%?216?%;height:%?80?%;line-height:%?80?%;border-radius:%?40?%;font-size:%?28?%;text-align:center;background:linear-gradient(90deg,#ffa200,#ff7911);color:#fff;display:inline-block;margin-right:%?66?%}.discount-info-box[data-v-2da1c781]{display:flex;flex-direction:row}.discount-label[data-v-2da1c781],\r\n.discount-info1[data-v-2da1c781]{font-size:%?26?%;color:#333}.discount-info2[data-v-2da1c781]{color:#c5aa7b}.discount-img[data-v-2da1c781]{width:%?30?%;height:%?30?%;margin-left:%?20?%}.activity-con .activity-box[data-v-2da1c781]{display:flex;flex-direction:column;width:100%;height:%?1000?%}.activity-box .title-box[data-v-2da1c781]{width:100%;height:%?100?%;display:flex;flex-direction:row;align-items:center;justify-content:center;position:relative;border-bottom:solid 1px #eee}.activity-coupon-box[data-v-2da1c781]{display:flex;flex-direction:column;width:100%;overflow:auto;flex:1}.title-box .close-btn[data-v-2da1c781]{width:%?100?%;height:%?100?%;box-sizing:border-box;padding:%?30?%;position:absolute;top:0;right:0}.content-box[data-v-2da1c781]{width:100%;box-sizing:border-box;display:flex;flex-direction:column;padding:%?30?%}.tag-box[data-v-2da1c781]{width:100%;box-sizing:border-box;height:%?80?%;line-height:%?80?%;font-size:%?28?%;font-weight:500;color:#ff7911}.label-lingqu[data-v-2da1c781]{width:100%;font-size:%?28?%;font-weight:500;color:#333}.coupon-item1[data-v-2da1c781]{width:%?690?%;height:%?120?%;margin-top:%?20?%;color:#fff;flex-shrink:0}.coupon-item2[data-v-2da1c781]{width:%?690?%;height:%?120?%;background-size:%?690?% %?120?%;margin-top:%?20?%;color:#ff7911;flex-shrink:0}.un-coupon-item[data-v-2da1c781]{color:#bbb}.money-box[data-v-2da1c781]{font-size:%?40?%;font-weight:500}.info-box[data-v-2da1c781]{font-size:%?24?%;font-weight:400;margin:%?10?%}.receive-success[data-v-2da1c781]{width:100%;position:fixed;top:0;bottom:0;left:0;display:flex;flex-direction:column;align-items:center;justify-content:center;z-index:9999}.success-box[data-v-2da1c781]{width:%?380?%;height:%?280?%;background:rgba(0,0,0,.5);border-radius:%?10?%;display:flex;flex-direction:column;align-items:center;justify-content:center}.success-box .success-img[data-v-2da1c781]{width:%?200?%;height:%?130?%}.success-box .text[data-v-2da1c781]{font-size:%?28?%;margin-top:%?50?%;font-weight:400;color:#fff}.check-img[data-v-2da1c781]{width:%?40?%;height:%?40?%;margin-top:%?40?%}.mt30[data-v-2da1c781]{margin-top:%?30?%}.activity-con .activity-box[data-v-2da1c781]{display:flex;flex-direction:column;width:100%;height:%?1000?%}.activity-box .title-box[data-v-2da1c781]{width:100%;height:%?100?%;display:flex;flex-direction:row;align-items:center;justify-content:center;position:relative;border-bottom:solid 1px #eee}.activity-coupon-box[data-v-2da1c781]{display:flex;flex-direction:column;width:100%;overflow:auto;flex:1}.title-box .close-btn[data-v-2da1c781]{width:%?100?%;height:%?100?%;box-sizing:border-box;padding:%?30?%;position:absolute;top:0;right:0}.content-box[data-v-2da1c781]{width:100%;box-sizing:border-box;display:flex;flex-direction:column;padding:%?30?%}.tag-box[data-v-2da1c781]{width:100%;box-sizing:border-box;height:%?80?%;line-height:%?80?%;font-size:%?28?%;font-weight:500;color:#ff7911}.label-lingqu[data-v-2da1c781]{width:100%;font-size:%?28?%;font-weight:500;color:#333}.couponBox[data-v-2da1c781]{display:flex;flex-flow:wrap;margin-top:%?30?%;justify-content:space-between}.coupon-item[data-v-2da1c781]{width:48%;height:%?291?%;background:url(https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/couponsIcon.png) no-repeat top;margin-top:%?20?%;color:#c5aa7b;flex-shrink:0;text-align:center;padding-top:%?1?%;background-size:contain}.un-coupon-item[data-v-2da1c781]{color:#bbb}.money-box[data-v-2da1c781]{font-size:%?40?%;font-weight:500;margin-top:%?30?%}.integralPayBox[data-v-2da1c781]{margin:%?20?% 0}.integralPayBox .integralBg[data-v-2da1c781]{height:%?98?%;display:flex;justify-content:space-between;align-items:center;background:#fff;padding:0 %?20?%}.integralPayBox .integralBg .maxDeduction[data-v-2da1c781]{margin-right:%?15?%}',""]),t.exports=e},"60ae":function(t,e,i){"use strict";i.r(e);var o=i("1223"),n=i("9e03");for(var s in n)["default"].indexOf(s)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(s);i("e6ff");var a=i("828b"),r=Object(a["a"])(n["default"],o["b"],o["c"],!1,null,"2d7510f8",null,!1,o["a"],void 0);e["default"]=r.exports},"6e80":function(t,e,i){"use strict";var o=i("324e"),n=i.n(o);n.a},"7c19":function(t,e,i){var o=i("c86c");e=o(!1),e.push([t.i,'@charset "UTF-8";\r\n/**\r\n * 这里是uni-app内置的常用样式变量\r\n *\r\n * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量\r\n * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App\r\n *\r\n */\r\n/**\r\n * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能\r\n *\r\n * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件\r\n */\r\n/* 颜色变量 */\r\n/* 页面左右间距 */\r\n/* 行为相关颜色 */\r\n/* 文字基本颜色 */\r\n/* 背景颜色 */\r\n/* 边框颜色 */\r\n/* 尺寸变量 */\r\n/* 文字尺寸 */\r\n/*文字颜色*/\r\n/* 图片尺寸 */\r\n/* Border Radius */\r\n/* 水平间距 */\r\n/* 垂直间距 */\r\n/* 透明度 */\r\n/* 文章场景相关 */.cashier-list-content[data-v-2d7510f8]{width:100%;padding:%?0?% %?15?%;box-sizing:border-box;background:#fff}.cashier-list-content .u-radio-group[data-v-2d7510f8]{display:block!important}.cashier-list-content .cashier[data-v-2d7510f8]{border-bottom:%?2?% solid #d0d0d0}.cashier-list-content .cashier[data-v-2d7510f8]:last-child{border-bottom:none}.cashier-list-content .cashier .cashier-item[data-v-2d7510f8]{display:flex;align-items:center;justify-content:space-between;padding:%?20?% 0;box-sizing:border-box;position:relative}.cashier-list-content .cashier .cashier-item .icon-text[data-v-2d7510f8]{display:flex;align-items:center;justify-content:center}.cashier-list-content .cashier .cashier-item .icon-text uni-image[data-v-2d7510f8]{width:%?50?%;height:%?50?%;margin-right:%?15?%}.cashier-list-content .cashier .cashier-item .radio-context[data-v-2d7510f8]{display:flex;align-items:center;font-size:%?14?%}.cashier-list-content .cashier .cashier-item .radio-context .radio[data-v-2d7510f8]{margin-left:%?15?%}.cashier-list-content .cashier .ali-hb-content[data-v-2d7510f8]{padding:%?10?% 20px;box-sizing:border-box;border-top:%?2?% solid #d0d0d0}',""]),t.exports=e},"8df6":function(t,e,i){"use strict";i("6a54");var o=i("f5bd").default;Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=o(i("9b1b")),s=i("8f59"),a={name:"GlobalLoading",methods:{moveHandle:function(){}},mounted:function(){console.log("+++++++++++++++++++__++++++++++++++++++++"),console.log(this.loadingFlag,this.loadingInfo)},computed:(0,n.default)({},(0,s.mapGetters)(["loadingFlag","loadingInfo"]))};e.default=a},9327:function(t,e,i){"use strict";var o=i("8bdb"),n=i("9f69"),s=i("1ded").f,a=i("c435"),r=i("9e70"),c=i("b6a1"),d=i("862c"),l=i("0931"),u=i("a734"),h=n("".slice),p=Math.min,f=l("endsWith"),v=!u&&!f&&!!function(){var t=s(String.prototype,"endsWith");return t&&!t.writable}();o({target:"String",proto:!0,forced:!v&&!f},{endsWith:function(t){var e=r(d(this));c(t);var i=arguments.length>1?arguments[1]:void 0,o=e.length,n=void 0===i?o:p(a(i),o),s=r(t);return h(e,n-s.length,n)===s}})},"946d":function(t,e,i){var o=i("c821");o.__esModule&&(o=o.default),"string"===typeof o&&(o=[[t.i,o,""]]),o.locals&&(t.exports=o.locals);var n=i("967d").default;n("07345ce8",o,!0,{sourceMap:!1,shadowMode:!1})},"954c":function(t,e,i){"use strict";i("6a54");var o=i("f5bd").default;Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=o(i("2634")),s=o(i("2fdc"));i("64aa"),i("4626"),i("fd3c"),i("bf0f"),i("2797");var a=o(i("83c8")),r=o(i("6d56")),c={name:"CashierList",props:{totalPrice:{type:Number,default:function(){return 200}}},data:function(){return{paymentMode:0,paymentList:[{id:1,label:"微信支付",paymentMode:1,icon:"https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/wechat_pay.png",disabled:!0}],flowerObj:{hbChargeType:1,hbByStagesPeriods:-1,hbByStagesList:[{rate:0,price:0,numberOfStages:3,serviceCharge:0,disabled:!1},{rate:0,price:0,numberOfStages:6,serviceCharge:0,disabled:!1},{rate:0,price:0,numberOfStages:12,serviceCharge:0,disabled:!1}],hbServiceChargeTotal:0}}},mounted:function(){this.getTheFlowerConfig(),this.handleSetDisable(),this.handleNoticeFather()},methods:{handleSetDisable:function(){this.paymentList[0].disabled=!0,this.paymentMode=1},handleChangePaymentMode:function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(console.log(t),!e){this.paymentMode=t;var i=this.flowerObj;[1,2].includes(t)?(i.hbByStagesPeriods=-1,i.hbByStagesList.map((function(t){t.disabled=!0}))):i.hbByStagesPeriods=3,this.handleHbStagesAndPrice(),this.handleNoticeFather()}},getTheFlowerConfig:function(){var t=this;return(0,s.default)((0,n.default)().mark((function e(){var i,o,s;return(0,n.default)().wrap((function(e){while(1)switch(e.prev=e.next){case 0:return e.next=2,a.default.request(r.default.GetHuabeiConfig,{},"GET");case 2:i=e.sent,o=i.data,s=t.flowerObj,s.hbChargeType=o.huabeiChargeType,1===o.huabeiChargeType&&o.huabeiFeeRateList.forEach((function(t,e){s.hbByStagesList[e].rate=t})),console.log(s);case 8:case"end":return e.stop()}}),e)})))()},handleChangePeriods:function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(!e){var i=this.flowerObj;i.hbByStagesPeriods=t,this.handleHbStagesAndPrice(),this.handleNoticeFather()}},handleHbStagesAndPrice:function(){var t=this,e=this.flowerObj,i=this.totalPrice;3===this.paymentMode&&e.hbByStagesList.forEach((function(o){o.price=(i*(1+o.rate/100)/o.numberOfStages).toFixed(2),o.serviceCharge=(i*(o.rate/100)/o.numberOfStages).toFixed(2),o.numberOfStages===Number(e.hbByStagesPeriods)&&(e.hbServiceChargeTotal=(i*(o.rate/100)).toFixed(2)),t.totalPrice<o.numberOfStages/100?o.disabled=!0:o.disabled=!1}))},handleNoticeFather:function(){var t=this.paymentMode,e=this.flowerObj,i={paymentMode:t,huabeiPeriod:e.hbByStagesPeriods};this.$emit("change",i)}}};e.default=c},"9a30":function(t,e,i){"use strict";var o=i("946d"),n=i.n(o);n.a},"9e03":function(t,e,i){"use strict";i.r(e);var o=i("954c"),n=i.n(o);for(var s in o)["default"].indexOf(s)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(s);e["default"]=n.a},a36f:function(t,e,i){"use strict";i("6a54"),Object.defineProperty(e,"__esModule",{value:!0}),e.hidden=function(t,e,i){var o=0;if(!t.length||!t)return"";2!==t.length&&(o=i);for(var n=t.length-e-o,s="",a=0;a<n;a++)s+="*";return t.substring(0,e)+s+t.substring(t.length-o)}},a5a6:function(t,e,i){"use strict";i.r(e);var o=i("2411"),n=i.n(o);for(var s in o)["default"].indexOf(s)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(s);e["default"]=n.a},a91a:function(t,e,i){t.exports=i.p+"static/images/loading/loading.gif"},ac93:function(t,e,i){"use strict";i.r(e);var o=i("8df6"),n=i.n(o);for(var s in o)["default"].indexOf(s)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(s);e["default"]=n.a},b7c7:function(t,e,i){"use strict";i("6a54"),Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(t){return(0,o.default)(t)||(0,n.default)(t)||(0,s.default)(t)||(0,a.default)()};var o=r(i("4733")),n=r(i("d14d")),s=r(i("5d6b")),a=r(i("30f7"));function r(t){return t&&t.__esModule?t:{default:t}}},bdef:function(t,e,i){var o=i("7c19");o.__esModule&&(o=o.default),"string"===typeof o&&(o=[[t.i,o,""]]),o.locals&&(t.exports=o.locals);var n=i("967d").default;n("1444b509",o,!0,{sourceMap:!1,shadowMode:!1})},c821:function(t,e,i){var o=i("c86c");e=o(!1),e.push([t.i,'@charset "UTF-8";\r\n/**\r\n * 这里是uni-app内置的常用样式变量\r\n *\r\n * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量\r\n * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App\r\n *\r\n */\r\n/**\r\n * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能\r\n *\r\n * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件\r\n */\r\n/* 颜色变量 */\r\n/* 页面左右间距 */\r\n/* 行为相关颜色 */\r\n/* 文字基本颜色 */\r\n/* 背景颜色 */\r\n/* 边框颜色 */\r\n/* 尺寸变量 */\r\n/* 文字尺寸 */\r\n/*文字颜色*/\r\n/* 图片尺寸 */\r\n/* Border Radius */\r\n/* 水平间距 */\r\n/* 垂直间距 */\r\n/* 透明度 */\r\n/* 文章场景相关 */.loading-content[data-v-137eceae]{position:fixed;top:0;left:0;width:100vw;height:100vh;z-index:9999}.loading-content .full-mask[data-v-137eceae]{position:absolute;width:100vw;height:100vh;background-color:rgba(0,0,0,.52);z-index:9998;pointer-events:none}.loading-content .loading-gif[data-v-137eceae]{z-index:9999;position:relative;width:100%;height:100%}.loading-content .loading-gif .flex[data-v-137eceae]{width:%?200?%;height:%?200?%;position:absolute;border-radius:%?15?%;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);display:flex;align-items:center;justify-content:center;flex-direction:column}.loading-content .loading-gif .flex uni-image[data-v-137eceae]{width:%?150?%;height:%?150?%}.loading-content .loading-gif .flex p[data-v-137eceae]{color:#fff}',""]),t.exports=e},d14d:function(t,e,i){"use strict";i("6a54"),Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(t){if("undefined"!==typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)},i("01a2"),i("e39c"),i("bf0f"),i("844d"),i("18f7"),i("de6c"),i("08eb")},df9b:function(t,e,i){var o=i("5a1c");o.__esModule&&(o=o.default),"string"===typeof o&&(o=[[t.i,o,""]]),o.locals&&(t.exports=o.locals);var n=i("967d").default;n("1c417f82",o,!0,{sourceMap:!1,shadowMode:!1})},e6ff:function(t,e,i){"use strict";var o=i("bdef"),n=i.n(o);n.a},fa9d:function(t,e,i){"use strict";i.d(e,"b",(function(){return o})),i.d(e,"c",(function(){return n})),i.d(e,"a",(function(){}));var o=function(){var t=this,e=t.$createElement,o=t._self._c||e;return t.loadingFlag?o("v-uni-view",{staticClass:"loading-content",on:{touchmove:function(e){e.stopPropagation(),e.preventDefault(),arguments[0]=e=t.$handleEvent(e),t.moveHandle.apply(void 0,arguments)},click:function(e){e.stopPropagation(),e.preventDefault(),arguments[0]=e=t.$handleEvent(e),t.moveHandle.apply(void 0,arguments)}}},[t._e(),o("v-uni-view",{staticClass:"loading-gif"},[o("v-uni-view",{staticClass:"flex mask"},[o("v-uni-image",{attrs:{src:i("a91a")}})],1)],1)],1):t._e()},n=[]}}]);
0 2 \ No newline at end of file
... ...
merchant-web-master/dist.zip
No preview for this file type
merchant-web-master/src/utils/request.js
... ... @@ -20,8 +20,8 @@ let PREFIX;
20 20 // 其他情况的默认值
21 21 // PREFIX = 'http://8.130.38.56:8027/business-server';
22 22 // PREFIX = 'https://jy.scjysm.asia:18086/merchant-business';
23   - // PREFIX = 'https://jy.scjysm.asia:18086/cdwlMall/business-server';
24   - PREFIX = 'http://128.10.249.206:9004';
  23 + PREFIX = 'https://jy.scjysm.asia:18086/cdwlMall/business-server';
  24 + // PREFIX = 'http://128.10.249.206:9004';
25 25 }else{
26 26 // PREFIX = '/merchant-business';
27 27 // PREFIX = 'http://8.130.38.56:9004';
... ...
merchant-web-master/src/views/commodity/commodityList/commodityGroup.vue
... ... @@ -125,7 +125,7 @@
125 125 />
126 126 <el-table-column label="产品主图" width="220" align="center">
127 127 <template slot-scope="scope">
128   - <img height="80" width="80" :src="scope.row.image " alt srcset>
  128 + <img height="80" width="80" :src="$baseURL+scope.row.image " alt srcset>
129 129 </template>
130 130 </el-table-column>
131 131 <el-table-column prop="productName" label="产品名称" width="220" align="center" />
... ... @@ -488,6 +488,7 @@ export default {
488 488 message: '请添加智能筛选条件',
489 489 type: 'warning'
490 490 })
  491 + return false
491 492 }
492 493 }
493 494 if (self.selectGroup === '1') {
... ...
merchant-web-master/src/views/dashboard/index.vue
... ... @@ -28,7 +28,7 @@
28 28 <el-button style="background-color: #3F9B6A;color: #fff;" class="exportBtn" plain @click="userVisitExport">导出</el-button>
29 29 </div>
30 30 <div class="echart_item">
31   - <p class="title">订单转换漏斗</p>
  31 + <p class="title">订单支付趋势</p>
32 32 <!-- <p class="title">总转化率{{ info.rate }}%</p> -->
33 33 <div ref="myEcharts" class="full-size" />
34 34 <el-button style="background-color: #3F9B6A;color: #fff;" class="exportBtn" plain @click="orderConvertExport">导出</el-button>
... ... @@ -172,7 +172,9 @@ export default {
172 172 },
173 173 draw(arr) {
174 174 const myEchart = echarts.init(this.$refs.myEchart, 'light')
  175 +
175 176 const option = {
  177 + color: "#3F9B6A",
176 178 xAxis: {
177 179 type: 'category',
178 180 data: arr.time
... ...
merchant-web-master/src/views/login/index.vue
... ... @@ -565,7 +565,6 @@ export default {
565 565 }
566 566 }
567 567 .title {
568   - margin: 0 auto 30px auto;
569 568 text-align: center;
570 569 color: #707070;
571 570 }
... ...
settled-merchant-master/dist.zip
No preview for this file type
settled-merchant-master/src/views/moblie/mPersonal.vue
... ... @@ -111,6 +111,7 @@
111 111 </div>
112 112 </div>
113 113 </div>
  114 + <button class="nextBtn" @click="rent" v-show="active > 1">上一步</button>
114 115 <button class="nextBtn" @click="next" v-show="active < 2">下一步</button>
115 116 <button class="nextBtn" @click="submitForm" v-show="active > 1">提交</button>
116 117 </div>
... ... @@ -241,10 +242,48 @@ export default {
241 242 this.show = true
242 243 },
243 244 next () {
  245 + let self = this
  246 + self.personalForm.shopAdress = ''
  247 + let reg = /^1[13456789]\d{9}$/
  248 + self.personalForm.shopPhone = self.personalForm.servicePhone
  249 + self.personalForm.shopAdress = `${self.shopAdress},${self.personalForm.storeAddressDetail}`
  250 + if (self.personalForm.shopName === '') {
  251 + Toast.fail('请输入店铺名称')
  252 + return false
  253 + }
  254 + if (self.personalForm.servicePhone === '') {
  255 + Toast.fail('请输入客服电话')
  256 + return false
  257 + } else if (!reg.test(self.personalForm.servicePhone)) {
  258 + Toast.fail('客服电话号格式错误')
  259 + return false
  260 + }
  261 + if (self.personalForm.chargePersonName === '') {
  262 + Toast.fail('请输入店铺负责人')
  263 + return false
  264 + }
  265 + if (self.personalForm.chargePersonPhone === '') {
  266 + Toast.fail('请输入负责人电话')
  267 + return false
  268 + } else if (!reg.test(self.personalForm.chargePersonPhone)) {
  269 + Toast.fail('负责人电话式错误')
  270 + return false
  271 + }
  272 + if (self.personalForm.shopAdress === '') {
  273 + Toast.fail('请选择所在地区')
  274 + return false
  275 + }
  276 + if (self.personalForm.storeAddressDetail === '') {
  277 + Toast.fail('请输入详细地址')
  278 + return false
  279 + }
244 280 this.active++
245 281 // if (this.active === 4) {
246 282 // }
247 283 },
  284 + rent () {
  285 + this.active--
  286 + },
248 287 selectArea (address) {
249 288 this.shopAdress = `${address[0].name}-${address[1].name}-${address[2].name}`
250 289 this.personalForm.shopAdressProvince = address[0].name
... ... @@ -305,6 +344,41 @@ export default {
305 344 this.idCardEndShow = false
306 345 },
307 346 changeActive (index) {
  347 + let self = this
  348 + self.personalForm.shopAdress = ''
  349 + let reg = /^1[13456789]\d{9}$/
  350 + self.personalForm.shopPhone = self.personalForm.servicePhone
  351 + self.personalForm.shopAdress = `${self.shopAdress},${self.personalForm.storeAddressDetail}`
  352 + if (self.personalForm.shopName === '') {
  353 + Toast.fail('请输入店铺名称')
  354 + return false
  355 + }
  356 + if (self.personalForm.servicePhone === '') {
  357 + Toast.fail('请输入客服电话')
  358 + return false
  359 + } else if (!reg.test(self.personalForm.servicePhone)) {
  360 + Toast.fail('客服电话号格式错误')
  361 + return false
  362 + }
  363 + if (self.personalForm.chargePersonName === '') {
  364 + Toast.fail('请输入店铺负责人')
  365 + return false
  366 + }
  367 + if (self.personalForm.chargePersonPhone === '') {
  368 + Toast.fail('请输入负责人电话')
  369 + return false
  370 + } else if (!reg.test(self.personalForm.chargePersonPhone)) {
  371 + Toast.fail('负责人电话式错误')
  372 + return false
  373 + }
  374 + if (self.personalForm.shopAdress === '') {
  375 + Toast.fail('请选择所在地区')
  376 + return false
  377 + }
  378 + if (self.personalForm.storeAddressDetail === '') {
  379 + Toast.fail('请输入详细地址')
  380 + return false
  381 + }
308 382 this.active = index
309 383 },
310 384 formatter (type, val) {
... ... @@ -374,41 +448,10 @@ export default {
374 448 submitForm () {
375 449 let self = this
376 450 self.personalForm.shopAdress = ''
377   - let reg = /^1[13456789]\d{9}$/
378 451 var idReg = /(^\d{15}$)|(^\d{18}$)|(^\d{17}(\d|X|x)$)/
379 452 self.personalForm.shopPhone = self.personalForm.servicePhone
380 453 self.personalForm.shopAdress = `${self.shopAdress},${self.personalForm.storeAddressDetail}`
381 454 // alert('submit!')
382   - if (self.personalForm.shopName === '') {
383   - Toast.fail('请输入店铺名称')
384   - return false
385   - }
386   - if (self.personalForm.servicePhone === '') {
387   - Toast.fail('请输入客服电话')
388   - return false
389   - } else if (!reg.test(self.personalForm.servicePhone)) {
390   - Toast.fail('客服电话号格式错误')
391   - return false
392   - }
393   - if (self.personalForm.chargePersonName === '') {
394   - Toast.fail('请输入店铺负责人')
395   - return false
396   - }
397   - if (self.personalForm.chargePersonPhone === '') {
398   - Toast.fail('请输入负责人电话')
399   - return false
400   - } else if (!reg.test(self.personalForm.chargePersonPhone)) {
401   - Toast.fail('负责人电话式错误')
402   - return false
403   - }
404   - if (self.personalForm.shopAdress === '') {
405   - Toast.fail('请选择所在地区')
406   - return false
407   - }
408   - if (self.personalForm.storeAddressDetail === '') {
409   - Toast.fail('请输入详细地址')
410   - return false
411   - }
412 455 if (self.personalForm.personalName === '') {
413 456 Toast.fail('请输入经营者姓名')
414 457 return false
... ...
settled-merchant-master/src/views/moblie/mUinitBusiness.vue
... ... @@ -153,8 +153,11 @@
153 153 </div>
154 154 </div>
155 155 </div>
156   - <button class="nextBtn" @click="next" v-show="active < 3">下一步</button>
157   - <button class="nextBtn" @click="submitForm" v-show="active > 2">提交</button>
  156 + <div style="display: flex;">
  157 + <button class="nextBtn" @click="rent" v-show="active > 1">上一步</button>
  158 + <button class="nextBtn" @click="next" v-show="active < 3">下一步</button>
  159 + <button class="nextBtn" @click="submitForm" v-show="active > 2">提交</button>
  160 + </div>
158 161 </div>
159 162 <van-popup v-model="show" round position="bottom" :style="{ height: '40%' }">
160 163 <van-area title="请选择地区" :area-list="areaList" @confirm="selectArea" @cancel="closeSelect"/>
... ... @@ -320,10 +323,81 @@ export default {
320 323 this.regionShow = true
321 324 },
322 325 next () {
  326 + let self = this
  327 + if (this.active === 1) {
  328 + self.personalForm.shopAdress = ''
  329 + let reg = /^1[13456789]\d{9}$/
  330 + self.personalForm.shopPhone = self.personalForm.servicePhone
  331 + self.personalForm.shopAdress = `${self.shopAdress},${self.personalForm.storeAddressDetail}`
  332 + // alert('submit!')
  333 + if (self.personalForm.shopName === '') {
  334 + Toast.fail('请输入店铺名称')
  335 + return false
  336 + }
  337 + if (self.personalForm.servicePhone === '') {
  338 + Toast.fail('请输入客服电话')
  339 + return false
  340 + } else if (!reg.test(self.personalForm.servicePhone)) {
  341 + Toast.fail('客服电话号格式错误')
  342 + return false
  343 + }
  344 + if (self.personalForm.chargePersonName === '') {
  345 + Toast.fail('请输入店铺负责人')
  346 + return false
  347 + }
  348 + if (self.personalForm.chargePersonPhone === '') {
  349 + Toast.fail('请输入负责人电话')
  350 + return false
  351 + } else if (!reg.test(self.personalForm.chargePersonPhone)) {
  352 + Toast.fail('负责人电话式错误')
  353 + return false
  354 + }
  355 + if (self.personalForm.shopAdress === '') {
  356 + Toast.fail('请选择所在地区')
  357 + return false
  358 + }
  359 + if (self.personalForm.storeAddressDetail === '') {
  360 + Toast.fail('请输入详细地址')
  361 + return false
  362 + }
  363 + }
  364 + if (this.active === 2) {
  365 + if (self.personalForm.subjectName === '') {
  366 + Toast.fail('请输入商户名称')
  367 + return false
  368 + }
  369 + if (self.personalForm.subjectCode === '') {
  370 + Toast.fail('请输入社会信用代码')
  371 + return false
  372 + }
  373 + if (self.personalForm.subjectRegion === '') {
  374 + Toast.fail('请输入注册地址')
  375 + return false
  376 + }
  377 + if (self.personalForm.subjectAdress === '') {
  378 + Toast.fail('请输入注册详情地址')
  379 + return false
  380 + }
  381 + if (self.personalForm.subjectStartTime === '') {
  382 + Toast.fail('请选择营业开始时间')
  383 + return false
  384 + }
  385 + if (self.personalForm.subjectEndTime === '') {
  386 + Toast.fail('请选择营业截止时间')
  387 + return false
  388 + }
  389 + if (self.personalForm.subjectLicense === '') {
  390 + Toast.fail('请上传营业执照')
  391 + return false
  392 + }
  393 + }
323 394 this.active++
324 395 if (this.active === 4) {
325 396 }
326 397 },
  398 + rent () {
  399 + this.active--
  400 + },
327 401 selectArea (address) {
328 402 this.shopAdress = `${address[0].name}-${address[1].name}-${address[2].name}`
329 403 this.personalForm.shopAdressProvince = address[0].name
... ... @@ -415,6 +489,74 @@ export default {
415 489 this.idCardEndShow = false
416 490 },
417 491 changeActive (index) {
  492 + let self = this
  493 + if (index === 2) {
  494 + self.personalForm.shopAdress = ''
  495 + let reg = /^1[13456789]\d{9}$/
  496 + self.personalForm.shopPhone = self.personalForm.servicePhone
  497 + self.personalForm.shopAdress = `${self.shopAdress},${self.personalForm.storeAddressDetail}`
  498 + // alert('submit!')
  499 + if (self.personalForm.shopName === '') {
  500 + Toast.fail('请输入店铺名称')
  501 + return false
  502 + }
  503 + if (self.personalForm.servicePhone === '') {
  504 + Toast.fail('请输入客服电话')
  505 + return false
  506 + } else if (!reg.test(self.personalForm.servicePhone)) {
  507 + Toast.fail('客服电话号格式错误')
  508 + return false
  509 + }
  510 + if (self.personalForm.chargePersonName === '') {
  511 + Toast.fail('请输入店铺负责人')
  512 + return false
  513 + }
  514 + if (self.personalForm.chargePersonPhone === '') {
  515 + Toast.fail('请输入负责人电话')
  516 + return false
  517 + } else if (!reg.test(self.personalForm.chargePersonPhone)) {
  518 + Toast.fail('负责人电话式错误')
  519 + return false
  520 + }
  521 + if (self.personalForm.shopAdress === '') {
  522 + Toast.fail('请选择所在地区')
  523 + return false
  524 + }
  525 + if (self.personalForm.storeAddressDetail === '') {
  526 + Toast.fail('请输入详细地址')
  527 + return false
  528 + }
  529 + }
  530 + if (index === 3) {
  531 + if (self.personalForm.subjectName === '') {
  532 + Toast.fail('请输入商户名称')
  533 + return false
  534 + }
  535 + if (self.personalForm.subjectCode === '') {
  536 + Toast.fail('请输入社会信用代码')
  537 + return false
  538 + }
  539 + if (self.personalForm.subjectRegion === '') {
  540 + Toast.fail('请输入注册地址')
  541 + return false
  542 + }
  543 + if (self.personalForm.subjectAdress === '') {
  544 + Toast.fail('请输入注册详情地址')
  545 + return false
  546 + }
  547 + if (self.personalForm.subjectStartTime === '') {
  548 + Toast.fail('请选择营业开始时间')
  549 + return false
  550 + }
  551 + if (self.personalForm.subjectEndTime === '') {
  552 + Toast.fail('请选择营业截止时间')
  553 + return false
  554 + }
  555 + if (self.personalForm.subjectLicense === '') {
  556 + Toast.fail('请上传营业执照')
  557 + return false
  558 + }
  559 + }
418 560 this.active = index
419 561 },
420 562 formatter (type, val) {
... ... @@ -484,69 +626,10 @@ export default {
484 626 submitForm () {
485 627 let self = this
486 628 self.personalForm.shopAdress = ''
487   - let reg = /^1[13456789]\d{9}$/
488 629 var idReg = /(^\d{15}$)|(^\d{18}$)|(^\d{17}(\d|X|x)$)/
489 630 self.personalForm.shopPhone = self.personalForm.servicePhone
490 631 self.personalForm.shopAdress = `${self.shopAdress},${self.personalForm.storeAddressDetail}`
491 632 // alert('submit!')
492   - if (self.personalForm.shopName === '') {
493   - Toast.fail('请输入店铺名称')
494   - return false
495   - }
496   - if (self.personalForm.servicePhone === '') {
497   - Toast.fail('请输入客服电话')
498   - return false
499   - } else if (!reg.test(self.personalForm.servicePhone)) {
500   - Toast.fail('客服电话号格式错误')
501   - return false
502   - }
503   - if (self.personalForm.chargePersonName === '') {
504   - Toast.fail('请输入店铺负责人')
505   - return false
506   - }
507   - if (self.personalForm.chargePersonPhone === '') {
508   - Toast.fail('请输入负责人电话')
509   - return false
510   - } else if (!reg.test(self.personalForm.chargePersonPhone)) {
511   - Toast.fail('负责人电话式错误')
512   - return false
513   - }
514   - if (self.personalForm.shopAdress === '') {
515   - Toast.fail('请选择所在地区')
516   - return false
517   - }
518   - if (self.personalForm.storeAddressDetail === '') {
519   - Toast.fail('请输入详细地址')
520   - return false
521   - }
522   - if (self.personalForm.subjectName === '') {
523   - Toast.fail('请输入商户名称')
524   - return false
525   - }
526   - if (self.personalForm.subjectCode === '') {
527   - Toast.fail('请输入社会信用代码')
528   - return false
529   - }
530   - if (self.personalForm.subjectRegion === '') {
531   - Toast.fail('请输入注册地址')
532   - return false
533   - }
534   - if (self.personalForm.subjectAdress === '') {
535   - Toast.fail('请输入注册详情地址')
536   - return false
537   - }
538   - if (self.personalForm.subjectStartTime === '') {
539   - Toast.fail('请选择营业开始时间')
540   - return false
541   - }
542   - if (self.personalForm.subjectEndTime === '') {
543   - Toast.fail('请选择营业截止时间')
544   - return false
545   - }
546   - if (self.personalForm.subjectLicense === '') {
547   - Toast.fail('请上传营业执照')
548   - return false
549   - }
550 633 if (self.personalForm.subjectOperator === '') {
551 634 Toast.fail('请输入经营者姓名')
552 635 return false
... ... @@ -748,7 +831,7 @@ export default {
748 831 .nextBtn {
749 832 display: block;
750 833 margin: 50px auto 0 auto;
751   - width: 315px;
  834 + width: 40%;
752 835 height: 42px;
753 836 background: #333333;
754 837 color: $mainColor;
... ...