作者 卢胜

详情,下单

正在显示 52 个修改的文件 包含 1655 行增加497 行删除
@@ -12,3 +12,29 @@ export const sortList = () => request({url: 'index/sort_index',method: 'post',da @@ -12,3 +12,29 @@ export const sortList = () => request({url: 'index/sort_index',method: 'post',da
12 // 首页相关资讯列表 /api/index/arc_list 12 // 首页相关资讯列表 /api/index/arc_list
13 export const arcList = () => request({url: 'index/arc_list',method: 'post',data: {}}) 13 export const arcList = () => request({url: 'index/arc_list',method: 'post',data: {}})
14 14
  15 +// 首页产品列表
  16 +export const product_list = (data) => request({url: 'product/product_list',method: 'post',data: data})
  17 +
  18 +// 首页产品详情
  19 +export const product_detail = (product_id) => request({url: 'product/product_detail',method: 'post',data: {product_id}})
  20 +
  21 +// 首页产品下单
  22 +export const product_buy = (data) => request({url: 'product/product_buy',method: 'post',data: data})
  23 +
  24 +// 产品收藏/取消
  25 +export const product_favorite = (product_id) => request({url: 'product/product_favorite',method: 'post',data: {product_id}})
  26 +
  27 +// 产品举报原因
  28 +export const report_list = (data) => request({url: 'product/report_list',method: 'post',data: data})
  29 +
  30 +// 获取买家填写的信息
  31 +export const last_buy_data = (data) => request({url: 'product/last_buy_data',method: 'post',data: data})
  32 +
  33 +// 产品举报
  34 +export const product_report = (data) => request({url: 'product/product_report',method: 'post',data: data})
  35 +
  36 +// 实名认证
  37 +export const user_cert = (data) => request({url: 'user/user_cert',method: 'post',data: data})
  38 +
  39 +// 上传图片
  40 +export const upload = (data) => request({url: 'common/upload',method: 'post',data: data})
@@ -3,13 +3,13 @@ @@ -3,13 +3,13 @@
3 <view class="buytop"> 3 <view class="buytop">
4 <text class="buytitle"> 数字货币</text> 4 <text class="buytitle"> 数字货币</text>
5 <view class="buybox flexA"> 5 <view class="buybox flexA">
6 - <image src="../../static/logo.png" mode=""></image> 6 + <image :src="list1[0]" mode=""></image>
7 <view class="buymiss"> 7 <view class="buymiss">
8 <view class="title"> 8 <view class="title">
9 - 比特币20个 9 + {{topdetail.name}}
10 </view> 10 </view>
11 <view class="money"> 11 <view class="money">
12 - <text>¥</text>1200 12 + <text>¥</text>{{topdetail.price}}
13 </view> 13 </view>
14 </view> 14 </view>
15 </view> 15 </view>
@@ -24,16 +24,16 @@ @@ -24,16 +24,16 @@
24 <text>*</text>接收账户: 24 <text>*</text>接收账户:
25 </view> 25 </view>
26 <view class="right"> 26 <view class="right">
27 - <input type="text" placeholder="请输入手机号或钱包地址" 27 + <input type="text" placeholder="请输入手机号或钱包地址" v-model="detail.buyer_package"
28 placeholder-style="color: rgba(0,0,0,0.26);font-size: 28rpx;"> 28 placeholder-style="color: rgba(0,0,0,0.26);font-size: 28rpx;">
29 </view> 29 </view>
30 </view> 30 </view>
31 <view class="paybar"> 31 <view class="paybar">
32 <view class="left"> 32 <view class="left">
33 - <text>*</text>微信号: 33 + <text>*</text>微信号:
34 </view> 34 </view>
35 <view class="right"> 35 <view class="right">
36 - <input type="text" placeholder="请输入" 36 + <input type="text" placeholder="请输入" v-model="detail.buyer_wechat"
37 placeholder-style="color: rgba(0,0,0,0.26);font-size: 28rpx;"> 37 placeholder-style="color: rgba(0,0,0,0.26);font-size: 28rpx;">
38 </view> 38 </view>
39 </view> 39 </view>
@@ -42,7 +42,7 @@ @@ -42,7 +42,7 @@
42 联系人: 42 联系人:
43 </view> 43 </view>
44 <view class="right"> 44 <view class="right">
45 - <input type="text" placeholder="选填" 45 + <input type="text" placeholder="选填" v-model="detail.buyer_name"
46 placeholder-style="color: rgba(0,0,0,0.26);font-size: 28rpx;"> 46 placeholder-style="color: rgba(0,0,0,0.26);font-size: 28rpx;">
47 </view> 47 </view>
48 </view> 48 </view>
@@ -51,26 +51,27 @@ @@ -51,26 +51,27 @@
51 联系电话: 51 联系电话:
52 </view> 52 </view>
53 <view class="right"> 53 <view class="right">
54 - <input type="text" placeholder="选填" 54 + <input type="text" placeholder="选填" v-model="detail.buyer_mobile"
55 placeholder-style="color: rgba(0,0,0,0.26);font-size: 28rpx;"> 55 placeholder-style="color: rgba(0,0,0,0.26);font-size: 28rpx;">
56 </view> 56 </view>
57 </view> 57 </view>
58 <view class="paybar"> 58 <view class="paybar">
59 <view class="left"> 59 <view class="left">
60 - 实名认证:<text>(未通过)</text> 60 + 实名认证:<text v-if="detail.is_cert==0">(未通过)</text><text class="ok" v-else>(已通过)</text>
61 </view> 61 </view>
62 - <view class="right flexA">  
63 - <text>去认证</text> 62 + <view class="right flexA" @click="tocart">
  63 + <text v-if="detail.is_cert==0">去认证</text>
  64 + <text class="ok" v-else>已认证</text>
64 <image src="../../static/ic-arrow.png" mode=""></image> 65 <image src="../../static/ic-arrow.png" mode=""></image>
65 </view> 66 </view>
66 </view> 67 </view>
67 </view> 68 </view>
68 </view> 69 </view>
69 <view class="btn"> 70 <view class="btn">
70 - <view class="paybtn"> 71 + <view class="paybtn" v-if="detail.is_cert==0">
71 确认支付 72 确认支付
72 </view> 73 </view>
73 - <view class="paybtn none"> 74 + <view class="paybtn none" v-else @click="product_buy">
74 确认支付 75 确认支付
75 </view> 76 </view>
76 </view> 77 </view>
@@ -78,11 +79,107 @@ @@ -78,11 +79,107 @@
78 </template> 79 </template>
79 80
80 <script> 81 <script>
  82 + import {
  83 + last_buy_data,
  84 + product_detail,
  85 + product_buy
  86 + } from '@/api/index.js'
81 export default { 87 export default {
82 data() { 88 data() {
83 return { 89 return {
  90 + product_id: "",
84 String: "", 91 String: "",
  92 + topdetail: "",
  93 + list1: [],
  94 + detail: {
  95 + product_id: "",
  96 + buyer_package: "",
  97 + buyer_wechat: "",
  98 + buyer_name: "",
  99 + buyer_mobile: "",
  100 + is_cert: "",
  101 + },
  102 + objk: {},
85 } 103 }
  104 + },
  105 + onLoad(options) {
  106 + this.product_id = options.id
  107 + this.product_detail()
  108 + this.last_buy_data()
  109 + },
  110 + onShow() {
  111 + if (uni.getStorageSync("showlist")) {
  112 + this.detail = uni.getStorageSync("showlist")
  113 + }
  114 + },
  115 + methods: {
  116 + //实名认证
  117 + tocart() {
  118 + let newbox = {
  119 + product_id: this.product_id,
  120 + buyer_package: this.detail.buyer_package,
  121 + buyer_wechat: this.detail.buyer_wechat,
  122 + buyer_name: this.detail.buyer_name,
  123 + buyer_mobile: this.detail.buyer_mobile,
  124 + is_cert: this.detail.is_cert
  125 + }
  126 + uni.setStorageSync("showlist", newbox)
  127 + uni.navigateTo({
  128 + url: "/pages/index/realName"
  129 + })
  130 + },
  131 + //详情
  132 + async product_detail() {
  133 + try {
  134 + const res = await product_detail(this.product_id)
  135 + console.log('product_detail', res)
  136 + this.topdetail = res.detail
  137 + this.list1 = res.detail.images_preview
  138 + // 保存数据
  139 + } catch (err) {
  140 + uni.showToast({
  141 + title: err,
  142 + icon: 'none'
  143 + })
  144 + console.log('product_detail', err)
  145 + }
  146 + },
  147 + //下单
  148 + async product_buy() {
  149 + console.log(this.detail, "000000")
  150 + let obj = {
  151 + product_id: this.product_id,
  152 + buyer_package: this.detail.buyer_package,
  153 + buyer_wechat: this.detail.buyer_wechat,
  154 + buyer_name: this.detail.buyer_name,
  155 + buyer_mobile: this.detail.buyer_mobile,
  156 + }
  157 + try {
  158 + const res = await product_buy(obj)
  159 + console.log('product_buy', res)
  160 + // 保存数据
  161 + } catch (err) {
  162 + uni.showToast({
  163 + title: err,
  164 + icon: 'none'
  165 + })
  166 + console.log('product_buy', err)
  167 + }
  168 + },
  169 + async last_buy_data() {
  170 + try {
  171 + const res = await last_buy_data()
  172 + console.log('last_buy_data', res)
  173 + this.detail = res.detail
  174 + // 保存数据
  175 + } catch (err) {
  176 + uni.showToast({
  177 + title: err,
  178 + icon: 'none'
  179 + })
  180 + console.log('last_buy_data', err)
  181 + }
  182 + },
86 } 183 }
87 } 184 }
88 </script> 185 </script>
@@ -183,6 +280,13 @@ @@ -183,6 +280,13 @@
183 font-weight: 400; 280 font-weight: 400;
184 font-family: "PingFang SC"; 281 font-family: "PingFang SC";
185 } 282 }
  283 +
  284 + .ok {
  285 + color: rgba(24, 209, 142, 1);
  286 + font-size: 28rpx;
  287 + font-weight: 400;
  288 + font-family: "PingFang SC";
  289 + }
186 } 290 }
187 291
188 .right { 292 .right {
@@ -195,6 +299,13 @@ @@ -195,6 +299,13 @@
195 font-family: "PingFang SC"; 299 font-family: "PingFang SC";
196 } 300 }
197 301
  302 + .ok {
  303 + color: rgba(24, 209, 142, 1);
  304 + font-size: 28rpx;
  305 + font-weight: 400;
  306 + font-family: "PingFang SC";
  307 + }
  308 +
198 image { 309 image {
199 width: 16rpx; 310 width: 16rpx;
200 height: 32rpx; 311 height: 32rpx;
@@ -226,10 +337,11 @@ @@ -226,10 +337,11 @@
226 font-size: 32rpx; 337 font-size: 32rpx;
227 font-weight: 600; 338 font-weight: 600;
228 font-family: "PingFang SC"; 339 font-family: "PingFang SC";
229 - background: rgba(240,242,245,1); 340 + background: rgba(240, 242, 245, 1);
230 } 341 }
231 - .none{  
232 - background: linear-gradient(134.8deg, rgba(255,232,100,1) 0%, rgba(255,216,0,1) 100%); 342 +
  343 + .none {
  344 + background: linear-gradient(134.8deg, rgba(255, 232, 100, 1) 0%, rgba(255, 216, 0, 1) 100%);
233 } 345 }
234 } 346 }
235 347
1 <template> 1 <template>
2 <view class="Detail"> 2 <view class="Detail">
3 <view class="topbg"> 3 <view class="topbg">
4 - <image class="bgimage" src="../../static/logo.png" mode=""></image> 4 + <view class="bgimage">
  5 + <u-swiper :list="list1" @change="change" @click="click" :height="375"></u-swiper>
  6 + </view>
5 <view class="topmain"> 7 <view class="topmain">
6 <view class="toptitle"> 8 <view class="toptitle">
7 <view class="money"> 9 <view class="money">
8 - <text>¥</text>600 10 + <text>¥</text>{{detail.price}}
9 </view> 11 </view>
10 <view class="topgroup"> 12 <view class="topgroup">
11 - <image src="../../static/heart.png" mode=""></image> 13 + <image src="../../static/heart.png" mode="" v-if="detail.is_fav==1" @click="product_favorite">
  14 + </image>
  15 + <image src="../../static/1.png" mode="" v-else @click="product_favorite"></image>
12 <image src="../../static/share.png" mode=""></image> 16 <image src="../../static/share.png" mode=""></image>
13 <image src="../../static/result.png" mode="" @click="show = true"></image> 17 <image src="../../static/result.png" mode="" @click="show = true"></image>
14 </view> 18 </view>
15 </view> 19 </view>
16 <view class="topcommit"> 20 <view class="topcommit">
17 - 比特币32个 21 + {{detail.name}}
18 </view> 22 </view>
19 <view class="toptype"> 23 <view class="toptype">
20 <view class="type"> 24 <view class="type">
21 - 所属分类:数字货币 25 + 所属分类:{{detail.sort.name}}
22 </view> 26 </view>
23 <view class="time"> 27 <view class="time">
24 - 发布于:2022-01-01 16:00 28 + 发布于:{{detail.publishtime}}
25 </view> 29 </view>
26 </view> 30 </view>
27 </view> 31 </view>
@@ -38,7 +42,7 @@ @@ -38,7 +42,7 @@
38 姓名 42 姓名
39 </view> 43 </view>
40 <view class="namelast"> 44 <view class="namelast">
41 - 张小萌 45 + {{detail.seller_name}}
42 </view> 46 </view>
43 </view> 47 </view>
44 <view class="missbar flexA"> 48 <view class="missbar flexA">
@@ -46,7 +50,7 @@ @@ -46,7 +50,7 @@
46 联系电话: 50 联系电话:
47 </view> 51 </view>
48 <view class="namelast"> 52 <view class="namelast">
49 - 张小萌 53 + {{detail.seller_mobile}}
50 </view> 54 </view>
51 </view> 55 </view>
52 <view class="missbar flexA"> 56 <view class="missbar flexA">
@@ -54,15 +58,15 @@ @@ -54,15 +58,15 @@
54 钱包地址: 58 钱包地址:
55 </view> 59 </view>
56 <view class="namelast"> 60 <view class="namelast">
57 - 张小萌 61 + {{detail.package_add}}
58 </view> 62 </view>
59 </view> 63 </view>
60 <view class="missbar flexA"> 64 <view class="missbar flexA">
61 <view class="name"> 65 <view class="name">
62 - 钱包地址 66 + 微信号
63 </view> 67 </view>
64 <view class="namelast"> 68 <view class="namelast">
65 - 张小萌 69 + {{detail.wechat_num}}
66 </view> 70 </view>
67 </view> 71 </view>
68 </view> 72 </view>
@@ -73,13 +77,16 @@ @@ -73,13 +77,16 @@
73 </view> 77 </view>
74 <text>卖家信息</text> 78 <text>卖家信息</text>
75 </view> 79 </view>
76 - <rich-text nodes="String"></rich-text> 80 + <view class="showcontant">
  81 + {{detail.description}}
  82 + </view>
77 </view> 83 </view>
78 <view class="btn"> 84 <view class="btn">
79 - <view class="paybtn"> 85 + <view class="paybtn" @click="product_buy">
80 立即购买 86 立即购买
81 </view> 87 </view>
82 </view> 88 </view>
  89 + <!-- <u-picker :show="resurtshow" :columns="columns"></u-picker> -->
83 <u-popup :show="show" @close="close" @open="open" mode="center" :round="12"> 90 <u-popup :show="show" @close="close" @open="open" mode="center" :round="12">
84 <view class="popshow"> 91 <view class="popshow">
85 <view class="title"> 92 <view class="title">
@@ -90,7 +97,7 @@ @@ -90,7 +97,7 @@
90 举报原因 97 举报原因
91 </view> 98 </view>
92 <view class="select"> 99 <view class="select">
93 - <uni-data-select v-model="value" :localdata="range" @change="change"></uni-data-select> 100 + <uni-data-select v-model="value" :localdata="range" @change="change()"></uni-data-select>
94 <image src="../../static/ic-arrow2.png" mode=""></image> 101 <image src="../../static/ic-arrow2.png" mode=""></image>
95 </view> 102 </view>
96 </view> 103 </view>
@@ -98,13 +105,15 @@ @@ -98,13 +105,15 @@
98 <view class="showtltle"> 105 <view class="showtltle">
99 详细描述 106 详细描述
100 </view> 107 </view>
101 - <textarea name="" id="" cols="30" rows="10" placeholder="请输入"></textarea> 108 + <view class="showcont">
  109 + description
  110 + </view>
102 </view> 111 </view>
103 <view class="btngroup"> 112 <view class="btngroup">
104 - <view class="concle"> 113 + <view class="concle" @click="close">
105 取消 114 取消
106 </view> 115 </view>
107 - <view class="requt"> 116 + <view class="requt" @click="">
108 提交 117 提交
109 </view> 118 </view>
110 </view> 119 </view>
@@ -114,6 +123,11 @@ @@ -114,6 +123,11 @@
114 </template> 123 </template>
115 124
116 <script> 125 <script>
  126 + import {
  127 + product_detail,
  128 + product_favorite,
  129 + report_list
  130 + } from '@/api/index.js'
117 import uniselect from "@/uni_modules/uni-data-select/components/uni-data-select/uni-data-select.vue" 131 import uniselect from "@/uni_modules/uni-data-select/components/uni-data-select/uni-data-select.vue"
118 export default { 132 export default {
119 components: { 133 components: {
@@ -121,9 +135,16 @@ @@ -121,9 +135,16 @@
121 }, 135 },
122 data() { 136 data() {
123 return { 137 return {
  138 + id: "",
124 String: "", 139 String: "",
125 show: false, 140 show: false,
126 value: 0, 141 value: 0,
  142 + detail: {
  143 + sort: {
  144 + name: ""
  145 + }
  146 + },
  147 + list1: [], //轮播图
127 range: [{ 148 range: [{
128 value: 0, 149 value: 0,
129 text: "篮球" 150 text: "篮球"
@@ -139,16 +160,75 @@ @@ -139,16 +160,75 @@
139 ], 160 ],
140 } 161 }
141 }, 162 },
142 - methods: {  
143 - open() {  
144 - // console.log('open'); 163 + onLoad(options) {
  164 + this.id = options.id
  165 + this.product_detail()
  166 + this.report_list()
145 }, 167 },
  168 + methods: {
  169 + open() {},
146 close() { 170 close() {
147 this.show = false 171 this.show = false
148 - // console.log('close'); 172 + },
  173 + change(e) {
  174 + console.log("e:", e);
  175 + },
  176 + // 举报原因
  177 + async report_list() {
  178 + try {
  179 + const res = await report_list()
  180 + console.log('report_list', res)
  181 + this.range = res.list
  182 + this.range.forEach((item, index) => {
  183 + item.text = item.name
  184 + })
  185 + // 保存数据
  186 + } catch (err) {
  187 + uni.showToast({
  188 + title: err,
  189 + icon: 'none'
  190 + })
  191 + console.log('report_list', err)
149 } 192 }
150 }, 193 },
151 - 194 + //收藏、取消收藏
  195 + async product_favorite() {
  196 + try {
  197 + const res = await product_favorite(this.id)
  198 + console.log('product_favorite', res)
  199 + this.product_detail()
  200 + // 保存数据
  201 + } catch (err) {
  202 + uni.showToast({
  203 + title: err,
  204 + icon: 'none'
  205 + })
  206 + console.log('product_favorite', err)
  207 + }
  208 + },
  209 + //详情
  210 + async product_detail() {
  211 + try {
  212 + const res = await product_detail(this.id)
  213 + console.log('product_detail', res)
  214 + this.detail = res.detail
  215 + this.list1 = res.detail.images_preview
  216 + // 保存数据
  217 + } catch (err) {
  218 + uni.showToast({
  219 + title: err,
  220 + icon: 'none'
  221 + })
  222 + console.log('product_detail', err)
  223 + }
  224 + },
  225 + //下单跳转
  226 + async product_buy() {
  227 + uni.navigateTo({
  228 + url:"/pages/index/buy?id="+this.id
  229 + })
  230 + },
  231 + },
152 } 232 }
153 </script> 233 </script>
154 234
@@ -158,6 +238,8 @@ @@ -158,6 +238,8 @@
158 } 238 }
159 239
160 .Detail { 240 .Detail {
  241 + padding-bottom: 160rpx;
  242 +
161 .topbg { 243 .topbg {
162 .bgimage { 244 .bgimage {
163 width: 750rpx; 245 width: 750rpx;
@@ -246,6 +328,14 @@ @@ -246,6 +328,14 @@
246 } 328 }
247 } 329 }
248 330
  331 + .showcontant {
  332 + margin-top: 24rpx;
  333 + color: rgba(0, 0, 0, 0.4);
  334 + font-size: 24rpx;
  335 + font-weight: 400;
  336 + font-family: "PingFang SC";
  337 + }
  338 +
249 .missbar { 339 .missbar {
250 margin-top: 24rpx; 340 margin-top: 24rpx;
251 341
@@ -351,7 +441,8 @@ @@ -351,7 +441,8 @@
351 display: flex; 441 display: flex;
352 align-items: center; 442 align-items: center;
353 width: 128rpx; 443 width: 128rpx;
354 - image{ 444 +
  445 + image {
355 width: 16rpx; 446 width: 16rpx;
356 height: 24rpx; 447 height: 24rpx;
357 } 448 }
@@ -370,6 +461,13 @@ @@ -370,6 +461,13 @@
370 font-family: "PingFang SC"; 461 font-family: "PingFang SC";
371 } 462 }
372 463
  464 + .showcont {
  465 + color: rgba(0, 0, 0, 0.4);
  466 + font-size: 24rpx;
  467 + font-weight: 400;
  468 + font-family: "PingFang SC";
  469 + text-align: left;
  470 + }
373 471
374 textarea { 472 textarea {
375 margin-top: 12rpx; 473 margin-top: 12rpx;
@@ -12,8 +12,8 @@ @@ -12,8 +12,8 @@
12 </view> 12 </view>
13 </view> 13 </view>
14 <view class="banner"> 14 <view class="banner">
15 - <u-swiper keyName="image_preview" :list="list1" @click="click" :indicator="true" indicatorMode="dot" radius="12" height="160"  
16 - :circular="true"> 15 + <u-swiper keyName="image_preview" :list="list1" @click="click" :indicator="true" indicatorMode="dot"
  16 + radius="12" height="160" :circular="true">
17 </u-swiper> 17 </u-swiper>
18 </view> 18 </view>
19 </view> 19 </view>
@@ -81,31 +81,21 @@ @@ -81,31 +81,21 @@
81 </view> 81 </view>
82 </view> 82 </view>
83 <view class="misslist"> 83 <view class="misslist">
84 - <custom-waterfalls-flow :value="list">  
85 - <!-- #ifdef MP-WEIXIN -->  
86 - <view class="item" v-for="(item,index) in list" :key="index" slot="slot{{index}}">  
87 - <view class="title">{{item.title}}</view>  
88 - <view class="desc">  
89 - <text>张三</text>  
90 - <view class="money">  
91 - <text>¥</text>6666  
92 - </view>  
93 - </view>  
94 - </view>  
95 - <!-- #endif -->  
96 - <!-- #ifndef MP-WEIXIN --> 84 + <custom-waterfalls-flow :value="list" @wapperClick="godetail">
97 <template v-slot:default="item"> 85 <template v-slot:default="item">
98 <view class="item"> 86 <view class="item">
99 - <view class="title">{{item.title}}</view> 87 + <view class="title">{{item.name}}</view>
  88 + <view class="types">
  89 + 所属分类:{{item.sort.name}}
  90 + </view>
100 <view class="desc"> 91 <view class="desc">
101 - <text>张三</text> 92 + <text v-if="item.seller_name">{{item.seller_name}}</text>
102 <view class="money"> 93 <view class="money">
103 - <text>¥</text>6666 94 + <text>¥</text>{{item.price}}
104 </view> 95 </view>
105 </view> 96 </view>
106 </view> 97 </view>
107 </template> 98 </template>
108 - <!-- #endif -->  
109 </custom-waterfalls-flow> 99 </custom-waterfalls-flow>
110 </view> 100 </view>
111 </view> 101 </view>
@@ -115,7 +105,13 @@ @@ -115,7 +105,13 @@
115 </template> 105 </template>
116 106
117 <script> 107 <script>
118 - import { getBanner, sortList,arcList} from '@/api/index' 108 + import {
  109 + getBanner,
  110 + sortList,
  111 + arcList,
  112 + product_list,
  113 + product_report
  114 + } from '@/api/index'
119 import helangWaterfall from "@/uni_modules/custom-waterfalls-flow/components/custom-waterfalls-flow/custom-waterfalls-flow.vue" 115 import helangWaterfall from "@/uni_modules/custom-waterfalls-flow/components/custom-waterfalls-flow/custom-waterfalls-flow.vue"
120 import Botton from "@/components/Botton.vue" 116 import Botton from "@/components/Botton.vue"
121 export default { 117 export default {
@@ -135,68 +131,97 @@ @@ -135,68 +131,97 @@
135 leftlist: [1, 2, 3], 131 leftlist: [1, 2, 3],
136 fallindex: 1, 132 fallindex: 1,
137 //瀑布 133 //瀑布
138 - list: [{  
139 - image: 'https://via.placeholder.com/200x500.png/ff0000',  
140 - title: '我是标题1',  
141 - desc: '描述描述描述描述描述描述描述描述1'  
142 - },  
143 - {  
144 - image: 'https://via.placeholder.com/200x200.png/2878ff',  
145 - title: '我是标题2',  
146 - desc: '描述描述描述描述描述描述描述描述2'  
147 - }, {  
148 - image: 'https://via.placeholder.com/200x200.png/2878ff',  
149 - title: '我是标题2',  
150 - desc: '描述描述描述描述描述描述描述描述2'  
151 - },  
152 - {  
153 - image: 'https://via.placeholder.com/200x200.png/2878ff',  
154 - title: '我是标题2',  
155 - desc: '描述描述描述描述描述描述描述描述2'  
156 - },  
157 - {  
158 - image: 'https://via.placeholder.com/200x200.png/2878ff',  
159 - title: '我是标题2',  
160 - desc: '描述描述描述描述描述描述描述描述2'  
161 - }  
162 - ],  
163 - categoryList:[], // 分类列表  
164 - categoryLength:0 ,//分类数量  
165 - informationList:[] // 相关资讯 134 + list: [],
  135 + categoryList: [], // 分类列表
  136 + categoryLength: 0, //分类数量
  137 + informationList: [], // 相关资讯
  138 + currentpage: 1, //分页
166 } 139 }
167 }, 140 },
168 onShow() { 141 onShow() {
169 this.initial() 142 this.initial()
  143 + this.product_list()
170 }, 144 },
171 onLoad() { 145 onLoad() {
172 146
173 }, 147 },
174 methods: { 148 methods: {
175 - async initial(){ 149 + //产品举报
  150 + async product_report(){
  151 + let obj={
  152 + product_id:this.id,
  153 + report_id:"",
  154 + content:"",
  155 + }
  156 + try {
  157 + const res = await product_report(obj)
  158 + console.log('product_report', res)
  159 + // 保存数据
  160 + } catch (err) {
  161 + uni.showToast({ title:err,icon:'none' })
  162 + console.log('product_report', err)
  163 + }
  164 + },
  165 + //产品列表
  166 + async product_list() {
  167 + let obj = {
  168 + type: this.fallindex,
  169 + page: this.currentpage,
  170 + pagenum: 15,
  171 + }
  172 + try {
  173 + const res = await product_list(obj)
  174 + console.log('产品列表', res)
  175 + this.list = res.list.data
  176 + this.list.forEach((item, index) => {
  177 + item.image = item.images_preview[0]
  178 + })
  179 + console.log('产品列表', this.list)
  180 + // 保存数据
  181 + } catch (err) {
  182 + uni.showToast({
  183 + title: err,
  184 + icon: 'none'
  185 + })
  186 + console.log('product_list', err)
  187 + }
  188 + },
  189 + async initial() {
176 try { 190 try {
177 // 轮播图 191 // 轮播图
178 const res = await getBanner() 192 const res = await getBanner()
179 // 分类 193 // 分类
180 const sortRes = await sortList() 194 const sortRes = await sortList()
181 // 相关资讯 195 // 相关资讯
182 - const information= await arcList() 196 + const information = await arcList()
183 // 轮播图 197 // 轮播图
184 - this.list1 =res.list 198 + this.list1 = res.list
185 this.categoryLength = sortRes.list.length 199 this.categoryLength = sortRes.list.length
186 - this.categoryList = sortRes.list.length>8?sortRes.list.slice(0,7):sortRes.list  
187 - this.informationList = information.list.length>3?information.list.slice(0,3):information.list  
188 - console.log(sortRes,'分类'); 200 + this.categoryList = sortRes.list.length > 8 ? sortRes.list.slice(0, 7) : sortRes.list
  201 + this.informationList = information.list.length > 3 ? information.list.slice(0, 3) : information
  202 + .list
  203 + console.log(sortRes, '分类');
189 console.log('getBanner', res) 204 console.log('getBanner', res)
190 - console.log(information,'资讯列表'); 205 + console.log(information, '资讯列表');
191 // 保存数据 206 // 保存数据
192 } catch (err) { 207 } catch (err) {
193 - uni.showToast({ title:err,icon:'none' }) 208 + uni.showToast({
  209 + title: err,
  210 + icon: 'none'
  211 + })
194 console.log('getBanner', err) 212 console.log('getBanner', err)
195 } 213 }
196 }, 214 },
197 changefall(e) { 215 changefall(e) {
198 this.fallindex = e 216 this.fallindex = e
199 }, 217 },
  218 + //跳转详情
  219 + godetail(item) {
  220 + console.log(1)
  221 + uni.navigateTo({
  222 + url: "/pages/index/detail?id=" +item.id
  223 + })
  224 + },
200 //跳转搜索 225 //跳转搜索
201 gosourch() { 226 gosourch() {
202 uni.navigateTo({ 227 uni.navigateTo({
@@ -275,6 +300,7 @@ @@ -275,6 +300,7 @@
275 300
276 .contail { 301 .contail {
277 padding: 0 32rpx; 302 padding: 0 32rpx;
  303 + padding-bottom: 160rpx;
278 box-sizing: border-box; 304 box-sizing: border-box;
279 305
280 .nev { 306 .nev {
@@ -336,6 +362,8 @@ @@ -336,6 +362,8 @@
336 font-family: "PingFang SC"; 362 font-family: "PingFang SC";
337 } 363 }
338 364
  365 +
  366 +
339 .more { 367 .more {
340 display: flex; 368 display: flex;
341 align-items: center; 369 align-items: center;
@@ -468,6 +496,14 @@ @@ -468,6 +496,14 @@
468 padding: 24rpx; 496 padding: 24rpx;
469 box-sizing: border-box; 497 box-sizing: border-box;
470 498
  499 + .types {
  500 + margin-top: 8rpx;
  501 + color: rgba(0, 0, 0, 0.6);
  502 + font-size: 24rpx;
  503 + font-weight: 400;
  504 + font-family: "PingFang SC";
  505 + }
  506 +
471 .desc { 507 .desc {
472 margin-top: 14rpx; 508 margin-top: 14rpx;
473 display: flex; 509 display: flex;
@@ -8,32 +8,35 @@ @@ -8,32 +8,35 @@
8 <view class="beforename"> 8 <view class="beforename">
9 姓名: 9 姓名:
10 </view> 10 </view>
11 - <input type="text" placeholder="请输入"> 11 + <input type="text" placeholder="请输入" v-model="kname">
12 </view> 12 </view>
13 <view class="bar"> 13 <view class="bar">
14 <view class="beforename"> 14 <view class="beforename">
15 - 姓名 15 + 身份证号
16 </view> 16 </view>
17 - <input type="text" placeholder="请输入"> 17 + <input type="text" placeholder="请输入" v-model="kidentity">
18 </view> 18 </view>
19 - <view class="imgbar"> 19 + <view class="imgbar" @click="chooseImgs(1)">
20 <view class="mytitle">身份证照片</view> 20 <view class="mytitle">身份证照片</view>
21 - <image class="image_s" src="../../static/img_card_b.png" mode=""></image> 21 + <image class="image_s" :src="head_image" mode="" v-if="head_image"></image>
  22 + <image class="image_s" src="../../static/img_card_b.png" mode="" v-else></image>
22 <view class="tip"> 23 <view class="tip">
23 点击相机拍摄头像面 24 点击相机拍摄头像面
24 </view> 25 </view>
25 - <image class="image_b" src="../../static/icon_square_cream.png" mode=""></image> 26 + <image class="image_b" src="../../static/icon_square_cream.png" mode="" v-if="!head_image"></image>
26 </view> 27 </view>
27 - <view class="imgbar">  
28 - <image class="image_s" src="../../static/img_card_a.png" mode=""></image> 28 + <view class="imgbar" @click="chooseImgs(2)">
  29 + <image class="image_s" :src="last_image" mode="" v-if="last_image"></image>
  30 + <image class="image_s" src="../../static/img_card_a.png" mode="" v-else></image>
29 <view class="tip"> 31 <view class="tip">
30 点击相机拍摄国徽面 32 点击相机拍摄国徽面
31 </view> 33 </view>
32 - <image class="image_b" src="../../static/icon_square_cream.png" mode=""></image> 34 + <image class="image_b"></image>
  35 + <image class="image_b" src="../../static/icon_square_cream.png" mode="" v-if="!last_image"></image>
33 </view> 36 </view>
34 </view> 37 </view>
35 <view class="btn"> 38 <view class="btn">
36 - <view class="paybtn"> 39 + <view class="paybtn" @click="user_cert">
37 提交 40 提交
38 </view> 41 </view>
39 </view> 42 </view>
@@ -42,6 +45,82 @@ @@ -42,6 +45,82 @@
42 </template> 45 </template>
43 46
44 <script> 47 <script>
  48 + import {
  49 + user_cert
  50 + } from '@/api/index.js'
  51 + import {
  52 + baseURL
  53 + } from '@/utils/request.js'
  54 + export default {
  55 + data() {
  56 + return {
  57 + kname: "",
  58 + kidentity: "",
  59 + head_image: "../../static/icon_square_cream.png",
  60 + last_image: "../../static/icon_square_cream.png",
  61 + }
  62 + },
  63 + onLoad() {
  64 +
  65 + },
  66 + methods: {
  67 + //实名认证
  68 + async user_cert() {
  69 + let obj = {
  70 + name: this.kname,
  71 + identity: this.kidentity,
  72 + image_front: this.head_image,
  73 + image_back: this.last_image,
  74 + }
  75 + try {
  76 + const res = await user_cert(obj)
  77 + console.log('user_cert', res)
  78 + let objk = uni.getStorageSync("showlist")
  79 + objk.is_cert = 1
  80 + uni.setStorageSync("showlist", objk)
  81 + uni.navigateBack({
  82 + delta: 1
  83 + })
  84 + // 保存数据
  85 + } catch (err) {
  86 + uni.showToast({
  87 + title: err,
  88 + icon: 'none'
  89 + })
  90 + console.log('user_cert', err)
  91 + }
  92 + },
  93 + //上传图片
  94 + chooseImgs(type) {
  95 + let that = this;
  96 + uni.chooseImage({ // 从本地选择图片或使用相机拍照
  97 + success: (res) => {
  98 + count: 1, // 最多可以选择的图片张数,默认为9张
  99 + console.log(res)
  100 + const tempFilePaths = res.tempFilePaths; // 成功的返回图片的本地路径列表
  101 + uni.uploadFile({ // 直接上传文件到云储存
  102 + url: baseURL + 'common/upload', //仅为示例,非真实的接口地址
  103 + filePath: res.tempFilePaths[0], // 要上传文件的对象
  104 + name: 'file',
  105 + formData: {
  106 + 'user': 'test'
  107 + },
  108 + success: (uploadFileRes) => {
  109 + let data = JSON.parse(uploadFileRes.data);
  110 + console.log(data);
  111 + if (type == 1) {
  112 + that.head_image = data.data.fullurl; // 绝对路径
  113 + } else {
  114 + that.last_image = data.data.fullurl; // 绝对路径
  115 + }
  116 + }
  117 + });
  118 + }
  119 + })
  120 + return;
  121 + },
  122 + }
  123 + }
45 </script> 124 </script>
46 125
47 <style lang="scss"> 126 <style lang="scss">
@@ -60,6 +139,7 @@ @@ -60,6 +139,7 @@
60 .contail { 139 .contail {
61 margin-top: 32rpx; 140 margin-top: 32rpx;
62 padding-bottom: 160rpx; 141 padding-bottom: 160rpx;
  142 +
63 .bar { 143 .bar {
64 border-bottom: 1px solid #f0f0f0; 144 border-bottom: 1px solid #f0f0f0;
65 padding: 32rpx; 145 padding: 32rpx;
@@ -74,6 +154,7 @@ @@ -74,6 +154,7 @@
74 .imgbar { 154 .imgbar {
75 text-align: center; 155 text-align: center;
76 position: relative; 156 position: relative;
  157 +
77 .mytitle { 158 .mytitle {
78 margin-top: 32rpx; 159 margin-top: 32rpx;
79 text-align: left; 160 text-align: left;
@@ -88,14 +169,16 @@ @@ -88,14 +169,16 @@
88 width: 524rpx; 169 width: 524rpx;
89 height: 330rpx; 170 height: 330rpx;
90 } 171 }
91 - .image_b{ 172 +
  173 + .image_b {
92 position: absolute; 174 position: absolute;
93 top: 50%; 175 top: 50%;
94 left: 50%; 176 left: 50%;
95 - transform: translate(-50%,-50%); 177 + transform: translate(-50%, -50%);
96 width: 128rpx; 178 width: 128rpx;
97 height: 128rpx; 179 height: 128rpx;
98 } 180 }
  181 +
99 .tip { 182 .tip {
100 margin-top: 25rpx; 183 margin-top: 25rpx;
101 color: rgba(0, 0, 0, 0.4); 184 color: rgba(0, 0, 0, 0.4);

659 字节

1 -{"version":3,"sources":["uni-app:///E:/HBuilderX.2.6.11.20200409/HBuilderX.2.6.11.20200409/HBuilderX/plugins/uniapp-cli/webpack/bootstrap"],"names":[],"mappings":";QAAA;QACA;QACA;QACA;QACA;;QAEA;QACA;QACA;QACA,QAAQ,oBAAoB;QAC5B;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;;QAEA;QACA;QACA;;QAEA;QACA;;QAEA;QACA;QACA;QACA;QACA;QACA,iBAAiB,4BAA4B;QAC7C;QACA;QACA,kBAAkB,2BAA2B;QAC7C;QACA;QACA;QACA;QACA;QACA;QACA;QACA;;QAEA;QACA;;QAEA;QACA;;QAEA;QACA;QACA;QACA;;QAEA;QACA;QACA;QACA;QACA;QACA;;QAEA;;QAEA;QACA;QACA;QACA;;QAEA;QACA;;QAEA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;;QAEA;QACA;;QAEA;QACA;;QAEA;QACA;QACA;;QAEA;QACA;QACA;QACA;;;QAGA;QACA,oBAAoB;QACpB;QACA;QACA;QACA,uBAAuB,wuEAAwuE;QAC/vE;QACA;QACA,mBAAmB,6BAA6B;QAChD;QACA;QACA;QACA;QACA;QACA,mBAAmB,8BAA8B;QACjD;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;;QAEA;QACA;QACA,KAAK;QACL;QACA,KAAK;QACL;;QAEA;;QAEA;QACA,iCAAiC;;QAEjC;QACA;QACA;QACA,KAAK;QACL;QACA;QACA;QACA,MAAM;QACN;;QAEA;QACA;QACA;;QAEA;QACA;QACA;QACA;QACA;QACA;;QAEA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA,wBAAwB,kCAAkC;QAC1D,MAAM;QACN;QACA;QACA;QACA;QACA;QACA;;QAEA;QACA;;QAEA;QACA;;QAEA;QACA;QACA;QACA,0CAA0C,gCAAgC;QAC1E;QACA;;QAEA;QACA;QACA;QACA,wDAAwD,kBAAkB;QAC1E;QACA,iDAAiD,cAAc;QAC/D;;QAEA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA,yCAAyC,iCAAiC;QAC1E,gHAAgH,mBAAmB,EAAE;QACrI;QACA;;QAEA;QACA;QACA;QACA,2BAA2B,0BAA0B,EAAE;QACvD,iCAAiC,eAAe;QAChD;QACA;QACA;;QAEA;QACA,sDAAsD,+DAA+D;;QAErH;QACA;;QAEA;QACA,0CAA0C,oBAAoB,WAAW;;QAEzE;QACA;QACA;QACA;QACA,gBAAgB,uBAAuB;QACvC;;;QAGA;QACA","file":"common/runtime.js","sourcesContent":[" \t// install a JSONP callback for chunk loading\n \tfunction webpackJsonpCallback(data) {\n \t\tvar chunkIds = data[0];\n \t\tvar moreModules = data[1];\n \t\tvar executeModules = data[2];\n\n \t\t// add \"moreModules\" to the modules object,\n \t\t// then flag all \"chunkIds\" as loaded and fire callback\n \t\tvar moduleId, chunkId, i = 0, resolves = [];\n \t\tfor(;i < chunkIds.length; i++) {\n \t\t\tchunkId = chunkIds[i];\n \t\t\tif(Object.prototype.hasOwnProperty.call(installedChunks, chunkId) && installedChunks[chunkId]) {\n \t\t\t\tresolves.push(installedChunks[chunkId][0]);\n \t\t\t}\n \t\t\tinstalledChunks[chunkId] = 0;\n \t\t}\n \t\tfor(moduleId in moreModules) {\n \t\t\tif(Object.prototype.hasOwnProperty.call(moreModules, moduleId)) {\n \t\t\t\tmodules[moduleId] = moreModules[moduleId];\n \t\t\t}\n \t\t}\n \t\tif(parentJsonpFunction) parentJsonpFunction(data);\n\n \t\twhile(resolves.length) {\n \t\t\tresolves.shift()();\n \t\t}\n\n \t\t// add entry modules from loaded chunk to deferred list\n \t\tdeferredModules.push.apply(deferredModules, executeModules || []);\n\n \t\t// run deferred modules when all chunks ready\n \t\treturn checkDeferredModules();\n \t};\n \tfunction checkDeferredModules() {\n \t\tvar result;\n \t\tfor(var i = 0; i < deferredModules.length; i++) {\n \t\t\tvar deferredModule = deferredModules[i];\n \t\t\tvar fulfilled = true;\n \t\t\tfor(var j = 1; j < deferredModule.length; j++) {\n \t\t\t\tvar depId = deferredModule[j];\n \t\t\t\tif(installedChunks[depId] !== 0) fulfilled = false;\n \t\t\t}\n \t\t\tif(fulfilled) {\n \t\t\t\tdeferredModules.splice(i--, 1);\n \t\t\t\tresult = __webpack_require__(__webpack_require__.s = deferredModule[0]);\n \t\t\t}\n \t\t}\n\n \t\treturn result;\n \t}\n\n \t// The module cache\n \tvar installedModules = {};\n\n \t// object to store loaded CSS chunks\n \tvar installedCssChunks = {\n \t\t\"common/runtime\": 0\n \t}\n\n \t// object to store loaded and loading chunks\n \t// undefined = chunk not loaded, null = chunk preloaded/prefetched\n \t// Promise = chunk loading, 0 = chunk loaded\n \tvar installedChunks = {\n \t\t\"common/runtime\": 0\n \t};\n\n \tvar deferredModules = [];\n\n \t// script path function\n \tfunction jsonpScriptSrc(chunkId) {\n \t\treturn __webpack_require__.p + \"\" + chunkId + \".js\"\n \t}\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n \t// This file contains only the entry chunk.\n \t// The chunk loading function for additional chunks\n \t__webpack_require__.e = function requireEnsure(chunkId) {\n \t\tvar promises = [];\n\n\n \t\t// mini-css-extract-plugin CSS loading\n \t\tvar cssChunks = {\"node-modules/uview-ui/components/u-swiper/u-swiper\":1,\"uni_modules/custom-waterfalls-flow/components/custom-waterfalls-flow/custom-waterfalls-flow\":1,\"components/Botton\":1,\"node-modules/uview-ui/components/u-search/u-search\":1,\"node-modules/uview-ui/components/u-popup/u-popup\":1,\"uni_modules/uni-data-select/components/uni-data-select/uni-data-select\":1,\"node-modules/uview-ui/components/u-gap/u-gap\":1,\"node-modules/uview-ui/components/u-upload/u-upload\":1,\"node-modules/uview-ui/components/u-sticky/u-sticky\":1,\"node-modules/uview-ui/components/u-tabs/u-tabs\":1,\"node-modules/uview-ui/components/u-loading-icon/u-loading-icon\":1,\"node-modules/uview-ui/components/u-swiper-indicator/u-swiper-indicator\":1,\"node-modules/uview-ui/components/u-icon/u-icon\":1,\"node-modules/uview-ui/components/u-overlay/u-overlay\":1,\"node-modules/uview-ui/components/u-safe-bottom/u-safe-bottom\":1,\"node-modules/uview-ui/components/u-status-bar/u-status-bar\":1,\"node-modules/uview-ui/components/u-transition/u-transition\":1,\"node-modules/uview-ui/components/u-badge/u-badge\":1,\"node-modules/uview-ui/components/u-textarea/u-textarea\":1};\n \t\tif(installedCssChunks[chunkId]) promises.push(installedCssChunks[chunkId]);\n \t\telse if(installedCssChunks[chunkId] !== 0 && cssChunks[chunkId]) {\n \t\t\tpromises.push(installedCssChunks[chunkId] = new Promise(function(resolve, reject) {\n \t\t\t\tvar href = \"\" + ({\"node-modules/uview-ui/components/u-swiper/u-swiper\":\"node-modules/uview-ui/components/u-swiper/u-swiper\",\"uni_modules/custom-waterfalls-flow/components/custom-waterfalls-flow/custom-waterfalls-flow\":\"uni_modules/custom-waterfalls-flow/components/custom-waterfalls-flow/custom-waterfalls-flow\",\"components/Botton\":\"components/Botton\",\"node-modules/uview-ui/components/u-search/u-search\":\"node-modules/uview-ui/components/u-search/u-search\",\"node-modules/uview-ui/components/u-popup/u-popup\":\"node-modules/uview-ui/components/u-popup/u-popup\",\"uni_modules/uni-data-select/components/uni-data-select/uni-data-select\":\"uni_modules/uni-data-select/components/uni-data-select/uni-data-select\",\"node-modules/uview-ui/components/u-gap/u-gap\":\"node-modules/uview-ui/components/u-gap/u-gap\",\"node-modules/uview-ui/components/u-upload/u-upload\":\"node-modules/uview-ui/components/u-upload/u-upload\",\"node-modules/uview-ui/components/u-sticky/u-sticky\":\"node-modules/uview-ui/components/u-sticky/u-sticky\",\"node-modules/uview-ui/components/u-tabs/u-tabs\":\"node-modules/uview-ui/components/u-tabs/u-tabs\",\"node-modules/uview-ui/components/u--textarea/u--textarea\":\"node-modules/uview-ui/components/u--textarea/u--textarea\",\"node-modules/uview-ui/components/u-loading-icon/u-loading-icon\":\"node-modules/uview-ui/components/u-loading-icon/u-loading-icon\",\"node-modules/uview-ui/components/u-swiper-indicator/u-swiper-indicator\":\"node-modules/uview-ui/components/u-swiper-indicator/u-swiper-indicator\",\"node-modules/uview-ui/components/u-icon/u-icon\":\"node-modules/uview-ui/components/u-icon/u-icon\",\"node-modules/uview-ui/components/u-overlay/u-overlay\":\"node-modules/uview-ui/components/u-overlay/u-overlay\",\"node-modules/uview-ui/components/u-safe-bottom/u-safe-bottom\":\"node-modules/uview-ui/components/u-safe-bottom/u-safe-bottom\",\"node-modules/uview-ui/components/u-status-bar/u-status-bar\":\"node-modules/uview-ui/components/u-status-bar/u-status-bar\",\"node-modules/uview-ui/components/u-transition/u-transition\":\"node-modules/uview-ui/components/u-transition/u-transition\",\"node-modules/uview-ui/components/u-badge/u-badge\":\"node-modules/uview-ui/components/u-badge/u-badge\",\"node-modules/uview-ui/components/u-textarea/u-textarea\":\"node-modules/uview-ui/components/u-textarea/u-textarea\"}[chunkId]||chunkId) + \".wxss\";\n \t\t\t\tvar fullhref = __webpack_require__.p + href;\n \t\t\t\tvar existingLinkTags = document.getElementsByTagName(\"link\");\n \t\t\t\tfor(var i = 0; i < existingLinkTags.length; i++) {\n \t\t\t\t\tvar tag = existingLinkTags[i];\n \t\t\t\t\tvar dataHref = tag.getAttribute(\"data-href\") || tag.getAttribute(\"href\");\n \t\t\t\t\tif(tag.rel === \"stylesheet\" && (dataHref === href || dataHref === fullhref)) return resolve();\n \t\t\t\t}\n \t\t\t\tvar existingStyleTags = document.getElementsByTagName(\"style\");\n \t\t\t\tfor(var i = 0; i < existingStyleTags.length; i++) {\n \t\t\t\t\tvar tag = existingStyleTags[i];\n \t\t\t\t\tvar dataHref = tag.getAttribute(\"data-href\");\n \t\t\t\t\tif(dataHref === href || dataHref === fullhref) return resolve();\n \t\t\t\t}\n \t\t\t\tvar linkTag = document.createElement(\"link\");\n \t\t\t\tlinkTag.rel = \"stylesheet\";\n \t\t\t\tlinkTag.type = \"text/css\";\n \t\t\t\tlinkTag.onload = resolve;\n \t\t\t\tlinkTag.onerror = function(event) {\n \t\t\t\t\tvar request = event && event.target && event.target.src || fullhref;\n \t\t\t\t\tvar err = new Error(\"Loading CSS chunk \" + chunkId + \" failed.\\n(\" + request + \")\");\n \t\t\t\t\terr.code = \"CSS_CHUNK_LOAD_FAILED\";\n \t\t\t\t\terr.request = request;\n \t\t\t\t\tdelete installedCssChunks[chunkId]\n \t\t\t\t\tlinkTag.parentNode.removeChild(linkTag)\n \t\t\t\t\treject(err);\n \t\t\t\t};\n \t\t\t\tlinkTag.href = fullhref;\n\n \t\t\t\tvar head = document.getElementsByTagName(\"head\")[0];\n \t\t\t\thead.appendChild(linkTag);\n \t\t\t}).then(function() {\n \t\t\t\tinstalledCssChunks[chunkId] = 0;\n \t\t\t}));\n \t\t}\n\n \t\t// JSONP chunk loading for javascript\n\n \t\tvar installedChunkData = installedChunks[chunkId];\n \t\tif(installedChunkData !== 0) { // 0 means \"already installed\".\n\n \t\t\t// a Promise means \"currently loading\".\n \t\t\tif(installedChunkData) {\n \t\t\t\tpromises.push(installedChunkData[2]);\n \t\t\t} else {\n \t\t\t\t// setup Promise in chunk cache\n \t\t\t\tvar promise = new Promise(function(resolve, reject) {\n \t\t\t\t\tinstalledChunkData = installedChunks[chunkId] = [resolve, reject];\n \t\t\t\t});\n \t\t\t\tpromises.push(installedChunkData[2] = promise);\n\n \t\t\t\t// start chunk loading\n \t\t\t\tvar script = document.createElement('script');\n \t\t\t\tvar onScriptComplete;\n\n \t\t\t\tscript.charset = 'utf-8';\n \t\t\t\tscript.timeout = 120;\n \t\t\t\tif (__webpack_require__.nc) {\n \t\t\t\t\tscript.setAttribute(\"nonce\", __webpack_require__.nc);\n \t\t\t\t}\n \t\t\t\tscript.src = jsonpScriptSrc(chunkId);\n\n \t\t\t\t// create error before stack unwound to get useful stacktrace later\n \t\t\t\tvar error = new Error();\n \t\t\t\tonScriptComplete = function (event) {\n \t\t\t\t\t// avoid mem leaks in IE.\n \t\t\t\t\tscript.onerror = script.onload = null;\n \t\t\t\t\tclearTimeout(timeout);\n \t\t\t\t\tvar chunk = installedChunks[chunkId];\n \t\t\t\t\tif(chunk !== 0) {\n \t\t\t\t\t\tif(chunk) {\n \t\t\t\t\t\t\tvar errorType = event && (event.type === 'load' ? 'missing' : event.type);\n \t\t\t\t\t\t\tvar realSrc = event && event.target && event.target.src;\n \t\t\t\t\t\t\terror.message = 'Loading chunk ' + chunkId + ' failed.\\n(' + errorType + ': ' + realSrc + ')';\n \t\t\t\t\t\t\terror.name = 'ChunkLoadError';\n \t\t\t\t\t\t\terror.type = errorType;\n \t\t\t\t\t\t\terror.request = realSrc;\n \t\t\t\t\t\t\tchunk[1](error);\n \t\t\t\t\t\t}\n \t\t\t\t\t\tinstalledChunks[chunkId] = undefined;\n \t\t\t\t\t}\n \t\t\t\t};\n \t\t\t\tvar timeout = setTimeout(function(){\n \t\t\t\t\tonScriptComplete({ type: 'timeout', target: script });\n \t\t\t\t}, 120000);\n \t\t\t\tscript.onerror = script.onload = onScriptComplete;\n \t\t\t\tdocument.head.appendChild(script);\n \t\t\t}\n \t\t}\n \t\treturn Promise.all(promises);\n \t};\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"/\";\n\n \t// on error function for async loading\n \t__webpack_require__.oe = function(err) { console.error(err); throw err; };\n\n \tvar jsonpArray = global[\"webpackJsonp\"] = global[\"webpackJsonp\"] || [];\n \tvar oldJsonpFunction = jsonpArray.push.bind(jsonpArray);\n \tjsonpArray.push = webpackJsonpCallback;\n \tjsonpArray = jsonpArray.slice();\n \tfor(var i = 0; i < jsonpArray.length; i++) webpackJsonpCallback(jsonpArray[i]);\n \tvar parentJsonpFunction = oldJsonpFunction;\n\n\n \t// run deferred modules from other chunks\n \tcheckDeferredModules();\n"],"sourceRoot":""}  
  1 +{"version":3,"sources":["uni-app:///E:/HBuilderX.2.6.11.20200409/HBuilderX.2.6.11.20200409/HBuilderX/plugins/uniapp-cli/webpack/bootstrap"],"names":[],"mappings":";QAAA;QACA;QACA;QACA;QACA;;QAEA;QACA;QACA;QACA,QAAQ,oBAAoB;QAC5B;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;;QAEA;QACA;QACA;;QAEA;QACA;;QAEA;QACA;QACA;QACA;QACA;QACA,iBAAiB,4BAA4B;QAC7C;QACA;QACA,kBAAkB,2BAA2B;QAC7C;QACA;QACA;QACA;QACA;QACA;QACA;QACA;;QAEA;QACA;;QAEA;QACA;;QAEA;QACA;QACA;QACA;;QAEA;QACA;QACA;QACA;QACA;QACA;;QAEA;;QAEA;QACA;QACA;QACA;;QAEA;QACA;;QAEA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;;QAEA;QACA;;QAEA;QACA;;QAEA;QACA;QACA;;QAEA;QACA;QACA;QACA;;;QAGA;QACA,oBAAoB;QACpB;QACA;QACA;QACA,uBAAuB,g7EAAg7E;QACv8E;QACA;QACA,mBAAmB,6BAA6B;QAChD;QACA;QACA;QACA;QACA;QACA,mBAAmB,8BAA8B;QACjD;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;;QAEA;QACA;QACA,KAAK;QACL;QACA,KAAK;QACL;;QAEA;;QAEA;QACA,iCAAiC;;QAEjC;QACA;QACA;QACA,KAAK;QACL;QACA;QACA;QACA,MAAM;QACN;;QAEA;QACA;QACA;;QAEA;QACA;QACA;QACA;QACA;QACA;;QAEA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA,wBAAwB,kCAAkC;QAC1D,MAAM;QACN;QACA;QACA;QACA;QACA;QACA;;QAEA;QACA;;QAEA;QACA;;QAEA;QACA;QACA;QACA,0CAA0C,gCAAgC;QAC1E;QACA;;QAEA;QACA;QACA;QACA,wDAAwD,kBAAkB;QAC1E;QACA,iDAAiD,cAAc;QAC/D;;QAEA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA,yCAAyC,iCAAiC;QAC1E,gHAAgH,mBAAmB,EAAE;QACrI;QACA;;QAEA;QACA;QACA;QACA,2BAA2B,0BAA0B,EAAE;QACvD,iCAAiC,eAAe;QAChD;QACA;QACA;;QAEA;QACA,sDAAsD,+DAA+D;;QAErH;QACA;;QAEA;QACA,0CAA0C,oBAAoB,WAAW;;QAEzE;QACA;QACA;QACA;QACA,gBAAgB,uBAAuB;QACvC;;;QAGA;QACA","file":"common/runtime.js","sourcesContent":[" \t// install a JSONP callback for chunk loading\n \tfunction webpackJsonpCallback(data) {\n \t\tvar chunkIds = data[0];\n \t\tvar moreModules = data[1];\n \t\tvar executeModules = data[2];\n\n \t\t// add \"moreModules\" to the modules object,\n \t\t// then flag all \"chunkIds\" as loaded and fire callback\n \t\tvar moduleId, chunkId, i = 0, resolves = [];\n \t\tfor(;i < chunkIds.length; i++) {\n \t\t\tchunkId = chunkIds[i];\n \t\t\tif(Object.prototype.hasOwnProperty.call(installedChunks, chunkId) && installedChunks[chunkId]) {\n \t\t\t\tresolves.push(installedChunks[chunkId][0]);\n \t\t\t}\n \t\t\tinstalledChunks[chunkId] = 0;\n \t\t}\n \t\tfor(moduleId in moreModules) {\n \t\t\tif(Object.prototype.hasOwnProperty.call(moreModules, moduleId)) {\n \t\t\t\tmodules[moduleId] = moreModules[moduleId];\n \t\t\t}\n \t\t}\n \t\tif(parentJsonpFunction) parentJsonpFunction(data);\n\n \t\twhile(resolves.length) {\n \t\t\tresolves.shift()();\n \t\t}\n\n \t\t// add entry modules from loaded chunk to deferred list\n \t\tdeferredModules.push.apply(deferredModules, executeModules || []);\n\n \t\t// run deferred modules when all chunks ready\n \t\treturn checkDeferredModules();\n \t};\n \tfunction checkDeferredModules() {\n \t\tvar result;\n \t\tfor(var i = 0; i < deferredModules.length; i++) {\n \t\t\tvar deferredModule = deferredModules[i];\n \t\t\tvar fulfilled = true;\n \t\t\tfor(var j = 1; j < deferredModule.length; j++) {\n \t\t\t\tvar depId = deferredModule[j];\n \t\t\t\tif(installedChunks[depId] !== 0) fulfilled = false;\n \t\t\t}\n \t\t\tif(fulfilled) {\n \t\t\t\tdeferredModules.splice(i--, 1);\n \t\t\t\tresult = __webpack_require__(__webpack_require__.s = deferredModule[0]);\n \t\t\t}\n \t\t}\n\n \t\treturn result;\n \t}\n\n \t// The module cache\n \tvar installedModules = {};\n\n \t// object to store loaded CSS chunks\n \tvar installedCssChunks = {\n \t\t\"common/runtime\": 0\n \t}\n\n \t// object to store loaded and loading chunks\n \t// undefined = chunk not loaded, null = chunk preloaded/prefetched\n \t// Promise = chunk loading, 0 = chunk loaded\n \tvar installedChunks = {\n \t\t\"common/runtime\": 0\n \t};\n\n \tvar deferredModules = [];\n\n \t// script path function\n \tfunction jsonpScriptSrc(chunkId) {\n \t\treturn __webpack_require__.p + \"\" + chunkId + \".js\"\n \t}\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n \t// This file contains only the entry chunk.\n \t// The chunk loading function for additional chunks\n \t__webpack_require__.e = function requireEnsure(chunkId) {\n \t\tvar promises = [];\n\n\n \t\t// mini-css-extract-plugin CSS loading\n \t\tvar cssChunks = {\"node-modules/uview-ui/components/u-swiper/u-swiper\":1,\"uni_modules/custom-waterfalls-flow/components/custom-waterfalls-flow/custom-waterfalls-flow\":1,\"components/Botton\":1,\"node-modules/uview-ui/components/u-search/u-search\":1,\"node-modules/uview-ui/components/u-popup/u-popup\":1,\"uni_modules/uni-data-select/components/uni-data-select/uni-data-select\":1,\"node-modules/uview-ui/components/u-gap/u-gap\":1,\"node-modules/uview-ui/components/u-upload/u-upload\":1,\"node-modules/uview-ui/components/u-modal/u-modal\":1,\"node-modules/uview-ui/components/u-sticky/u-sticky\":1,\"node-modules/uview-ui/components/u-tabs/u-tabs\":1,\"node-modules/uview-ui/components/u-loading-icon/u-loading-icon\":1,\"node-modules/uview-ui/components/u-swiper-indicator/u-swiper-indicator\":1,\"node-modules/uview-ui/components/u-icon/u-icon\":1,\"node-modules/uview-ui/components/u-overlay/u-overlay\":1,\"node-modules/uview-ui/components/u-safe-bottom/u-safe-bottom\":1,\"node-modules/uview-ui/components/u-status-bar/u-status-bar\":1,\"node-modules/uview-ui/components/u-transition/u-transition\":1,\"node-modules/uview-ui/components/u-line/u-line\":1,\"node-modules/uview-ui/components/u-badge/u-badge\":1,\"node-modules/uview-ui/components/u-textarea/u-textarea\":1};\n \t\tif(installedCssChunks[chunkId]) promises.push(installedCssChunks[chunkId]);\n \t\telse if(installedCssChunks[chunkId] !== 0 && cssChunks[chunkId]) {\n \t\t\tpromises.push(installedCssChunks[chunkId] = new Promise(function(resolve, reject) {\n \t\t\t\tvar href = \"\" + ({\"node-modules/uview-ui/components/u-swiper/u-swiper\":\"node-modules/uview-ui/components/u-swiper/u-swiper\",\"uni_modules/custom-waterfalls-flow/components/custom-waterfalls-flow/custom-waterfalls-flow\":\"uni_modules/custom-waterfalls-flow/components/custom-waterfalls-flow/custom-waterfalls-flow\",\"components/Botton\":\"components/Botton\",\"node-modules/uview-ui/components/u-search/u-search\":\"node-modules/uview-ui/components/u-search/u-search\",\"node-modules/uview-ui/components/u-popup/u-popup\":\"node-modules/uview-ui/components/u-popup/u-popup\",\"uni_modules/uni-data-select/components/uni-data-select/uni-data-select\":\"uni_modules/uni-data-select/components/uni-data-select/uni-data-select\",\"node-modules/uview-ui/components/u-gap/u-gap\":\"node-modules/uview-ui/components/u-gap/u-gap\",\"node-modules/uview-ui/components/u-upload/u-upload\":\"node-modules/uview-ui/components/u-upload/u-upload\",\"node-modules/uview-ui/components/u-modal/u-modal\":\"node-modules/uview-ui/components/u-modal/u-modal\",\"node-modules/uview-ui/components/u-sticky/u-sticky\":\"node-modules/uview-ui/components/u-sticky/u-sticky\",\"node-modules/uview-ui/components/u-tabs/u-tabs\":\"node-modules/uview-ui/components/u-tabs/u-tabs\",\"node-modules/uview-ui/components/u--textarea/u--textarea\":\"node-modules/uview-ui/components/u--textarea/u--textarea\",\"node-modules/uview-ui/components/u-loading-icon/u-loading-icon\":\"node-modules/uview-ui/components/u-loading-icon/u-loading-icon\",\"node-modules/uview-ui/components/u-swiper-indicator/u-swiper-indicator\":\"node-modules/uview-ui/components/u-swiper-indicator/u-swiper-indicator\",\"node-modules/uview-ui/components/u-icon/u-icon\":\"node-modules/uview-ui/components/u-icon/u-icon\",\"node-modules/uview-ui/components/u-overlay/u-overlay\":\"node-modules/uview-ui/components/u-overlay/u-overlay\",\"node-modules/uview-ui/components/u-safe-bottom/u-safe-bottom\":\"node-modules/uview-ui/components/u-safe-bottom/u-safe-bottom\",\"node-modules/uview-ui/components/u-status-bar/u-status-bar\":\"node-modules/uview-ui/components/u-status-bar/u-status-bar\",\"node-modules/uview-ui/components/u-transition/u-transition\":\"node-modules/uview-ui/components/u-transition/u-transition\",\"node-modules/uview-ui/components/u-line/u-line\":\"node-modules/uview-ui/components/u-line/u-line\",\"node-modules/uview-ui/components/u-badge/u-badge\":\"node-modules/uview-ui/components/u-badge/u-badge\",\"node-modules/uview-ui/components/u-textarea/u-textarea\":\"node-modules/uview-ui/components/u-textarea/u-textarea\"}[chunkId]||chunkId) + \".wxss\";\n \t\t\t\tvar fullhref = __webpack_require__.p + href;\n \t\t\t\tvar existingLinkTags = document.getElementsByTagName(\"link\");\n \t\t\t\tfor(var i = 0; i < existingLinkTags.length; i++) {\n \t\t\t\t\tvar tag = existingLinkTags[i];\n \t\t\t\t\tvar dataHref = tag.getAttribute(\"data-href\") || tag.getAttribute(\"href\");\n \t\t\t\t\tif(tag.rel === \"stylesheet\" && (dataHref === href || dataHref === fullhref)) return resolve();\n \t\t\t\t}\n \t\t\t\tvar existingStyleTags = document.getElementsByTagName(\"style\");\n \t\t\t\tfor(var i = 0; i < existingStyleTags.length; i++) {\n \t\t\t\t\tvar tag = existingStyleTags[i];\n \t\t\t\t\tvar dataHref = tag.getAttribute(\"data-href\");\n \t\t\t\t\tif(dataHref === href || dataHref === fullhref) return resolve();\n \t\t\t\t}\n \t\t\t\tvar linkTag = document.createElement(\"link\");\n \t\t\t\tlinkTag.rel = \"stylesheet\";\n \t\t\t\tlinkTag.type = \"text/css\";\n \t\t\t\tlinkTag.onload = resolve;\n \t\t\t\tlinkTag.onerror = function(event) {\n \t\t\t\t\tvar request = event && event.target && event.target.src || fullhref;\n \t\t\t\t\tvar err = new Error(\"Loading CSS chunk \" + chunkId + \" failed.\\n(\" + request + \")\");\n \t\t\t\t\terr.code = \"CSS_CHUNK_LOAD_FAILED\";\n \t\t\t\t\terr.request = request;\n \t\t\t\t\tdelete installedCssChunks[chunkId]\n \t\t\t\t\tlinkTag.parentNode.removeChild(linkTag)\n \t\t\t\t\treject(err);\n \t\t\t\t};\n \t\t\t\tlinkTag.href = fullhref;\n\n \t\t\t\tvar head = document.getElementsByTagName(\"head\")[0];\n \t\t\t\thead.appendChild(linkTag);\n \t\t\t}).then(function() {\n \t\t\t\tinstalledCssChunks[chunkId] = 0;\n \t\t\t}));\n \t\t}\n\n \t\t// JSONP chunk loading for javascript\n\n \t\tvar installedChunkData = installedChunks[chunkId];\n \t\tif(installedChunkData !== 0) { // 0 means \"already installed\".\n\n \t\t\t// a Promise means \"currently loading\".\n \t\t\tif(installedChunkData) {\n \t\t\t\tpromises.push(installedChunkData[2]);\n \t\t\t} else {\n \t\t\t\t// setup Promise in chunk cache\n \t\t\t\tvar promise = new Promise(function(resolve, reject) {\n \t\t\t\t\tinstalledChunkData = installedChunks[chunkId] = [resolve, reject];\n \t\t\t\t});\n \t\t\t\tpromises.push(installedChunkData[2] = promise);\n\n \t\t\t\t// start chunk loading\n \t\t\t\tvar script = document.createElement('script');\n \t\t\t\tvar onScriptComplete;\n\n \t\t\t\tscript.charset = 'utf-8';\n \t\t\t\tscript.timeout = 120;\n \t\t\t\tif (__webpack_require__.nc) {\n \t\t\t\t\tscript.setAttribute(\"nonce\", __webpack_require__.nc);\n \t\t\t\t}\n \t\t\t\tscript.src = jsonpScriptSrc(chunkId);\n\n \t\t\t\t// create error before stack unwound to get useful stacktrace later\n \t\t\t\tvar error = new Error();\n \t\t\t\tonScriptComplete = function (event) {\n \t\t\t\t\t// avoid mem leaks in IE.\n \t\t\t\t\tscript.onerror = script.onload = null;\n \t\t\t\t\tclearTimeout(timeout);\n \t\t\t\t\tvar chunk = installedChunks[chunkId];\n \t\t\t\t\tif(chunk !== 0) {\n \t\t\t\t\t\tif(chunk) {\n \t\t\t\t\t\t\tvar errorType = event && (event.type === 'load' ? 'missing' : event.type);\n \t\t\t\t\t\t\tvar realSrc = event && event.target && event.target.src;\n \t\t\t\t\t\t\terror.message = 'Loading chunk ' + chunkId + ' failed.\\n(' + errorType + ': ' + realSrc + ')';\n \t\t\t\t\t\t\terror.name = 'ChunkLoadError';\n \t\t\t\t\t\t\terror.type = errorType;\n \t\t\t\t\t\t\terror.request = realSrc;\n \t\t\t\t\t\t\tchunk[1](error);\n \t\t\t\t\t\t}\n \t\t\t\t\t\tinstalledChunks[chunkId] = undefined;\n \t\t\t\t\t}\n \t\t\t\t};\n \t\t\t\tvar timeout = setTimeout(function(){\n \t\t\t\t\tonScriptComplete({ type: 'timeout', target: script });\n \t\t\t\t}, 120000);\n \t\t\t\tscript.onerror = script.onload = onScriptComplete;\n \t\t\t\tdocument.head.appendChild(script);\n \t\t\t}\n \t\t}\n \t\treturn Promise.all(promises);\n \t};\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"/\";\n\n \t// on error function for async loading\n \t__webpack_require__.oe = function(err) { console.error(err); throw err; };\n\n \tvar jsonpArray = global[\"webpackJsonp\"] = global[\"webpackJsonp\"] || [];\n \tvar oldJsonpFunction = jsonpArray.push.bind(jsonpArray);\n \tjsonpArray.push = webpackJsonpCallback;\n \tjsonpArray = jsonpArray.slice();\n \tfor(var i = 0; i < jsonpArray.length; i++) webpackJsonpCallback(jsonpArray[i]);\n \tvar parentJsonpFunction = oldJsonpFunction;\n\n\n \t// run deferred modules from other chunks\n \tcheckDeferredModules();\n"],"sourceRoot":""}
1 -{"version":3,"sources":["webpack:///F:/minigroup/Bitcoin/node_modules/uview-ui/components/u-line/u-line.vue?3a06","webpack:///F:/minigroup/Bitcoin/node_modules/uview-ui/components/u-line/u-line.vue?8273","webpack:///F:/minigroup/Bitcoin/node_modules/uview-ui/components/u-line/u-line.vue?0708","webpack:///F:/minigroup/Bitcoin/node_modules/uview-ui/components/u-line/u-line.vue?d9cb","uni-app:///node_modules/uview-ui/components/u-line/u-line.vue","webpack:///F:/minigroup/Bitcoin/node_modules/uview-ui/components/u-line/u-line.vue?d859","webpack:///F:/minigroup/Bitcoin/node_modules/uview-ui/components/u-line/u-line.vue?83dd"],"names":[],"mappings":";;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAA+H;AAC/H;AAC0D;AACL;AACsC;;;AAG3F;AAC2N;AAC3N,gBAAgB,mOAAU;AAC1B,EAAE,4EAAM;AACR,EAAE,6FAAM;AACR,EAAE,sGAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,iGAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,MAAM;AACN;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;AClBA;AAAA;AAAA;AAAA;AAA82B,CAAgB,83BAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;ACUl4B,gF;;;;;;;;;AACA;;;;;;;;;;;;kBAaA,EACA,cADA,EAEA,sDAFA,EAGA,YACA,SADA,uBACA,CACA,eACA,2BAFA,CAGA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OANA,MAMA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,KArBA,EAHA,E;;;;;;;;;;;;;ACxBA;AAAA;AAAA;AAAA;AAAyoD,CAAgB,6lDAAG,EAAC,C;;;;;;;;;;;ACA7pD;AACA,OAAO,KAAU,EAAE,kBAKd","file":"node-modules/uview-ui/components/u-line/u-line.js","sourcesContent":["import { render, staticRenderFns, recyclableRender, components } from \"./u-line.vue?vue&type=template&id=e778bab2&scoped=true&\"\nvar renderjs\nimport script from \"./u-line.vue?vue&type=script&lang=js&\"\nexport * from \"./u-line.vue?vue&type=script&lang=js&\"\nimport style0 from \"./u-line.vue?vue&type=style&index=0&id=e778bab2&lang=scss&scoped=true&\"\n\n\n/* normalize component */\nimport normalizer from \"!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\runtime\\\\componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"e778bab2\",\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"node_modules/uview-ui/components/u-line/u-line.vue\"\nexport default component.exports","export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\templateLoader.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--16-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\template.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-uni-app-loader\\\\page-meta.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./u-line.vue?vue&type=template&id=e778bab2&scoped=true&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n var s0 = _vm.__get_style([_vm.lineStyle])\n\n _vm.$mp.data = Object.assign(\n {},\n {\n $root: {\n s0: s0\n }\n }\n )\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./u-line.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./u-line.vue?vue&type=script&lang=js&\"","<template>\r\n\t<view\r\n\t class=\"u-line\"\r\n\t :style=\"[lineStyle]\"\r\n\t>\r\n\r\n\t</view>\r\n</template>\r\n\r\n<script>\r\n\timport props from './props.js';\r\n\t/**\r\n\t * line 线条\r\n\t * @description 此组件一般用于显示一根线条,用于分隔内容块,有横向和竖向两种模式,且能设置0.5px线条,使用也很简单\r\n\t * @tutorial https://www.uviewui.com/components/line.html\r\n\t * @property {String}\t\t\tcolor\t\t线条的颜色 ( 默认 '#d6d7d9' )\r\n\t * @property {String | Number}\tlength\t\t长度,竖向时表现为高度,横向时表现为长度,可以为百分比,带px单位的值等 ( 默认 '100%' )\r\n\t * @property {String}\t\t\tdirection\t线条的方向,row-横向,col-竖向 (默认 'row' )\r\n\t * @property {Boolean}\t\t\thairline\t是否显示细线条 (默认 true )\r\n\t * @property {String | Number}\tmargin\t\t线条与上下左右元素的间距,字符串形式,如\"30px\" (默认 0 )\r\n\t * @property {Boolean}\t\t\tdashed\t\t是否虚线,true-虚线,false-实线 (默认 false )\r\n\t * @property {Object}\t\t\tcustomStyle\t定义需要用到的外部样式\r\n\t * @example <u-line color=\"red\"></u-line>\r\n\t */\r\n\texport default {\r\n\t\tname: 'u-line',\r\n\t\tmixins: [uni.$u.mpMixin, uni.$u.mixin,props],\r\n\t\tcomputed: {\r\n\t\t\tlineStyle() {\r\n\t\t\t\tconst style = {}\r\n\t\t\t\tstyle.margin = this.margin\r\n\t\t\t\t// 如果是水平线条,边框高度为1px,再通过transform缩小一半,就是0.5px了\r\n\t\t\t\tif (this.direction === 'row') {\r\n\t\t\t\t\t// 此处采用兼容分开写,兼容nvue的写法\r\n\t\t\t\t\tstyle.borderBottomWidth = '1px'\r\n\t\t\t\t\tstyle.borderBottomStyle = this.dashed ? 'dashed' : 'solid'\r\n\t\t\t\t\tstyle.width = uni.$u.addUnit(this.length)\r\n\t\t\t\t\tif (this.hairline) style.transform = 'scaleY(0.5)'\r\n\t\t\t\t} else {\r\n\t\t\t\t\t// 如果是竖向线条,边框宽度为1px,再通过transform缩小一半,就是0.5px了\r\n\t\t\t\t\tstyle.borderLeftWidth = '1px'\r\n\t\t\t\t\tstyle.borderLeftStyle = this.dashed ? 'dashed' : 'solid'\r\n\t\t\t\t\tstyle.height = uni.$u.addUnit(this.length)\r\n\t\t\t\t\tif (this.hairline) style.transform = 'scaleX(0.5)'\r\n\t\t\t\t}\r\n\r\n\t\t\t\tstyle.borderColor = this.color\r\n\t\t\t\treturn uni.$u.deepMerge(style, uni.$u.addStyle(this.customStyle))\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n</script>\r\n\r\n<style lang=\"scss\" scoped>\r\n\t@import \"../../libs/css/components.scss\";\r\n\r\n\t.u-line {\r\n\t\t/* #ifndef APP-NVUE */\r\n\t\tvertical-align: middle;\r\n\t\t/* #endif */\r\n\t}\r\n</style>\r\n","import mod from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--8-oneOf-1-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-2!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--8-oneOf-1-3!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\sass-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-4!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-5!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./u-line.vue?vue&type=style&index=0&id=e778bab2&lang=scss&scoped=true&\"; export default mod; export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--8-oneOf-1-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-2!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--8-oneOf-1-3!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\sass-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-4!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-5!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./u-line.vue?vue&type=style&index=0&id=e778bab2&lang=scss&scoped=true&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1653879240339\n var cssReload = require(\"E:/HBuilderX.2.6.11.20200409/HBuilderX.2.6.11.20200409/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}  
  1 +{"version":3,"sources":["webpack:///F:/minigroup/Bitcoin/node_modules/uview-ui/components/u-line/u-line.vue?3a06","webpack:///F:/minigroup/Bitcoin/node_modules/uview-ui/components/u-line/u-line.vue?8273","webpack:///F:/minigroup/Bitcoin/node_modules/uview-ui/components/u-line/u-line.vue?0708","webpack:///F:/minigroup/Bitcoin/node_modules/uview-ui/components/u-line/u-line.vue?d9cb","uni-app:///node_modules/uview-ui/components/u-line/u-line.vue","webpack:///F:/minigroup/Bitcoin/node_modules/uview-ui/components/u-line/u-line.vue?d859","webpack:///F:/minigroup/Bitcoin/node_modules/uview-ui/components/u-line/u-line.vue?83dd"],"names":[],"mappings":";;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAA+H;AAC/H;AAC0D;AACL;AACsC;;;AAG3F;AAC2N;AAC3N,gBAAgB,mOAAU;AAC1B,EAAE,4EAAM;AACR,EAAE,6FAAM;AACR,EAAE,sGAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,iGAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,MAAM;AACN;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;AClBA;AAAA;AAAA;AAAA;AAA82B,CAAgB,83BAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;ACUl4B,gF;;;;;;;;;AACA;;;;;;;;;;;;kBAaA,EACA,cADA,EAEA,sDAFA,EAGA,YACA,SADA,uBACA,CACA,eACA,2BAFA,CAGA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OANA,MAMA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,KArBA,EAHA,E;;;;;;;;;;;;;ACxBA;AAAA;AAAA;AAAA;AAAyoD,CAAgB,6lDAAG,EAAC,C;;;;;;;;;;;ACA7pD;AACA,OAAO,KAAU,EAAE,kBAKd","file":"node-modules/uview-ui/components/u-line/u-line.js","sourcesContent":["import { render, staticRenderFns, recyclableRender, components } from \"./u-line.vue?vue&type=template&id=e778bab2&scoped=true&\"\nvar renderjs\nimport script from \"./u-line.vue?vue&type=script&lang=js&\"\nexport * from \"./u-line.vue?vue&type=script&lang=js&\"\nimport style0 from \"./u-line.vue?vue&type=style&index=0&id=e778bab2&lang=scss&scoped=true&\"\n\n\n/* normalize component */\nimport normalizer from \"!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\runtime\\\\componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"e778bab2\",\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"node_modules/uview-ui/components/u-line/u-line.vue\"\nexport default component.exports","export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\templateLoader.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--16-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\template.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-uni-app-loader\\\\page-meta.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./u-line.vue?vue&type=template&id=e778bab2&scoped=true&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n var s0 = _vm.__get_style([_vm.lineStyle])\n\n _vm.$mp.data = Object.assign(\n {},\n {\n $root: {\n s0: s0\n }\n }\n )\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./u-line.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./u-line.vue?vue&type=script&lang=js&\"","<template>\r\n\t<view\r\n\t class=\"u-line\"\r\n\t :style=\"[lineStyle]\"\r\n\t>\r\n\r\n\t</view>\r\n</template>\r\n\r\n<script>\r\n\timport props from './props.js';\r\n\t/**\r\n\t * line 线条\r\n\t * @description 此组件一般用于显示一根线条,用于分隔内容块,有横向和竖向两种模式,且能设置0.5px线条,使用也很简单\r\n\t * @tutorial https://www.uviewui.com/components/line.html\r\n\t * @property {String}\t\t\tcolor\t\t线条的颜色 ( 默认 '#d6d7d9' )\r\n\t * @property {String | Number}\tlength\t\t长度,竖向时表现为高度,横向时表现为长度,可以为百分比,带px单位的值等 ( 默认 '100%' )\r\n\t * @property {String}\t\t\tdirection\t线条的方向,row-横向,col-竖向 (默认 'row' )\r\n\t * @property {Boolean}\t\t\thairline\t是否显示细线条 (默认 true )\r\n\t * @property {String | Number}\tmargin\t\t线条与上下左右元素的间距,字符串形式,如\"30px\" (默认 0 )\r\n\t * @property {Boolean}\t\t\tdashed\t\t是否虚线,true-虚线,false-实线 (默认 false )\r\n\t * @property {Object}\t\t\tcustomStyle\t定义需要用到的外部样式\r\n\t * @example <u-line color=\"red\"></u-line>\r\n\t */\r\n\texport default {\r\n\t\tname: 'u-line',\r\n\t\tmixins: [uni.$u.mpMixin, uni.$u.mixin,props],\r\n\t\tcomputed: {\r\n\t\t\tlineStyle() {\r\n\t\t\t\tconst style = {}\r\n\t\t\t\tstyle.margin = this.margin\r\n\t\t\t\t// 如果是水平线条,边框高度为1px,再通过transform缩小一半,就是0.5px了\r\n\t\t\t\tif (this.direction === 'row') {\r\n\t\t\t\t\t// 此处采用兼容分开写,兼容nvue的写法\r\n\t\t\t\t\tstyle.borderBottomWidth = '1px'\r\n\t\t\t\t\tstyle.borderBottomStyle = this.dashed ? 'dashed' : 'solid'\r\n\t\t\t\t\tstyle.width = uni.$u.addUnit(this.length)\r\n\t\t\t\t\tif (this.hairline) style.transform = 'scaleY(0.5)'\r\n\t\t\t\t} else {\r\n\t\t\t\t\t// 如果是竖向线条,边框宽度为1px,再通过transform缩小一半,就是0.5px了\r\n\t\t\t\t\tstyle.borderLeftWidth = '1px'\r\n\t\t\t\t\tstyle.borderLeftStyle = this.dashed ? 'dashed' : 'solid'\r\n\t\t\t\t\tstyle.height = uni.$u.addUnit(this.length)\r\n\t\t\t\t\tif (this.hairline) style.transform = 'scaleX(0.5)'\r\n\t\t\t\t}\r\n\r\n\t\t\t\tstyle.borderColor = this.color\r\n\t\t\t\treturn uni.$u.deepMerge(style, uni.$u.addStyle(this.customStyle))\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n</script>\r\n\r\n<style lang=\"scss\" scoped>\r\n\t@import \"../../libs/css/components.scss\";\r\n\r\n\t.u-line {\r\n\t\t/* #ifndef APP-NVUE */\r\n\t\tvertical-align: middle;\r\n\t\t/* #endif */\r\n\t}\r\n</style>\r\n","import mod from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--8-oneOf-1-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-2!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--8-oneOf-1-3!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\sass-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-4!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-5!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./u-line.vue?vue&type=style&index=0&id=e778bab2&lang=scss&scoped=true&\"; export default mod; export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--8-oneOf-1-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-2!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--8-oneOf-1-3!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\sass-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-4!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-5!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./u-line.vue?vue&type=style&index=0&id=e778bab2&lang=scss&scoped=true&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1653887043671\n var cssReload = require(\"E:/HBuilderX.2.6.11.20200409/HBuilderX.2.6.11.20200409/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
1 -{"version":3,"sources":["webpack:///F:/minigroup/Bitcoin/node_modules/uview-ui/components/u-modal/u-modal.vue?cd9e","webpack:///F:/minigroup/Bitcoin/node_modules/uview-ui/components/u-modal/u-modal.vue?51a8","webpack:///F:/minigroup/Bitcoin/node_modules/uview-ui/components/u-modal/u-modal.vue?975c","webpack:///F:/minigroup/Bitcoin/node_modules/uview-ui/components/u-modal/u-modal.vue?0c44","uni-app:///node_modules/uview-ui/components/u-modal/u-modal.vue","webpack:///F:/minigroup/Bitcoin/node_modules/uview-ui/components/u-modal/u-modal.vue?9ede","webpack:///F:/minigroup/Bitcoin/node_modules/uview-ui/components/u-modal/u-modal.vue?5e1b"],"names":[],"mappings":";;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAgI;AAChI;AAC2D;AACL;AACsC;;;AAG5F;AAC2N;AAC3N,gBAAgB,mOAAU;AAC1B,EAAE,6EAAM;AACR,EAAE,8FAAM;AACR,EAAE,uGAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,kGAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA,aAAa,2RAEN;AACP,KAAK;AACL;AACA,aAAa,qRAEN;AACP,KAAK;AACL;AACA,aAAa,qUAEN;AACP;AACA;AACA,CAAC;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;AC1DA;AAAA;AAAA;AAAA;AAA+2B,CAAgB,+3BAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AC4Fn4B,gF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AACA;;;;;;;;;;;;;;;;;;;;;;;;kBAyBA,EACA,eADA,EAEA,sDAFA,EAGA,IAHA,kBAGA,CACA,SACA,cADA,GAGA,CAPA,EAQA,SACA,IADA,gBACA,CADA,EACA,CACA;AACA;AACA,kDACA,CALA,EARA,EAeA,WACA;AACA,kBAFA,4BAEA,CACA;AACA,4BACA,oBACA,CACA,sBACA,CARA,EASA;AACA,iBAVA,2BAUA,CACA,qBACA,CAZA,EAaA;AACA;AACA;AACA;AACA;AACA,gBAlBA,0BAkBA,CACA,+BACA,oBACA,CACA,CAtBA,EAfA,E;;;;;;;;;;;;;ACtHA;AAAA;AAAA;AAAA;AAA0oD,CAAgB,8lDAAG,EAAC,C;;;;;;;;;;;ACA9pD;AACA,OAAO,KAAU,EAAE,kBAKd","file":"node-modules/uview-ui/components/u-modal/u-modal.js","sourcesContent":["import { render, staticRenderFns, recyclableRender, components } from \"./u-modal.vue?vue&type=template&id=713d0fd3&scoped=true&\"\nvar renderjs\nimport script from \"./u-modal.vue?vue&type=script&lang=js&\"\nexport * from \"./u-modal.vue?vue&type=script&lang=js&\"\nimport style0 from \"./u-modal.vue?vue&type=style&index=0&id=713d0fd3&lang=scss&scoped=true&\"\n\n\n/* normalize component */\nimport normalizer from \"!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\runtime\\\\componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"713d0fd3\",\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"node_modules/uview-ui/components/u-modal/u-modal.vue\"\nexport default component.exports","export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\templateLoader.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--16-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\template.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-uni-app-loader\\\\page-meta.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./u-modal.vue?vue&type=template&id=713d0fd3&scoped=true&\"","var components\ntry {\n components = {\n uPopup: function() {\n return import(\n /* webpackChunkName: \"node-modules/uview-ui/components/u-popup/u-popup\" */ \"uview-ui/components/u-popup/u-popup.vue\"\n )\n },\n uLine: function() {\n return import(\n /* webpackChunkName: \"node-modules/uview-ui/components/u-line/u-line\" */ \"uview-ui/components/u-line/u-line.vue\"\n )\n },\n uLoadingIcon: function() {\n return import(\n /* webpackChunkName: \"node-modules/uview-ui/components/u-loading-icon/u-loading-icon\" */ \"uview-ui/components/u-loading-icon/u-loading-icon.vue\"\n )\n }\n }\n} catch (e) {\n if (\n e.message.indexOf(\"Cannot find module\") !== -1 &&\n e.message.indexOf(\".vue\") !== -1\n ) {\n console.error(e.message)\n console.error(\"1. 排查组件名称拼写是否正确\")\n console.error(\n \"2. 排查组件是否符合 easycom 规范,文档:https://uniapp.dcloud.net.cn/collocation/pages?id=easycom\"\n )\n console.error(\n \"3. 若组件不符合 easycom 规范,需手动引入,并在 components 中注册该组件\"\n )\n } else {\n throw e\n }\n}\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n var a0 = {\n borderRadius: \"6px\",\n overflow: \"hidden\",\n marginTop: \"-\" + _vm.$u.addUnit(_vm.negativeTop)\n }\n var g0 = _vm.$u.addUnit(_vm.width)\n _vm.$mp.data = Object.assign(\n {},\n {\n $root: {\n a0: a0,\n g0: g0\n }\n }\n )\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./u-modal.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./u-modal.vue?vue&type=script&lang=js&\"","<template>\r\n\t<u-popup\r\n\t\tmode=\"center\"\r\n\t\t:zoom=\"zoom\"\r\n\t\t:show=\"show\"\r\n\t\t:customStyle=\"{\r\n\t\t\tborderRadius: '6px', \r\n\t\t\toverflow: 'hidden',\r\n\t\t\tmarginTop: `-${$u.addUnit(negativeTop)}`\r\n\t\t}\"\r\n\t\t:closeOnClickOverlay=\"closeOnClickOverlay\"\r\n\t\t:safeAreaInsetBottom=\"false\"\r\n\t\t:duration=\"400\"\r\n\t\t@click=\"clickHandler\"\r\n\t>\r\n\t\t<view\r\n\t\t\tclass=\"u-modal\"\r\n\t\t\t:style=\"{\r\n\t\t\t\twidth: $u.addUnit(width),\r\n\t\t\t}\"\r\n\t\t>\r\n\t\t\t<text\r\n\t\t\t\tclass=\"u-modal__title\"\r\n\t\t\t\tv-if=\"title\"\r\n\t\t\t>{{ title }}</text>\r\n\t\t\t<view\r\n\t\t\t\tclass=\"u-modal__content\"\r\n\t\t\t\t:style=\"{\r\n\t\t\t\t\tpaddingTop: `${title ? 12 : 25}px`\r\n\t\t\t\t}\"\r\n\t\t\t>\r\n\t\t\t\t<slot>\r\n\t\t\t\t\t<text class=\"u-modal__content__text\">{{ content }}</text>\r\n\t\t\t\t</slot>\r\n\t\t\t</view>\r\n\t\t\t<view\r\n\t\t\t\tclass=\"u-modal__button-group--confirm-button\"\r\n\t\t\t\tv-if=\"$slots.confirmButton\"\r\n\t\t\t>\r\n\t\t\t\t<slot name=\"confirmButton\"></slot>\r\n\t\t\t</view>\r\n\t\t\t<template v-else>\r\n\t\t\t\t<u-line></u-line>\r\n\t\t\t\t<view\r\n\t\t\t\t\tclass=\"u-modal__button-group\"\r\n\t\t\t\t\t:style=\"{\r\n\t\t\t\t\t\tflexDirection: buttonReverse ? 'row-reverse' : 'row'\r\n\t\t\t\t\t}\"\r\n\t\t\t\t>\r\n\t\t\t\t\t<view\r\n\t\t\t\t\t\tclass=\"u-modal__button-group__wrapper u-modal__button-group__wrapper--cancel\"\r\n\t\t\t\t\t\t:hover-stay-time=\"150\"\r\n\t\t\t\t\t\thover-class=\"u-modal__button-group__wrapper--hover\"\r\n\t\t\t\t\t\t:class=\"[showCancelButton && !showConfirmButton && 'u-modal__button-group__wrapper--only-cancel']\"\r\n\t\t\t\t\t\tv-if=\"showCancelButton\"\r\n\t\t\t\t\t\t@tap=\"cancelHandler\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\t<text\r\n\t\t\t\t\t\t\tclass=\"u-modal__button-group__wrapper__text\"\r\n\t\t\t\t\t\t\t:style=\"{\r\n\t\t\t\t\t\t\t\tcolor: cancelColor\r\n\t\t\t\t\t\t\t}\"\r\n\t\t\t\t\t\t>{{ cancelText }}</text>\r\n\t\t\t\t\t</view>\r\n\t\t\t\t\t<u-line\r\n\t\t\t\t\t\tdirection=\"column\"\r\n\t\t\t\t\t\tv-if=\"showConfirmButton && showCancelButton\"\r\n\t\t\t\t\t></u-line>\r\n\t\t\t\t\t<view\r\n\t\t\t\t\t\tclass=\"u-modal__button-group__wrapper u-modal__button-group__wrapper--confirm\"\r\n\t\t\t\t\t\t:hover-stay-time=\"150\"\r\n\t\t\t\t\t\thover-class=\"u-modal__button-group__wrapper--hover\"\r\n\t\t\t\t\t\t:class=\"[!showCancelButton && showConfirmButton && 'u-modal__button-group__wrapper--only-confirm']\"\r\n\t\t\t\t\t\tv-if=\"showConfirmButton\"\r\n\t\t\t\t\t\t@tap=\"confirmHandler\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\t<u-loading-icon v-if=\"loading\"></u-loading-icon>\r\n\t\t\t\t\t\t<text\r\n\t\t\t\t\t\t\tv-else\r\n\t\t\t\t\t\t\tclass=\"u-modal__button-group__wrapper__text\"\r\n\t\t\t\t\t\t\t:style=\"{\r\n\t\t\t\t\t\t\t\tcolor: confirmColor\r\n\t\t\t\t\t\t\t}\"\r\n\t\t\t\t\t\t>{{ confirmText }}</text>\r\n\t\t\t\t\t</view>\r\n\t\t\t\t</view>\r\n\t\t\t</template>\r\n\t\t</view>\r\n\t</u-popup>\r\n</template>\r\n\r\n<script>\r\n\timport props from './props.js';\r\n\t/**\r\n\t * Modal 模态框\r\n\t * @description 弹出模态框,常用于消息提示、消息确认、在当前页面内完成特定的交互操作。\r\n\t * @tutorial https://www.uviewui.com/components/modul.html\r\n\t * @property {Boolean}\t\t\tshow\t\t\t\t是否显示模态框,请赋值给show (默认 false )\r\n\t * @property {String}\t\t\ttitle\t\t\t\t标题内容\r\n\t * @property {String}\t\t\tcontent\t\t\t\t模态框内容,如传入slot内容,则此参数无效\r\n\t * @property {String}\t\t\tconfirmText\t\t\t确认按钮的文字 (默认 '确认' )\r\n\t * @property {String}\t\t\tcancelText\t\t\t取消按钮的文字 (默认 '取消' )\r\n\t * @property {Boolean}\t\t\tshowConfirmButton\t是否显示确认按钮 (默认 true )\r\n\t * @property {Boolean}\t\t\tshowCancelButton\t是否显示取消按钮 (默认 false )\r\n\t * @property {String}\t\t\tconfirmColor\t\t确认按钮的颜色 (默认 '#2979ff' )\r\n\t * @property {String}\t\t\tcancelColor\t\t\t取消按钮的颜色 (默认 '#606266' )\r\n\t * @property {Boolean}\t\t\tbuttonReverse\t\t对调确认和取消的位置 (默认 false )\r\n\t * @property {Boolean}\t\t\tzoom\t\t\t\t是否开启缩放模式 (默认 true )\r\n\t * @property {Boolean}\t\t\tasyncClose\t\t\t是否异步关闭,只对确定按钮有效,见上方说明 (默认 false )\r\n\t * @property {Boolean}\t\t\tcloseOnClickOverlay\t是否允许点击遮罩关闭Modal (默认 false )\r\n\t * @property {String | Number}\tnegativeTop\t\t\t往上偏移的值,给一个负的margin-top,往上偏移,避免和键盘重合的情况,单位任意,数值则默认为px单位 (默认 0 )\r\n\t * @property {String | Number}\twidth\t\t\t\tmodal宽度,不支持百分比,可以数值,px,rpx单位 (默认 '650rpx' )\r\n\t * @property {String}\t\t\tconfirmButtonShape\t确认按钮的样式,如设置,将不会显示取消按钮\r\n\t * @event {Function} confirm\t点击确认按钮时触发\r\n\t * @event {Function} cancel\t\t点击取消按钮时触发\r\n\t * @event {Function} close\t\t点击遮罩关闭出发,closeOnClickOverlay为true有效\r\n\t * @example <u-loadmore :status=\"status\" icon-type=\"iconType\" load-text=\"loadText\" />\r\n\t */\r\n\texport default {\r\n\t\tname: 'u-modal',\r\n\t\tmixins: [uni.$u.mpMixin, uni.$u.mixin, props],\r\n\t\tdata() {\r\n\t\t\treturn {\r\n\t\t\t\tloading: false\r\n\t\t\t}\r\n\t\t},\r\n\t\twatch: {\r\n\t\t\tshow(n) {\r\n\t\t\t\t// 为了避免第一次打开modal,又使用了异步关闭的loading\r\n\t\t\t\t// 第二次打开modal时,loading依然存在的情况\r\n\t\t\t\tif (n && this.loading) this.loading = false\r\n\t\t\t}\r\n\t\t},\r\n\t\tmethods: {\r\n\t\t\t// 点击确定按钮\r\n\t\t\tconfirmHandler() {\r\n\t\t\t\t// 如果配置了异步关闭,将按钮值为loading状态\r\n\t\t\t\tif (this.asyncClose) {\r\n\t\t\t\t\tthis.loading = true;\r\n\t\t\t\t}\r\n\t\t\t\tthis.$emit('confirm')\r\n\t\t\t},\r\n\t\t\t// 点击取消按钮\r\n\t\t\tcancelHandler() {\r\n\t\t\t\tthis.$emit('cancel')\r\n\t\t\t},\r\n\t\t\t// 点击遮罩\r\n\t\t\t// 从原理上来说,modal的遮罩点击,并不是真的点击到了遮罩\r\n\t\t\t// 因为modal依赖于popup的中部弹窗类型,中部弹窗比较特殊,虽有然遮罩,但是为了让弹窗内容能flex居中\r\n\t\t\t// 多了一个透明的遮罩,此透明的遮罩会覆盖在灰色的遮罩上,所以实际上是点击不到灰色遮罩的,popup内部在\r\n\t\t\t// 透明遮罩的子元素做了.stop处理,所以点击内容区,也不会导致误触发\r\n\t\t\tclickHandler() {\r\n\t\t\t\tif (this.closeOnClickOverlay) {\r\n\t\t\t\t\tthis.$emit('close')\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n</script>\r\n\r\n<style lang=\"scss\" scoped>\r\n\t@import \"../../libs/css/components.scss\";\r\n\t$u-modal-border-radius: 6px;\r\n\r\n\t.u-modal {\r\n\t\twidth: 650rpx;\r\n\t\tborder-radius: $u-modal-border-radius;\r\n\t\toverflow: hidden;\r\n\r\n\t\t&__title {\r\n\t\t\tfont-size: 16px;\r\n\t\t\tfont-weight: bold;\r\n\t\t\tcolor: $u-content-color;\r\n\t\t\ttext-align: center;\r\n\t\t\tpadding-top: 25px;\r\n\t\t}\r\n\r\n\t\t&__content {\r\n\t\t\tpadding: 12px 25px 25px 25px;\r\n\t\t\t@include flex;\r\n\t\t\tjustify-content: center;\r\n\r\n\t\t\t&__text {\r\n\t\t\t\tfont-size: 15px;\r\n\t\t\t\tcolor: $u-content-color;\r\n\t\t\t\tflex: 1;\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\t&__button-group {\r\n\t\t\t@include flex;\r\n\r\n\t\t\t&--confirm-button {\r\n\t\t\t\tflex-direction: column;\r\n\t\t\t\tpadding: 0px 25px 15px 25px;\r\n\t\t\t}\r\n\r\n\t\t\t&__wrapper {\r\n\t\t\t\tflex: 1;\r\n\t\t\t\t@include flex;\r\n\t\t\t\tjustify-content: center;\r\n\t\t\t\talign-items: center;\r\n\t\t\t\theight: 48px;\r\n\t\t\t\t\r\n\t\t\t\t&--confirm,\r\n\t\t\t\t&--only-cancel {\r\n\t\t\t\t\tborder-bottom-right-radius: $u-modal-border-radius;\r\n\t\t\t\t}\r\n\t\t\t\t\r\n\t\t\t\t&--cancel,\r\n\t\t\t\t&--only-confirm {\r\n\t\t\t\t\tborder-bottom-left-radius: $u-modal-border-radius;\r\n\t\t\t\t}\r\n\r\n\t\t\t\t&--hover {\r\n\t\t\t\t\tbackground-color: $u-bg-color;\r\n\t\t\t\t}\r\n\r\n\t\t\t\t&__text {\r\n\t\t\t\t\tcolor: $u-content-color;\r\n\t\t\t\t\tfont-size: 16px;\r\n\t\t\t\t\ttext-align: center;\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n</style>\r\n","import mod from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--8-oneOf-1-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-2!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--8-oneOf-1-3!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\sass-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-4!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-5!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./u-modal.vue?vue&type=style&index=0&id=713d0fd3&lang=scss&scoped=true&\"; export default mod; export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--8-oneOf-1-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-2!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--8-oneOf-1-3!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\sass-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-4!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-5!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./u-modal.vue?vue&type=style&index=0&id=713d0fd3&lang=scss&scoped=true&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1653879240203\n var cssReload = require(\"E:/HBuilderX.2.6.11.20200409/HBuilderX.2.6.11.20200409/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}  
  1 +{"version":3,"sources":["webpack:///F:/minigroup/Bitcoin/node_modules/uview-ui/components/u-modal/u-modal.vue?0c44","uni-app:///node_modules/uview-ui/components/u-modal/u-modal.vue","webpack:///F:/minigroup/Bitcoin/node_modules/uview-ui/components/u-modal/u-modal.vue?9ede","webpack:///F:/minigroup/Bitcoin/node_modules/uview-ui/components/u-modal/u-modal.vue?5e1b","webpack:///F:/minigroup/Bitcoin/node_modules/uview-ui/components/u-modal/u-modal.vue?cd9e","webpack:///F:/minigroup/Bitcoin/node_modules/uview-ui/components/u-modal/u-modal.vue?51a8","webpack:///F:/minigroup/Bitcoin/node_modules/uview-ui/components/u-modal/u-modal.vue?975c"],"names":[],"mappings":";;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAA+2B,CAAgB,+3BAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AC4Fn4B,gF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AACA;;;;;;;;;;;;;;;;;;;;;;;;kBAyBA,EACA,eADA,EAEA,sDAFA,EAGA,IAHA,kBAGA,CACA,SACA,cADA,GAGA,CAPA,EAQA,SACA,IADA,gBACA,CADA,EACA,CACA;AACA;AACA,kDACA,CALA,EARA,EAeA,WACA;AACA,kBAFA,4BAEA,CACA;AACA,4BACA,oBACA,CACA,sBACA,CARA,EASA;AACA,iBAVA,2BAUA,CACA,qBACA,CAZA,EAaA;AACA;AACA;AACA;AACA;AACA,gBAlBA,0BAkBA,CACA,+BACA,oBACA,CACA,CAtBA,EAfA,E;;;;;;;;;;;;;ACtHA;AAAA;AAAA;AAAA;AAA0oD,CAAgB,8lDAAG,EAAC,C;;;;;;;;;;;ACA9pD;AACA,OAAO,KAAU,EAAE,kBAKd;;;;;;;;;;;;;ACNL;AAAA;AAAA;AAAA;AAAA;AAAA;AAAgI;AAChI;AAC2D;AACL;AACsC;;;AAG5F;AAC2N;AAC3N,gBAAgB,mOAAU;AAC1B,EAAE,6EAAM;AACR,EAAE,8FAAM;AACR,EAAE,uGAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,kGAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA,aAAa,2RAEN;AACP,KAAK;AACL;AACA,aAAa,qRAEN;AACP,KAAK;AACL;AACA,aAAa,qUAEN;AACP;AACA;AACA,CAAC;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA","file":"node-modules/uview-ui/components/u-modal/u-modal.js","sourcesContent":["import mod from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./u-modal.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./u-modal.vue?vue&type=script&lang=js&\"","<template>\r\n\t<u-popup\r\n\t\tmode=\"center\"\r\n\t\t:zoom=\"zoom\"\r\n\t\t:show=\"show\"\r\n\t\t:customStyle=\"{\r\n\t\t\tborderRadius: '6px', \r\n\t\t\toverflow: 'hidden',\r\n\t\t\tmarginTop: `-${$u.addUnit(negativeTop)}`\r\n\t\t}\"\r\n\t\t:closeOnClickOverlay=\"closeOnClickOverlay\"\r\n\t\t:safeAreaInsetBottom=\"false\"\r\n\t\t:duration=\"400\"\r\n\t\t@click=\"clickHandler\"\r\n\t>\r\n\t\t<view\r\n\t\t\tclass=\"u-modal\"\r\n\t\t\t:style=\"{\r\n\t\t\t\twidth: $u.addUnit(width),\r\n\t\t\t}\"\r\n\t\t>\r\n\t\t\t<text\r\n\t\t\t\tclass=\"u-modal__title\"\r\n\t\t\t\tv-if=\"title\"\r\n\t\t\t>{{ title }}</text>\r\n\t\t\t<view\r\n\t\t\t\tclass=\"u-modal__content\"\r\n\t\t\t\t:style=\"{\r\n\t\t\t\t\tpaddingTop: `${title ? 12 : 25}px`\r\n\t\t\t\t}\"\r\n\t\t\t>\r\n\t\t\t\t<slot>\r\n\t\t\t\t\t<text class=\"u-modal__content__text\">{{ content }}</text>\r\n\t\t\t\t</slot>\r\n\t\t\t</view>\r\n\t\t\t<view\r\n\t\t\t\tclass=\"u-modal__button-group--confirm-button\"\r\n\t\t\t\tv-if=\"$slots.confirmButton\"\r\n\t\t\t>\r\n\t\t\t\t<slot name=\"confirmButton\"></slot>\r\n\t\t\t</view>\r\n\t\t\t<template v-else>\r\n\t\t\t\t<u-line></u-line>\r\n\t\t\t\t<view\r\n\t\t\t\t\tclass=\"u-modal__button-group\"\r\n\t\t\t\t\t:style=\"{\r\n\t\t\t\t\t\tflexDirection: buttonReverse ? 'row-reverse' : 'row'\r\n\t\t\t\t\t}\"\r\n\t\t\t\t>\r\n\t\t\t\t\t<view\r\n\t\t\t\t\t\tclass=\"u-modal__button-group__wrapper u-modal__button-group__wrapper--cancel\"\r\n\t\t\t\t\t\t:hover-stay-time=\"150\"\r\n\t\t\t\t\t\thover-class=\"u-modal__button-group__wrapper--hover\"\r\n\t\t\t\t\t\t:class=\"[showCancelButton && !showConfirmButton && 'u-modal__button-group__wrapper--only-cancel']\"\r\n\t\t\t\t\t\tv-if=\"showCancelButton\"\r\n\t\t\t\t\t\t@tap=\"cancelHandler\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\t<text\r\n\t\t\t\t\t\t\tclass=\"u-modal__button-group__wrapper__text\"\r\n\t\t\t\t\t\t\t:style=\"{\r\n\t\t\t\t\t\t\t\tcolor: cancelColor\r\n\t\t\t\t\t\t\t}\"\r\n\t\t\t\t\t\t>{{ cancelText }}</text>\r\n\t\t\t\t\t</view>\r\n\t\t\t\t\t<u-line\r\n\t\t\t\t\t\tdirection=\"column\"\r\n\t\t\t\t\t\tv-if=\"showConfirmButton && showCancelButton\"\r\n\t\t\t\t\t></u-line>\r\n\t\t\t\t\t<view\r\n\t\t\t\t\t\tclass=\"u-modal__button-group__wrapper u-modal__button-group__wrapper--confirm\"\r\n\t\t\t\t\t\t:hover-stay-time=\"150\"\r\n\t\t\t\t\t\thover-class=\"u-modal__button-group__wrapper--hover\"\r\n\t\t\t\t\t\t:class=\"[!showCancelButton && showConfirmButton && 'u-modal__button-group__wrapper--only-confirm']\"\r\n\t\t\t\t\t\tv-if=\"showConfirmButton\"\r\n\t\t\t\t\t\t@tap=\"confirmHandler\"\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\t<u-loading-icon v-if=\"loading\"></u-loading-icon>\r\n\t\t\t\t\t\t<text\r\n\t\t\t\t\t\t\tv-else\r\n\t\t\t\t\t\t\tclass=\"u-modal__button-group__wrapper__text\"\r\n\t\t\t\t\t\t\t:style=\"{\r\n\t\t\t\t\t\t\t\tcolor: confirmColor\r\n\t\t\t\t\t\t\t}\"\r\n\t\t\t\t\t\t>{{ confirmText }}</text>\r\n\t\t\t\t\t</view>\r\n\t\t\t\t</view>\r\n\t\t\t</template>\r\n\t\t</view>\r\n\t</u-popup>\r\n</template>\r\n\r\n<script>\r\n\timport props from './props.js';\r\n\t/**\r\n\t * Modal 模态框\r\n\t * @description 弹出模态框,常用于消息提示、消息确认、在当前页面内完成特定的交互操作。\r\n\t * @tutorial https://www.uviewui.com/components/modul.html\r\n\t * @property {Boolean}\t\t\tshow\t\t\t\t是否显示模态框,请赋值给show (默认 false )\r\n\t * @property {String}\t\t\ttitle\t\t\t\t标题内容\r\n\t * @property {String}\t\t\tcontent\t\t\t\t模态框内容,如传入slot内容,则此参数无效\r\n\t * @property {String}\t\t\tconfirmText\t\t\t确认按钮的文字 (默认 '确认' )\r\n\t * @property {String}\t\t\tcancelText\t\t\t取消按钮的文字 (默认 '取消' )\r\n\t * @property {Boolean}\t\t\tshowConfirmButton\t是否显示确认按钮 (默认 true )\r\n\t * @property {Boolean}\t\t\tshowCancelButton\t是否显示取消按钮 (默认 false )\r\n\t * @property {String}\t\t\tconfirmColor\t\t确认按钮的颜色 (默认 '#2979ff' )\r\n\t * @property {String}\t\t\tcancelColor\t\t\t取消按钮的颜色 (默认 '#606266' )\r\n\t * @property {Boolean}\t\t\tbuttonReverse\t\t对调确认和取消的位置 (默认 false )\r\n\t * @property {Boolean}\t\t\tzoom\t\t\t\t是否开启缩放模式 (默认 true )\r\n\t * @property {Boolean}\t\t\tasyncClose\t\t\t是否异步关闭,只对确定按钮有效,见上方说明 (默认 false )\r\n\t * @property {Boolean}\t\t\tcloseOnClickOverlay\t是否允许点击遮罩关闭Modal (默认 false )\r\n\t * @property {String | Number}\tnegativeTop\t\t\t往上偏移的值,给一个负的margin-top,往上偏移,避免和键盘重合的情况,单位任意,数值则默认为px单位 (默认 0 )\r\n\t * @property {String | Number}\twidth\t\t\t\tmodal宽度,不支持百分比,可以数值,px,rpx单位 (默认 '650rpx' )\r\n\t * @property {String}\t\t\tconfirmButtonShape\t确认按钮的样式,如设置,将不会显示取消按钮\r\n\t * @event {Function} confirm\t点击确认按钮时触发\r\n\t * @event {Function} cancel\t\t点击取消按钮时触发\r\n\t * @event {Function} close\t\t点击遮罩关闭出发,closeOnClickOverlay为true有效\r\n\t * @example <u-loadmore :status=\"status\" icon-type=\"iconType\" load-text=\"loadText\" />\r\n\t */\r\n\texport default {\r\n\t\tname: 'u-modal',\r\n\t\tmixins: [uni.$u.mpMixin, uni.$u.mixin, props],\r\n\t\tdata() {\r\n\t\t\treturn {\r\n\t\t\t\tloading: false\r\n\t\t\t}\r\n\t\t},\r\n\t\twatch: {\r\n\t\t\tshow(n) {\r\n\t\t\t\t// 为了避免第一次打开modal,又使用了异步关闭的loading\r\n\t\t\t\t// 第二次打开modal时,loading依然存在的情况\r\n\t\t\t\tif (n && this.loading) this.loading = false\r\n\t\t\t}\r\n\t\t},\r\n\t\tmethods: {\r\n\t\t\t// 点击确定按钮\r\n\t\t\tconfirmHandler() {\r\n\t\t\t\t// 如果配置了异步关闭,将按钮值为loading状态\r\n\t\t\t\tif (this.asyncClose) {\r\n\t\t\t\t\tthis.loading = true;\r\n\t\t\t\t}\r\n\t\t\t\tthis.$emit('confirm')\r\n\t\t\t},\r\n\t\t\t// 点击取消按钮\r\n\t\t\tcancelHandler() {\r\n\t\t\t\tthis.$emit('cancel')\r\n\t\t\t},\r\n\t\t\t// 点击遮罩\r\n\t\t\t// 从原理上来说,modal的遮罩点击,并不是真的点击到了遮罩\r\n\t\t\t// 因为modal依赖于popup的中部弹窗类型,中部弹窗比较特殊,虽有然遮罩,但是为了让弹窗内容能flex居中\r\n\t\t\t// 多了一个透明的遮罩,此透明的遮罩会覆盖在灰色的遮罩上,所以实际上是点击不到灰色遮罩的,popup内部在\r\n\t\t\t// 透明遮罩的子元素做了.stop处理,所以点击内容区,也不会导致误触发\r\n\t\t\tclickHandler() {\r\n\t\t\t\tif (this.closeOnClickOverlay) {\r\n\t\t\t\t\tthis.$emit('close')\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n</script>\r\n\r\n<style lang=\"scss\" scoped>\r\n\t@import \"../../libs/css/components.scss\";\r\n\t$u-modal-border-radius: 6px;\r\n\r\n\t.u-modal {\r\n\t\twidth: 650rpx;\r\n\t\tborder-radius: $u-modal-border-radius;\r\n\t\toverflow: hidden;\r\n\r\n\t\t&__title {\r\n\t\t\tfont-size: 16px;\r\n\t\t\tfont-weight: bold;\r\n\t\t\tcolor: $u-content-color;\r\n\t\t\ttext-align: center;\r\n\t\t\tpadding-top: 25px;\r\n\t\t}\r\n\r\n\t\t&__content {\r\n\t\t\tpadding: 12px 25px 25px 25px;\r\n\t\t\t@include flex;\r\n\t\t\tjustify-content: center;\r\n\r\n\t\t\t&__text {\r\n\t\t\t\tfont-size: 15px;\r\n\t\t\t\tcolor: $u-content-color;\r\n\t\t\t\tflex: 1;\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\t&__button-group {\r\n\t\t\t@include flex;\r\n\r\n\t\t\t&--confirm-button {\r\n\t\t\t\tflex-direction: column;\r\n\t\t\t\tpadding: 0px 25px 15px 25px;\r\n\t\t\t}\r\n\r\n\t\t\t&__wrapper {\r\n\t\t\t\tflex: 1;\r\n\t\t\t\t@include flex;\r\n\t\t\t\tjustify-content: center;\r\n\t\t\t\talign-items: center;\r\n\t\t\t\theight: 48px;\r\n\t\t\t\t\r\n\t\t\t\t&--confirm,\r\n\t\t\t\t&--only-cancel {\r\n\t\t\t\t\tborder-bottom-right-radius: $u-modal-border-radius;\r\n\t\t\t\t}\r\n\t\t\t\t\r\n\t\t\t\t&--cancel,\r\n\t\t\t\t&--only-confirm {\r\n\t\t\t\t\tborder-bottom-left-radius: $u-modal-border-radius;\r\n\t\t\t\t}\r\n\r\n\t\t\t\t&--hover {\r\n\t\t\t\t\tbackground-color: $u-bg-color;\r\n\t\t\t\t}\r\n\r\n\t\t\t\t&__text {\r\n\t\t\t\t\tcolor: $u-content-color;\r\n\t\t\t\t\tfont-size: 16px;\r\n\t\t\t\t\ttext-align: center;\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n</style>\r\n","import mod from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--8-oneOf-1-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-2!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--8-oneOf-1-3!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\sass-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-4!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-5!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./u-modal.vue?vue&type=style&index=0&id=713d0fd3&lang=scss&scoped=true&\"; export default mod; export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--8-oneOf-1-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-2!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--8-oneOf-1-3!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\sass-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-4!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-5!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./u-modal.vue?vue&type=style&index=0&id=713d0fd3&lang=scss&scoped=true&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1653887043679\n var cssReload = require(\"E:/HBuilderX.2.6.11.20200409/HBuilderX.2.6.11.20200409/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n ","import { render, staticRenderFns, recyclableRender, components } from \"./u-modal.vue?vue&type=template&id=713d0fd3&scoped=true&\"\nvar renderjs\nimport script from \"./u-modal.vue?vue&type=script&lang=js&\"\nexport * from \"./u-modal.vue?vue&type=script&lang=js&\"\nimport style0 from \"./u-modal.vue?vue&type=style&index=0&id=713d0fd3&lang=scss&scoped=true&\"\n\n\n/* normalize component */\nimport normalizer from \"!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\runtime\\\\componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"713d0fd3\",\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"node_modules/uview-ui/components/u-modal/u-modal.vue\"\nexport default component.exports","export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\templateLoader.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--16-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\template.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-uni-app-loader\\\\page-meta.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./u-modal.vue?vue&type=template&id=713d0fd3&scoped=true&\"","var components\ntry {\n components = {\n uPopup: function() {\n return import(\n /* webpackChunkName: \"node-modules/uview-ui/components/u-popup/u-popup\" */ \"uview-ui/components/u-popup/u-popup.vue\"\n )\n },\n uLine: function() {\n return import(\n /* webpackChunkName: \"node-modules/uview-ui/components/u-line/u-line\" */ \"uview-ui/components/u-line/u-line.vue\"\n )\n },\n uLoadingIcon: function() {\n return import(\n /* webpackChunkName: \"node-modules/uview-ui/components/u-loading-icon/u-loading-icon\" */ \"uview-ui/components/u-loading-icon/u-loading-icon.vue\"\n )\n }\n }\n} catch (e) {\n if (\n e.message.indexOf(\"Cannot find module\") !== -1 &&\n e.message.indexOf(\".vue\") !== -1\n ) {\n console.error(e.message)\n console.error(\"1. 排查组件名称拼写是否正确\")\n console.error(\n \"2. 排查组件是否符合 easycom 规范,文档:https://uniapp.dcloud.net.cn/collocation/pages?id=easycom\"\n )\n console.error(\n \"3. 若组件不符合 easycom 规范,需手动引入,并在 components 中注册该组件\"\n )\n } else {\n throw e\n }\n}\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n var a0 = {\n borderRadius: \"6px\",\n overflow: \"hidden\",\n marginTop: \"-\" + _vm.$u.addUnit(_vm.negativeTop)\n }\n var g0 = _vm.$u.addUnit(_vm.width)\n _vm.$mp.data = Object.assign(\n {},\n {\n $root: {\n a0: a0,\n g0: g0\n }\n }\n )\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }"],"sourceRoot":""}
1 -{"version":3,"sources":["uni-app:///main.js","webpack:///F:/minigroup/Bitcoin/pages/index/index.vue?e584","webpack:///F:/minigroup/Bitcoin/pages/index/index.vue?d36a","webpack:///F:/minigroup/Bitcoin/pages/index/index.vue?e584*","webpack:///F:/minigroup/Bitcoin/pages/index/index.vue?0f42","uni-app:///pages/index/index.vue","webpack:///F:/minigroup/Bitcoin/pages/index/index.vue?e5f9","webpack:///F:/minigroup/Bitcoin/pages/index/index.vue?1f0b"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,6F,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,cAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAkH;AAClH;AACyD;AACL;AACc;;;AAGlE;AAC2N;AAC3N,gBAAgB,mOAAU;AAC1B,EAAE,2EAAM;AACR,EAAE,gFAAM;AACR,EAAE,yFAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,oFAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA,aAAa,iSAEN;AACP,KAAK;AACL;AACA,aAAa,2aAEN;AACP;AACA;AACA,CAAC;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACtCA;AAAA;AAAA;AAAA;AAA62B,CAAgB,63BAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACuHj4B;AACA;AACA,6CADA;AAEA,oBAFA,EADA;;AAKA,MALA,kBAKA;AACA;AACA,oBADA;AAEA;AACA,wDADA;AAEA,wDAFA;AAGA,wDAHA,CAFA;;AAOA,kCAPA;AAQA,yBARA;AASA,kBATA;AAUA;AACA;AACA,+DADA;AAEA,sBAFA;AAGA,iCAHA;;AAKA;AACA,+DADA;AAEA,sBAFA;AAGA,iCAHA,EALA;AASA;AACA,+DADA;AAEA,sBAFA;AAGA,iCAHA,EATA;;AAcA;AACA,+DADA;AAEA,sBAFA;AAGA,iCAHA,EAdA;;AAmBA;AACA,+DADA;AAEA,sBAFA;AAGA,iCAHA,EAnBA,CAXA;;;;AAqCA,GA3CA;AA4CA,QA5CA,oBA4CA;;AAEA,GA9CA;AA+CA;AACA,cADA,sBACA,CADA,EACA;AACA;AACA,KAHA;AAIA;AACA,YALA,sBAKA;AACA;AACA,kCADA;;AAGA,KATA,EA/CA,E;;;;;;;;;;;;;ACvHA;AAAA;AAAA;AAAA;AAAgnD,CAAgB,okDAAG,EAAC,C;;;;;;;;;;;ACApoD;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/index/index.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/index/index.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./index.vue?vue&type=template&id=57280228&\"\nvar renderjs\nimport script from \"./index.vue?vue&type=script&lang=js&\"\nexport * from \"./index.vue?vue&type=script&lang=js&\"\nimport style0 from \"./index.vue?vue&type=style&index=0&lang=scss&\"\n\n\n/* normalize component */\nimport normalizer from \"!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\runtime\\\\componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/index/index.vue\"\nexport default component.exports","export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\templateLoader.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--16-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\template.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-uni-app-loader\\\\page-meta.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./index.vue?vue&type=template&id=57280228&\"","var components\ntry {\n components = {\n uSwiper: function() {\n return import(\n /* webpackChunkName: \"node-modules/uview-ui/components/u-swiper/u-swiper\" */ \"uview-ui/components/u-swiper/u-swiper.vue\"\n )\n },\n customWaterfallsFlow: function() {\n return import(\n /* webpackChunkName: \"uni_modules/custom-waterfalls-flow/components/custom-waterfalls-flow/custom-waterfalls-flow\" */ \"@/uni_modules/custom-waterfalls-flow/components/custom-waterfalls-flow/custom-waterfalls-flow.vue\"\n )\n }\n }\n} catch (e) {\n if (\n e.message.indexOf(\"Cannot find module\") !== -1 &&\n e.message.indexOf(\".vue\") !== -1\n ) {\n console.error(e.message)\n console.error(\"1. 排查组件名称拼写是否正确\")\n console.error(\n \"2. 排查组件是否符合 easycom 规范,文档:https://uniapp.dcloud.net.cn/collocation/pages?id=easycom\"\n )\n console.error(\n \"3. 若组件不符合 easycom 规范,需手动引入,并在 components 中注册该组件\"\n )\n } else {\n throw e\n }\n}\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./index.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./index.vue?vue&type=script&lang=js&\"","<template>\r\n\t<view class=\"content\">\r\n\t\t<view class=\"top\">\r\n\t\t\t<view class=\"logo\">\r\n\t\t\t\t<image src=\"../../static/logo.png\" mode=\"\"></image>\r\n\t\t\t\t<view class=\"search\">\r\n\t\t\t\t\t<view class=\"tosear\" @click=\"gosourch\">\r\n\t\t\t\t\t\t<input type=\"text\" value=\"\" placeholder=\"搜索\" disabled=\"true\"\r\n\t\t\t\t\t\t\tplaceholder-style=\"text-align: center;font-size: 28rpx; color: rgba(194,194,194,1);\" />\r\n\t\t\t\t\t\t<image src=\"../../static/icon-search.png\" mode=\"\"></image>\r\n\t\t\t\t\t</view>\r\n\t\t\t\t</view>\r\n\t\t\t</view>\r\n\t\t\t<view class=\"banner\">\r\n\t\t\t\t<u-swiper :list=\"list1\" @click=\"click\" :indicator=\"true\" indicatorMode=\"dot\" radius=\"12\" height=\"160\"\r\n\t\t\t\t\t:circular=\"true\">\r\n\t\t\t\t</u-swiper>\r\n\t\t\t</view>\r\n\t\t</view>\r\n\t\t<view class=\"contail\">\r\n\t\t\t<view class=\"nev\">\r\n\t\t\t\t<view class=\"bar\" v-for=\"(item,index) in nevlist\" :key=\"index\">\r\n\t\t\t\t\t<image class=\"barimg\" src=\"../../static/logo.png\" mode=\"\"></image>\r\n\t\t\t\t\t<text>第十四大</text>\r\n\t\t\t\t</view>\r\n\t\t\t\t<view class=\"bar\">\r\n\t\t\t\t\t<image class=\"barimg\" src=\"../../static/logo.png\" mode=\"\"></image>\r\n\t\t\t\t\t<text>更多</text>\r\n\t\t\t\t</view>\r\n\t\t\t</view>\r\n\t\t\t<view class=\"info\">\r\n\t\t\t\t<view class=\"leftbox\">\r\n\t\t\t\t\t<view class=\"lefttitle\">\r\n\t\t\t\t\t\t<view class=\"title\">\r\n\t\t\t\t\t\t\t相关资讯\r\n\t\t\t\t\t\t</view>\r\n\t\t\t\t\t\t<view class=\"more\">\r\n\t\t\t\t\t\t\t更多\r\n\t\t\t\t\t\t\t<image src=\"../../static/ic-arrow.png\" mode=\"\"></image>\r\n\t\t\t\t\t\t</view>\r\n\t\t\t\t\t</view>\r\n\t\t\t\t\t<view class=\"newbar\">\r\n\t\t\t\t\t\t<view v-for=\"(item,index) in leftlist\" :key=\"index\">·比特币明日走势图</view>\r\n\t\t\t\t\t</view>\r\n\t\t\t\t</view>\r\n\t\t\t\t<view class=\"rightbox\">\r\n\t\t\t\t\t<view class=\"righttitle\">\r\n\t\t\t\t\t\t<view class=\"title\">\r\n\t\t\t\t\t\t\t相关资讯\r\n\t\t\t\t\t\t</view>\r\n\t\t\t\t\t\t<view class=\"active\">\r\n\t\t\t\t\t\t\t充值活动\r\n\t\t\t\t\t\t</view>\r\n\t\t\t\t\t</view>\r\n\t\t\t\t\t<view class=\"activeimg\">\r\n\t\t\t\t\t\t<image src=\"../../static/Rectangle 2372.png\" mode=\"\"></image>\r\n\t\t\t\t\t\t<!-- <image src=\"../../static/logo.png\" mode=\"\"></image>\r\n\t\t\t\t\t\t<image src=\"../../static/logo.png\" mode=\"\"></image> -->\r\n\t\t\t\t\t</view>\r\n\t\t\t\t</view>\r\n\t\t\t</view>\r\n\t\t\t<view class=\"waterfall\">\r\n\t\t\t\t<view class=\"falltitle\">\r\n\t\t\t\t\t<view class=\"fallnev\" :class=\"{newfall:fallindex==1}\" @click=\"changefall(1)\">\r\n\t\t\t\t\t\t猜你喜欢\r\n\t\t\t\t\t\t<view class=\"tip\">\r\n\r\n\t\t\t\t\t\t</view>\r\n\t\t\t\t\t</view>\r\n\t\t\t\t\t<view class=\"fallnev\" :class=\"{newfall:fallindex==2}\" @click=\"changefall(2)\">\r\n\t\t\t\t\t\t最新\r\n\t\t\t\t\t\t<view class=\"tip\">\r\n\r\n\t\t\t\t\t\t</view>\r\n\t\t\t\t\t</view>\r\n\t\t\t\t\t<view class=\"fallnev\" :class=\"{newfall:fallindex==3}\" @click=\"changefall(3)\">\r\n\t\t\t\t\t\t人气\r\n\t\t\t\t\t\t<view class=\"tip\">\r\n\r\n\t\t\t\t\t\t</view>\r\n\t\t\t\t\t</view>\r\n\t\t\t\t</view>\r\n\t\t\t\t<view class=\"misslist\">\r\n\t\t\t\t\t<custom-waterfalls-flow :value=\"list\">\r\n\t\t\t\t\t\t<!-- #ifdef MP-WEIXIN -->\r\n\t\t\t\t\t\t<view class=\"item\" v-for=\"(item,index) in list\" :key=\"index\" slot=\"slot{{index}}\">\r\n\t\t\t\t\t\t\t<view class=\"title\">{{item.title}}</view>\r\n\t\t\t\t\t\t\t<view class=\"desc\">\r\n\t\t\t\t\t\t\t\t<text>张三</text>\r\n\t\t\t\t\t\t\t\t<view class=\"money\">\r\n\t\t\t\t\t\t\t\t\t<text>¥</text>6666\r\n\t\t\t\t\t\t\t\t</view>\r\n\t\t\t\t\t\t\t</view>\r\n\t\t\t\t\t\t</view>\r\n\t\t\t\t\t\t<!-- #endif -->\r\n\t\t\t\t\t\t<!-- #ifndef MP-WEIXIN -->\r\n\t\t\t\t\t\t<template v-slot:default=\"item\">\r\n\t\t\t\t\t\t\t<view class=\"item\">\r\n\t\t\t\t\t\t\t\t<view class=\"title\">{{item.title}}</view>\r\n\t\t\t\t\t\t\t\t<view class=\"desc\">\r\n\t\t\t\t\t\t\t\t\t<text>张三</text>\r\n\t\t\t\t\t\t\t\t\t<view class=\"money\">\r\n\t\t\t\t\t\t\t\t\t\t<text>¥</text>6666\r\n\t\t\t\t\t\t\t\t\t</view>\r\n\t\t\t\t\t\t\t\t</view>\r\n\t\t\t\t\t\t\t</view>\r\n\t\t\t\t\t\t</template>\r\n\t\t\t\t\t\t<!-- #endif -->\r\n\t\t\t\t\t</custom-waterfalls-flow>\r\n\t\t\t\t</view>\r\n\t\t\t</view>\r\n\t\t</view>\r\n\t\t<Botton :flag=\"1\"></Botton>\r\n\t</view>\r\n</template>\r\n\r\n<script>\r\n\timport helangWaterfall from \"@/uni_modules/custom-waterfalls-flow/components/custom-waterfalls-flow/custom-waterfalls-flow.vue\"\r\n\timport Botton from \"@/components/Botton.vue\"\r\n\texport default {\r\n\t\tcomponents: {\r\n\t\t\t\"custom-waterfalls-flow\": helangWaterfall,\r\n\t\t\t\"Botton\": Botton\r\n\t\t},\r\n\t\tdata() {\r\n\t\t\treturn {\r\n\t\t\t\ttitle: 'Hello',\r\n\t\t\t\tlist1: [\r\n\t\t\t\t\t'https://cdn.uviewui.com/uview/swiper/swiper1.png',\r\n\t\t\t\t\t'https://cdn.uviewui.com/uview/swiper/swiper2.png',\r\n\t\t\t\t\t'https://cdn.uviewui.com/uview/swiper/swiper3.png',\r\n\t\t\t\t],\r\n\t\t\t\tnevlist: [1, 2, 3, 4, , 6, 7],\r\n\t\t\t\tleftlist: [1, 2, 3],\r\n\t\t\t\tfallindex: 1,\r\n\t\t\t\t//瀑布\r\n\t\t\t\tlist: [{\r\n\t\t\t\t\t\timage: 'https://via.placeholder.com/200x500.png/ff0000',\r\n\t\t\t\t\t\ttitle: '我是标题1',\r\n\t\t\t\t\t\tdesc: '描述描述描述描述描述描述描述描述1'\r\n\t\t\t\t\t},\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\timage: 'https://via.placeholder.com/200x200.png/2878ff',\r\n\t\t\t\t\t\ttitle: '我是标题2',\r\n\t\t\t\t\t\tdesc: '描述描述描述描述描述描述描述描述2'\r\n\t\t\t\t\t}, {\r\n\t\t\t\t\t\timage: 'https://via.placeholder.com/200x200.png/2878ff',\r\n\t\t\t\t\t\ttitle: '我是标题2',\r\n\t\t\t\t\t\tdesc: '描述描述描述描述描述描述描述描述2'\r\n\t\t\t\t\t},\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\timage: 'https://via.placeholder.com/200x200.png/2878ff',\r\n\t\t\t\t\t\ttitle: '我是标题2',\r\n\t\t\t\t\t\tdesc: '描述描述描述描述描述描述描述描述2'\r\n\t\t\t\t\t},\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\timage: 'https://via.placeholder.com/200x200.png/2878ff',\r\n\t\t\t\t\t\ttitle: '我是标题2',\r\n\t\t\t\t\t\tdesc: '描述描述描述描述描述描述描述描述2'\r\n\t\t\t\t\t}\r\n\t\t\t\t]\r\n\t\t\t}\r\n\t\t},\r\n\t\tonLoad() {\r\n\r\n\t\t},\r\n\t\tmethods: {\r\n\t\t\tchangefall(e) {\r\n\t\t\t\tthis.fallindex = e\r\n\t\t\t},\r\n\t\t\t//跳转搜索\r\n\t\t\tgosourch() {\r\n\t\t\t\tuni.navigateTo({\r\n\t\t\t\t\turl: \"/pages/index/search\"\r\n\t\t\t\t})\r\n\t\t\t},\r\n\t\t}\r\n\t}\r\n</script>\r\n\r\n<style lang=\"scss\">\r\n\tpage {\r\n\t\tbackground: rgba(246, 246, 246, 1);\r\n\t}\r\n\r\n\t.content {\r\n\r\n\t\t.top {\r\n\t\t\theight: 370rpx;\r\n\t\t\tbackground-image: linear-gradient(#FED000, #ffffff);\r\n\t\t\tpadding: 32rpx;\r\n\r\n\t\t\t.logo {\r\n\t\t\t\tdisplay: flex;\r\n\t\t\t\talign-items: center;\r\n\r\n\t\t\t\timage {\r\n\t\t\t\t\twidth: 98rpx;\r\n\t\t\t\t\theight: 50rpx;\r\n\t\t\t\t\tmargin-right: 36rpx;\r\n\t\t\t\t}\r\n\r\n\t\t\t\t.search {\r\n\t\t\t\t\tflex: 1;\r\n\t\t\t\t\tdisplay: flex;\r\n\t\t\t\t\talign-items: center;\r\n\r\n\t\t\t\t\t.tosear {\r\n\t\t\t\t\t\tposition: relative;\r\n\t\t\t\t\t\twidth: 522rpx;\r\n\t\t\t\t\t\theight: 64rpx;\r\n\t\t\t\t\t\tborder-radius: 38rpx;\r\n\t\t\t\t\t\topacity: 1;\r\n\r\n\t\t\t\t\t\tborder: 0 solid rgba(0.5920000076293945, 0.5920000076293945, 0.5920000076293945, 1);\r\n\t\t\t\t\t\tbackground: rgba(245, 245, 245, 1);\r\n\t\t\t\t\t\tpadding: 0 32rpx;\r\n\r\n\t\t\t\t\t\tinput {\r\n\t\t\t\t\t\t\ttext-align: center;\r\n\t\t\t\t\t\t\twidth: 100%;\r\n\t\t\t\t\t\t\theight: 100%;\r\n\t\t\t\t\t\t}\r\n\r\n\t\t\t\t\t\timage {\r\n\t\t\t\t\t\t\tposition: absolute;\r\n\t\t\t\t\t\t\tleft: 280rpx;\r\n\t\t\t\t\t\t\ttop: 50%;\r\n\t\t\t\t\t\t\tleft: 36%;\r\n\t\t\t\t\t\t\ttransform: translateY(-50%);\r\n\t\t\t\t\t\t\twidth: 32rpx;\r\n\t\t\t\t\t\t\theight: 32rpx;\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\r\n\r\n\t\t\t}\r\n\r\n\t\t\t.banner {\r\n\t\t\t\tmargin-top: 32rpx;\r\n\t\t\t\theight: 320rpx;\r\n\t\t\t\tborder-radius: 24rpx;\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\t.contail {\r\n\t\t\tpadding: 0 32rpx;\r\n\t\t\tbox-sizing: border-box;\r\n\r\n\t\t\t.nev {\r\n\t\t\t\tmargin-top: 48rpx;\r\n\t\t\t\tborder-radius: 24rpx;\r\n\t\t\t\tpadding: 0 32rpx;\r\n\t\t\t\tbox-sizing: border-box;\r\n\t\t\t\tpadding-bottom: 32rpx;\r\n\t\t\t\tbackground: rgba(255, 255, 255, 1);\r\n\t\t\t\tdisplay: flex;\r\n\t\t\t\tflex-wrap: wrap;\r\n\r\n\t\t\t\t.bar {\r\n\t\t\t\t\tmargin-top: 40rpx;\r\n\t\t\t\t\tmargin-right: 68rpx;\r\n\t\t\t\t\twidth: 104rpx;\r\n\t\t\t\t\theight: 124rpx;\r\n\t\t\t\t\tdisplay: flex;\r\n\t\t\t\t\tflex-direction: column;\r\n\t\t\t\t\talign-items: center;\r\n\t\t\t\t\tcolor: rgba(0, 0, 0, 0.9);\r\n\t\t\t\t\tfont-size: 26rpx;\r\n\t\t\t\t\tfont-weight: 400;\r\n\t\t\t\t\tfont-family: \"PingFang SC\";\r\n\t\t\t\t\ttext-align: center;\r\n\r\n\t\t\t\t\t.barimg {\r\n\t\t\t\t\t\twidth: 80rpx;\r\n\t\t\t\t\t\theight: 80rpx;\r\n\t\t\t\t\t}\r\n\r\n\t\t\t\t\t&:nth-child(4n) {\r\n\t\t\t\t\t\tmargin-right: 0;\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t}\r\n\r\n\t\t\t.info {\r\n\t\t\t\tdisplay: flex;\r\n\t\t\t\tmargin-top: 24rpx;\r\n\r\n\t\t\t\t.leftbox {\r\n\t\t\t\t\tflex: 1;\r\n\t\t\t\t\tpadding: 24rpx;\r\n\t\t\t\t\tmargin-right: 22rpx;\r\n\t\t\t\t\tbox-sizing: border-box;\r\n\t\t\t\t\tbackground: linear-gradient(180deg, rgba(255, 242, 242, 1) 0%, rgba(255, 255, 255, 1) 100%);\r\n\r\n\t\t\t\t\t.lefttitle {\r\n\t\t\t\t\t\tdisplay: flex;\r\n\t\t\t\t\t\talign-items: center;\r\n\t\t\t\t\t\tjustify-content: space-between;\r\n\r\n\t\t\t\t\t\t.title {\r\n\t\t\t\t\t\t\topacity: 1;\r\n\t\t\t\t\t\t\tcolor: rgba(0, 0, 0, 1);\r\n\t\t\t\t\t\t\tfont-size: 30rpx;\r\n\t\t\t\t\t\t\tfont-weight: 500;\r\n\t\t\t\t\t\t\tfont-family: \"PingFang SC\";\r\n\t\t\t\t\t\t}\r\n\r\n\t\t\t\t\t\t.more {\r\n\t\t\t\t\t\t\tdisplay: flex;\r\n\t\t\t\t\t\t\talign-items: center;\r\n\r\n\t\t\t\t\t\t\timage {\r\n\t\t\t\t\t\t\t\twidth: 16rpx;\r\n\t\t\t\t\t\t\t\theight: 32rpx;\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\r\n\t\t\t\t\t.newbar {\r\n\t\t\t\t\t\tcolor: rgba(0, 0, 0, 0.9);\r\n\t\t\t\t\t\tfont-size: 22rpx;\r\n\t\t\t\t\t\tfont-weight: 400;\r\n\t\t\t\t\t\tfont-family: \"PingFang SC\";\r\n\t\t\t\t\t\ttext-align: left;\r\n\r\n\t\t\t\t\t\tview {\r\n\t\t\t\t\t\t\tmargin-top: 16rpx;\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\r\n\t\t\t\t.rightbox {\r\n\t\t\t\t\tflex: 1;\r\n\t\t\t\t\tpadding: 24rpx;\r\n\t\t\t\t\tbox-sizing: border-box;\r\n\t\t\t\t\tbackground: linear-gradient(180deg, rgba(255, 250, 231, 1) 0%, rgba(255, 255, 255, 1) 100%);\r\n\r\n\t\t\t\t\t.righttitle {\r\n\t\t\t\t\t\tdisplay: flex;\r\n\t\t\t\t\t\talign-items: center;\r\n\r\n\t\t\t\t\t\t.title {\r\n\t\t\t\t\t\t\tcolor: rgba(50, 50, 51, 1);\r\n\t\t\t\t\t\t\tfont-size: 30rpx;\r\n\t\t\t\t\t\t\tfont-weight: 500;\r\n\t\t\t\t\t\t\tfont-family: \"PingFang SC\";\r\n\t\t\t\t\t\t}\r\n\r\n\t\t\t\t\t\t.active {\r\n\t\t\t\t\t\t\tmargin-left: 16rpx;\r\n\t\t\t\t\t\t\twidth: 104rpx;\r\n\t\t\t\t\t\t\theight: 32rpx;\r\n\t\t\t\t\t\t\tborder-radius: 6rpx;\r\n\t\t\t\t\t\t\topacity: 1;\r\n\t\t\t\t\t\t\tcolor: rgba(255, 255, 255, 1);\r\n\t\t\t\t\t\t\tfont-size: 20rpx;\r\n\t\t\t\t\t\t\tfont-weight: 500;\r\n\t\t\t\t\t\t\tfont-family: \"PingFang SC\";\r\n\t\t\t\t\t\t\tline-height: 32rpx;\r\n\t\t\t\t\t\t\ttext-align: center;\r\n\t\t\t\t\t\t\tbackground: linear-gradient(90deg, rgba(255, 61, 61, 1) 0%, rgba(255, 122, 48, 1) 100%);\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\r\n\t\t\t\t\t.activeimg {\r\n\t\t\t\t\t\tmargin-top: 12rpx;\r\n\t\t\t\t\t\tdisplay: flex;\r\n\t\t\t\t\t\talign-items: center;\r\n\t\t\t\t\t\tjustify-content: space-between;\r\n\r\n\t\t\t\t\t\timage {\r\n\t\t\t\t\t\t\twidth: 284rpx;\r\n\t\t\t\t\t\t\theight: 136rpx;\r\n\t\t\t\t\t\t\tborder-radius: 24rpx;\r\n\t\t\t\t\t\t}\r\n\r\n\t\t\t\t\t\t// image {\r\n\t\t\t\t\t\t// \twidth: 134rpx;\r\n\t\t\t\t\t\t// \theight: 136rpx;\r\n\t\t\t\t\t\t// \tborder-radius: 24rpx;\r\n\t\t\t\t\t\t// }\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t}\r\n\r\n\t\t\t.waterfall {\r\n\t\t\t\tcolor: rgba(0, 0, 0, 0.9);\r\n\t\t\t\tfont-size: 30rpx;\r\n\t\t\t\tfont-weight: 400;\r\n\t\t\t\tfont-family: \"PingFang SC\";\r\n\t\t\t\ttext-align: left;\r\n\r\n\t\t\t\t.falltitle {\r\n\t\t\t\t\tcolor: rgba(0, 0, 0, 0.9);\r\n\t\t\t\t\tfont-size: 30rpx;\r\n\t\t\t\t\tfont-weight: 400;\r\n\t\t\t\t\tfont-family: \"PingFang SC\";\r\n\t\t\t\t\tmargin-top: 24rpx;\r\n\t\t\t\t\tdisplay: flex;\r\n\t\t\t\t\talign-items: center;\r\n\r\n\t\t\t\t\t.fallnev {\r\n\t\t\t\t\t\tmargin-right: 40rpx;\r\n\r\n\t\t\t\t\t\t.tip {\r\n\t\t\t\t\t\t\twidth: 0;\r\n\t\t\t\t\t\t\theight: 0;\r\n\r\n\t\t\t\t\t\t}\r\n\r\n\t\t\t\t\t}\r\n\r\n\t\t\t\t\t.newfall {\r\n\t\t\t\t\t\tposition: relative;\r\n\t\t\t\t\t\tcolor: rgba(0, 0, 0, 0.9);\r\n\t\t\t\t\t\tfont-size: 36rpx;\r\n\t\t\t\t\t\tfont-weight: 600;\r\n\t\t\t\t\t\tfont-family: \"PingFang SC\";\r\n\r\n\t\t\t\t\t\t.tip {\r\n\t\t\t\t\t\t\tposition: absolute;\r\n\t\t\t\t\t\t\tbottom: 0;\r\n\t\t\t\t\t\t\tright: 0;\r\n\t\t\t\t\t\t\twidth: 64rpx;\r\n\t\t\t\t\t\t\theight: 12rpx;\r\n\t\t\t\t\t\t\tborder-radius: 14rpx;\r\n\t\t\t\t\t\t\topacity: 1;\r\n\t\t\t\t\t\t\tbackground: rgba(254, 208, 0, .6);\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\r\n\t\t\t\t.misslist {\r\n\t\t\t\t\tmargin-top: 24rpx;\r\n\r\n\t\t\t\t\t.item {\r\n\t\t\t\t\t\tpadding: 24rpx;\r\n\t\t\t\t\t\tbox-sizing: border-box;\r\n\r\n\t\t\t\t\t\t.desc {\r\n\t\t\t\t\t\t\tmargin-top: 14rpx;\r\n\t\t\t\t\t\t\tdisplay: flex;\r\n\t\t\t\t\t\t\talign-items: center;\r\n\t\t\t\t\t\t\tjustify-content: space-between;\r\n\t\t\t\t\t\t\tcolor: rgba(0, 0, 0, 0.6);\r\n\t\t\t\t\t\t\tfont-size: 20rpx;\r\n\t\t\t\t\t\t\tfont-weight: 400;\r\n\t\t\t\t\t\t\tfont-family: \"PingFang SC\";\r\n\r\n\t\t\t\t\t\t\t.money {\r\n\r\n\t\t\t\t\t\t\t\tcolor: rgba(248, 83, 23, 1);\r\n\t\t\t\t\t\t\t\tfont-size: 32rpx;\r\n\t\t\t\t\t\t\t\tfont-weight: 700;\r\n\t\t\t\t\t\t\t\tfont-family: \"Montserrat\";\r\n\r\n\t\t\t\t\t\t\t\ttext {\r\n\t\t\t\t\t\t\t\t\tfont-size: 24rpx;\r\n\t\t\t\t\t\t\t\t\tfont-weight: 500;\r\n\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\r\n\t\t\t\t}\r\n\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n</style>\n","import mod from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--8-oneOf-1-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-2!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--8-oneOf-1-3!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\sass-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-4!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-5!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./index.vue?vue&type=style&index=0&lang=scss&\"; export default mod; export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--8-oneOf-1-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-2!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--8-oneOf-1-3!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\sass-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-4!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-5!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./index.vue?vue&type=style&index=0&lang=scss&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1653871240343\n var cssReload = require(\"E:/HBuilderX.2.6.11.20200409/HBuilderX.2.6.11.20200409/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}  
  1 +{"version":3,"sources":["uni-app:///main.js",null,"webpack:///F:/minigroup/Bitcoin/pages/index/index.vue?d36a","webpack:///F:/minigroup/Bitcoin/pages/index/index.vue?e584","webpack:///F:/minigroup/Bitcoin/pages/index/index.vue?0f42","uni-app:///pages/index/index.vue","webpack:///F:/minigroup/Bitcoin/pages/index/index.vue?e5f9","webpack:///F:/minigroup/Bitcoin/pages/index/index.vue?1f0b"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,6F,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,cAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAkH;AAClH;AACyD;AACL;AACc;;;AAGlE;AAC2N;AAC3N,gBAAgB,mOAAU;AAC1B,EAAE,2EAAM;AACR,EAAE,gFAAM;AACR,EAAE,yFAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,oFAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA,aAAa,iSAEN;AACP,KAAK;AACL;AACA,aAAa,2aAEN;AACP;AACA;AACA,CAAC;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACtCA;AAAA;AAAA;AAAA;AAA62B,CAAgB,63BAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACqHj4B,yD;;;;;;;;AAQA;AACA;AACA,6CADA;AAEA,oBAFA,EADA;;AAKA,MALA,kBAKA;AACA;AACA,oBADA;AAEA;AACA,wDADA;AAEA,wDAFA;AAGA,wDAHA,CAFA;;AAOA,kCAPA;AAQA,yBARA;AASA,kBATA;AAUA;AACA,cAXA;AAYA,sBAZA,EAYA;AACA,uBAbA,EAaA;AACA,yBAdA,EAcA;AACA,oBAfA,CAeA;AAfA;AAiBA,GAvBA;AAwBA,QAxBA,oBAwBA;AACA;AACA;AACA,GA3BA;AA4BA,QA5BA,oBA4BA;;AAEA,GA9BA;AA+BA;AACA;AACA,gBAFA,0BAEA;AACA,mBADA,GACA;AACA,uCADA;AAEA,yCAFA;AAGA,6BAHA,EADA;;;AAOA,+CAPA,SAOA,GAPA;AAQA;AACA;AACA;AACA;AAXA;AAaA;AACA,oCADA;AAEA,8BAFA;;AAIA,yDAjBA;;AAmBA,KArBA;AAsBA,WAtBA,qBAsBA;;;AAGA,yCAHA,SAGA,GAHA;;AAKA,wCALA,SAKA,OALA;;AAOA,uCAPA,SAOA,WAPA;AAQA;AACA;AACA;AACA;AACA;AACA,oBADA;AAEA;AACA;AACA;AACA;AAjBA;AAmBA;AACA,qCADA;AAEA,8BAFA;;AAIA,uDAvBA;;AAyBA,KA/CA;AAgDA,cAhDA,sBAgDA,CAhDA,EAgDA;AACA;AACA,KAlDA;AAmDA;AACA,YApDA,sBAoDA;AACA;AACA,kCADA;;AAGA,KAxDA,EA/BA,E;;;;;;;;;;;;;AC7HA;AAAA;AAAA;AAAA;AAAgnD,CAAgB,okDAAG,EAAC,C;;;;;;;;;;;ACApoD;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/index/index.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/index/index.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./index.vue?vue&type=template&id=57280228&\"\nvar renderjs\nimport script from \"./index.vue?vue&type=script&lang=js&\"\nexport * from \"./index.vue?vue&type=script&lang=js&\"\nimport style0 from \"./index.vue?vue&type=style&index=0&lang=scss&\"\n\n\n/* normalize component */\nimport normalizer from \"!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\runtime\\\\componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/index/index.vue\"\nexport default component.exports","export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\templateLoader.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--16-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\template.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-uni-app-loader\\\\page-meta.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./index.vue?vue&type=template&id=57280228&\"","var components\ntry {\n components = {\n uSwiper: function() {\n return import(\n /* webpackChunkName: \"node-modules/uview-ui/components/u-swiper/u-swiper\" */ \"uview-ui/components/u-swiper/u-swiper.vue\"\n )\n },\n customWaterfallsFlow: function() {\n return import(\n /* webpackChunkName: \"uni_modules/custom-waterfalls-flow/components/custom-waterfalls-flow/custom-waterfalls-flow\" */ \"@/uni_modules/custom-waterfalls-flow/components/custom-waterfalls-flow/custom-waterfalls-flow.vue\"\n )\n }\n }\n} catch (e) {\n if (\n e.message.indexOf(\"Cannot find module\") !== -1 &&\n e.message.indexOf(\".vue\") !== -1\n ) {\n console.error(e.message)\n console.error(\"1. 排查组件名称拼写是否正确\")\n console.error(\n \"2. 排查组件是否符合 easycom 规范,文档:https://uniapp.dcloud.net.cn/collocation/pages?id=easycom\"\n )\n console.error(\n \"3. 若组件不符合 easycom 规范,需手动引入,并在 components 中注册该组件\"\n )\n } else {\n throw e\n }\n}\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./index.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./index.vue?vue&type=script&lang=js&\"","<template>\r\n\t<view class=\"content\">\r\n\t\t<view class=\"top\">\r\n\t\t\t<view class=\"logo\">\r\n\t\t\t\t<image src=\"/static/ic_logo.png\" mode=\"\"></image>\r\n\t\t\t\t<view class=\"search\">\r\n\t\t\t\t\t<view class=\"tosear\" @click=\"gosourch\">\r\n\t\t\t\t\t\t<input type=\"text\" value=\"\" placeholder=\"搜索\" disabled=\"true\"\r\n\t\t\t\t\t\t\tplaceholder-style=\"text-align: center;font-size: 28rpx; color: rgba(194,194,194,1);\" />\r\n\t\t\t\t\t\t<image src=\"/static/icon-search.png\" mode=\"\"></image>\r\n\t\t\t\t\t</view>\r\n\t\t\t\t</view>\r\n\t\t\t</view>\r\n\t\t\t<view class=\"banner\">\r\n\t\t\t\t<u-swiper keyName=\"image_preview\" :list=\"list1\" @click=\"click\" :indicator=\"true\" indicatorMode=\"dot\"\r\n\t\t\t\t\tradius=\"12\" height=\"160\" :circular=\"true\">\r\n\t\t\t\t</u-swiper>\r\n\t\t\t</view>\r\n\t\t</view>\r\n\t\t<view class=\"contail\">\r\n\t\t\t<view class=\"nev\">\r\n\t\t\t\t<view class=\"bar\" v-for=\"(item,index) in categoryList\" :key=\"index\">\r\n\t\t\t\t\t<image class=\"barimg\" :src=\"item.image_preview\" mode=\"\"></image>\r\n\t\t\t\t\t<text>{{item.name}}</text>\r\n\t\t\t\t</view>\r\n\t\t\t\t<view class=\"bar\" v-if=\"categoryLength>8\">\r\n\t\t\t\t\t<image class=\"barimg\" src=\"/static/logo.png\" mode=\"\"></image>\r\n\t\t\t\t\t<text>更多</text>\r\n\t\t\t\t</view>\r\n\t\t\t</view>\r\n\t\t\t<view class=\"info\">\r\n\t\t\t\t<view class=\"leftbox\">\r\n\t\t\t\t\t<view class=\"lefttitle\">\r\n\t\t\t\t\t\t<view class=\"title\">\r\n\t\t\t\t\t\t\t相关资讯\r\n\t\t\t\t\t\t</view>\r\n\t\t\t\t\t\t<view class=\"more\">\r\n\t\t\t\t\t\t\t更多\r\n\t\t\t\t\t\t\t<image src=\"/static/ic-arrow.png\" mode=\"\"></image>\r\n\t\t\t\t\t\t</view>\r\n\t\t\t\t\t</view>\r\n\t\t\t\t\t<view class=\"newbar\">\r\n\t\t\t\t\t\t<view v-for=\"(item,index) in informationList\" :key=\"index\">·{{item.title}}</view>\r\n\t\t\t\t\t</view>\r\n\t\t\t\t</view>\r\n\t\t\t\t<view class=\"rightbox\">\r\n\t\t\t\t\t<view class=\"righttitle\">\r\n\t\t\t\t\t\t<view class=\"title\">\r\n\t\t\t\t\t\t\t相关资讯\r\n\t\t\t\t\t\t</view>\r\n\t\t\t\t\t\t<view class=\"active\">\r\n\t\t\t\t\t\t\t充值活动\r\n\t\t\t\t\t\t</view>\r\n\t\t\t\t\t</view>\r\n\t\t\t\t\t<view class=\"activeimg\">\r\n\t\t\t\t\t\t<image src=\"/static/Rectangle 2372.png\" mode=\"\"></image>\r\n\t\t\t\t\t\t<!-- <image src=\"/static/logo.png\" mode=\"\"></image>\r\n\t\t\t\t\t\t<image src=\"/static/logo.png\" mode=\"\"></image> -->\r\n\t\t\t\t\t</view>\r\n\t\t\t\t</view>\r\n\t\t\t</view>\r\n\t\t\t<view class=\"waterfall\">\r\n\t\t\t\t<view class=\"falltitle\">\r\n\t\t\t\t\t<view class=\"fallnev\" :class=\"{newfall:fallindex==1}\" @click=\"changefall(1)\">\r\n\t\t\t\t\t\t猜你喜欢\r\n\t\t\t\t\t\t<view class=\"tip\">\r\n\r\n\t\t\t\t\t\t</view>\r\n\t\t\t\t\t</view>\r\n\t\t\t\t\t<view class=\"fallnev\" :class=\"{newfall:fallindex==2}\" @click=\"changefall(2)\">\r\n\t\t\t\t\t\t最新\r\n\t\t\t\t\t\t<view class=\"tip\">\r\n\r\n\t\t\t\t\t\t</view>\r\n\t\t\t\t\t</view>\r\n\t\t\t\t\t<view class=\"fallnev\" :class=\"{newfall:fallindex==3}\" @click=\"changefall(3)\">\r\n\t\t\t\t\t\t人气\r\n\t\t\t\t\t\t<view class=\"tip\">\r\n\r\n\t\t\t\t\t\t</view>\r\n\t\t\t\t\t</view>\r\n\t\t\t\t</view>\r\n\t\t\t\t<view class=\"misslist\">\r\n\t\t\t\t\t<custom-waterfalls-flow :value=\"list\">\r\n\t\t\t\t\t\t<!-- #ifdef MP-WEIXIN -->\r\n\t\t\t\t\t\t<view class=\"item\" v-for=\"(item,index) in list\" :key=\"index\" slot=\"slot{{index}}\">\r\n\t\t\t\t\t\t\t<view class=\"title\">{{item.name}}</view>\r\n\t\t\t\t\t\t\t<view class=\"desc\">\r\n\t\t\t\t\t\t\t\t<text>{{item.sort.name}}</text>\r\n\t\t\t\t\t\t\t\t<view class=\"money\">\r\n\t\t\t\t\t\t\t\t\t<text>¥</text>6666\r\n\t\t\t\t\t\t\t\t</view>\r\n\t\t\t\t\t\t\t</view>\r\n\t\t\t\t\t\t</view>\r\n\t\t\t\t\t\t<!-- #endif -->\r\n\t\t\t\t\t\t<!-- #ifndef MP-WEIXIN -->\r\n\t\t\t\t\t\t<template v-slot:default=\"item\">\r\n\t\t\t\t\t\t\t<view class=\"item\">\r\n\t\t\t\t\t\t\t\t<view class=\"title\">{{item.title}}</view>\r\n\t\t\t\t\t\t\t\t<view class=\"desc\">\r\n\t\t\t\t\t\t\t\t\t<text>张三</text>\r\n\t\t\t\t\t\t\t\t\t<view class=\"money\">\r\n\t\t\t\t\t\t\t\t\t\t<text>¥</text>6666\r\n\t\t\t\t\t\t\t\t\t</view>\r\n\t\t\t\t\t\t\t\t</view>\r\n\t\t\t\t\t\t\t</view>\r\n\t\t\t\t\t\t</template>\r\n\t\t\t\t\t\t<!-- #endif -->\r\n\t\t\t\t\t</custom-waterfalls-flow>\r\n\t\t\t\t</view>\r\n\t\t\t</view>\r\n\t\t</view>\r\n\t\t<Botton :flag=\"1\"></Botton>\r\n\t</view>\r\n</template>\r\n\r\n<script>\r\n\timport {\r\n\t\tgetBanner,\r\n\t\tsortList,\r\n\t\tarcList,\r\n\t\tproduct_list\r\n\t} from '@/api/index'\r\n\timport helangWaterfall from \"@/uni_modules/custom-waterfalls-flow/components/custom-waterfalls-flow/custom-waterfalls-flow.vue\"\r\n\timport Botton from \"@/components/Botton.vue\"\r\n\texport default {\r\n\t\tcomponents: {\r\n\t\t\t\"custom-waterfalls-flow\": helangWaterfall,\r\n\t\t\t\"Botton\": Botton\r\n\t\t},\r\n\t\tdata() {\r\n\t\t\treturn {\r\n\t\t\t\ttitle: 'Hello',\r\n\t\t\t\tlist1: [\r\n\t\t\t\t\t'https://cdn.uviewui.com/uview/swiper/swiper1.png',\r\n\t\t\t\t\t'https://cdn.uviewui.com/uview/swiper/swiper2.png',\r\n\t\t\t\t\t'https://cdn.uviewui.com/uview/swiper/swiper3.png',\r\n\t\t\t\t],\r\n\t\t\t\tnevlist: [1, 2, 3, 4, , 6, 7],\r\n\t\t\t\tleftlist: [1, 2, 3],\r\n\t\t\t\tfallindex: 1,\r\n\t\t\t\t//瀑布\r\n\t\t\t\tlist: [],\r\n\t\t\t\tcategoryList: [], // 分类列表\r\n\t\t\t\tcategoryLength: 0, //分类数量\r\n\t\t\t\tinformationList: [], // 相关资讯\r\n\t\t\t\tcurrentpage: 1, //分页\r\n\t\t\t}\r\n\t\t},\r\n\t\tonShow() {\r\n\t\t\tthis.initial()\r\n\t\t\tthis.product_list()\r\n\t\t},\r\n\t\tonLoad() {\r\n\r\n\t\t},\r\n\t\tmethods: {\r\n\t\t\t//产品列表\r\n\t\t\tasync product_list() {\r\n\t\t\t\tlet obj = {\r\n\t\t\t\t\ttype: this.fallindex,\r\n\t\t\t\t\tpage: this.currentpage,\r\n\t\t\t\t\tpagenum: 15,\r\n\t\t\t\t}\r\n\t\t\t\ttry {\r\n\t\t\t\t\tconst res = await product_list(obj)\r\n\t\t\t\t\tconsole.log('产品列表', res)\r\n\t\t\t\t\tthis.list = res.list.data\r\n\t\t\t\t\tconsole.log('产品列表', this.list)\r\n\t\t\t\t\t// 保存数据\r\n\t\t\t\t} catch (err) {\r\n\t\t\t\t\tuni.showToast({\r\n\t\t\t\t\t\ttitle: err,\r\n\t\t\t\t\t\ticon: 'none'\r\n\t\t\t\t\t})\r\n\t\t\t\t\tconsole.log('product_list', err)\r\n\t\t\t\t}\r\n\t\t\t},\r\n\t\t\tasync initial() {\r\n\t\t\t\ttry {\r\n\t\t\t\t\t// 轮播图\r\n\t\t\t\t\tconst res = await getBanner()\r\n\t\t\t\t\t// 分类\r\n\t\t\t\t\tconst sortRes = await sortList()\r\n\t\t\t\t\t// 相关资讯\r\n\t\t\t\t\tconst information = await arcList()\r\n\t\t\t\t\t// 轮播图\r\n\t\t\t\t\tthis.list1 = res.list\r\n\t\t\t\t\tthis.categoryLength = sortRes.list.length\r\n\t\t\t\t\tthis.categoryList = sortRes.list.length > 8 ? sortRes.list.slice(0, 7) : sortRes.list\r\n\t\t\t\t\tthis.informationList = information.list.length > 3 ? information.list.slice(0, 3) : information\r\n\t\t\t\t\t\t.list\r\n\t\t\t\t\tconsole.log(sortRes, '分类');\r\n\t\t\t\t\tconsole.log('getBanner', res)\r\n\t\t\t\t\tconsole.log(information, '资讯列表');\r\n\t\t\t\t\t// 保存数据\r\n\t\t\t\t} catch (err) {\r\n\t\t\t\t\tuni.showToast({\r\n\t\t\t\t\t\ttitle: err,\r\n\t\t\t\t\t\ticon: 'none'\r\n\t\t\t\t\t})\r\n\t\t\t\t\tconsole.log('getBanner', err)\r\n\t\t\t\t}\r\n\t\t\t},\r\n\t\t\tchangefall(e) {\r\n\t\t\t\tthis.fallindex = e\r\n\t\t\t},\r\n\t\t\t//跳转搜索\r\n\t\t\tgosourch() {\r\n\t\t\t\tuni.navigateTo({\r\n\t\t\t\t\turl: \"/pages/index/search\"\r\n\t\t\t\t})\r\n\t\t\t},\r\n\t\t}\r\n\t}\r\n</script>\r\n\r\n<style lang=\"scss\">\r\n\tpage {\r\n\t\tbackground: rgba(246, 246, 246, 1);\r\n\t}\r\n\r\n\t.content {\r\n\r\n\t\t.top {\r\n\t\t\theight: 370rpx;\r\n\t\t\tbackground-image: linear-gradient(#FED000, #ffffff);\r\n\t\t\tpadding: 32rpx;\r\n\r\n\t\t\t.logo {\r\n\t\t\t\tdisplay: flex;\r\n\t\t\t\talign-items: center;\r\n\r\n\t\t\t\timage {\r\n\t\t\t\t\twidth: 84rpx;\r\n\t\t\t\t\theight: 74rpx;\r\n\t\t\t\t\tmargin-right: 36rpx;\r\n\t\t\t\t}\r\n\r\n\t\t\t\t.search {\r\n\t\t\t\t\tflex: 1;\r\n\t\t\t\t\tdisplay: flex;\r\n\t\t\t\t\talign-items: center;\r\n\r\n\t\t\t\t\t.tosear {\r\n\t\t\t\t\t\tposition: relative;\r\n\t\t\t\t\t\twidth: 522rpx;\r\n\t\t\t\t\t\theight: 64rpx;\r\n\t\t\t\t\t\tborder-radius: 38rpx;\r\n\t\t\t\t\t\topacity: 1;\r\n\r\n\t\t\t\t\t\tborder: 0 solid rgba(0.5920000076293945, 0.5920000076293945, 0.5920000076293945, 1);\r\n\t\t\t\t\t\tbackground: rgba(245, 245, 245, 1);\r\n\t\t\t\t\t\tpadding: 0 32rpx;\r\n\r\n\t\t\t\t\t\tinput {\r\n\t\t\t\t\t\t\ttext-align: center;\r\n\t\t\t\t\t\t\twidth: 100%;\r\n\t\t\t\t\t\t\theight: 100%;\r\n\t\t\t\t\t\t}\r\n\r\n\t\t\t\t\t\timage {\r\n\t\t\t\t\t\t\tposition: absolute;\r\n\t\t\t\t\t\t\tleft: 280rpx;\r\n\t\t\t\t\t\t\ttop: 50%;\r\n\t\t\t\t\t\t\tleft: 36%;\r\n\t\t\t\t\t\t\ttransform: translateY(-50%);\r\n\t\t\t\t\t\t\twidth: 32rpx;\r\n\t\t\t\t\t\t\theight: 32rpx;\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\r\n\r\n\t\t\t}\r\n\r\n\t\t\t.banner {\r\n\t\t\t\tmargin-top: 32rpx;\r\n\t\t\t\theight: 320rpx;\r\n\t\t\t\tborder-radius: 24rpx;\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\t.contail {\r\n\t\t\tpadding: 0 32rpx;\r\n\t\t\tbox-sizing: border-box;\r\n\r\n\t\t\t.nev {\r\n\t\t\t\tmargin-top: 48rpx;\r\n\t\t\t\tborder-radius: 24rpx;\r\n\t\t\t\tpadding: 0 32rpx;\r\n\t\t\t\tbox-sizing: border-box;\r\n\t\t\t\tpadding-bottom: 32rpx;\r\n\t\t\t\tbackground: rgba(255, 255, 255, 1);\r\n\t\t\t\tdisplay: flex;\r\n\t\t\t\tflex-wrap: wrap;\r\n\r\n\t\t\t\t.bar {\r\n\t\t\t\t\tmargin-top: 40rpx;\r\n\t\t\t\t\tmargin-right: 68rpx;\r\n\t\t\t\t\twidth: 104rpx;\r\n\t\t\t\t\theight: 124rpx;\r\n\t\t\t\t\tdisplay: flex;\r\n\t\t\t\t\tflex-direction: column;\r\n\t\t\t\t\talign-items: center;\r\n\t\t\t\t\tcolor: rgba(0, 0, 0, 0.9);\r\n\t\t\t\t\tfont-size: 26rpx;\r\n\t\t\t\t\tfont-weight: 400;\r\n\t\t\t\t\tfont-family: \"PingFang SC\";\r\n\t\t\t\t\ttext-align: center;\r\n\r\n\t\t\t\t\t.barimg {\r\n\t\t\t\t\t\twidth: 80rpx;\r\n\t\t\t\t\t\theight: 80rpx;\r\n\t\t\t\t\t}\r\n\r\n\t\t\t\t\t&:nth-child(4n) {\r\n\t\t\t\t\t\tmargin-right: 0;\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t}\r\n\r\n\t\t\t.info {\r\n\t\t\t\tdisplay: flex;\r\n\t\t\t\tmargin-top: 24rpx;\r\n\r\n\t\t\t\t.leftbox {\r\n\t\t\t\t\tflex: 1;\r\n\t\t\t\t\tpadding: 24rpx;\r\n\t\t\t\t\tmargin-right: 22rpx;\r\n\t\t\t\t\tbox-sizing: border-box;\r\n\t\t\t\t\tbackground: linear-gradient(180deg, rgba(255, 242, 242, 1) 0%, rgba(255, 255, 255, 1) 100%);\r\n\r\n\t\t\t\t\t.lefttitle {\r\n\t\t\t\t\t\tdisplay: flex;\r\n\t\t\t\t\t\talign-items: center;\r\n\t\t\t\t\t\tjustify-content: space-between;\r\n\r\n\t\t\t\t\t\t.title {\r\n\t\t\t\t\t\t\topacity: 1;\r\n\t\t\t\t\t\t\tcolor: rgba(0, 0, 0, 1);\r\n\t\t\t\t\t\t\tfont-size: 30rpx;\r\n\t\t\t\t\t\t\tfont-weight: 500;\r\n\t\t\t\t\t\t\tfont-family: \"PingFang SC\";\r\n\t\t\t\t\t\t}\r\n\r\n\t\t\t\t\t\t.more {\r\n\t\t\t\t\t\t\tdisplay: flex;\r\n\t\t\t\t\t\t\talign-items: center;\r\n\r\n\t\t\t\t\t\t\timage {\r\n\t\t\t\t\t\t\t\twidth: 16rpx;\r\n\t\t\t\t\t\t\t\theight: 32rpx;\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\r\n\t\t\t\t\t.newbar {\r\n\t\t\t\t\t\tcolor: rgba(0, 0, 0, 0.9);\r\n\t\t\t\t\t\tfont-size: 22rpx;\r\n\t\t\t\t\t\tfont-weight: 400;\r\n\t\t\t\t\t\tfont-family: \"PingFang SC\";\r\n\t\t\t\t\t\ttext-align: left;\r\n\r\n\t\t\t\t\t\tview {\r\n\t\t\t\t\t\t\tmargin-top: 16rpx;\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\r\n\t\t\t\t.rightbox {\r\n\t\t\t\t\tflex: 1;\r\n\t\t\t\t\tpadding: 24rpx;\r\n\t\t\t\t\tbox-sizing: border-box;\r\n\t\t\t\t\tbackground: linear-gradient(180deg, rgba(255, 250, 231, 1) 0%, rgba(255, 255, 255, 1) 100%);\r\n\r\n\t\t\t\t\t.righttitle {\r\n\t\t\t\t\t\tdisplay: flex;\r\n\t\t\t\t\t\talign-items: center;\r\n\r\n\t\t\t\t\t\t.title {\r\n\t\t\t\t\t\t\tcolor: rgba(50, 50, 51, 1);\r\n\t\t\t\t\t\t\tfont-size: 30rpx;\r\n\t\t\t\t\t\t\tfont-weight: 500;\r\n\t\t\t\t\t\t\tfont-family: \"PingFang SC\";\r\n\t\t\t\t\t\t}\r\n\r\n\t\t\t\t\t\t.active {\r\n\t\t\t\t\t\t\tmargin-left: 16rpx;\r\n\t\t\t\t\t\t\twidth: 104rpx;\r\n\t\t\t\t\t\t\theight: 32rpx;\r\n\t\t\t\t\t\t\tborder-radius: 6rpx;\r\n\t\t\t\t\t\t\topacity: 1;\r\n\t\t\t\t\t\t\tcolor: rgba(255, 255, 255, 1);\r\n\t\t\t\t\t\t\tfont-size: 20rpx;\r\n\t\t\t\t\t\t\tfont-weight: 500;\r\n\t\t\t\t\t\t\tfont-family: \"PingFang SC\";\r\n\t\t\t\t\t\t\tline-height: 32rpx;\r\n\t\t\t\t\t\t\ttext-align: center;\r\n\t\t\t\t\t\t\tbackground: linear-gradient(90deg, rgba(255, 61, 61, 1) 0%, rgba(255, 122, 48, 1) 100%);\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\r\n\t\t\t\t\t.activeimg {\r\n\t\t\t\t\t\tmargin-top: 12rpx;\r\n\t\t\t\t\t\tdisplay: flex;\r\n\t\t\t\t\t\talign-items: center;\r\n\t\t\t\t\t\tjustify-content: space-between;\r\n\r\n\t\t\t\t\t\timage {\r\n\t\t\t\t\t\t\twidth: 284rpx;\r\n\t\t\t\t\t\t\theight: 136rpx;\r\n\t\t\t\t\t\t\tborder-radius: 24rpx;\r\n\t\t\t\t\t\t}\r\n\r\n\t\t\t\t\t\t// image {\r\n\t\t\t\t\t\t// \twidth: 134rpx;\r\n\t\t\t\t\t\t// \theight: 136rpx;\r\n\t\t\t\t\t\t// \tborder-radius: 24rpx;\r\n\t\t\t\t\t\t// }\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t}\r\n\r\n\t\t\t.waterfall {\r\n\t\t\t\tcolor: rgba(0, 0, 0, 0.9);\r\n\t\t\t\tfont-size: 30rpx;\r\n\t\t\t\tfont-weight: 400;\r\n\t\t\t\tfont-family: \"PingFang SC\";\r\n\t\t\t\ttext-align: left;\r\n\r\n\t\t\t\t.falltitle {\r\n\t\t\t\t\tcolor: rgba(0, 0, 0, 0.9);\r\n\t\t\t\t\tfont-size: 30rpx;\r\n\t\t\t\t\tfont-weight: 400;\r\n\t\t\t\t\tfont-family: \"PingFang SC\";\r\n\t\t\t\t\tmargin-top: 24rpx;\r\n\t\t\t\t\tdisplay: flex;\r\n\t\t\t\t\talign-items: center;\r\n\r\n\t\t\t\t\t.fallnev {\r\n\t\t\t\t\t\tmargin-right: 40rpx;\r\n\r\n\t\t\t\t\t\t.tip {\r\n\t\t\t\t\t\t\twidth: 0;\r\n\t\t\t\t\t\t\theight: 0;\r\n\r\n\t\t\t\t\t\t}\r\n\r\n\t\t\t\t\t}\r\n\r\n\t\t\t\t\t.newfall {\r\n\t\t\t\t\t\tposition: relative;\r\n\t\t\t\t\t\tcolor: rgba(0, 0, 0, 0.9);\r\n\t\t\t\t\t\tfont-size: 36rpx;\r\n\t\t\t\t\t\tfont-weight: 600;\r\n\t\t\t\t\t\tfont-family: \"PingFang SC\";\r\n\r\n\t\t\t\t\t\t.tip {\r\n\t\t\t\t\t\t\tposition: absolute;\r\n\t\t\t\t\t\t\tbottom: 0;\r\n\t\t\t\t\t\t\tright: 0;\r\n\t\t\t\t\t\t\twidth: 64rpx;\r\n\t\t\t\t\t\t\theight: 12rpx;\r\n\t\t\t\t\t\t\tborder-radius: 14rpx;\r\n\t\t\t\t\t\t\topacity: 1;\r\n\t\t\t\t\t\t\tbackground: rgba(254, 208, 0, .6);\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\r\n\t\t\t\t.misslist {\r\n\t\t\t\t\tmargin-top: 24rpx;\r\n\r\n\t\t\t\t\t.item {\r\n\t\t\t\t\t\tpadding: 24rpx;\r\n\t\t\t\t\t\tbox-sizing: border-box;\r\n\r\n\t\t\t\t\t\t.desc {\r\n\t\t\t\t\t\t\tmargin-top: 14rpx;\r\n\t\t\t\t\t\t\tdisplay: flex;\r\n\t\t\t\t\t\t\talign-items: center;\r\n\t\t\t\t\t\t\tjustify-content: space-between;\r\n\t\t\t\t\t\t\tcolor: rgba(0, 0, 0, 0.6);\r\n\t\t\t\t\t\t\tfont-size: 20rpx;\r\n\t\t\t\t\t\t\tfont-weight: 400;\r\n\t\t\t\t\t\t\tfont-family: \"PingFang SC\";\r\n\r\n\t\t\t\t\t\t\t.money {\r\n\r\n\t\t\t\t\t\t\t\tcolor: rgba(248, 83, 23, 1);\r\n\t\t\t\t\t\t\t\tfont-size: 32rpx;\r\n\t\t\t\t\t\t\t\tfont-weight: 700;\r\n\t\t\t\t\t\t\t\tfont-family: \"Montserrat\";\r\n\r\n\t\t\t\t\t\t\t\ttext {\r\n\t\t\t\t\t\t\t\t\tfont-size: 24rpx;\r\n\t\t\t\t\t\t\t\t\tfont-weight: 500;\r\n\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\r\n\t\t\t\t}\r\n\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n</style>\n","import mod from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--8-oneOf-1-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-2!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--8-oneOf-1-3!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\sass-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-4!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-5!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./index.vue?vue&type=style&index=0&lang=scss&\"; export default mod; export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--8-oneOf-1-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-2!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--8-oneOf-1-3!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\sass-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-4!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-5!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./index.vue?vue&type=style&index=0&lang=scss&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1653887857692\n var cssReload = require(\"E:/HBuilderX.2.6.11.20200409/HBuilderX.2.6.11.20200409/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
1 -{"version":3,"sources":["uni-app:///main.js","webpack:///F:/minigroup/Bitcoin/pages/login/login.vue?ca14","webpack:///F:/minigroup/Bitcoin/pages/login/login.vue?22cd","webpack:///F:/minigroup/Bitcoin/pages/login/login.vue?c64c","webpack:///F:/minigroup/Bitcoin/pages/login/login.vue?bcb8","uni-app:///pages/login/login.vue","webpack:///F:/minigroup/Bitcoin/pages/login/login.vue?d6bd","webpack:///F:/minigroup/Bitcoin/pages/login/login.vue?8ab9"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,6F,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,cAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAkH;AAClH;AACyD;AACL;AACc;;;AAGlE;AAC2N;AAC3N,gBAAgB,mOAAU;AAC1B,EAAE,2EAAM;AACR,EAAE,gFAAM;AACR,EAAE,yFAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,oFAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAA62B,CAAgB,63BAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACiCj4B;AACA,MADA,kBACA;AACA;;;AAGA,GALA,E;;;;;;;;;;;;ACjCA;AAAA;AAAA;AAAA;AAAgnD,CAAgB,okDAAG,EAAC,C;;;;;;;;;;;ACApoD;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/login/login.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/login/login.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./login.vue?vue&type=template&id=b237504c&\"\nvar renderjs\nimport script from \"./login.vue?vue&type=script&lang=js&\"\nexport * from \"./login.vue?vue&type=script&lang=js&\"\nimport style0 from \"./login.vue?vue&type=style&index=0&lang=scss&\"\n\n\n/* normalize component */\nimport normalizer from \"!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\runtime\\\\componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/login/login.vue\"\nexport default component.exports","export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\templateLoader.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--16-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\template.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-uni-app-loader\\\\page-meta.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./login.vue?vue&type=template&id=b237504c&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./login.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./login.vue?vue&type=script&lang=js&\"","<template>\r\n\t<view class=\"login\">\r\n\t\t<view class=\"icon\">\r\n\t\t\t<image class=\"bgimg\" src=\"../../static/ic_logo.png\" mode=\"\"></image>\r\n\r\n\t\t\t<view class=\"bar flexwrap\">\r\n\t\t\t\t<view class=\"name\">\r\n\t\t\t\t\t用户名:\r\n\t\t\t\t</view>\r\n\t\t\t\t<view class=\"last name\">\r\n\t\t\t\t\t<input type=\"text\" value=\"\" placeholder=\"请输入用户名\" />\r\n\t\t\t\t</view>\r\n\t\t\t</view>\r\n\t\t\t<view class=\"bar flexwrap\">\r\n\t\t\t\t<view class=\"name\">\r\n\t\t\t\t\t密码:\r\n\t\t\t\t</view>\r\n\t\t\t\t<view class=\"last name\">\r\n\t\t\t\t\t<input type=\"text\" value=\"\" placeholder=\"密码:\" />\r\n\t\t\t\t</view>\r\n\t\t\t</view>\r\n\t\t\t<view class=\"loginbtn\">\r\n\t\t\t\t登录\r\n\t\t\t</view>\r\n\t\t\t<view class=\"passway\">\r\n\t\t\t\t<text>忘记密码</text>\r\n\t\t\t\t<text>没有账号,去注册</text>\r\n\t\t\t</view>\r\n\t\t</view>\r\n\t</view>\r\n</template>\r\n\r\n<script>\r\n\texport default {\r\n\t\tdata() {\r\n\t\t\treturn {\r\n\r\n\t\t\t};\r\n\t\t}\r\n\t}\r\n</script>\r\n\r\n<style lang=\"scss\">\r\n\t.login {\r\n\t\tpadding: 0 48rpx;\r\n\t\tbox-sizing: border-box;\r\n\r\n\t\t.icon {\r\n\t\t\t.bgimg {\r\n\t\t\t\tmargin-top: 100rpx;\r\n\t\t\t\tmargin-left: 50%;\r\n\t\t\t\ttransform: translate(-50%);\r\n\t\t\t\tmargin-bottom: 24rpx;\r\n\t\t\t\twidth: 184rpx;\r\n\t\t\t\theight: 184rpx;\r\n\t\t\t}\r\n\r\n\t\t\t.bar {\r\n\t\t\t\tborder-bottom: 1px solid #f0f0f0;\r\n\t\t\t\tpadding: 40rpx 0;\r\n\t\t\t\tcolor: rgba(0, 0, 0, 1);\r\n\t\t\t\tfont-size: 32rpx;\r\n\t\t\t\tfont-weight: 500;\r\n\t\t\t\tfont-family: \"PingFang SC\";\r\n\r\n\t\t\t\t.name {\r\n\t\t\t\t\twidth: 180rpx;\r\n\t\t\t\t}\r\n\r\n\t\t\t\t.lastname {\r\n\t\t\t\t\twidth: 300rpx;\r\n\t\t\t\t}\r\n\t\t\t}\r\n\r\n\t\t\t.loginbtn {\r\n\t\t\t\tmargin-top: 100rpx;\r\n\t\t\t\twidth: 654rpx;\r\n\t\t\t\theight: 88rpx;\r\n\t\t\t\tborder-radius: 28rpx;\r\n\t\t\t\topacity: 1;\r\n\t\t\t\tcolor: rgba(0, 0, 0, 0.9);\r\n\t\t\t\tfont-size: 32rpx;\r\n\t\t\t\tfont-weight: 600;\r\n\t\t\t\tfont-family: \"PingFang SC\";\r\n\t\t\t\ttext-align: center;\r\n\t\t\t\tline-height: 88rpx;\r\n\t\t\t\tbackground: rgba(254, 208, 0, 1);\r\n\t\t\t}\r\n\r\n\t\t\t.passway {\r\n\t\t\t\tdisplay: flex;\r\n\t\t\t\talign-items: center;\r\n\t\t\t\tjustify-content: space-between;\r\n\t\t\t\tmargin-top: 16rpx;\r\n\r\n\t\t\t\ttext {\r\n\t\t\t\t\t&:first-child {\r\n\t\t\t\t\t\tcolor: rgba(0, 0, 0, 0.26);\r\n\t\t\t\t\t\tfont-size: 24rpx;\r\n\t\t\t\t\t\tfont-weight: 400;\r\n\t\t\t\t\t\tfont-family: \"PingFang SC\";\r\n\t\t\t\t\t}\r\n\r\n\t\t\t\t\t&:last-child {\r\n\t\t\t\t\t\tcolor: rgba(254, 208, 0, 1);\r\n\t\t\t\t\t\tfont-size: 26rpx;\r\n\t\t\t\t\t\tfont-weight: 400;\r\n\t\t\t\t\t\tfont-family: \"PingFang SC\";\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n</style>\n","import mod from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--8-oneOf-1-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-2!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--8-oneOf-1-3!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\sass-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-4!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-5!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./login.vue?vue&type=style&index=0&lang=scss&\"; export default mod; export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--8-oneOf-1-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-2!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--8-oneOf-1-3!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\sass-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-4!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-5!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./login.vue?vue&type=style&index=0&lang=scss&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1653871240907\n var cssReload = require(\"E:/HBuilderX.2.6.11.20200409/HBuilderX.2.6.11.20200409/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}  
  1 +{"version":3,"sources":["uni-app:///main.js","webpack:///F:/minigroup/Bitcoin/pages/login/login.vue?ca14","webpack:///F:/minigroup/Bitcoin/pages/login/login.vue?22cd","webpack:///F:/minigroup/Bitcoin/pages/login/login.vue?c64c","webpack:///F:/minigroup/Bitcoin/pages/login/login.vue?bcb8","uni-app:///pages/login/login.vue","webpack:///F:/minigroup/Bitcoin/pages/login/login.vue?d6bd","webpack:///F:/minigroup/Bitcoin/pages/login/login.vue?8ab9"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,6F,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,cAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAkH;AAClH;AACyD;AACL;AACc;;;AAGlE;AAC2N;AAC3N,gBAAgB,mOAAU;AAC1B,EAAE,2EAAM;AACR,EAAE,gFAAM;AACR,EAAE,yFAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,oFAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAA62B,CAAgB,63BAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACiCj4B;AACA,8D;AACA;AACA,MADA,kBACA;AACA;AACA,iBADA;AAEA,kBAFA;;AAIA,GANA;AAOA;AACA,UADA,oBACA;AACA;AACA,oCADA;;AAGA,KALA;AAMA,YANA,sBAMA;AACA;AACA,oCADA;;AAGA,KAVA;AAWA;AACA,WAZA,qBAYA;AACA;AACA;AACA;AACA,KAhBA;AAiBA,SAjBA,mBAiBA;;AAEA,mEAFA,SAEA,GAFA;AAGA;AACA;AACA;AACA;AACA;AACA,iBAFA,EAEA,GAFA;AAGA;AACA,2CADA;;AAGA;AAZA;AAcA;AACA,kDAfA;;AAiBA,KAlCA,EAPA,E;;;;;;;;;;;;;ACnCA;AAAA;AAAA;AAAA;AAAgnD,CAAgB,okDAAG,EAAC,C;;;;;;;;;;;ACApoD;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/login/login.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/login/login.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./login.vue?vue&type=template&id=b237504c&\"\nvar renderjs\nimport script from \"./login.vue?vue&type=script&lang=js&\"\nexport * from \"./login.vue?vue&type=script&lang=js&\"\nimport style0 from \"./login.vue?vue&type=style&index=0&lang=scss&\"\n\n\n/* normalize component */\nimport normalizer from \"!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\runtime\\\\componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/login/login.vue\"\nexport default component.exports","export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\templateLoader.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--16-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\template.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-uni-app-loader\\\\page-meta.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./login.vue?vue&type=template&id=b237504c&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./login.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./login.vue?vue&type=script&lang=js&\"","<template>\n\t<view class=\"login\">\n\t\t<view class=\"icon\">\n\t\t\t<image class=\"bgimg\" src=\"../../static/ic_logo.png\" mode=\"\"></image>\n\n\t\t\t<view class=\"bar flexwrap\">\n\t\t\t\t<view class=\"name\">\n\t\t\t\t\t用户名:\n\t\t\t\t</view>\n\t\t\t\t<view class=\"last name\">\n\t\t\t\t\t<input v-model=\"account\" maxlength=\"16\" type=\"text\" value=\"\" placeholder=\"请输入用户名\" />\n\t\t\t\t</view>\n\t\t\t</view>\n\t\t\t<view class=\"bar flexwrap\">\n\t\t\t\t<view class=\"name\">\n\t\t\t\t\t密码:\n\t\t\t\t</view>\n\t\t\t\t<view class=\"last name\">\n\t\t\t\t\t<input v-model=\"password\" maxlength=\"16\" type=\"text\" value=\"\" placeholder=\"密码:\" />\n\t\t\t\t</view>\n\t\t\t</view>\n\t\t\t<view class=\"loginbtn\" @click=\"doLogin\">\n\t\t\t\t登录\n\t\t\t</view>\n\t\t\t<view class=\"passway\">\n\t\t\t\t<text @click=\"forget\">忘记密码</text>\n\t\t\t\t<text @click=\"register\">没有账号,去注册</text>\n\t\t\t</view>\n\t\t</view>\n\t</view>\n</template>\n\n<script>\r\n\timport { login } from '@/api/login.js'\r\n\timport {toa } from '@/utils/toast.js'\n\texport default {\n\t\tdata() {\n\t\t\treturn {\n\t\t\t\taccount:'',\r\n\t\t\t\tpassword:''\n\t\t\t};\n\t\t},\r\n\t\tmethods: {\r\n\t\t\tforget() {\r\n\t\t\t\tuni.navigateTo({\r\n\t\t\t\t\turl:'/pages/login/password'\r\n\t\t\t\t})\r\n\t\t\t},\r\n\t\t\tregister(){\r\n\t\t\t\tuni.navigateTo({\r\n\t\t\t\t\turl:'/pages/login/register'\r\n\t\t\t\t})\r\n\t\t\t},\r\n\t\t\t// 登录\r\n\t\t\tdoLogin(){\r\n\t\t\t\tif(!this.account) return toa.toast('请输入账号')\r\n\t\t\t\tif(!this.password) return toa.toast('请输入密码')\r\n\t\t\t\tthis.login()\r\n\t\t\t},\r\n\t\t\tasync login(){\r\n\t\t\t try {\r\n\t\t\t const res = await login(this.account,this.password)\r\n\t\t\t console.log('login', res)\r\n\t\t\t\tuni.setStorageSync('userInfo',res.userinfo)\r\n\t\t\t\tuni.setStorageSync('token',res.userinfo.token)\r\n\t\t\t\tsetTimeout(()=>{\r\n\t\t\t\t\ttoa.success('登录成功')\r\n\t\t\t\t},200)\r\n\t\t\t\tuni.reLaunch({\r\n\t\t\t\t\turl:'/pages/index/index'\r\n\t\t\t\t})\r\n\t\t\t // 保存数据\r\n\t\t\t } catch (err) {\r\n\t\t\t \tuni.showToast({ title:err,icon:'none' })\r\n\t\t\t console.log('login', err)\r\n\t\t\t }\r\n\t\t\t},\r\n\t\t},\n\t}\n</script>\n\n<style lang=\"scss\">\n\t.login {\n\t\tpadding: 0 48rpx;\n\t\tbox-sizing: border-box;\n\n\t\t.icon {\n\t\t\t.bgimg {\n\t\t\t\tmargin-top: 100rpx;\n\t\t\t\tmargin-left: 50%;\n\t\t\t\ttransform: translate(-50%);\n\t\t\t\tmargin-bottom: 24rpx;\n\t\t\t\twidth: 184rpx;\n\t\t\t\theight: 184rpx;\n\t\t\t}\n\n\t\t\t.bar {\n\t\t\t\tborder-bottom: 1px solid #f0f0f0;\n\t\t\t\tpadding: 40rpx 0;\n\t\t\t\tcolor: rgba(0, 0, 0, 1);\n\t\t\t\tfont-size: 32rpx;\n\t\t\t\tfont-weight: 500;\n\t\t\t\tfont-family: \"PingFang SC\";\n\n\t\t\t\t.name {\n\t\t\t\t\twidth: 180rpx;\n\t\t\t\t}\n\n\t\t\t\t.last {\r\n\t\t\t\t\tflex: 1;\n\t\t\t\t\t// width: 300rpx;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.loginbtn {\n\t\t\t\tmargin-top: 100rpx;\n\t\t\t\twidth: 654rpx;\n\t\t\t\theight: 88rpx;\n\t\t\t\tborder-radius: 28rpx;\n\t\t\t\topacity: 1;\n\t\t\t\tcolor: rgba(0, 0, 0, 0.9);\n\t\t\t\tfont-size: 32rpx;\n\t\t\t\tfont-weight: 600;\n\t\t\t\tfont-family: \"PingFang SC\";\n\t\t\t\ttext-align: center;\n\t\t\t\tline-height: 88rpx;\n\t\t\t\tbackground: rgba(254, 208, 0, 1);\n\t\t\t}\n\n\t\t\t.passway {\n\t\t\t\tdisplay: flex;\n\t\t\t\talign-items: center;\n\t\t\t\tjustify-content: space-between;\n\t\t\t\tmargin-top: 16rpx;\n\n\t\t\t\ttext {\n\t\t\t\t\t&:first-child {\n\t\t\t\t\t\tcolor: rgba(0, 0, 0, 0.26);\n\t\t\t\t\t\tfont-size: 24rpx;\n\t\t\t\t\t\tfont-weight: 400;\n\t\t\t\t\t\tfont-family: \"PingFang SC\";\n\t\t\t\t\t}\n\n\t\t\t\t\t&:last-child {\n\t\t\t\t\t\tcolor: rgba(254, 208, 0, 1);\n\t\t\t\t\t\tfont-size: 26rpx;\n\t\t\t\t\t\tfont-weight: 400;\n\t\t\t\t\t\tfont-family: \"PingFang SC\";\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n</style>\n","import mod from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--8-oneOf-1-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-2!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--8-oneOf-1-3!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\sass-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-4!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-5!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./login.vue?vue&type=style&index=0&lang=scss&\"; export default mod; export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--8-oneOf-1-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-2!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--8-oneOf-1-3!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\sass-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-4!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-5!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./login.vue?vue&type=style&index=0&lang=scss&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1653887043477\n var cssReload = require(\"E:/HBuilderX.2.6.11.20200409/HBuilderX.2.6.11.20200409/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
1 -{"version":3,"sources":["uni-app:///main.js","webpack:///F:/minigroup/Bitcoin/pages/login/password.vue?171d","webpack:///F:/minigroup/Bitcoin/pages/login/password.vue?50d6","webpack:///F:/minigroup/Bitcoin/pages/login/password.vue?b218","webpack:///F:/minigroup/Bitcoin/pages/login/password.vue?792e","uni-app:///pages/login/password.vue","webpack:///F:/minigroup/Bitcoin/pages/login/password.vue?1557","webpack:///F:/minigroup/Bitcoin/pages/login/password.vue?e9f1"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,mG,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,iBAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAqH;AACrH;AAC4D;AACL;AACc;;;AAGrE;AAC2N;AAC3N,gBAAgB,mOAAU;AAC1B,EAAE,8EAAM;AACR,EAAE,mFAAM;AACR,EAAE,4FAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,uFAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAAg3B,CAAgB,g4BAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACiDp4B;AACA,MADA,kBACA;AACA;;;AAGA,GALA,E;;;;;;;;;;;;ACjDA;AAAA;AAAA;AAAA;AAAmnD,CAAgB,ukDAAG,EAAC,C;;;;;;;;;;;ACAvoD;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/login/password.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/login/password.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./password.vue?vue&type=template&id=a7196a8c&\"\nvar renderjs\nimport script from \"./password.vue?vue&type=script&lang=js&\"\nexport * from \"./password.vue?vue&type=script&lang=js&\"\nimport style0 from \"./password.vue?vue&type=style&index=0&lang=scss&\"\n\n\n/* normalize component */\nimport normalizer from \"!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\runtime\\\\componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/login/password.vue\"\nexport default component.exports","export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\templateLoader.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--16-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\template.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-uni-app-loader\\\\page-meta.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./password.vue?vue&type=template&id=a7196a8c&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./password.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./password.vue?vue&type=script&lang=js&\"","<template>\r\n\t<view class=\"login\">\r\n\t\t<view class=\"icon\">\r\n\t\t\t<view class=\"icontitle\">\r\n\t\t\t\t忘记密码\r\n\t\t\t</view>\r\n\t\t\t<view class=\"bar flexwrap\">\r\n\t\t\t\t<view class=\"name\">\r\n\t\t\t\t\t用户名:\r\n\t\t\t\t</view>\r\n\t\t\t\t<view class=\"lastname\">\r\n\t\t\t\t\t<input type=\"text\" value=\"\" placeholder=\"请输入用户名\" />\r\n\t\t\t\t</view>\r\n\t\t\t</view>\r\n\t\t\t<view class=\"bar flexwrap\">\r\n\t\t\t\t<view class=\"name\">\r\n\t\t\t\t\t验证码:\r\n\t\t\t\t</view>\r\n\t\t\t\t<view class=\"lastname\">\r\n\t\t\t\t\t<input type=\"text\" value=\"\" placeholder=\"请输入验证码\" />\r\n\t\t\t\t\t<view class=\"code\">\r\n\t\t\t\t\t\t获取验证码\r\n\t\t\t\t\t</view>\r\n\t\t\t\t</view>\r\n\t\t\t</view>\r\n\t\t\t<view class=\"bar flexwrap\">\r\n\t\t\t\t<view class=\"name\">\r\n\t\t\t\t\t密码:\r\n\t\t\t\t</view>\r\n\t\t\t\t<view class=\"lastname\">\r\n\t\t\t\t\t<input type=\"text\" value=\"\" placeholder=\"请输入密码\" />\r\n\t\t\t\t</view>\r\n\t\t\t</view>\r\n\t\t\t<view class=\"bar flexwrap\">\r\n\t\t\t\t<view class=\"name\">\r\n\t\t\t\t\t确认密码:\r\n\t\t\t\t</view>\r\n\t\t\t\t<view class=\"lastname\">\r\n\t\t\t\t\t<input type=\"text\" value=\"\" placeholder=\"请确认密码\" />\r\n\t\t\t\t</view>\r\n\t\t\t</view>\r\n\t\t\t<view class=\"loginbtn\">\r\n\t\t\t\t确认\r\n\t\t\t</view>\r\n\t\t</view>\r\n\t</view>\r\n</template>\r\n\r\n<script>\r\n\texport default {\r\n\t\tdata() {\r\n\t\t\treturn {\r\n\r\n\t\t\t};\r\n\t\t}\r\n\t}\r\n</script>\r\n\r\n<style lang=\"scss\">\r\n\t.login {\r\n\t\tpadding: 0 48rpx;\r\n\t\tbox-sizing: border-box;\r\n\r\n\t\t.icon {\r\n\t\t\t.icontitle {\r\n\t\t\t\tmargin-top: 152rpx;\r\n\t\t\t\tmargin-left: 16rpx;\r\n\t\t\t\tmargin-bottom: 80rpx;\r\n\t\t\t\tcolor: rgba(50, 50, 51, 1);\r\n\t\t\t\tfont-size: 52rpx;\r\n\t\t\t\tfont-weight: 700;\r\n\t\t\t\tfont-family: \"PingFang SC\";\r\n\t\t\t}\r\n\r\n\t\t\t.bar {\r\n\t\t\t\tborder-bottom: 1px solid #f0f0f0;\r\n\t\t\t\tpadding: 40rpx 0;\r\n\t\t\t\tcolor: rgba(0, 0, 0, 1);\r\n\t\t\t\tfont-size: 32rpx;\r\n\t\t\t\tfont-weight: 500;\r\n\t\t\t\tfont-family: \"PingFang SC\";\r\n\r\n\t\t\t\t.name {\r\n\t\t\t\t\twidth: 180rpx;\r\n\t\t\t\t}\r\n\r\n\t\t\t\t.lastname {\r\n\t\t\t\t\tflex: 1;\r\n\t\t\t\t\tposition: relative;\r\n\r\n\t\t\t\t\tinput {\r\n\t\t\t\t\t\twidth: 260rpx;\r\n\t\t\t\t\t}\r\n\r\n\t\t\t\t\t.code {\r\n\t\t\t\t\t\tposition: absolute;\r\n\t\t\t\t\t\tright: 0;\r\n\t\t\t\t\t\ttop: 50%;\r\n\t\t\t\t\t\ttransform: translate(-10%, -50%);\r\n\t\t\t\t\t\tcolor: rgba(0, 0, 0, 0.26);\r\n\t\t\t\t\t\tfont-size: 32rpx;\r\n\t\t\t\t\t\tfont-weight: 400;\r\n\t\t\t\t\t\tfont-family: \"PingFang SC\";\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t}\r\n\r\n\t\t\t.loginbtn {\r\n\t\t\t\tmargin-top: 100rpx;\r\n\t\t\t\twidth: 654rpx;\r\n\t\t\t\theight: 88rpx;\r\n\t\t\t\tborder-radius: 28rpx;\r\n\t\t\t\topacity: 1;\r\n\t\t\t\tcolor: rgba(0, 0, 0, 0.9);\r\n\t\t\t\tfont-size: 32rpx;\r\n\t\t\t\tfont-weight: 600;\r\n\t\t\t\tfont-family: \"PingFang SC\";\r\n\t\t\t\ttext-align: center;\r\n\t\t\t\tline-height: 88rpx;\r\n\t\t\t\tbackground: rgba(254, 208, 0, 1);\r\n\t\t\t}\r\n\r\n\t\t\t.passway {\r\n\t\t\t\tdisplay: flex;\r\n\t\t\t\talign-items: center;\r\n\t\t\t\tjustify-content: space-between;\r\n\t\t\t\tmargin-top: 16rpx;\r\n\r\n\t\t\t\ttext {\r\n\t\t\t\t\t&:first-child {\r\n\t\t\t\t\t\tcolor: rgba(0, 0, 0, 0.26);\r\n\t\t\t\t\t\tfont-size: 24rpx;\r\n\t\t\t\t\t\tfont-weight: 400;\r\n\t\t\t\t\t\tfont-family: \"PingFang SC\";\r\n\t\t\t\t\t}\r\n\r\n\t\t\t\t\t&:last-child {\r\n\t\t\t\t\t\tcolor: rgba(254, 208, 0, 1);\r\n\t\t\t\t\t\tfont-size: 26rpx;\r\n\t\t\t\t\t\tfont-weight: 400;\r\n\t\t\t\t\t\tfont-family: \"PingFang SC\";\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n</style>\n","import mod from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--8-oneOf-1-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-2!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--8-oneOf-1-3!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\sass-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-4!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-5!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./password.vue?vue&type=style&index=0&lang=scss&\"; export default mod; export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--8-oneOf-1-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-2!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--8-oneOf-1-3!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\sass-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-4!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-5!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./password.vue?vue&type=style&index=0&lang=scss&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1653871240757\n var cssReload = require(\"E:/HBuilderX.2.6.11.20200409/HBuilderX.2.6.11.20200409/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}  
  1 +{"version":3,"sources":["uni-app:///main.js","webpack:///F:/minigroup/Bitcoin/pages/login/password.vue?171d","webpack:///F:/minigroup/Bitcoin/pages/login/password.vue?50d6","webpack:///F:/minigroup/Bitcoin/pages/login/password.vue?b218","webpack:///F:/minigroup/Bitcoin/pages/login/password.vue?792e","uni-app:///pages/login/password.vue","webpack:///F:/minigroup/Bitcoin/pages/login/password.vue?1557","webpack:///F:/minigroup/Bitcoin/pages/login/password.vue?e9f1"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,mG,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,iBAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAqH;AACrH;AAC4D;AACL;AACc;;;AAGrE;AAC2N;AAC3N,gBAAgB,mOAAU;AAC1B,EAAE,8EAAM;AACR,EAAE,mFAAM;AACR,EAAE,4FAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,uFAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAAg3B,CAAgB,g4BAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACiDp4B;AACA,8D;AACA;AACA,MADA,kBACA;AACA;AACA,gBADA;AAEA,iBAFA;AAGA,qBAHA;AAIA,yBAJA;AAKA,iBALA;AAMA,YANA;;AAQA,GAVA;AAWA;AACA,WADA,qBACA;AACA;AACA;AACA;AACA;AACA,KANA;AAOA,YAPA,sBAOA;;AAEA,gEAFA,SAEA,GAFA;AAGA;AACA;AACA;AACA;AANA;AAQA;AACA,qDATA;;AAWA,KAlBA;AAmBA,YAnBA,sBAmBA;AACA;AACA;AACA;AACA,OAFA,EAEA,IAFA;AAGA,KAxBA;AAyBA,WAzBA,qBAyBA;AACA;AACA;AACA;AACA;AACA;AACA,KA/BA;AAgCA,iBAhCA,2BAgCA;;AAEA,sHAFA,SAEA,GAFA;AAGA;AACA;AACA;AACA,iBAFA,EAEA,GAFA;AAGA;AACA;AARA;AAUA;AACA,2DAXA;;AAaA,KA7CA,EAXA,E;;;;;;;;;;;;;ACnDA;AAAA;AAAA;AAAA;AAAmnD,CAAgB,ukDAAG,EAAC,C;;;;;;;;;;;ACAvoD;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/login/password.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/login/password.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./password.vue?vue&type=template&id=a7196a8c&\"\nvar renderjs\nimport script from \"./password.vue?vue&type=script&lang=js&\"\nexport * from \"./password.vue?vue&type=script&lang=js&\"\nimport style0 from \"./password.vue?vue&type=style&index=0&lang=scss&\"\n\n\n/* normalize component */\nimport normalizer from \"!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\runtime\\\\componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/login/password.vue\"\nexport default component.exports","export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\templateLoader.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--16-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\template.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-uni-app-loader\\\\page-meta.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./password.vue?vue&type=template&id=a7196a8c&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./password.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./password.vue?vue&type=script&lang=js&\"","<template>\n\t<view class=\"login\">\n\t\t<view class=\"icon\">\n\t\t\t<view class=\"icontitle\">\n\t\t\t\t忘记密码\n\t\t\t</view>\n\t\t\t<view class=\"bar flexwrap\">\n\t\t\t\t<view class=\"name\">\n\t\t\t\t\t手机号:\n\t\t\t\t</view>\n\t\t\t\t<view class=\"lastname\">\n\t\t\t\t\t<input v-model=\"mobile\" maxlength=\"16\" type=\"text\" value=\"\" placeholder=\"请输入手机号\" />\n\t\t\t\t</view>\n\t\t\t</view>\n\t\t\t<view class=\"bar flexwrap\">\n\t\t\t\t<view class=\"name\">\n\t\t\t\t\t验证码:\n\t\t\t\t</view>\n\t\t\t\t<view class=\"lastname\">\n\t\t\t\t\t<input v-model=\"captcha\" maxlength=\"\" type=\"number\" value=\"\" placeholder=\"请输入验证码\" />\n\t\t\t\t\t<view class=\"code\" @click=\"getCode\">\n\t\t\t\t\t\t\t{{num==0?'获取验证码':num + '秒重新发送'}}\n\t\t\t\t\t</view>\n\t\t\t\t</view>\n\t\t\t</view>\n\t\t\t<view class=\"bar flexwrap\">\n\t\t\t\t<view class=\"name\">\n\t\t\t\t\t密码:\n\t\t\t\t</view>\n\t\t\t\t<view class=\"lastname\">\n\t\t\t\t\t<input v-model=\"newpassword\" type=\"text\" value=\"\" placeholder=\"请输入密码\" />\n\t\t\t\t</view>\n\t\t\t</view>\n\t\t\t<view class=\"bar flexwrap\">\n\t\t\t\t<view class=\"name\">\n\t\t\t\t\t确认密码:\n\t\t\t\t</view>\n\t\t\t\t<view class=\"lastname\">\n\t\t\t\t\t<input v-model=\"confirmpassword\" type=\"text\" value=\"\" placeholder=\"请确认密码\" />\n\t\t\t\t</view>\n\t\t\t</view>\n\t\t\t<view class=\"loginbtn\" @click=\"goReset\">\n\t\t\t\t确认\n\t\t\t</view>\n\t\t</view>\n\t</view>\n</template>\n\n<script>\r\n\timport {sendCode,resetPassword} from '@/api/login.js'\r\n\timport {toa} from '@/utils/toast.js'\n\texport default {\n\t\tdata() {\n\t\t\treturn {\n\t\t\t\tmobile:'',\r\n\t\t\t\tcaptcha:'',\r\n\t\t\t\tnewpassword:'',\r\n\t\t\t\tconfirmpassword:'',\r\n\t\t\t\tclearId:'',\r\n\t\t\t\tnum:0,\n\t\t\t};\n\t\t},\r\n\t\tmethods: {\r\n\t\t\tgetCode(){\r\n\t\t\t\tif(this.num>0) return\r\n\t\t\t\tif(!this.mobile) return toa.toast('请先输入手机号')\r\n\t\t\t\tif (!(/^1[34578]\\d{9}$/.test(this.mobile))) return toa.toast('请输入正确手机号')\r\n\t\t\t\tthis.sendCode()\r\n\t\t\t},\r\n\t\t\tasync sendCode(){\r\n\t\t\t try {\r\n\t\t\t const res = await sendCode(this.mobile,'resetpwd')\r\n\t\t\t\ttoa.success('发送成功')\r\n\t\t\t\tthis.setInter()\r\n\t\t\t console.log('sendCode', res)\r\n\t\t\t // 保存数据\r\n\t\t\t } catch (err) {\r\n\t\t\t \tuni.showToast({ title:err,icon:'none' })\r\n\t\t\t console.log('sendCode', err)\r\n\t\t\t }\r\n\t\t\t},\r\n\t\t\tsetInter (){\r\n\t\t\t \t this.num=60\r\n\t\t\t\t this.clearId = setInterval(() => {\r\n\t\t\t\t this.num --\r\n\t\t\t\t }, 1000)\r\n\t\t\t},\r\n\t\t\tgoReset(){\r\n\t\t\t\tif(!this.mobile) return toa.toast('请输入手机号')\r\n\t\t\t\tif(!this.captcha) return toa.toast('请输入验证码')\r\n\t\t\t\tif(!this.newpassword) return toa.toast('请输入密码')\r\n\t\t\t\tif(!this.confirmpassword) return toa.toast('请输入确认密码')\r\n\t\t\t\tthis.resetPassword()\r\n\t\t\t},\r\n\t\t\tasync resetPassword(){\r\n\t\t\t try {\r\n\t\t\t const res = await resetPassword(this.mobile,this.captcha,this.newpassword,this.confirmpassword)\r\n\t\t\t console.log('resetPassword', res)\r\n\t\t\t\tsetTimeout(()=>{\r\n\t\t\t\t\ttoa.success('重置密码成功')\r\n\t\t\t\t},200)\r\n\t\t\t\tuni.navigateBack({})\r\n\t\t\t // 保存数据\r\n\t\t\t } catch (err) {\r\n\t\t\t \tuni.showToast({ title:err,icon:'none' })\r\n\t\t\t console.log('resetPassword', err)\r\n\t\t\t }\r\n\t\t\t},\r\n\t\t},\n\t}\n</script>\n\n<style lang=\"scss\">\n\t.login {\n\t\tpadding: 0 48rpx;\n\t\tbox-sizing: border-box;\n\n\t\t.icon {\n\t\t\t.icontitle {\n\t\t\t\tmargin-top: 152rpx;\n\t\t\t\tmargin-left: 16rpx;\n\t\t\t\tmargin-bottom: 80rpx;\n\t\t\t\tcolor: rgba(50, 50, 51, 1);\n\t\t\t\tfont-size: 52rpx;\n\t\t\t\tfont-weight: 700;\n\t\t\t\tfont-family: \"PingFang SC\";\n\t\t\t}\n\n\t\t\t.bar {\n\t\t\t\tborder-bottom: 1px solid #f0f0f0;\n\t\t\t\tpadding: 40rpx 0;\n\t\t\t\tcolor: rgba(0, 0, 0, 1);\n\t\t\t\tfont-size: 32rpx;\n\t\t\t\tfont-weight: 500;\n\t\t\t\tfont-family: \"PingFang SC\";\n\n\t\t\t\t.name {\n\t\t\t\t\twidth: 180rpx;\n\t\t\t\t}\n\n\t\t\t\t.lastname {\n\t\t\t\t\tflex: 1;\n\t\t\t\t\tposition: relative;\n\n\t\t\t\t\tinput {\r\n\t\t\t\t\t\twidth: 100%;\n\t\t\t\t\t\t// width: 260rpx;\n\t\t\t\t\t}\n\n\t\t\t\t\t.code {\n\t\t\t\t\t\tposition: absolute;\n\t\t\t\t\t\tright: 0;\n\t\t\t\t\t\ttop: 50%;\n\t\t\t\t\t\ttransform: translate(-10%, -50%);\n\t\t\t\t\t\tcolor: rgba(0, 0, 0, 0.26);\n\t\t\t\t\t\tfont-size: 32rpx;\n\t\t\t\t\t\tfont-weight: 400;\n\t\t\t\t\t\tfont-family: \"PingFang SC\";\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.loginbtn {\n\t\t\t\tmargin-top: 100rpx;\n\t\t\t\twidth: 654rpx;\n\t\t\t\theight: 88rpx;\n\t\t\t\tborder-radius: 28rpx;\n\t\t\t\topacity: 1;\n\t\t\t\tcolor: rgba(0, 0, 0, 0.9);\n\t\t\t\tfont-size: 32rpx;\n\t\t\t\tfont-weight: 600;\n\t\t\t\tfont-family: \"PingFang SC\";\n\t\t\t\ttext-align: center;\n\t\t\t\tline-height: 88rpx;\n\t\t\t\tbackground: rgba(254, 208, 0, 1);\n\t\t\t}\n\n\t\t\t.passway {\n\t\t\t\tdisplay: flex;\n\t\t\t\talign-items: center;\n\t\t\t\tjustify-content: space-between;\n\t\t\t\tmargin-top: 16rpx;\n\n\t\t\t\ttext {\n\t\t\t\t\t&:first-child {\n\t\t\t\t\t\tcolor: rgba(0, 0, 0, 0.26);\n\t\t\t\t\t\tfont-size: 24rpx;\n\t\t\t\t\t\tfont-weight: 400;\n\t\t\t\t\t\tfont-family: \"PingFang SC\";\n\t\t\t\t\t}\n\n\t\t\t\t\t&:last-child {\n\t\t\t\t\t\tcolor: rgba(254, 208, 0, 1);\n\t\t\t\t\t\tfont-size: 26rpx;\n\t\t\t\t\t\tfont-weight: 400;\n\t\t\t\t\t\tfont-family: \"PingFang SC\";\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n</style>\n","import mod from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--8-oneOf-1-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-2!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--8-oneOf-1-3!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\sass-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-4!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-5!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./password.vue?vue&type=style&index=0&lang=scss&\"; export default mod; export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--8-oneOf-1-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-2!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--8-oneOf-1-3!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\sass-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-4!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-5!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./password.vue?vue&type=style&index=0&lang=scss&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1653887043634\n var cssReload = require(\"E:/HBuilderX.2.6.11.20200409/HBuilderX.2.6.11.20200409/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
1 -{"version":3,"sources":["uni-app:///main.js","webpack:///F:/minigroup/Bitcoin/pages/login/register.vue?782f","webpack:///F:/minigroup/Bitcoin/pages/login/register.vue?9cfc","webpack:///F:/minigroup/Bitcoin/pages/login/register.vue?c48a","webpack:///F:/minigroup/Bitcoin/pages/login/register.vue?b2c1","uni-app:///pages/login/register.vue","webpack:///F:/minigroup/Bitcoin/pages/login/register.vue?8ea4","webpack:///F:/minigroup/Bitcoin/pages/login/register.vue?703e"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,mG,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,iBAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAqH;AACrH;AAC4D;AACL;AACc;;;AAGrE;AAC2N;AAC3N,gBAAgB,mOAAU;AAC1B,EAAE,8EAAM;AACR,EAAE,mFAAM;AACR,EAAE,4FAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,uFAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAAg3B,CAAgB,g4BAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACyDp4B;AACA,MADA,kBACA;AACA;;;AAGA,GALA,E;;;;;;;;;;;;ACzDA;AAAA;AAAA;AAAA;AAAmnD,CAAgB,ukDAAG,EAAC,C;;;;;;;;;;;ACAvoD;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/login/register.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/login/register.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./register.vue?vue&type=template&id=24dc7ac2&\"\nvar renderjs\nimport script from \"./register.vue?vue&type=script&lang=js&\"\nexport * from \"./register.vue?vue&type=script&lang=js&\"\nimport style0 from \"./register.vue?vue&type=style&index=0&lang=scss&\"\n\n\n/* normalize component */\nimport normalizer from \"!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\runtime\\\\componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/login/register.vue\"\nexport default component.exports","export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\templateLoader.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--16-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\template.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-uni-app-loader\\\\page-meta.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./register.vue?vue&type=template&id=24dc7ac2&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./register.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./register.vue?vue&type=script&lang=js&\"","<template>\r\n\t<view class=\"login\">\r\n\t\t<view class=\"icon\">\r\n\t\t\t<image class=\"bgimg\" src=\"../../static/ic_logo.png\" mode=\"\"></image>\r\n\r\n\t\t\t<view class=\"bar flexwrap\">\r\n\t\t\t\t<view class=\"name\">\r\n\t\t\t\t\t用户名:\r\n\t\t\t\t</view>\r\n\t\t\t\t<view class=\"lastname\">\r\n\t\t\t\t\t<input type=\"text\" value=\"\" placeholder=\"请输入用户名\" />\r\n\t\t\t\t</view>\r\n\t\t\t</view>\r\n\t\t\t<view class=\"bar flexwrap\">\r\n\t\t\t\t<view class=\"name\">\r\n\t\t\t\t\t密码:\r\n\t\t\t\t</view>\r\n\t\t\t\t<view class=\"lastname\">\r\n\t\t\t\t\t<input type=\"text\" value=\"\" placeholder=\"请输入密码\" />\r\n\t\t\t\t</view>\r\n\t\t\t</view>\r\n\t\t\t<view class=\"bar flexwrap\">\r\n\t\t\t\t<view class=\"name\">\r\n\t\t\t\t\t手机号:\r\n\t\t\t\t</view>\r\n\t\t\t\t<view class=\"lastname\">\r\n\t\t\t\t\t<input type=\"text\" value=\"\" placeholder=\"请输入手机号\" />\r\n\t\t\t\t</view>\r\n\t\t\t</view>\r\n\t\t\t<view class=\"bar flexwrap\">\r\n\t\t\t\t<view class=\"name\">\r\n\t\t\t\t\t验证码:\r\n\t\t\t\t</view>\r\n\t\t\t\t<view class=\"lastname\">\r\n\t\t\t\t\t<input type=\"text\" value=\"\" placeholder=\"请输入验证码\" />\r\n\t\t\t\t\t<view class=\"code\">\r\n\t\t\t\t\t\t获取验证码\r\n\t\t\t\t\t</view>\r\n\t\t\t\t</view>\r\n\t\t\t</view>\r\n\t\t\t<view class=\"loginbtn\">\r\n\t\t\t\t注册\r\n\t\t\t</view>\r\n\t\t\t<view class=\"passway\">\r\n\t\t\t\t<text>已有账号,直接登录</text>\r\n\t\t\t</view>\r\n\t\t\t<view class=\"user\">\r\n\t\t\t\t<image src=\"../../static/icon24.png\" mode=\"\"></image>\r\n\t\t\t\t<image src=\"../../static/icon25.png\" mode=\"\"></image>\r\n\t\t\t\t我已阅读并同意\r\n\t\t\t\t<text>用户协议、</text><text>隐私政策</text>\r\n\t\t\t</view>\r\n\t\t</view>\r\n\t</view>\r\n</template>\r\n\r\n<script>\r\n\texport default {\r\n\t\tdata() {\r\n\t\t\treturn {\r\n\r\n\t\t\t};\r\n\t\t}\r\n\t}\r\n</script>\r\n\r\n<style lang=\"scss\">\r\n\t.login {\r\n\t\tpadding: 0 48rpx;\r\n\t\tbox-sizing: border-box;\r\n\r\n\t\t.icon {\r\n\t\t\t.bgimg {\r\n\t\t\t\tmargin-top: 100rpx;\r\n\t\t\t\tmargin-left: 50%;\r\n\t\t\t\ttransform: translate(-50%);\r\n\t\t\t\tmargin-bottom: 24rpx;\r\n\t\t\t\twidth: 184rpx;\r\n\t\t\t\theight: 184rpx;\r\n\t\t\t}\r\n\r\n\t\t\t.bar {\r\n\t\t\t\tborder-bottom: 1px solid #f0f0f0;\r\n\t\t\t\tpadding: 40rpx 0;\r\n\t\t\t\tcolor: rgba(0, 0, 0, 1);\r\n\t\t\t\tfont-size: 32rpx;\r\n\t\t\t\tfont-weight: 500;\r\n\t\t\t\tfont-family: \"PingFang SC\";\r\n\r\n\t\t\t\t.name {\r\n\t\t\t\t\twidth: 180rpx;\r\n\t\t\t\t}\r\n\r\n\t\t\t\t.lastname {\r\n\t\t\t\t\tflex: 1;\r\n\t\t\t\t\tposition: relative;\r\n\r\n\t\t\t\t\tinput {\r\n\t\t\t\t\t\twidth: 260rpx;\r\n\t\t\t\t\t}\r\n\r\n\t\t\t\t\t.code {\r\n\t\t\t\t\t\tposition: absolute;\r\n\t\t\t\t\t\tright: 0;\r\n\t\t\t\t\t\ttop: 50%;\r\n\t\t\t\t\t\ttransform: translate(-10%, -50%);\r\n\t\t\t\t\t\tcolor: rgba(0, 0, 0, 0.26);\r\n\t\t\t\t\t\tfont-size: 32rpx;\r\n\t\t\t\t\t\tfont-weight: 400;\r\n\t\t\t\t\t\tfont-family: \"PingFang SC\";\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t}\r\n\r\n\t\t\t.loginbtn {\r\n\t\t\t\tmargin-top: 100rpx;\r\n\t\t\t\theight: 88rpx;\r\n\t\t\t\tborder-radius: 28rpx;\r\n\t\t\t\topacity: 1;\r\n\t\t\t\tcolor: rgba(0, 0, 0, 0.9);\r\n\t\t\t\tfont-size: 32rpx;\r\n\t\t\t\tfont-weight: 600;\r\n\t\t\t\tfont-family: \"PingFang SC\";\r\n\t\t\t\ttext-align: center;\r\n\t\t\t\tline-height: 88rpx;\r\n\t\t\t\tbackground: rgba(254, 208, 0, 1);\r\n\t\t\t}\r\n\r\n\t\t\t.passway {\r\n\t\t\t\ttext-align: right;\r\n\t\t\t\tmargin-top: 16rpx;\r\n\r\n\t\t\t\ttext {\r\n\t\t\t\t\tcolor: rgba(254, 208, 0, 1);\r\n\t\t\t\t\tfont-size: 26rpx;\r\n\t\t\t\t\tfont-weight: 400;\r\n\t\t\t\t\tfont-family: \"PingFang SC\";\r\n\t\t\t\t}\r\n\t\t\t}\r\n\r\n\t\t\t.user {\r\n\t\t\t\tposition: fixed;\r\n\t\t\t\tbottom: 28rpx;\r\n\t\t\t\tleft: 50%;\r\n\t\t\t\twidth: 100%;\r\n\t\t\t\ttext-align: center;\r\n\t\t\t\ttransform: translate(-50%);\r\n\t\t\t\tdisplay: flex;\r\n\t\t\t\talign-items: center;\r\n\t\t\t\tjustify-content: center;\r\n\t\t\t\tcolor: rgba(100, 101, 102, 1);\r\n\t\t\t\tfont-size: 24rpx;\r\n\t\t\t\tfont-weight: 400;\r\n\t\t\t\tfont-family: \"PingFang SC\";\r\n\r\n\t\t\t\timage {\r\n\t\t\t\t\tmargin-right: 22rpx;\r\n\t\t\t\t\twidth: 36rpx;\r\n\t\t\t\t\theight: 36rpx;\r\n\t\t\t\t}\r\n\r\n\t\t\t\ttext {\r\n\t\t\t\t\tmargin-right: 24rpx;\r\n\t\t\t\t\tcolor: rgba(87, 107, 149, 1);\r\n\t\t\t\t\tfont-size: 24rpx;\r\n\t\t\t\t\tfont-weight: 400;\r\n\t\t\t\t\tfont-family: \"PingFang SC\";\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n</style>\n","import mod from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--8-oneOf-1-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-2!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--8-oneOf-1-3!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\sass-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-4!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-5!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./register.vue?vue&type=style&index=0&lang=scss&\"; export default mod; export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--8-oneOf-1-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-2!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--8-oneOf-1-3!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\sass-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-4!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-5!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./register.vue?vue&type=style&index=0&lang=scss&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1653871240935\n var cssReload = require(\"E:/HBuilderX.2.6.11.20200409/HBuilderX.2.6.11.20200409/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}  
  1 +{"version":3,"sources":["uni-app:///main.js","webpack:///F:/minigroup/Bitcoin/pages/login/register.vue?782f","webpack:///F:/minigroup/Bitcoin/pages/login/register.vue?9cfc","webpack:///F:/minigroup/Bitcoin/pages/login/register.vue?c48a","webpack:///F:/minigroup/Bitcoin/pages/login/register.vue?b2c1","uni-app:///pages/login/register.vue","webpack:///F:/minigroup/Bitcoin/pages/login/register.vue?8ea4","webpack:///F:/minigroup/Bitcoin/pages/login/register.vue?703e"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,mG,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,iBAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAqH;AACrH;AAC4D;AACL;AACc;;;AAGrE;AAC2N;AAC3N,gBAAgB,mOAAU;AAC1B,EAAE,8EAAM;AACR,EAAE,mFAAM;AACR,EAAE,4FAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,uFAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACjBA;AAAA;AAAA;AAAA;AAAg3B,CAAgB,g4BAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AC0Dp4B;AACA,8D;AACA;AACA,MADA,kBACA;AACA;AACA,kBADA;AAEA,kBAFA;AAGA,gBAHA;AAIA,cAJA;AAKA,iBALA;AAMA,YANA;AAOA,qBAPA;;AASA,GAXA;AAYA;AACA,WADA,qBACA;AACA;AACA;AACA;AACA;AACA,KANA;AAOA,cAPA,wBAOA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAdA;AAeA,YAfA,sBAeA;;AAEA,gGAFA,SAEA,GAFA;AAGA;AACA;AACA;AALA;AAOA;AACA,qDARA;;AAUA,KAzBA;AA0BA,WA1BA,qBA0BA;AACA;AACA;AACA;AACA;AACA,KA/BA;AAgCA,YAhCA,sBAgCA;;AAEA,iEAFA,SAEA,GAFA;AAGA;AACA;AACA;AACA;AANA;AAQA;AACA,sDATA;;AAWA,KA3CA;AA4CA,YA5CA,sBA4CA;AACA;AACA;AACA;AACA,OAFA,EAEA,IAFA;AAGA,KAjDA;AAkDA,WAlDA,mBAkDA,IAlDA,EAkDA;AACA;AACA,kDADA;;AAGA,KAtDA,EAZA;;AAoEA,QApEA,oBAoEA;AACA;AACA;AACA,GAvEA;AAwEA;AACA,OADA,eACA,QADA,EACA,QADA,EACA;AACA;AACA;AACA;AACA;AACA,KANA,EAxEA,E;;;;;;;;;;;;;AC5DA;AAAA;AAAA;AAAA;AAAmnD,CAAgB,ukDAAG,EAAC,C;;;;;;;;;;;ACAvoD;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/login/register.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/login/register.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./register.vue?vue&type=template&id=24dc7ac2&\"\nvar renderjs\nimport script from \"./register.vue?vue&type=script&lang=js&\"\nexport * from \"./register.vue?vue&type=script&lang=js&\"\nimport style0 from \"./register.vue?vue&type=style&index=0&lang=scss&\"\n\n\n/* normalize component */\nimport normalizer from \"!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\runtime\\\\componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/login/register.vue\"\nexport default component.exports","export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\templateLoader.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--16-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\template.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-uni-app-loader\\\\page-meta.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./register.vue?vue&type=template&id=24dc7ac2&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n if (!_vm._isMounted) {\n _vm.e0 = function($event) {\n _vm.isSelect = !_vm.isSelect\n }\n\n _vm.e1 = function($event) {\n _vm.isSelect = !_vm.isSelect\n }\n }\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./register.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./register.vue?vue&type=script&lang=js&\"","<template>\n\t<view class=\"login\">\n\t\t<view class=\"icon\">\n\t\t\t<image class=\"bgimg\" src=\"../../static/ic_logo.png\" mode=\"\"></image>\n\n\t\t\t<view class=\"bar flexwrap\">\n\t\t\t\t<view class=\"name\">\n\t\t\t\t\t用户名:\n\t\t\t\t</view>\n\t\t\t\t<view class=\"lastname\">\n\t\t\t\t\t<input v-model=\"username\" maxlength=\"16\" type=\"text\" value=\"\" placeholder=\"请输入用户名\" />\n\t\t\t\t</view>\n\t\t\t</view>\n\t\t\t<view class=\"bar flexwrap\">\n\t\t\t\t<view class=\"name\">\n\t\t\t\t\t密码:\n\t\t\t\t</view>\n\t\t\t\t<view class=\"lastname\">\n\t\t\t\t\t<input v-model=\"password\" maxlength=\"16\" type=\"text\" value=\"\" placeholder=\"请输入密码\" />\n\t\t\t\t</view>\n\t\t\t</view>\n\t\t\t<view class=\"bar flexwrap\">\n\t\t\t\t<view class=\"name\">\n\t\t\t\t\t手机号:\n\t\t\t\t</view>\n\t\t\t\t<view class=\"lastname\">\n\t\t\t\t\t<input v-model=\"mobile\" maxlength=\"11\" type=\"number\" value=\"\" placeholder=\"请输入手机号\" />\n\t\t\t\t</view>\n\t\t\t</view>\n\t\t\t<view class=\"bar flexwrap\">\n\t\t\t\t<view class=\"name\">\n\t\t\t\t\t验证码:\n\t\t\t\t</view>\n\t\t\t\t<view class=\"lastname\">\n\t\t\t\t\t<input v-model=\"code\" maxlength=\"6\" type=\"text\" value=\"\" placeholder=\"请输入验证码\" />\n\t\t\t\t\t<view class=\"code\" @click=\"getCode\">\n\t\t\t\t\t\t{{num==0?'获取验证码':num + '秒重新发送'}}\n\t\t\t\t\t</view>\n\t\t\t\t</view>\n\t\t\t</view>\n\t\t\t<view class=\"loginbtn\" @click=\"toRegister\">\n\t\t\t\t注册\n\t\t\t</view>\n\t\t\t<view class=\"passway\" @click=\"goLogin\">\n\t\t\t\t<text>已有账号,直接登录</text>\n\t\t\t</view>\n\t\t\t<view class=\"user\">\n\t\t\t\t<image v-if=\"isSelect\" @click=\"isSelect=!isSelect\" src=\"/static/icon25.png\" mode=\"\"></image>\n\t\t\t\t<image v-else @click=\"isSelect=!isSelect\" src=\"/static/icon24.png\" mode=\"\"></image>\n\t\t\t\t我已阅读并同意\n\t\t\t\t<text style=\"margin-left: 10rpx;\" @click=\"toAgree(1)\"> 用户协议、</text><text @click=\"toAgree(2)\">隐私政策</text>\n\t\t\t</view>\n\t\t</view>\r\n\t\t\n\t</view>\n</template>\n\n<script>\r\n\timport {sendCode,register} from '@/api/login.js'\r\n\timport {toa} from '@/utils/toast.js'\n\texport default {\n\t\tdata() {\n\t\t\treturn {\n\t\t\t\tusername:'',\r\n\t\t\t\tpassword:'',\r\n\t\t\t\tmobile:'',\r\n\t\t\t\tcode:'',\r\n\t\t\t\tclearId:'',\r\n\t\t\t\tnum:0,\r\n\t\t\t\tisSelect:false\r\n\t\t\t};\n\t\t},\r\n\t\tmethods: {\r\n\t\t\tgoLogin() {\r\n\t\t\t\tuni.navigateBack({})\r\n\t\t\t\t// uni.navigateTo({\r\n\t\t\t\t// \turl:'/pages/login/login'\r\n\t\t\t\t// })\r\n\t\t\t},\r\n\t\t\ttoRegister(){\r\n\t\t\t\tif(!this.username) return toa.toast('请输入用户名')\r\n\t\t\t\tif(!this.password) return toa.toast('请输入密码')\r\n\t\t\t\tif(!this.mobile) return toa.toast('请输入手机号')\r\n\t\t\t\tif(!this.code) return toa.toast('请输入验证码')\r\n\t\t\t\tif(!this.isSelect) return toa.toast('请先同意用户协议和隐私政策')\r\n\t\t\t\tthis.register()\r\n\t\t\t},\r\n\t\t\tasync register(){\r\n\t\t\t try {\r\n\t\t\t const res = await register(this.username,this.password,this.mobile,this.code)\r\n\t\t\t console.log('register', res)\r\n\t\t\t\ttoa.success('注册成功')\r\n\t\t\t // 保存数据\r\n\t\t\t } catch (err) {\r\n\t\t\t \tuni.showToast({ title:err,icon:'none' })\r\n\t\t\t console.log('register', err)\r\n\t\t\t }\r\n\t\t\t},\r\n\t\t\tgetCode(){\r\n\t\t\t\tif(this.num>0) return\r\n\t\t\t\tif(!this.mobile) return toa.toast('请先输入手机号')\r\n\t\t\t\tif (!(/^1[34578]\\d{9}$/.test(this.mobile))) return toa.toast('请输入正确手机号')\r\n\t\t\t\tthis.sendCode()\r\n\t\t\t},\r\n\t\t\tasync sendCode(){\r\n\t\t\t try {\r\n\t\t\t const res = await sendCode(this.mobile,'register')\r\n\t\t\t\ttoa.success('发送成功')\r\n\t\t\t\tthis.setInter()\r\n\t\t\t console.log('sendCode', res)\r\n\t\t\t // 保存数据\r\n\t\t\t } catch (err) {\r\n\t\t\t \tuni.showToast({ title:err,icon:'none' })\r\n\t\t\t console.log('sendCode', err)\r\n\t\t\t }\r\n\t\t\t},\r\n\t\t\tsetInter (){\r\n\t\t\t \t this.num=60\r\n\t\t\t\t this.clearId = setInterval(() => {\r\n\t\t\t\t this.num --\r\n\t\t\t\t }, 1000)\r\n\t\t\t},\r\n\t\t\ttoAgree(type){\r\n\t\t\t\tuni.navigateTo({\r\n\t\t\t\t\turl:'/pages/login/agreement?type='+ type\r\n\t\t\t\t})\r\n\t\t\t}\r\n\t\t},\r\n\t\tonHide(){\r\n\t\t\tthis.num = 0\r\n\t\t\tclearInterval(this.clearId)\r\n\t\t},\r\n\t\twatch: {\r\n\t\t\tnum(newValue, oldValue) {\r\n\t\t\t\tif(newValue==0){\r\n\t\t\t\t\tthis.num = 0\r\n\t\t\t\t\tclearInterval(this.clearId)\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t},\n\t}\n</script>\n\n<style lang=\"scss\">\n\t.login {\n\t\tpadding: 0 48rpx;\n\t\tbox-sizing: border-box;\n\n\t\t.icon {\n\t\t\t.bgimg {\n\t\t\t\tmargin-top: 100rpx;\n\t\t\t\tmargin-left: 50%;\n\t\t\t\ttransform: translate(-50%);\n\t\t\t\tmargin-bottom: 24rpx;\n\t\t\t\twidth: 184rpx;\n\t\t\t\theight: 184rpx;\n\t\t\t}\n\n\t\t\t.bar {\n\t\t\t\tborder-bottom: 1px solid #f0f0f0;\n\t\t\t\tpadding: 40rpx 0;\n\t\t\t\tcolor: rgba(0, 0, 0, 1);\n\t\t\t\tfont-size: 32rpx;\n\t\t\t\tfont-weight: 500;\n\t\t\t\tfont-family: \"PingFang SC\";\n\n\t\t\t\t.name {\n\t\t\t\t\twidth: 180rpx;\n\t\t\t\t}\n\n\t\t\t\t.lastname {\n\t\t\t\t\tflex: 1;\n\t\t\t\t\tposition: relative;\n\n\t\t\t\t\tinput {\n\t\t\t\t\t\t// width: 260rpx;\r\n\t\t\t\t\t\twidth: 100%;\n\t\t\t\t\t}\n\n\t\t\t\t\t.code {\n\t\t\t\t\t\tposition: absolute;\n\t\t\t\t\t\tright: 0;\n\t\t\t\t\t\ttop: 50%;\n\t\t\t\t\t\ttransform: translate(-10%, -50%);\n\t\t\t\t\t\tcolor: rgba(0, 0, 0, 0.26);\n\t\t\t\t\t\tfont-size: 32rpx;\n\t\t\t\t\t\tfont-weight: 400;\n\t\t\t\t\t\tfont-family: \"PingFang SC\";\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.loginbtn {\n\t\t\t\tmargin-top: 100rpx;\n\t\t\t\theight: 88rpx;\n\t\t\t\tborder-radius: 28rpx;\n\t\t\t\topacity: 1;\n\t\t\t\tcolor: rgba(0, 0, 0, 0.9);\n\t\t\t\tfont-size: 32rpx;\n\t\t\t\tfont-weight: 600;\n\t\t\t\tfont-family: \"PingFang SC\";\n\t\t\t\ttext-align: center;\n\t\t\t\tline-height: 88rpx;\n\t\t\t\tbackground: rgba(254, 208, 0, 1);\n\t\t\t}\n\n\t\t\t.passway {\n\t\t\t\ttext-align: right;\n\t\t\t\tmargin-top: 16rpx;\n\n\t\t\t\ttext {\n\t\t\t\t\tcolor: rgba(254, 208, 0, 1);\n\t\t\t\t\tfont-size: 26rpx;\n\t\t\t\t\tfont-weight: 400;\n\t\t\t\t\tfont-family: \"PingFang SC\";\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.user {\n\t\t\t\tposition: fixed;\n\t\t\t\tbottom: 78rpx;\n\t\t\t\tleft: 50%;\n\t\t\t\twidth: 100%;\n\t\t\t\ttext-align: center;\n\t\t\t\ttransform: translate(-50%);\n\t\t\t\tdisplay: flex;\n\t\t\t\talign-items: center;\n\t\t\t\tjustify-content: center;\n\t\t\t\tcolor: rgba(100, 101, 102, 1);\n\t\t\t\tfont-size: 24rpx;\n\t\t\t\tfont-weight: 400;\n\t\t\t\tfont-family: \"PingFang SC\";\n\n\t\t\t\timage {\n\t\t\t\t\tmargin-right: 22rpx;\n\t\t\t\t\twidth: 36rpx;\n\t\t\t\t\theight: 36rpx;\n\t\t\t\t}\n\n\t\t\t\ttext {\n\t\t\t\t\tmargin-right: 24rpx;\n\t\t\t\t\tcolor: rgba(87, 107, 149, 1);\n\t\t\t\t\tfont-size: 24rpx;\n\t\t\t\t\tfont-weight: 400;\n\t\t\t\t\tfont-family: \"PingFang SC\";\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n</style>\n","import mod from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--8-oneOf-1-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-2!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--8-oneOf-1-3!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\sass-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-4!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-5!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./register.vue?vue&type=style&index=0&lang=scss&\"; export default mod; export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--8-oneOf-1-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-2!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--8-oneOf-1-3!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\sass-loader\\\\dist\\\\cjs.js??ref--8-oneOf-1-4!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--8-oneOf-1-5!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./register.vue?vue&type=style&index=0&lang=scss&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1653887043494\n var cssReload = require(\"E:/HBuilderX.2.6.11.20200409/HBuilderX.2.6.11.20200409/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
1 -{"version":3,"sources":["uni-app:///main.js","webpack:///F:/minigroup/Bitcoin/pages/mine/Feedback.vue?2be0","webpack:///F:/minigroup/Bitcoin/pages/mine/Feedback.vue?c626","webpack:///F:/minigroup/Bitcoin/pages/mine/Feedback.vue?a89a","webpack:///F:/minigroup/Bitcoin/pages/mine/Feedback.vue?ccca","uni-app:///pages/mine/Feedback.vue","webpack:///F:/minigroup/Bitcoin/pages/mine/Feedback.vue?06d0","webpack:///F:/minigroup/Bitcoin/pages/mine/Feedback.vue?ce8c"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,kG,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,iBAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAqH;AACrH;AAC4D;AACL;AACc;;;AAGrE;AAC2N;AAC3N,gBAAgB,mOAAU;AAC1B,EAAE,8EAAM;AACR,EAAE,mFAAM;AACR,EAAE,4FAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,uFAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA,aAAa,mTAEN;AACP;AACA;AACA,CAAC;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACjCA;AAAA;AAAA;AAAA;AAAg3B,CAAgB,g4BAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACuBp4B;AACA,MADA,kBACA;AACA;AACA,gBADA;;AAGA,GALA,E;;;;;;;;;;;;ACvBA;AAAA;AAAA;AAAA;AAAglD,CAAgB,wiDAAG,EAAC,C;;;;;;;;;;;ACApmD;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/mine/Feedback.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/mine/Feedback.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./Feedback.vue?vue&type=template&id=28c70490&\"\nvar renderjs\nimport script from \"./Feedback.vue?vue&type=script&lang=js&\"\nexport * from \"./Feedback.vue?vue&type=script&lang=js&\"\nimport style0 from \"./Feedback.vue?vue&type=style&index=0&lang=less&\"\n\n\n/* normalize component */\nimport normalizer from \"!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\runtime\\\\componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/mine/Feedback.vue\"\nexport default component.exports","export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\templateLoader.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--16-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\template.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-uni-app-loader\\\\page-meta.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./Feedback.vue?vue&type=template&id=28c70490&\"","var components\ntry {\n components = {\n \"u-Textarea\": function() {\n return import(\n /* webpackChunkName: \"node-modules/uview-ui/components/u--textarea/u--textarea\" */ \"uview-ui/components/u--textarea/u--textarea.vue\"\n )\n }\n }\n} catch (e) {\n if (\n e.message.indexOf(\"Cannot find module\") !== -1 &&\n e.message.indexOf(\".vue\") !== -1\n ) {\n console.error(e.message)\n console.error(\"1. 排查组件名称拼写是否正确\")\n console.error(\n \"2. 排查组件是否符合 easycom 规范,文档:https://uniapp.dcloud.net.cn/collocation/pages?id=easycom\"\n )\n console.error(\n \"3. 若组件不符合 easycom 规范,需手动引入,并在 components 中注册该组件\"\n )\n } else {\n throw e\n }\n}\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./Feedback.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./Feedback.vue?vue&type=script&lang=js&\"","<template>\r\n\t<view class=\"\">\r\n\t\t<view class=\"mainBox\">\r\n\t\t\t<view class=\"title\">\r\n\t\t\t\t建议&意见\r\n\t\t\t</view>\r\n\t\t\t<u--textarea :autoHeight=\"true\" maxlength=\"300\" v-model=\"value1\" border=\"none\" placeholder=\"请输入内容\" ></u--textarea>\r\n\t\t\t<view class=\"title\">\r\n\t\t\t\t上传图片(选填)\r\n\t\t\t</view>\r\n\t\t\t<view class=\"botImage\">\r\n\t\t\t\t<image src=\"/static/addPhoto.png\" mode=\"\"></image>\r\n\t\t\t</view>\r\n\t\t</view>\r\n\t\t<view class=\"botBtn flexC\">\r\n\t\t\t<view class=\"flexC\">\r\n\t\t\t\t提交\r\n\t\t\t</view>\r\n\t\t</view>\r\n\t</view>\n</template>\n\n<script>\r\n\texport default {\r\n\t\tdata() {\r\n\t\t\treturn {\r\n\t\t\t\tvalue1: ''\r\n\t\t\t}\r\n\t\t},\r\n\t}\n</script>\n\n<style lang=\"less\">\r\n\tpage {\r\n\t\tbackground: #f6f6f6;\r\n\t}\r\n\t.mainBox{\r\n\t\tpadding: 54rpx 30rpx;\r\n\t\t.title {\r\n\t\t\tmargin-bottom: 24rpx;\r\n\t\t\t color: rgba(0,0,0,0.9);\r\n\t\t\t font-size: 36rpx;\r\n\t\t\t font-weight: 700;\r\n\t\t}\r\n\t}\r\n\t.u-textarea {\r\n\t\tmin-height: 292rpx;\r\n\t}\r\n\t.botImage {\r\n\t\timage {\r\n\t\t\twidth: 200rpx;\r\n\t\t\theight: 200rpx;\r\n\t\t}\r\n\t}\r\n\t.botBtn {\r\n\t\tposition: fixed;\r\n\t\tleft: 0;\r\n\t\tbottom: 0;\r\n\t\twidth: 750rpx;\r\n\t\theight: 128rpx;\r\n\t\topacity: 1;\r\n\t\tbackground: rgba(255,255,255,1);\r\n\t\tview {\r\n\t\t\twidth: 686rpx;\r\n\t\t\theight: 96rpx;\r\n\t\t\t color: rgba(0,0,0,0.9);\r\n\t\t\t font-size: 32rpx;\r\n\t\t\t font-weight: 500;\r\n\t\t\tborder-radius: 28rpx;\r\n\t\t\topacity: 1;\r\n\t\t\tbackground: linear-gradient(134.8deg, rgba(255,232,100,1) 0%, rgba(255,216,0,1) 100%);\r\n\t\t}\r\n\t}\n</style>\n","import mod from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--10-oneOf-1-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--10-oneOf-1-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--10-oneOf-1-2!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--10-oneOf-1-3!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\less-loader\\\\dist\\\\cjs.js??ref--10-oneOf-1-4!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--10-oneOf-1-5!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./Feedback.vue?vue&type=style&index=0&lang=less&\"; export default mod; export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--10-oneOf-1-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--10-oneOf-1-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--10-oneOf-1-2!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--10-oneOf-1-3!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\less-loader\\\\dist\\\\cjs.js??ref--10-oneOf-1-4!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--10-oneOf-1-5!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./Feedback.vue?vue&type=style&index=0&lang=less&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1653871237434\n var cssReload = require(\"E:/HBuilderX.2.6.11.20200409/HBuilderX.2.6.11.20200409/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}  
  1 +{"version":3,"sources":["uni-app:///main.js","webpack:///F:/minigroup/Bitcoin/pages/mine/Feedback.vue?2be0","webpack:///F:/minigroup/Bitcoin/pages/mine/Feedback.vue?c626","webpack:///F:/minigroup/Bitcoin/pages/mine/Feedback.vue?a89a","webpack:///F:/minigroup/Bitcoin/pages/mine/Feedback.vue?ccca","uni-app:///pages/mine/Feedback.vue","webpack:///F:/minigroup/Bitcoin/pages/mine/Feedback.vue?06d0","webpack:///F:/minigroup/Bitcoin/pages/mine/Feedback.vue?ce8c"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,kG,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,iBAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAqH;AACrH;AAC4D;AACL;AACc;;;AAGrE;AAC2N;AAC3N,gBAAgB,mOAAU;AAC1B,EAAE,8EAAM;AACR,EAAE,mFAAM;AACR,EAAE,4FAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,uFAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA,aAAa,mTAEN;AACP;AACA;AACA,CAAC;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACjCA;AAAA;AAAA;AAAA;AAAg3B,CAAgB,g4BAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AC+Bp4B;;;AAGA;AACA,gE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AALA,S,eAQA,EACA,IADA,kBACA,CACA,SACA,WADA,EAEA,SAFA,EAGA,WAHA,GAKA,CAPA,EAQA,MARA,oBAQA,CACA,YACA,CAVA,EAWA,WACA;AACA,YAFA,oBAEA,GAFA,EAEA,CACA,4BACA,CAJA,EAMA,MANA,oBAMA,CACA,kBACA,8BADA,EACA;AACA,8BAFA,EAEA;AACA,6BAHA,EAGA;AACA,mRACA,+CACA,aAFA,GAEA,iBAFA,CAGA,CAHA,GAGA,CAHA,cAGA,wBAHA,uDAIA,yCAJA,QAIA,MAJA,iBAKA,oBACA,0BANA,OAGA,GAHA,qKAJA;;AAcA,KArBA;AAsBA,UAtBA,oBAsBA;AACA;AACA;AACA;AACA;AACA,KA3BA;AA4BA,YA5BA,sBA4BA;;AAEA,mEAFA,SAEA,GAFA;AAGA;AACA;AACA;AACA,iBAFA,EAEA,GAFA;AAGA;AACA;AARA;AAUA;AACA,qCADA;AAEA,8BAFA;;AAIA,wDAdA;;AAgBA,KA5CA,EAXA,E;;;;;;;;;;;;;ACtCA;AAAA;AAAA;AAAA;AAAglD,CAAgB,wiDAAG,EAAC,C;;;;;;;;;;;ACApmD;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/mine/Feedback.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/mine/Feedback.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./Feedback.vue?vue&type=template&id=28c70490&\"\nvar renderjs\nimport script from \"./Feedback.vue?vue&type=script&lang=js&\"\nexport * from \"./Feedback.vue?vue&type=script&lang=js&\"\nimport style0 from \"./Feedback.vue?vue&type=style&index=0&lang=less&\"\n\n\n/* normalize component */\nimport normalizer from \"!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\runtime\\\\componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/mine/Feedback.vue\"\nexport default component.exports","export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\templateLoader.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--16-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\template.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-uni-app-loader\\\\page-meta.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./Feedback.vue?vue&type=template&id=28c70490&\"","var components\ntry {\n components = {\n \"u-Textarea\": function() {\n return import(\n /* webpackChunkName: \"node-modules/uview-ui/components/u--textarea/u--textarea\" */ \"uview-ui/components/u--textarea/u--textarea.vue\"\n )\n }\n }\n} catch (e) {\n if (\n e.message.indexOf(\"Cannot find module\") !== -1 &&\n e.message.indexOf(\".vue\") !== -1\n ) {\n console.error(e.message)\n console.error(\"1. 排查组件名称拼写是否正确\")\n console.error(\n \"2. 排查组件是否符合 easycom 规范,文档:https://uniapp.dcloud.net.cn/collocation/pages?id=easycom\"\n )\n console.error(\n \"3. 若组件不符合 easycom 规范,需手动引入,并在 components 中注册该组件\"\n )\n } else {\n throw e\n }\n}\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./Feedback.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./Feedback.vue?vue&type=script&lang=js&\"","<template>\r\n\t<view class=\"\">\r\n\t\t<view class=\"mainBox\">\r\n\t\t\t<view class=\"title\">\r\n\t\t\t\t建议&意见\r\n\t\t\t</view>\r\n\t\t\t<u--textarea :autoHeight=\"true\" maxlength=\"300\" v-model=\"content\" border=\"none\" placeholder=\"请输入内容\">\r\n\t\t\t</u--textarea>\r\n\t\t\t<view class=\"title\" style=\"margin-top: 24rpx;\">\r\n\t\t\t\t上传图片(选填)\r\n\t\t\t</view>\r\n\t\t\t<view class=\"botImage\">\r\n\t\t\t\t<view class=\"box\" v-for=\"(item,idx) in imgList\" :key=\"idx\">\r\n\t\t\t\t\t<image @click=\"delImage(idx)\" class=\"close\" src=\"/static/closeImage.png\" mode=\"\"></image>\r\n\t\t\t\t\t<image class=\"image\" :src=\"item.fullurl\" mode=\"\"></image>\r\n\t\t\t\t</view>\r\n\t\t\t\t<view class=\"box\" v-if=\"imgList.length<9\" @click=\"upload\">\r\n\t\t\t\t\t<image src=\"/static/addPhoto.png\" mode=\"\"></image>\r\n\t\t\t\t</view>\r\n\t\t\t</view>\r\n\t\t</view>\r\n\t\t<view class=\"botBtn flexC\">\r\n\t\t\t<view class=\"flexC\" @click=\"submit\">\r\n\t\t\t\t提交\r\n\t\t\t</view>\r\n\t\t</view>\r\n\t</view>\r\n</template>\r\n\r\n<script>\r\n\tvar that \r\n\timport {\r\n\t\tdoFeedback\r\n\t} from '@/api/mine.js'\r\n\timport { toa } from '@/utils/toast.js'\r\n\timport {\r\n\t\tuploadFile\r\n\t} from '@/utils/upload.js'\r\n\texport default {\r\n\t\tdata() {\r\n\t\t\treturn {\r\n\t\t\t\tcontent: '',\r\n\t\t\t\timage:'',\r\n\t\t\t\timgList: []\r\n\t\t\t}\r\n\t\t},\r\n\t\tonLoad() {\r\n\t\t\t that = this\r\n\t\t},\r\n\t\tmethods: {\r\n\t\t\t// 删除图片\r\n\t\t\tdelImage(idx){\r\n\t\t\t\tthis.imgList.splice(idx,1)\r\n\t\t\t},\r\n\r\n\t\t\tupload() {\r\n\t\t\t\tuni.chooseImage({\r\n\t\t\t\t\tcount: 9 - that.imgList.length, //默认9\r\n\t\t\t\t\tsizeType: ['original'], //可以指定是原图还是压缩图,默认二者都有 , 'original','compressed'\r\n\t\t\t\t\tsourceType: ['album'], //从相册选择\r\n\t\t\t\t\tsuccess: async function(res) {\r\n\t\t\t\t\t\tconsole.log(JSON.stringify(res.tempFilePaths));\r\n\t\t\t\t\t\tconst tempFilePaths = res.tempFilePaths;\r\n\t\t\t\t\t\tfor (let i = 0; i < tempFilePaths.length; i++) {\r\n\t\t\t\t\t\t\tconst result = await uploadFile(tempFilePaths[i])\r\n\t\t\t\t\t\t\tconsole.log(result);\r\n\t\t\t\t\t\t\tthat.imgList.push(result)\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t});\r\n\t\t\t},\r\n\t\t\tsubmit(){\r\n\t\t\t\tif(!this.content) return toa.toast('请输入意见或反馈内容')\r\n\t\t\t\t// if(!this.imgList.length) return toa.toast('请上传图片')\r\n\t\t\t\tthis.image = this.imgList.map(it=>it.url)\r\n\t\t\t\tthis.Feedback()\r\n\t\t\t},\r\n\t\t\tasync Feedback() {\r\n\t\t\t\ttry {\r\n\t\t\t\t\tconst res = await doFeedback(this.content,this.image)\r\n\t\t\t\t\tconsole.log('doFeedback', res)\r\n\t\t\t\t\tsetTimeout(()=>{\r\n\t\t\t\t\t\ttoa.success('反馈成功')\r\n\t\t\t\t\t},200)\r\n\t\t\t\t\tuni.navigateBack({})\r\n\t\t\t\t\t// 保存数据\r\n\t\t\t\t} catch (err) {\r\n\t\t\t\t\tuni.showToast({\r\n\t\t\t\t\t\ttitle: err,\r\n\t\t\t\t\t\ticon: 'none'\r\n\t\t\t\t\t})\r\n\t\t\t\t\tconsole.log('doFeedback', err)\r\n\t\t\t\t}\r\n\t\t\t},\r\n\t\t},\r\n\t}\r\n</script>\r\n\r\n<style lang=\"less\">\r\n\tpage {\r\n\t\tbackground: #f6f6f6;\r\n\t}\r\n\r\n\t.mainBox {\r\n\t\tpadding: 54rpx 30rpx;\r\n\r\n\t\t.title {\r\n\t\t\tmargin-bottom: 24rpx;\r\n\t\t\tcolor: rgba(0, 0, 0, 0.9);\r\n\t\t\tfont-size: 36rpx;\r\n\t\t\tfont-weight: 700;\r\n\t\t}\r\n\t}\r\n\r\n\t.u-textarea {\r\n\t\tmin-height: 292rpx;\r\n\t}\r\n\r\n\t.botImage {\r\n\t\tdisplay: flex;\r\n\t\tflex-wrap: wrap;\r\n\t\t.box {\r\n\t\t\tposition: relative;\r\n\t\t\tmargin-right: 30rpx;\r\n\t\t\tmargin-bottom: 20rpx;\r\n\t\t}\r\n\t\t.box:nth-child(3n) {\r\n\t\t\tmargin-right: 0;\r\n\t\t}\r\n\t\timage {\r\n\t\t\twidth: 200rpx;\r\n\t\t\theight: 200rpx;\r\n\t\t}\r\n\t\t.close {\r\n\t\t\twidth: 36rpx;\r\n\t\t\theight: 36rpx;\r\n\t\t\tposition: absolute;\r\n\t\t\tright: 0;\r\n\t\t\ttop: 0;\r\n\t\t}\r\n\t}\r\n\r\n\t.botBtn {\r\n\t\tposition: fixed;\r\n\t\tleft: 0;\r\n\t\tbottom: 0;\r\n\t\twidth: 750rpx;\r\n\t\theight: 128rpx;\r\n\t\topacity: 1;\r\n\t\tbackground: rgba(255, 255, 255, 1);\r\n\r\n\t\tview {\r\n\t\t\twidth: 686rpx;\r\n\t\t\theight: 96rpx;\r\n\t\t\tcolor: rgba(0, 0, 0, 0.9);\r\n\t\t\tfont-size: 32rpx;\r\n\t\t\tfont-weight: 500;\r\n\t\t\tborder-radius: 28rpx;\r\n\t\t\topacity: 1;\r\n\t\t\tbackground: linear-gradient(134.8deg, rgba(255, 232, 100, 1) 0%, rgba(255, 216, 0, 1) 100%);\r\n\t\t}\r\n\t}\r\n\t/deep/ .uni-textarea-wrapper {\r\n\t\theight: 100% !important;\r\n\t}\r\n</style>\n","import mod from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--10-oneOf-1-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--10-oneOf-1-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--10-oneOf-1-2!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--10-oneOf-1-3!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\less-loader\\\\dist\\\\cjs.js??ref--10-oneOf-1-4!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--10-oneOf-1-5!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./Feedback.vue?vue&type=style&index=0&lang=less&\"; export default mod; export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--10-oneOf-1-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--10-oneOf-1-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--10-oneOf-1-2!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--10-oneOf-1-3!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\less-loader\\\\dist\\\\cjs.js??ref--10-oneOf-1-4!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--10-oneOf-1-5!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./Feedback.vue?vue&type=style&index=0&lang=less&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1653887043344\n var cssReload = require(\"E:/HBuilderX.2.6.11.20200409/HBuilderX.2.6.11.20200409/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
1 -{"version":3,"sources":["uni-app:///main.js","webpack:///F:/minigroup/Bitcoin/pages/mine/commonProblem.vue?42d9","webpack:///F:/minigroup/Bitcoin/pages/mine/commonProblem.vue?5919","webpack:///F:/minigroup/Bitcoin/pages/mine/commonProblem.vue?8555","webpack:///F:/minigroup/Bitcoin/pages/mine/commonProblem.vue?6f10","uni-app:///pages/mine/commonProblem.vue","webpack:///F:/minigroup/Bitcoin/pages/mine/commonProblem.vue?b74c","webpack:///F:/minigroup/Bitcoin/pages/mine/commonProblem.vue?c437"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,4G,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,sBAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAA0H;AAC1H;AACiE;AACL;AACc;;;AAG1E;AAC2N;AAC3N,gBAAgB,mOAAU;AAC1B,EAAE,mFAAM;AACR,EAAE,wFAAM;AACR,EAAE,iGAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,4FAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA,aAAa,qRAEN;AACP;AACA;AACA,CAAC;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACjCA;AAAA;AAAA;AAAA;AAAq3B,CAAgB,q4BAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACiBz4B;AACA,MADA,kBACA;AACA;AACA;AACA,oBADA;AAEA;AACA,oBADA,EAFA;AAIA;AACA,oBADA,EAJA;AAMA,sBANA,CADA;;AASA,GAXA;AAYA;AACA,UADA,oBACA;AACA;AACA,0CADA;;AAGA,KALA,EAZA,E;;;;;;;;;;;;;ACjBA;AAAA;AAAA;AAAA;AAAqlD,CAAgB,6iDAAG,EAAC,C;;;;;;;;;;;ACAzmD;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/mine/commonProblem.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/mine/commonProblem.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./commonProblem.vue?vue&type=template&id=03ba69b1&\"\nvar renderjs\nimport script from \"./commonProblem.vue?vue&type=script&lang=js&\"\nexport * from \"./commonProblem.vue?vue&type=script&lang=js&\"\nimport style0 from \"./commonProblem.vue?vue&type=style&index=0&lang=less&\"\n\n\n/* normalize component */\nimport normalizer from \"!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\runtime\\\\componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/mine/commonProblem.vue\"\nexport default component.exports","export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\templateLoader.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--16-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\template.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-uni-app-loader\\\\page-meta.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./commonProblem.vue?vue&type=template&id=03ba69b1&\"","var components\ntry {\n components = {\n uTabs: function() {\n return import(\n /* webpackChunkName: \"node-modules/uview-ui/components/u-tabs/u-tabs\" */ \"uview-ui/components/u-tabs/u-tabs.vue\"\n )\n }\n }\n} catch (e) {\n if (\n e.message.indexOf(\"Cannot find module\") !== -1 &&\n e.message.indexOf(\".vue\") !== -1\n ) {\n console.error(e.message)\n console.error(\"1. 排查组件名称拼写是否正确\")\n console.error(\n \"2. 排查组件是否符合 easycom 规范,文档:https://uniapp.dcloud.net.cn/collocation/pages?id=easycom\"\n )\n console.error(\n \"3. 若组件不符合 easycom 规范,需手动引入,并在 components 中注册该组件\"\n )\n } else {\n throw e\n }\n}\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./commonProblem.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./commonProblem.vue?vue&type=script&lang=js&\"","<template>\r\n\t<view class=\"\">\r\n\t\t<view class=\"top\"><image class=\"wh100\" src=\"/static/questionBg.png\" mode=\"\"></image></view>\r\n\t\t<view class=\"topTitle\">有什么可以帮您!</view>\r\n\t\t<view class=\"botQuestion\">\r\n\t\t\t\t<u-tabs :list=\"list2\" lineColor=\"#FED000\" :scrollable=\"false\" @click=\"click\"></u-tabs>\r\n\t\t\t\t<scroll-view scroll-y=\"true\" class=\"questionList\">\r\n\t\t\t\t\t<view class=\"list\" v-for=\"(item,idx) in 50\" :key=\"idx\" @click=\"toItem\">\r\n\t\t\t\t\t\t<view class=\"question\">123132</view>\r\n\t\t\t\t\t\t<view class=\"arrow\"><image class=\"wh100\" src=\"/static/arrowR.png\" mode=\"\"></image></view>\r\n\t\t\t\t\t</view>\r\n\t\t\t\t</scroll-view>\r\n\t\t</view>\r\n\t</view>\n</template>\n\n<script>\r\n\texport default {\r\n\t\tdata() {\r\n\t\t\treturn {\r\n\t\t\t\tlist2: [{\r\n\t\t\t\t\tname: '猜你想问',\r\n\t\t\t\t}, {\r\n\t\t\t\t\tname: '退换货品',\r\n\t\t\t\t}, {\r\n\t\t\t\t\tname: '服务条款'\r\n\t\t\t\t},{name:'分期支付'}],\r\n\t\t\t}\r\n\t\t},\r\n\t\tmethods: {\r\n\t\t\ttoItem() {\r\n\t\t\t\tuni.navigateTo({\r\n\t\t\t\t\turl:'/pages/mine/questionDetails'\r\n\t\t\t\t})\r\n\t\t\t}\r\n\t\t},\r\n\t}\n</script>\n\n<style lang=\"less\">\r\n\t.top {\r\n\t\tposition: absolute;\r\n\t\tleft: 0;\r\n\t\ttop: 0;\r\n\t\twidth: 100%;\r\n\t\theight: 400rpx;\r\n\t\tz-index: -1;\r\n\t}\r\n\t\t.topTitle {\r\n\t\t\tposition: absolute;\r\n\t\t\tleft: 44rpx;\r\n\t\t\ttop: 134rpx;\r\n\t\t\t color: rgba(0,0,0,1);\r\n\t\t\t font-size: 44rpx;\r\n\t\t\t font-weight: 700;\r\n\t\t}\r\n\t\t.botQuestion {\r\n\t\t\t\tposition: absolute;\r\n\t\t\t\tleft: 0;\r\n\t\t\t\tborder-top-left-radius: 20rpx;\r\n\t\t\t\tborder-top-right-radius: 20rpx;\r\n\t\t\t\ttop: 260rpx;\r\n\t\t\t\t// height: calc(100vh - 260rpx);\r\n\t\t\t\twidth: 100%;\r\n\t\t\t\tbackground: #fff;\r\n\t\t\t\t.questionList {\r\n\t\t\t\t\tmargin-top: 10rpx;\r\n\t\t\t\t\theight: calc(100vh - 360rpx);\r\n\t\t\t\t\t.list {\r\n\t\t\t\t\t\tpadding: 0 32rpx;\r\n\t\t\t\t\t\tmargin-bottom: 40rpx;\r\n\t\t\t\t\t\tdisplay: flex;\r\n\t\t\t\t\t\tjustify-content: space-between;\r\n\t\t\t\t\t\talign-items: center;\r\n\t\t\t\t\t\theight: 40rpx;\r\n\t\t\t\t\t\t.arrow {\r\n\t\t\t\t\t\t\twidth: 16rpx;\r\n\t\t\t\t\t\t\theight: 32rpx;\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t}\n</style>\n","import mod from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--10-oneOf-1-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--10-oneOf-1-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--10-oneOf-1-2!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--10-oneOf-1-3!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\less-loader\\\\dist\\\\cjs.js??ref--10-oneOf-1-4!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--10-oneOf-1-5!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./commonProblem.vue?vue&type=style&index=0&lang=less&\"; export default mod; export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--10-oneOf-1-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--10-oneOf-1-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--10-oneOf-1-2!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--10-oneOf-1-3!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\less-loader\\\\dist\\\\cjs.js??ref--10-oneOf-1-4!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--10-oneOf-1-5!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./commonProblem.vue?vue&type=style&index=0&lang=less&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1653871237437\n var cssReload = require(\"E:/HBuilderX.2.6.11.20200409/HBuilderX.2.6.11.20200409/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}  
  1 +{"version":3,"sources":["uni-app:///main.js","webpack:///F:/minigroup/Bitcoin/pages/mine/commonProblem.vue?42d9","webpack:///F:/minigroup/Bitcoin/pages/mine/commonProblem.vue?5919","webpack:///F:/minigroup/Bitcoin/pages/mine/commonProblem.vue?8555","webpack:///F:/minigroup/Bitcoin/pages/mine/commonProblem.vue?6f10","uni-app:///pages/mine/commonProblem.vue","webpack:///F:/minigroup/Bitcoin/pages/mine/commonProblem.vue?b74c","webpack:///F:/minigroup/Bitcoin/pages/mine/commonProblem.vue?c437"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,4G,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,sBAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAA0H;AAC1H;AACiE;AACL;AACc;;;AAG1E;AAC2N;AAC3N,gBAAgB,mOAAU;AAC1B,EAAE,mFAAM;AACR,EAAE,wFAAM;AACR,EAAE,iGAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,4FAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA,aAAa,qRAEN;AACP;AACA;AACA,CAAC;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACjCA;AAAA;AAAA;AAAA;AAAq3B,CAAgB,q4BAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACiBz4B;AACA,0D;AACA;AACA,MADA,kBACA;AACA;AACA;AACA,oBADA;AAEA;AACA,oBADA,EAFA;AAIA;AACA,oBADA,EAJA;AAMA,sBANA,CADA;AAQA,aARA;AASA,iBATA;AAUA,eAVA;AAWA,cAXA;;AAaA,GAfA;AAgBA,QAhBA,oBAgBA;AACA;AACA,GAlBA;AAmBA;AACA,UADA,kBACA,EADA,EACA;AACA;AACA,mDADA;;AAGA,KALA;AAMA,eANA,yBAMA;;AAEA,0CAFA,SAEA,GAFA;AAGA;AACA;AACA;AACA;AACA;AAPA;AASA;AACA,wDAVA;;AAYA,KAlBA;AAmBA,eAnBA,uBAmBA,CAnBA,EAmBA;;AAEA,0CAFA;AAGA,uEAHA,SAGA,GAHA;AAIA;AACA;AACA;AACA;AACA;AARA;AAUA;AACA,yDAXA;;AAaA,KAhCA;AAiCA,UAjCA,kBAiCA,CAjCA,EAiCA;AACA;AACA;AACA;AACA;AACA;AACA,KAvCA;AAwCA,iBAxCA,2BAwCA;AACA;AACA;AACA;AACA,KA5CA,EAnBA,E;;;;;;;;;;;;;ACnBA;AAAA;AAAA;AAAA;AAAqlD,CAAgB,6iDAAG,EAAC,C;;;;;;;;;;;ACAzmD;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/mine/commonProblem.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/mine/commonProblem.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./commonProblem.vue?vue&type=template&id=03ba69b1&\"\nvar renderjs\nimport script from \"./commonProblem.vue?vue&type=script&lang=js&\"\nexport * from \"./commonProblem.vue?vue&type=script&lang=js&\"\nimport style0 from \"./commonProblem.vue?vue&type=style&index=0&lang=less&\"\n\n\n/* normalize component */\nimport normalizer from \"!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\runtime\\\\componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/mine/commonProblem.vue\"\nexport default component.exports","export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\templateLoader.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--16-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\template.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-uni-app-loader\\\\page-meta.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./commonProblem.vue?vue&type=template&id=03ba69b1&\"","var components\ntry {\n components = {\n uTabs: function() {\n return import(\n /* webpackChunkName: \"node-modules/uview-ui/components/u-tabs/u-tabs\" */ \"uview-ui/components/u-tabs/u-tabs.vue\"\n )\n }\n }\n} catch (e) {\n if (\n e.message.indexOf(\"Cannot find module\") !== -1 &&\n e.message.indexOf(\".vue\") !== -1\n ) {\n console.error(e.message)\n console.error(\"1. 排查组件名称拼写是否正确\")\n console.error(\n \"2. 排查组件是否符合 easycom 规范,文档:https://uniapp.dcloud.net.cn/collocation/pages?id=easycom\"\n )\n console.error(\n \"3. 若组件不符合 easycom 规范,需手动引入,并在 components 中注册该组件\"\n )\n } else {\n throw e\n }\n}\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./commonProblem.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./commonProblem.vue?vue&type=script&lang=js&\"","<template>\r\n\t<view class=\"\">\r\n\t\t<view class=\"top\"><image class=\"wh100\" src=\"/static/questionBg.png\" mode=\"\"></image></view>\r\n\t\t<view class=\"topTitle\">有什么可以帮您!</view>\r\n\t\t<view class=\"botQuestion\">\r\n\t\t\t\t<u-tabs :list=\"list2\" lineColor=\"#FED000\" :scrollable=\"false\" @click=\"toggle\"></u-tabs>\r\n\t\t\t\t<scroll-view scroll-y=\"true\" class=\"questionList\" @scrolltolower=\"scrolltolower\">\r\n\t\t\t\t\t<view class=\"list\" v-for=\"(item,idx) in list\" :key=\"idx\" @click=\"toItem(item.id)\">\r\n\t\t\t\t\t\t<view class=\"question\">{{item.title}}</view>\r\n\t\t\t\t\t\t<view class=\"arrow\"><image src=\"/static/arrowR.png\" ></image></view>\r\n\t\t\t\t\t</view>\r\n\t\t\t\t</scroll-view>\r\n\t\t</view>\r\n\t</view>\n</template>\n\n<script>\r\n\timport {toa} from '@/utils/toast.js'\r\n\timport { problemSort,problemList } from '@/api/mine.js'\r\n\texport default {\r\n\t\tdata() {\r\n\t\t\treturn {\r\n\t\t\t\tlist2: [{\r\n\t\t\t\t\tname: '猜你想问',\r\n\t\t\t\t}, {\r\n\t\t\t\t\tname: '退换货品',\r\n\t\t\t\t}, {\r\n\t\t\t\t\tname: '服务条款'\r\n\t\t\t\t},{name:'分期支付'}],\r\n\t\t\t\tpage:1,\r\n\t\t\t\tlastPage:1,\r\n\t\t\t\tcurId:'',\r\n\t\t\t\tlist:[]\r\n\t\t\t}\r\n\t\t},\r\n\t\tonLoad() {\r\n\t\t\tthis.problemSort()\r\n\t\t},\r\n\t\tmethods: {\r\n\t\t\ttoItem(id) {\r\n\t\t\t\tuni.navigateTo({\r\n\t\t\t\t\turl:'/pages/mine/questionDetails?id='+id\r\n\t\t\t\t})\r\n\t\t\t},\r\n\t\t\tasync problemSort(){\r\n\t\t\t try {\r\n\t\t\t const res = await problemSort()\r\n\t\t\t\tthis.list2 = res.list\r\n\t\t\t\tthis.curId = res.list[0].id\r\n\t\t\t\tthis.problemList()\r\n\t\t\t console.log('problemSort', res)\r\n\t\t\t // 保存数据\r\n\t\t\t } catch (err) {\r\n\t\t\t \tuni.showToast({ title:err,icon:'none' })\r\n\t\t\t console.log('problemSort', err)\r\n\t\t\t }\r\n\t\t\t},\r\n\t\t\tasync problemList(f){\r\n\t\t\t try {\r\n\t\t\t\t toa.loading('加载中')\r\n\t\t\t const res = await problemList(this.curId,this.page,15)\r\n\t\t\t\ttoa.hideLoading()\r\n\t\t\t\tthis.lastPage = res.list.last_page\r\n\t\t\t\tthis.list = f?res.list.data:this.list.concat(res.list.data)\r\n\t\t\t console.log('problemList', res)\r\n\t\t\t // 保存数据\r\n\t\t\t } catch (err) {\r\n\t\t\t \tuni.showToast({ title:err,icon:'none' })\r\n\t\t\t console.log('problemList', err)\r\n\t\t\t }\r\n\t\t\t},\r\n\t\t\ttoggle(e){\r\n\t\t\t\tconsole.log(e);\r\n\t\t\t\tif(this.curId == e.id) return \r\n\t\t\t\tthis.page = 1\r\n\t\t\t\tthis.curId = e.id\r\n\t\t\t\tthis.problemList(1)\r\n\t\t\t},\r\n\t\t\tscrolltolower(){\r\n\t\t\t\tif(this.page >= this.lastPage) return\r\n\t\t\t\tthis.page=this.page+1 \r\n\t\t\t\tthis.problemList()\r\n\t\t\t}\r\n\t\t},\r\n\t}\n</script>\n\n<style lang=\"less\">\r\n\t.top {\r\n\t\tposition: absolute;\r\n\t\tleft: 0;\r\n\t\ttop: 0;\r\n\t\twidth: 100%;\r\n\t\theight: 400rpx;\r\n\t\tz-index: -1;\r\n\t}\r\n\t\t.topTitle {\r\n\t\t\tposition: absolute;\r\n\t\t\tleft: 44rpx;\r\n\t\t\ttop: 134rpx;\r\n\t\t\t color: rgba(0,0,0,1);\r\n\t\t\t font-size: 44rpx;\r\n\t\t\t font-weight: 700;\r\n\t\t}\r\n\t\t.botQuestion {\r\n\t\t\t\tposition: absolute;\r\n\t\t\t\tleft: 0;\r\n\t\t\t\tborder-top-left-radius: 20rpx;\r\n\t\t\t\tborder-top-right-radius: 20rpx;\r\n\t\t\t\ttop: 260rpx;\r\n\t\t\t\t// height: calc(100vh - 260rpx);\r\n\t\t\t\twidth: 100%;\r\n\t\t\t\tbackground: #fff;\r\n\t\t\t\t.questionList {\r\n\t\t\t\t\tmargin-top: 10rpx;\r\n\t\t\t\t\theight: calc(100vh - 360rpx);\r\n\t\t\t\t\t.list {\r\n\t\t\t\t\t\tpadding: 0 32rpx;\r\n\t\t\t\t\t\tmargin-bottom: 40rpx;\r\n\t\t\t\t\t\tdisplay: flex;\r\n\t\t\t\t\t\tjustify-content: space-between;\r\n\t\t\t\t\t\talign-items: center;\r\n\t\t\t\t\t\t// height: 40rpx;\r\n\t\t\t\t\t\t.arrow {\r\n\t\t\t\t\t\t\tmargin-left: 10rpx;\r\n\t\t\t\t\t\t\twidth: 16rpx;\r\n\t\t\t\t\t\t\theight: 32rpx;\r\n\t\t\t\t\t\t\timage {\r\n\t\t\t\t\t\t\t\twidth: 16rpx;\r\n\t\t\t\t\t\t\t\theight: 32rpx;\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t}\n</style>\n","import mod from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--10-oneOf-1-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--10-oneOf-1-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--10-oneOf-1-2!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--10-oneOf-1-3!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\less-loader\\\\dist\\\\cjs.js??ref--10-oneOf-1-4!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--10-oneOf-1-5!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./commonProblem.vue?vue&type=style&index=0&lang=less&\"; export default mod; export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--10-oneOf-1-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--10-oneOf-1-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--10-oneOf-1-2!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--10-oneOf-1-3!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\less-loader\\\\dist\\\\cjs.js??ref--10-oneOf-1-4!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--10-oneOf-1-5!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./commonProblem.vue?vue&type=style&index=0&lang=less&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1653887043342\n var cssReload = require(\"E:/HBuilderX.2.6.11.20200409/HBuilderX.2.6.11.20200409/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
1 -{"version":3,"sources":["uni-app:///main.js",null,"webpack:///F:/minigroup/Bitcoin/pages/mine/mine.vue?dd85","webpack:///F:/minigroup/Bitcoin/pages/mine/mine.vue?3b67","webpack:///F:/minigroup/Bitcoin/pages/mine/mine.vue?ca2a","uni-app:///pages/mine/mine.vue","webpack:///F:/minigroup/Bitcoin/pages/mine/mine.vue?4926","webpack:///F:/minigroup/Bitcoin/pages/mine/mine.vue?2549"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,0F,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,aAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAiH;AACjH;AACwD;AACL;AACc;;;AAGjE;AAC2N;AAC3N,gBAAgB,mOAAU;AAC1B,EAAE,0EAAM;AACR,EAAE,+EAAM;AACR,EAAE,wFAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,mFAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA,aAAa,2RAEN;AACP;AACA;AACA,CAAC;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACtCA;AAAA;AAAA;AAAA;AAA42B,CAAgB,43BAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AC8Eh4B;AACA;AACA,kBADA,EADA;;AAIA,MAJA,kBAIA;AACA;AACA;AACA,sBADA;AAEA,sBAFA;AAGA,sBAHA;AAIA,sBAJA;AAKA,sBALA;AAMA,sBANA;AAOA,sBAPA;AAQA,sBARA,CADA;;AAWA,wBAXA;AAYA,gBAZA,CAYA;AAZA;AAcA,GAnBA;AAoBA;AACA,eADA,uBACA,IADA,EACA;AACA;AACA;AACA,wCADA;;AAGA,OAJA,MAIA;AACA;AACA,oDADA;;AAGA;AACA,KAXA;AAYA,YAZA,oBAYA,IAZA,EAYA;AACA;AACA,qCADA;;AAGA;AACA,sCADA;;AAGA;AACA,oCADA;;AAGA;AACA,uCADA;;AAGA,KAzBA;AA0BA,eA1BA,uBA0BA,GA1BA,EA0BA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,mCADA;;AAGA;AACA,wCADA;;AAGA,KA1CA,EApBA,E;;;;;;;;;;;;;AC9EA;AAAA;AAAA;AAAA;AAA4kD,CAAgB,oiDAAG,EAAC,C;;;;;;;;;;;ACAhmD;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/mine/mine.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/mine/mine.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./mine.vue?vue&type=template&id=dcbcfe34&\"\nvar renderjs\nimport script from \"./mine.vue?vue&type=script&lang=js&\"\nexport * from \"./mine.vue?vue&type=script&lang=js&\"\nimport style0 from \"./mine.vue?vue&type=style&index=0&lang=less&\"\n\n\n/* normalize component */\nimport normalizer from \"!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\runtime\\\\componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/mine/mine.vue\"\nexport default component.exports","export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\templateLoader.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--16-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\template.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-uni-app-loader\\\\page-meta.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./mine.vue?vue&type=template&id=dcbcfe34&\"","var components\ntry {\n components = {\n uPopup: function() {\n return import(\n /* webpackChunkName: \"node-modules/uview-ui/components/u-popup/u-popup\" */ \"uview-ui/components/u-popup/u-popup.vue\"\n )\n }\n }\n} catch (e) {\n if (\n e.message.indexOf(\"Cannot find module\") !== -1 &&\n e.message.indexOf(\".vue\") !== -1\n ) {\n console.error(e.message)\n console.error(\"1. 排查组件名称拼写是否正确\")\n console.error(\n \"2. 排查组件是否符合 easycom 规范,文档:https://uniapp.dcloud.net.cn/collocation/pages?id=easycom\"\n )\n console.error(\n \"3. 若组件不符合 easycom 规范,需手动引入,并在 components 中注册该组件\"\n )\n } else {\n throw e\n }\n}\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n if (!_vm._isMounted) {\n _vm.e0 = function($event) {\n _vm.showService = false\n }\n }\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./mine.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./mine.vue?vue&type=script&lang=js&\"","<template>\n\t<view class=\"\">\n\t\t<view class=\"absTop\"></view>\n\t\t<view class=\"mainBox\">\n\t\t\t<view class=\"exit flexA\">\n\t\t\t\t\t<image src=\"/static/exit.png\" mode=\"\"></image>\n\t\t\t\t\t退出登录\n\t\t\t</view>\n\t\t\t<view class=\"topInfo flexA\">\n\t\t\t\t<image src=\"/static/logo.png\" mode=\"\"></image>\n\t\t\t\t<view class=\"right\">\n\t\t\t\t\t<view class=\"\">张小萌</view>\n\t\t\t\t\t<view class=\"\">15664000180</view>\n\t\t\t\t</view>\n\t\t\t</view>\n\t\t\t<view class=\"money\">\n\t\t\t\t<view class=\"item\">\n\t\t\t\t\t<view class=\"qian\"><text style=\"font-size: 32rpx;\">¥</text>600</view>\n\t\t\t\t\t<view class=\"yue\">账户余额</view>\n\t\t\t\t\t<view class=\"tixian flexC\" @click=\"totackMoney(1)\">提现</view>\n\t\t\t\t</view>\n\t\t\t\t<view class=\"item\">\n\t\t\t\t\t<view class=\"qian\"><text style=\"font-size: 32rpx;\">¥</text>600</view>\n\t\t\t\t\t<view class=\"yue\">保证金</view>\n\t\t\t\t\t<view class=\"tixian flexC\" @click=\"totackMoney(2)\">提现</view>\n\t\t\t\t</view>\n\t\t\t\t<view class=\"item\">\n\t\t\t\t\t<image src=\"/static/bill.png\" mode=\"\"></image>\n\t\t\t\t\t<view class=\"tixian flexC\" @click=\"totackMoney(3)\">账户流水</view>\n\t\t\t\t</view>\n\t\t\t</view>\n\t\t</view>\n\t\t<view style=\"height: 462rpx;\"></view>\n\t\t<view class=\"cenBox\">\n\t\t\t<view class=\"item\" @click=\"toMyPage(1)\">\n\t\t\t\t<image src=\"/static/center1.png\" mode=\"\"></image>\n\t\t\t\t我买入的\n\t\t\t</view>\n\t\t\t<view class=\"item\" @click=\"toMyPage(2)\">\n\t\t\t\t<image src=\"/static/center2.png\" mode=\"\"></image>\n\t\t\t\t我卖出的\n\t\t\t</view>\n\t\t\t<view class=\"item\" @click=\"toMyPage(3)\">\n\t\t\t\t<image src=\"/static/center3.png\" mode=\"\"></image>\n\t\t\t\t我的发布\n\t\t\t</view>\n\t\t\t<view class=\"item\" @click=\"toMyPage(4)\">\n\t\t\t\t<image src=\"/static/center4.png\" mode=\"\"></image>\n\t\t\t\t我的收藏\n\t\t\t</view>\n\t\t</view>\n\t\t<view class=\"botBox\">\n\t\t\t<view class=\"title\">更多服务</view>\n\t\t\t<view class=\"group\">\n\t\t\t\t<view class=\"item\" v-for=\"(item,idx) in serviceList\" :key=\"idx\" @click=\"openService(idx)\">\n\t\t\t\t\t<image :src=\"`/static/bot${idx+1}.png`\" mode=\"\"></image>\n\t\t\t\t\t{{item.name}}\n\t\t\t\t</view>\n\t\t\t</view>\n\t\t</view>\n\t\t<!-- <u-modal :show=\"showCancel\" @confirm=\"confirmCancel\" @cancel=\"showCancel=false\" content='您确定要退出登录吗' -->\r\n\t\t<u-popup :show=\"showService\" mode=\"center\" bgColor=\"transparent\" :round=\"15\">\r\n\t\t\t<view class=\"centerBox\">\r\n\t\t\t\t<image class=\"potImg\" src=\"/static/codeBg.png\" mode=\"\"></image>\r\n\t\t\t\t<view class=\"popTitle\"> {{Service==1?'我的客服':'品牌入驻'}} </view>\r\n\t\t\t\t<image class=\"code\" src=\"/static/logo.png\" mode=\"\"></image>\r\n\t\t\t\t<view class=\"dashed\"></view>\r\n\t\t\t\t<view class=\"botText\">长按识别二维码</view>\r\n\t\t\t</view>\r\n\t\t\t<view class=\"close\" @click=\"showService=false\">\r\n\t\t\t\t<image class=\"wh100\" src=\"/static/close.png\" mode=\"\"></image>\r\n\t\t\t</view>\r\n\t\t</u-popup>\r\n\t</view>\r\n</template>\r\n\r\n<script>\r\n\timport Botton from \"@/components/Botton.vue\"\n\texport default {\n\t\tcomponents: {\n\t\t\tBotton\n\t\t},\n\t\tdata() {\n\t\t\treturn {\n\t\t\t\tserviceList : [\n\t\t\t\t{name:'联系客服'},\n\t\t\t\t{name:'品牌入驻'},\n\t\t\t\t{name:'意见反馈'},\n\t\t\t\t{name:'常见问题'},\n\t\t\t\t{name:'我的任务'},\n\t\t\t\t{name:'我的点赞'},\n\t\t\t\t{name:'历史记录'},\n\t\t\t\t{name:'常用地址'},\n\t\t\t\t],\r\n\t\t\t\tshowService: false,\r\n\t\t\t\tService: 0 // 是否是联系客服\r\n\t\t\t}\r\n\t\t},\r\n\t\tmethods: {\r\n\t\t\ttotackMoney(type) {\r\n\t\t\t\tif (type == 3) {\r\n\t\t\t\t\tuni.navigateTo({\r\n\t\t\t\t\t\turl: '/pages/mine/accountFlow'\r\n\t\t\t\t\t})\r\n\t\t\t\t} else {\r\n\t\t\t\t\tuni.navigateTo({\r\n\t\t\t\t\t\turl: '/pages/mine/withdrawal?type=' + type\r\n\t\t\t\t\t})\r\n\t\t\t\t}\r\n\t\t\t},\r\n\t\t\ttoMyPage(type) {\r\n\t\t\t\tif (type == 1) return uni.navigateTo({\r\n\t\t\t\t\turl: '/pages/mine/buyerOrder'\r\n\t\t\t\t})\r\n\t\t\t\tif (type == 2) return uni.navigateTo({\r\n\t\t\t\t\turl: '/pages/mine/sellerOrder'\r\n\t\t\t\t})\r\n\t\t\t\tif (type == 3) return uni.navigateTo({\r\n\t\t\t\t\turl: '/pages/mine/myRelease'\r\n\t\t\t\t})\r\n\t\t\t\tif (type == 4) return uni.navigateTo({\r\n\t\t\t\t\turl: '/pages/mine/myCollection'\r\n\t\t\t\t})\r\n\t\t\t},\r\n\t\t\topenService(idx) {\r\n\t\t\t\tif (idx == 0) {\r\n\t\t\t\t\tthis.Service = 1\r\n\t\t\t\t\treturn this.showService = true\r\n\r\n\t\t\t\t}\r\n\t\t\t\tif (idx == 1) {\r\n\t\t\t\t\tthis.Service = 0\r\n\t\t\t\t\treturn this.showService = true\r\n\t\t\t\t}\r\n\t\t\t\tif (idx == 2) return uni.navigateTo({\r\n\t\t\t\t\turl: '/pages/mine/Feedback'\r\n\t\t\t\t})\r\n\t\t\t\tif (idx == 3) return uni.navigateTo({\r\n\t\t\t\t\turl: '/pages/mine/commonProblem'\r\n\t\t\t\t})\r\n\t\t\t}\r\n\t\t},\r\n\t}\r\n</script>\r\n\r\n<style lang=\"less\">\r\n\tpage {\r\n\t\tbackground: rgba(246, 246, 246, 1);\r\n\t}\r\n\r\n\t.absTop {\r\n\t\tposition: absolute;\r\n\t\tleft: 0;\r\n\t\ttop: 0;\r\n\t\twidth: 100%;\r\n\t\theight: 306rpx;\r\n\t\topacity: 1;\r\n\t\tbackground: linear-gradient(180deg, rgba(255, 249, 221, 1) 0%, rgba(255, 249, 221, 0) 100%);\r\n\t\tz-index: 0;\r\n\t}\r\n\r\n\t.mainBox {\r\n\t\tposition: absolute;\r\n\t\tleft: 0;\r\n\t\ttop: 0;\r\n\t\tpadding: 28rpx 32rpx;\r\n\t\tbox-sizing: border-box;\r\n\r\n\t\t.exit {\r\n\t\t\tjustify-content: flex-end;\r\n\r\n\t\t\timage {\r\n\t\t\t\twidth: 40rpx;\r\n\t\t\t\theight: 40rpx;\r\n\t\t\t}\r\n\r\n\t\t\tcolor: rgba(0, 0, 0, 1);\r\n\t\t\tfont-size: 24rpx;\r\n\t\t\tfont-weight: 400;\r\n\t\t}\r\n\r\n\t\t.topInfo {\r\n\t\t\timage {\r\n\t\t\t\tmargin-right: 24rpx;\r\n\t\t\t\twidth: 108rpx;\r\n\t\t\t\theight: 108rpx;\r\n\t\t\t\tborder-radius: 50%;\r\n\t\t\t}\r\n\r\n\t\t\tview:nth-child(1) {\r\n\t\t\t\tmargin: 8rpx 0;\r\n\t\t\t\tfont-size: 32rpx;\r\n\t\t\t\tfont-weight: 700;\r\n\t\t\t}\r\n\r\n\t\t\tview:nth-child(2) {\r\n\t\t\t\tcolor: rgba(0, 0, 0, 0.9);\r\n\t\t\t\tfont-size: 28rpx;\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\t.money {\r\n\t\t\tdisplay: flex;\r\n\t\t\tjustify-content: space-around;\r\n\t\t\tmargin: 32rpx auto 24rpx;\r\n\t\t\twidth: 702rpx;\r\n\t\t\theight: 250rpx;\r\n\t\t\tborder-radius: 24rpx;\r\n\t\t\topacity: 1;\r\n\t\t\tbackground: rgba(255, 255, 255, 1);\r\n\r\n\t\t\t.item {\r\n\t\t\t\tpadding: 32rpx 0;\r\n\t\t\t\twidth: 144rpx;\r\n\t\t\t\tposition: relative;\r\n\r\n\t\t\t\timage {\r\n\t\t\t\t\twidth: 80.74rpx;\r\n\t\t\t\t\theight: 75.09rpx;\r\n\t\t\t\t}\r\n\r\n\t\t\t\tdisplay: flex;\r\n\t\t\t\tflex-direction: column;\r\n\t\t\t\talign-items: center;\r\n\r\n\t\t\t\t.qian {\r\n\t\t\t\t\tcolor: rgba(248, 83, 23, 1);\r\n\t\t\t\t\tfont-size: 44rpx;\r\n\t\t\t\t}\r\n\r\n\t\t\t\t.yue {\r\n\t\t\t\t\tmargin-top: 18rpx;\r\n\t\t\t\t\tcolor: rgba(0, 0, 0, 0.9);\r\n\t\t\t\t\tfont-size: 24rpx;\r\n\t\t\t\t}\r\n\r\n\t\t\t\t.tixian {\r\n\t\t\t\t\tposition: absolute;\r\n\t\t\t\t\tleft: 0;\r\n\t\t\t\t\tbottom: 32rpx;\r\n\t\t\t\t\twidth: 144rpx;\r\n\t\t\t\t\theight: 56rpx;\r\n\t\t\t\t\tborder-radius: 50rpx;\r\n\t\t\t\t\topacity: 1;\r\n\t\t\t\t\tbackground: rgba(254, 208, 0, 1);\r\n\t\t\t\t\tcolor: rgba(0, 0, 0, 0.9);\r\n\t\t\t\t\tfont-size: 24rpx;\r\n\t\t\t\t\tfont-weight: 700;\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n\r\n\t.cenBox {\r\n\t\tdisplay: flex;\r\n\t\tjustify-content: space-evenly;\r\n\t\talign-items: center;\r\n\t\tmargin: 24rpx auto 24rpx;\r\n\t\twidth: 702rpx;\r\n\t\theight: 184rpx;\r\n\t\tborder-radius: 24rpx;\r\n\t\tbackground: rgba(255, 255, 255, 1);\r\n\r\n\t\t.item {\r\n\t\t\tdisplay: flex;\r\n\t\t\talign-items: center;\r\n\t\t\tflex-direction: column;\r\n\r\n\t\t\timage {\r\n\t\t\t\twidth: 64rpx;\r\n\t\t\t\theight: 64rpx;\r\n\t\t\t\tmargin-bottom: 16rpx;\r\n\t\t\t}\r\n\r\n\t\t\tcolor: rgba(100, 101, 102, 1);\r\n\t\t\tfont-size: 26rpx;\r\n\t\t}\r\n\t}\r\n\r\n\t.botBox {\r\n\t\tmargin: 0 auto;\r\n\t\tpadding: 32rpx 0;\r\n\t\tbox-sizing: border-box;\r\n\t\twidth: 702rpx;\r\n\t\theight: 464rpx;\r\n\t\tborder-radius: 24rpx;\r\n\t\topacity: 1;\r\n\t\tbackground: rgba(255, 255, 255, 1);\r\n\r\n\t\t.group {\r\n\t\t\tdisplay: flex;\r\n\t\t\talign-items: center;\r\n\t\t\tflex-wrap: wrap;\r\n\r\n\t\t\t.item {\r\n\t\t\t\twidth: 174rpx;\r\n\t\t\t\theight: 184rpx;\r\n\t\t\t\tdisplay: flex;\r\n\t\t\t\talign-items: center;\r\n\t\t\t\tflex-direction: column;\r\n\t\t\t}\r\n\r\n\t\t\timage {\r\n\t\t\t\twidth: 64rpx;\r\n\t\t\t\theight: 64rpx;\r\n\t\t\t\tmargin-bottom: 16rpx;\r\n\t\t\t}\r\n\r\n\t\t\tcolor: rgba(100, 101, 102, 1);\r\n\t\t\tfont-size: 26rpx;\r\n\t\t}\r\n\r\n\t\t.title {\r\n\t\t\tmargin: 0 0 56rpx 32rpx;\r\n\t\t\tcolor: rgba(50, 50, 51, 1);\r\n\t\t\tfont-size: 28rpx;\r\n\t\t\tfont-weight: 700;\r\n\t\t}\r\n\t}\r\n\r\n\t.centerBox {\r\n\t\tbox-sizing: border-box;\r\n\t\twidth: 622rpx;\r\n\t\theight: 656rpx;\r\n\t\tborder-radius: 15rpx;\r\n\t\tposition: relative;\r\n\r\n\t\t// background: url(/static/codeBg.png);\r\n\t\t.potImg {\r\n\t\t\tposition: absolute;\r\n\t\t\ttop: 0;\r\n\t\t\tleft: 0;\r\n\t\t\twidth: 622rpx;\r\n\t\t\theight: 656rpx;\r\n\t\t}\r\n\r\n\t\t.popTitle {\r\n\t\t\tposition: absolute;\r\n\t\t\ttop: 56rpx;\r\n\t\t\tleft: 50%;\r\n\t\t\ttransform: translateX(-50%);\r\n\t\t\tcolor: rgba(0, 0, 0, 0.9);\r\n\t\t\tfont-size: 34rpx;\r\n\t\t\tfont-weight: 700;\r\n\t\t}\r\n\r\n\t\t.code {\r\n\t\t\tposition: absolute;\r\n\t\t\tleft: 150rpx;\r\n\t\t\ttop: 160rpx;\r\n\t\t\twidth: 326rpx;\r\n\t\t\theight: 326rpx;\r\n\t\t}\r\n\r\n\t\t.botText {\r\n\t\t\tposition: absolute;\r\n\t\t\tbottom: 56rpx;\r\n\t\t\tcolor: rgba(0, 0, 0, 0.4);\r\n\t\t\tfont-size: 28rpx;\r\n\t\t\tleft: 50%;\r\n\t\t\ttransform: translateX(-50%);\r\n\t\t}\r\n\r\n\t\t.dashed {\r\n\t\t\tposition: absolute;\r\n\t\t\tbottom: 50rpx;\r\n\t\t\tleft: 0;\r\n\t\t\tborder-top: 2rpx solid #000;\r\n\t\t\theight: 0rpx;\r\n\t\t}\r\n\r\n\t}\r\n\r\n\t.close {\r\n\t\twidth: 48rpx;\r\n\t\theight: 48rpx;\r\n\t\tmargin: 0 auto;\r\n\t\tmargin-top: 24rpx;\r\n\t}\r\n</style>\n","import mod from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--10-oneOf-1-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--10-oneOf-1-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--10-oneOf-1-2!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--10-oneOf-1-3!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\less-loader\\\\dist\\\\cjs.js??ref--10-oneOf-1-4!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--10-oneOf-1-5!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./mine.vue?vue&type=style&index=0&lang=less&\"; export default mod; export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--10-oneOf-1-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--10-oneOf-1-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--10-oneOf-1-2!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--10-oneOf-1-3!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\less-loader\\\\dist\\\\cjs.js??ref--10-oneOf-1-4!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--10-oneOf-1-5!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./mine.vue?vue&type=style&index=0&lang=less&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1653882690590\n var cssReload = require(\"E:/HBuilderX.2.6.11.20200409/HBuilderX.2.6.11.20200409/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}  
  1 +{"version":3,"sources":["uni-app:///main.js",null,"webpack:///F:/minigroup/Bitcoin/pages/mine/mine.vue?dd85","webpack:///F:/minigroup/Bitcoin/pages/mine/mine.vue?3b67","webpack:///F:/minigroup/Bitcoin/pages/mine/mine.vue?ca2a","uni-app:///pages/mine/mine.vue","webpack:///F:/minigroup/Bitcoin/pages/mine/mine.vue?4926","webpack:///F:/minigroup/Bitcoin/pages/mine/mine.vue?2549"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,0F,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,aAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAiH;AACjH;AACwD;AACL;AACc;;;AAGjE;AAC2N;AAC3N,gBAAgB,mOAAU;AAC1B,EAAE,0EAAM;AACR,EAAE,+EAAM;AACR,EAAE,wFAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,mFAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA,aAAa,2RAEN;AACP,KAAK;AACL;AACA,aAAa,2RAEN;AACP;AACA;AACA,CAAC;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACnDA;AAAA;AAAA;AAAA;AAA42B,CAAgB,43BAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACiFh4B;AACA,0D;;AAEA;AACA;AACA,kBADA,EADA;;AAIA,MAJA,kBAIA;AACA;AACA;AACA,sBADA;AAEA,sBAFA;AAGA,sBAHA;AAIA,sBAJA;AAKA,sBALA;AAMA,sBANA;AAOA,sBAPA;AAQA,sBARA,CADA;;AAWA,wBAXA;AAYA,gBAZA,EAYA;AACA,eAbA;AAcA,kBAdA;AAeA,kBAfA;AAgBA,uBAhBA;AAiBA,gBAjBA;;AAmBA,GAxBA;AAyBA,QAzBA,oBAyBA;AACA;AACA;AACA;AACA;AACA;;AAEA,GAhCA;AAiCA;AACA,iBADA,2BACA;;AAEA,yCAFA,SAEA,GAFA;AAGA;AACA;AACA,iBAFA,EAEA,GAFA;AAGA;AACA;AACA,2CADA;;AAGA;AACA;AAXA;AAaA;AACA,uDAdA;;AAgBA,KAjBA;AAkBA,eAlBA,yBAkBA;;AAEA,0CAFA,SAEA,GAFA;AAGA;AACA;AACA;AALA;AAOA;AACA,yDARA;;AAUA,KA5BA;;AA8BA,eA9BA,uBA8BA,IA9BA,EA8BA;AACA;AACA;AACA,wCADA;;AAGA,OAJA,MAIA;AACA;AACA,oDADA;;AAGA;AACA,KAxCA;AAyCA,YAzCA,oBAyCA,IAzCA,EAyCA;AACA;AACA,qCADA;;AAGA;AACA,sCADA;;AAGA;AACA,oCADA;;AAGA;AACA,uCADA;;AAGA,KAtDA;AAuDA,eAvDA,uBAuDA,GAvDA,EAuDA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA,KApEA;AAqEA,oBArEA,4BAqEA,IArEA,EAqEA;;AAEA,mDAFA,SAEA,GAFA;AAGA;AACA;AACA;AACA;AANA;AAQA;AACA,8DATA;;AAWA,KAhFA,EAjCA,E;;;;;;;;;;;;;ACpFA;AAAA;AAAA;AAAA;AAA4kD,CAAgB,oiDAAG,EAAC,C;;;;;;;;;;;ACAhmD;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/mine/mine.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/mine/mine.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./mine.vue?vue&type=template&id=dcbcfe34&\"\nvar renderjs\nimport script from \"./mine.vue?vue&type=script&lang=js&\"\nexport * from \"./mine.vue?vue&type=script&lang=js&\"\nimport style0 from \"./mine.vue?vue&type=style&index=0&lang=less&\"\n\n\n/* normalize component */\nimport normalizer from \"!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\runtime\\\\componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/mine/mine.vue\"\nexport default component.exports","export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\templateLoader.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--16-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\template.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-uni-app-loader\\\\page-meta.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./mine.vue?vue&type=template&id=dcbcfe34&\"","var components\ntry {\n components = {\n uModal: function() {\n return import(\n /* webpackChunkName: \"node-modules/uview-ui/components/u-modal/u-modal\" */ \"uview-ui/components/u-modal/u-modal.vue\"\n )\n },\n uPopup: function() {\n return import(\n /* webpackChunkName: \"node-modules/uview-ui/components/u-popup/u-popup\" */ \"uview-ui/components/u-popup/u-popup.vue\"\n )\n }\n }\n} catch (e) {\n if (\n e.message.indexOf(\"Cannot find module\") !== -1 &&\n e.message.indexOf(\".vue\") !== -1\n ) {\n console.error(e.message)\n console.error(\"1. 排查组件名称拼写是否正确\")\n console.error(\n \"2. 排查组件是否符合 easycom 规范,文档:https://uniapp.dcloud.net.cn/collocation/pages?id=easycom\"\n )\n console.error(\n \"3. 若组件不符合 easycom 规范,需手动引入,并在 components 中注册该组件\"\n )\n } else {\n throw e\n }\n}\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n if (!_vm._isMounted) {\n _vm.e0 = function($event) {\n _vm.showCancel = true\n }\n\n _vm.e1 = function($event) {\n _vm.showCancel = false\n }\n\n _vm.e2 = function($event) {\n _vm.showService = false\n }\n }\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./mine.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./mine.vue?vue&type=script&lang=js&\"","<template>\n\t<view class=\"\">\n\t\t<view class=\"absTop\"></view>\n\t\t<view class=\"mainBox\">\n\t\t\t<view class=\"exit flexA\" :style=\"token?'visibility: visible':'visibility: hidden'\" @click=\"showCancel = true\">\n\t\t\t\t\t<image src=\"/static/exit.png\" mode=\"\"></image>\n\t\t\t\t\t退出登录\n\t\t\t</view>\n\t\t\t<view class=\"topInfo flexA\">\n\t\t\t\t<image :src=\"userInfo.avatar\" mode=\"\"></image>\n\t\t\t\t<view class=\"right\">\n\t\t\t\t\t<view class=\"\">{{userInfo.nickname || '未登录'}}</view>\n\t\t\t\t\t<view class=\"\">{{userInfo.mobile || ''}}</view>\n\t\t\t\t</view>\n\t\t\t</view>\n\t\t\t<view class=\"money\">\n\t\t\t\t<view class=\"item\">\n\t\t\t\t\t<view class=\"qian\"><text style=\"font-size: 32rpx;\">¥</text>{{allMoney.money || 0}}</view>\n\t\t\t\t\t<view class=\"yue\">账户余额</view>\n\t\t\t\t\t<view class=\"tixian flexC\" @click=\"totackMoney(1)\">提现</view>\n\t\t\t\t</view>\n\t\t\t\t<view class=\"item\">\n\t\t\t\t\t<view class=\"qian\"><text style=\"font-size: 32rpx;\">¥</text>{{allMoney.score || 0}}</view>\n\t\t\t\t\t<view class=\"yue\">保证金</view>\n\t\t\t\t\t<view class=\"tixian flexC\" @click=\"totackMoney(2)\">提现</view>\n\t\t\t\t</view>\n\t\t\t\t<view class=\"item\">\n\t\t\t\t\t<image src=\"/static/bill.png\" mode=\"\"></image>\n\t\t\t\t\t<view class=\"tixian flexC\" @click=\"totackMoney(3)\">账户流水</view>\n\t\t\t\t</view>\n\t\t\t</view>\n\t\t</view>\n\t\t<view style=\"height: 462rpx;\"></view>\n\t\t<view class=\"cenBox\">\n\t\t\t<view class=\"item\" @click=\"toMyPage(1)\">\n\t\t\t\t<image src=\"/static/center1.png\" mode=\"\"></image>\n\t\t\t\t我买入的\n\t\t\t</view>\n\t\t\t<view class=\"item\" @click=\"toMyPage(2)\">\n\t\t\t\t<image src=\"/static/center2.png\" mode=\"\"></image>\n\t\t\t\t我卖出的\n\t\t\t</view>\n\t\t\t<view class=\"item\" @click=\"toMyPage(3)\">\n\t\t\t\t<image src=\"/static/center3.png\" mode=\"\"></image>\n\t\t\t\t我的发布\n\t\t\t</view>\n\t\t\t<view class=\"item\" @click=\"toMyPage(4)\">\n\t\t\t\t<image src=\"/static/center4.png\" mode=\"\"></image>\n\t\t\t\t我的收藏\n\t\t\t</view>\n\t\t</view>\n\t\t<view class=\"botBox\">\n\t\t\t<view class=\"title\">更多服务</view>\n\t\t\t<view class=\"group\">\n\t\t\t\t<view class=\"item\" v-for=\"(item,idx) in serviceList\" :key=\"idx\" @click=\"openService(idx)\">\n\t\t\t\t\t<image :src=\"`/static/bot${idx+1}.png`\" mode=\"\"></image>\n\t\t\t\t\t{{item.name}}\n\t\t\t\t</view>\n\t\t\t</view>\n\t\t</view>\n\n\t\t<u-modal :show=\"showCancel\" :showCancelButton=\"true\" @confirm=\"confirmCancel\" @cancel=\"showCancel=false\" content='您确定要退出登录吗'></u-modal>\r\n\t\t<u-popup :show=\"showService\" mode=\"center\" bgColor=\"transparent\" :round=\"15\" >\r\n\t\t <view class=\"centerBox\">\r\n\t\t\t\t\t<image class=\"potImg\" src=\"/static/codeBg.png\" mode=\"\"></image>\r\n\t\t\t\t\t<view class=\"popTitle\">\t{{Service==1?'我的客服':'品牌入驻'}} </view>\r\n\t\t\t\t\t<image class=\"code\" :src=\"qrCode\" mode=\"\"></image>\r\n\t\t\t\t\t<view class=\"dashed\"></view>\r\n\t\t\t\t\t<view class=\"botText\">长按识别二维码</view>\r\n\t\t </view>\r\n\t\t\t<view class=\"close\" @click=\"showService=false\">\r\n\t\t\t\t<image class=\"wh100\" src=\"/static/close.png\" mode=\"\"></image>\r\n\t\t\t</view>\r\n\t\t</u-popup>\n\t\t<Botton :flag=\"2\"></Botton>\n\n\t</view>\n</template>\n\n<script>\n\timport Botton from \"@/components/Botton.vue\"\r\n\timport {toa} from '@/utils/toast.js'\r\n\timport { getUserInfo,logotLogin,getContactQrcode } from '@/api/mine.js'\r\n\n\texport default {\n\t\tcomponents: {\n\t\t\tBotton\n\t\t},\n\t\tdata() {\n\t\t\treturn {\n\t\t\t\tserviceList : [\n\t\t\t\t{name:'联系客服'},\n\t\t\t\t{name:'品牌入驻'},\n\t\t\t\t{name:'意见反馈'},\n\t\t\t\t{name:'常见问题'},\n\t\t\t\t{name:'我的任务'},\n\t\t\t\t{name:'我的点赞'},\n\t\t\t\t{name:'历史记录'},\n\t\t\t\t{name:'常用地址'},\n\t\t\t\t],\r\n\t\t\t\tshowService:false,\r\n\t\t\t\tService:0 ,// 是否是联系客服\r\n\t\t\t\ttoken:'',\r\n\t\t\t\tuserInfo:{},\r\n\t\t\t\tallMoney:{},\r\n\t\t\t\tshowCancel:false,\r\n\t\t\t\tqrCode:''\n\t\t\t}\n\t\t},\r\n\t\tonShow() {\r\n\t\t\tthis.token = uni.getStorageSync('token') || ''\r\n\t\t\tthis.userInfo = uni.getStorageSync('userInfo') || ''\r\n\t\t\tif(this.token){\r\n\t\t\t\tthis.getUserInfo()\r\n\t\t\t}\r\n\t\t\t\r\n\t\t},\n\t\tmethods: {\r\n\t\t\tasync confirmCancel(){\r\n\t\t\t\t try {\r\n\t\t\t\t const res = await logotLogin()\r\n\t\t\t\t\tsetTimeout(()=>{\r\n\t\t\t\t\t\ttoa.success('退出成功')\r\n\t\t\t\t\t},200)\r\n\t\t\t\t\tuni.clearStorage()\r\n\t\t\t\t\tuni.navigateTo({\r\n\t\t\t\t\t\turl:'/pages/login/login'\r\n\t\t\t\t\t})\r\n\t\t\t\t console.log('logotLogin', res)\r\n\t\t\t\t // 保存数据\r\n\t\t\t\t } catch (err) {\r\n\t\t\t\t \tuni.showToast({ title:err,icon:'none' })\r\n\t\t\t\t console.log('logotLogin', err)\r\n\t\t\t\t }\r\n\t\t\t},\r\n\t\t\tasync getUserInfo(){\r\n\t\t\t try {\r\n\t\t\t const res = await getUserInfo()\r\n\t\t\t console.log('getUserInfo', res)\r\n\t\t\t\tthis.allMoney = res.user\r\n\t\t\t // 保存数据\r\n\t\t\t } catch (err) {\r\n\t\t\t \tuni.showToast({ title:err,icon:'none' })\r\n\t\t\t console.log('getUserInfo', err)\r\n\t\t\t }\r\n\t\t\t},\n\t\t\t\r\n\t\t\ttotackMoney(type) {\r\n\t\t\t\tif (type == 3) {\r\n\t\t\t\t\tuni.navigateTo({\r\n\t\t\t\t\t\turl: '/pages/mine/accountFlow'\r\n\t\t\t\t\t})\r\n\t\t\t\t} else {\r\n\t\t\t\t\tuni.navigateTo({\r\n\t\t\t\t\t\turl: '/pages/mine/withdrawal?type=' + type\r\n\t\t\t\t\t})\r\n\t\t\t\t}\r\n\t\t\t},\r\n\t\t\ttoMyPage(type) {\r\n\t\t\t\tif (type == 1) return uni.navigateTo({\r\n\t\t\t\t\turl: '/pages/mine/buyerOrder'\r\n\t\t\t\t})\r\n\t\t\t\tif (type == 2) return uni.navigateTo({\r\n\t\t\t\t\turl: '/pages/mine/sellerOrder'\r\n\t\t\t\t})\r\n\t\t\t\tif (type == 3) return uni.navigateTo({\r\n\t\t\t\t\turl: '/pages/mine/myRelease'\r\n\t\t\t\t})\r\n\t\t\t\tif (type == 4) return uni.navigateTo({\r\n\t\t\t\t\turl: '/pages/mine/myCollection'\r\n\t\t\t\t})\r\n\t\t\t},\r\n\t\t\topenService(idx){\r\n\t\t\t\tif(idx==0) {\r\n\t\t\t\t\tthis.Service = 1\t\r\n\t\t\t\t\tthis.getContactQrcode(1)\r\n\t\t\t\t\t}\r\n\t\t\t\r\n\t\t\t\tif (idx == 1) {\r\n\t\t\t\t\tthis.Service = 0\r\n\t\t\t\t\tthis.getContactQrcode(2)\r\n\t\t\t\t}\r\n\t\t\t\tif(idx==2) return uni.navigateTo({\turl:'/pages/mine/Feedback'\t})\r\n\t\t\t\tif(idx==3) return uni.navigateTo({\turl:'/pages/mine/commonProblem'\t})\r\n\t\t\t\t\r\n\t\t\t},\r\n\t\t\tasync getContactQrcode(type){\r\n\t\t\t try {\r\n\t\t\t const res = await getContactQrcode(type)\r\n\t\t\t\tthis.qrCode = res.qrcode\r\n\t\t\t\tthis.showService = true\r\n\t\t\t // console.log('getContactQrcode', res)\r\n\t\t\t // 保存数据\r\n\t\t\t } catch (err) {\r\n\t\t\t \tuni.showToast({ title:err,icon:'none' })\r\n\t\t\t console.log('getContactQrcode', err)\r\n\t\t\t }\r\n\t\t\t},\n\t\t},\n\t}\n</script>\n\n\r\n\r\n<style lang=\"less\">\r\n\tpage {\r\n\t\tbackground: rgba(246, 246, 246, 1);\r\n\t}\r\n\r\n\t.absTop {\r\n\t\tposition: absolute;\r\n\t\tleft: 0;\r\n\t\ttop: 0;\r\n\t\twidth: 100%;\r\n\t\theight: 306rpx;\r\n\t\topacity: 1;\r\n\t\tbackground: linear-gradient(180deg, rgba(255, 249, 221, 1) 0%, rgba(255, 249, 221, 0) 100%);\r\n\t\tz-index: 0;\r\n\t}\r\n\r\n\t.mainBox {\r\n\t\tposition: absolute;\r\n\t\tleft: 0;\r\n\t\ttop: 0;\r\n\t\tpadding: 28rpx 32rpx;\r\n\t\tbox-sizing: border-box;\r\n\r\n\t\t.exit {\r\n\t\t\tjustify-content: flex-end;\r\n\r\n\t\t\timage {\r\n\t\t\t\twidth: 40rpx;\r\n\t\t\t\theight: 40rpx;\r\n\t\t\t}\r\n\r\n\t\t\tcolor: rgba(0, 0, 0, 1);\r\n\t\t\tfont-size: 24rpx;\r\n\t\t\tfont-weight: 400;\r\n\t\t}\r\n\r\n\t\t.topInfo {\r\n\t\t\timage {\r\n\t\t\t\tmargin-right: 24rpx;\r\n\t\t\t\twidth: 108rpx;\r\n\t\t\t\theight: 108rpx;\r\n\t\t\t\tborder-radius: 50%;\r\n\t\t\t}\r\n\r\n\t\t\tview:nth-child(1) {\r\n\t\t\t\tmargin: 8rpx 0;\r\n\t\t\t\tfont-size: 32rpx;\r\n\t\t\t\tfont-weight: 700;\r\n\t\t\t}\r\n\r\n\t\t\tview:nth-child(2) {\r\n\t\t\t\tcolor: rgba(0, 0, 0, 0.9);\r\n\t\t\t\tfont-size: 28rpx;\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\t.money {\r\n\t\t\tdisplay: flex;\r\n\t\t\tjustify-content: space-around;\r\n\t\t\tmargin: 32rpx auto 24rpx;\r\n\t\t\twidth: 702rpx;\r\n\t\t\theight: 250rpx;\r\n\t\t\tborder-radius: 24rpx;\r\n\t\t\topacity: 1;\r\n\t\t\tbackground: rgba(255, 255, 255, 1);\r\n\r\n\t\t\t.item {\r\n\t\t\t\tpadding: 32rpx 0;\r\n\t\t\t\twidth: 144rpx;\r\n\t\t\t\tposition: relative;\r\n\r\n\t\t\t\timage {\r\n\t\t\t\t\twidth: 80.74rpx;\r\n\t\t\t\t\theight: 75.09rpx;\r\n\t\t\t\t}\r\n\r\n\t\t\t\tdisplay: flex;\r\n\t\t\t\tflex-direction: column;\r\n\t\t\t\talign-items: center;\r\n\r\n\t\t\t\t.qian {\r\n\t\t\t\t\tcolor: rgba(248, 83, 23, 1);\r\n\t\t\t\t\tfont-size: 44rpx;\r\n\t\t\t\t}\r\n\r\n\t\t\t\t.yue {\r\n\t\t\t\t\tmargin-top: 18rpx;\r\n\t\t\t\t\tcolor: rgba(0, 0, 0, 0.9);\r\n\t\t\t\t\tfont-size: 24rpx;\r\n\t\t\t\t}\r\n\r\n\t\t\t\t.tixian {\r\n\t\t\t\t\tposition: absolute;\r\n\t\t\t\t\tleft: 0;\r\n\t\t\t\t\tbottom: 32rpx;\r\n\t\t\t\t\twidth: 144rpx;\r\n\t\t\t\t\theight: 56rpx;\r\n\t\t\t\t\tborder-radius: 50rpx;\r\n\t\t\t\t\topacity: 1;\r\n\t\t\t\t\tbackground: rgba(254, 208, 0, 1);\r\n\t\t\t\t\tcolor: rgba(0, 0, 0, 0.9);\r\n\t\t\t\t\tfont-size: 24rpx;\r\n\t\t\t\t\tfont-weight: 700;\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n\r\n\t.cenBox {\r\n\t\tdisplay: flex;\r\n\t\tjustify-content: space-evenly;\r\n\t\talign-items: center;\r\n\t\tmargin: 24rpx auto 24rpx;\r\n\t\twidth: 702rpx;\r\n\t\theight: 184rpx;\r\n\t\tborder-radius: 24rpx;\r\n\t\tbackground: rgba(255, 255, 255, 1);\r\n\r\n\t\t.item {\r\n\t\t\tdisplay: flex;\r\n\t\t\talign-items: center;\r\n\t\t\tflex-direction: column;\r\n\r\n\t\t\timage {\r\n\t\t\t\twidth: 64rpx;\r\n\t\t\t\theight: 64rpx;\r\n\t\t\t\tmargin-bottom: 16rpx;\r\n\t\t\t}\r\n\r\n\t\t\tcolor: rgba(100, 101, 102, 1);\r\n\t\t\tfont-size: 26rpx;\r\n\t\t}\r\n\t}\r\n\r\n\t.botBox {\r\n\t\tmargin: 0 auto;\r\n\t\tpadding: 32rpx 0;\r\n\t\tbox-sizing: border-box;\r\n\t\twidth: 702rpx;\r\n\t\theight: 464rpx;\r\n\t\tborder-radius: 24rpx;\r\n\t\topacity: 1;\r\n\t\tbackground: rgba(255, 255, 255, 1);\r\n\r\n\t\t.group {\r\n\t\t\tdisplay: flex;\r\n\t\t\talign-items: center;\r\n\t\t\tflex-wrap: wrap;\r\n\r\n\t\t\t.item {\r\n\t\t\t\twidth: 174rpx;\r\n\t\t\t\theight: 184rpx;\r\n\t\t\t\tdisplay: flex;\r\n\t\t\t\talign-items: center;\r\n\t\t\t\tflex-direction: column;\r\n\t\t\t}\r\n\r\n\t\t\timage {\r\n\t\t\t\twidth: 64rpx;\r\n\t\t\t\theight: 64rpx;\r\n\t\t\t\tmargin-bottom: 16rpx;\r\n\t\t\t}\r\n\r\n\t\t\tcolor: rgba(100, 101, 102, 1);\r\n\t\t\tfont-size: 26rpx;\r\n\t\t}\r\n\r\n\t\t.title {\r\n\t\t\tmargin: 0 0 56rpx 32rpx;\r\n\t\t\tcolor: rgba(50, 50, 51, 1);\r\n\t\t\tfont-size: 28rpx;\r\n\t\t\tfont-weight: 700;\r\n\t\t}\r\n\t}\r\n\r\n\t.centerBox {\r\n\t\tbox-sizing: border-box;\r\n\t\twidth: 622rpx;\r\n\t\theight: 656rpx;\r\n\t\tborder-radius: 15rpx;\r\n\t\tposition: relative;\r\n\r\n\t\t// background: url(/static/codeBg.png);\r\n\t\t.potImg {\r\n\t\t\tposition: absolute;\r\n\t\t\ttop: 0;\r\n\t\t\tleft: 0;\r\n\t\t\twidth: 622rpx;\r\n\t\t\theight: 656rpx;\r\n\t\t}\r\n\r\n\t\t.popTitle {\r\n\t\t\tposition: absolute;\r\n\t\t\ttop: 56rpx;\r\n\t\t\tleft: 50%;\r\n\t\t\ttransform: translateX(-50%);\r\n\t\t\tcolor: rgba(0, 0, 0, 0.9);\r\n\t\t\tfont-size: 34rpx;\r\n\t\t\tfont-weight: 700;\r\n\t\t}\r\n\r\n\t\t.code {\r\n\t\t\tposition: absolute;\r\n\t\t\tleft: 150rpx;\r\n\t\t\ttop: 160rpx;\r\n\t\t\twidth: 326rpx;\r\n\t\t\theight: 326rpx;\r\n\t\t}\r\n\r\n\t\t.botText {\r\n\t\t\tposition: absolute;\r\n\t\t\tbottom: 56rpx;\r\n\t\t\tcolor: rgba(0, 0, 0, 0.4);\r\n\t\t\tfont-size: 28rpx;\r\n\t\t\tleft: 50%;\r\n\t\t\ttransform: translateX(-50%);\r\n\t\t}\r\n\r\n\t\t.dashed {\r\n\t\t\tposition: absolute;\r\n\t\t\tbottom: 50rpx;\r\n\t\t\tleft: 0;\r\n\t\t\tborder-top: 2rpx solid #000;\r\n\t\t\theight: 0rpx;\r\n\t\t}\r\n\r\n\t}\r\n\r\n\t.close {\r\n\t\twidth: 48rpx;\r\n\t\theight: 48rpx;\r\n\t\tmargin: 0 auto;\r\n\t\tmargin-top: 24rpx;\r\n\t}\r\n</style>\n","import mod from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--10-oneOf-1-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--10-oneOf-1-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--10-oneOf-1-2!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--10-oneOf-1-3!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\less-loader\\\\dist\\\\cjs.js??ref--10-oneOf-1-4!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--10-oneOf-1-5!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./mine.vue?vue&type=style&index=0&lang=less&\"; export default mod; export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--10-oneOf-1-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--10-oneOf-1-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--10-oneOf-1-2!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--10-oneOf-1-3!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\less-loader\\\\dist\\\\cjs.js??ref--10-oneOf-1-4!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--10-oneOf-1-5!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./mine.vue?vue&type=style&index=0&lang=less&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1653887043339\n var cssReload = require(\"E:/HBuilderX.2.6.11.20200409/HBuilderX.2.6.11.20200409/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
1 -{"version":3,"sources":["uni-app:///main.js","webpack:///F:/minigroup/Bitcoin/pages/mine/questionDetails.vue?b90a","webpack:///F:/minigroup/Bitcoin/pages/mine/questionDetails.vue?d2bc","webpack:///F:/minigroup/Bitcoin/pages/mine/questionDetails.vue?7ce6","webpack:///F:/minigroup/Bitcoin/pages/mine/questionDetails.vue?deb9","uni-app:///pages/mine/questionDetails.vue"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,gH,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,wBAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAA4H;AAC5H;AACmE;AACL;;;AAG9D;AAC2N;AAC3N,gBAAgB,mOAAU;AAC1B,EAAE,qFAAM;AACR,EAAE,0FAAM;AACR,EAAE,mGAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,8FAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACtBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAAu3B,CAAgB,u4BAAG,EAAC,C;;;;;;;;;;;;;;;;;;;ACO34B;AACA,MADA,kBACA;AACA;AACA,6BADA;;AAGA,GALA,E","file":"pages/mine/questionDetails.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/mine/questionDetails.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./questionDetails.vue?vue&type=template&id=2ba55db9&\"\nvar renderjs\nimport script from \"./questionDetails.vue?vue&type=script&lang=js&\"\nexport * from \"./questionDetails.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\runtime\\\\componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/mine/questionDetails.vue\"\nexport default component.exports","export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\templateLoader.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--16-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\template.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-uni-app-loader\\\\page-meta.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./questionDetails.vue?vue&type=template&id=2ba55db9&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./questionDetails.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./questionDetails.vue?vue&type=script&lang=js&\"","<template>\r\n\t<view class=\"\">\r\n\t\t<rich-text :nodes=\"detail\"></rich-text>\r\n\t</view>\n</template>\n\n<script>\r\n\texport default {\r\n\t\tdata() {\r\n\t\t\treturn {\r\n\t\t\t\tdetail: '<h1>服务条款</h1>'\r\n\t\t\t}\r\n\t\t},\r\n\t}\n</script>\n\n<style>\n</style>\n"],"sourceRoot":""}  
  1 +{"version":3,"sources":["uni-app:///main.js","webpack:///F:/minigroup/Bitcoin/pages/mine/questionDetails.vue?b90a","webpack:///F:/minigroup/Bitcoin/pages/mine/questionDetails.vue?d2bc","webpack:///F:/minigroup/Bitcoin/pages/mine/questionDetails.vue?7ce6","webpack:///F:/minigroup/Bitcoin/pages/mine/questionDetails.vue?deb9","uni-app:///pages/mine/questionDetails.vue"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,gH,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,wBAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAA4H;AAC5H;AACmE;AACL;;;AAG9D;AAC2N;AAC3N,gBAAgB,mOAAU;AAC1B,EAAE,qFAAM;AACR,EAAE,0FAAM;AACR,EAAE,mGAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,8FAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACtBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAAu3B,CAAgB,u4BAAG,EAAC,C;;;;;;;;;;;;;;;;;;;ACO34B,0D;AACA;AACA,MADA,kBACA;AACA;AACA,gBADA;AAEA,YAFA;;AAIA,GANA;AAOA,QAPA,kBAOA,CAPA,EAOA;AACA;AACA;AACA,GAVA;AAWA;AACA,iBADA,2BACA;;AAEA,oDAFA,SAEA,GAFA;AAGA;AACA;AACA;AALA;AAOA;AACA,0DARA;;AAUA,KAXA,EAXA,E","file":"pages/mine/questionDetails.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/mine/questionDetails.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./questionDetails.vue?vue&type=template&id=2ba55db9&\"\nvar renderjs\nimport script from \"./questionDetails.vue?vue&type=script&lang=js&\"\nexport * from \"./questionDetails.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\runtime\\\\componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/mine/questionDetails.vue\"\nexport default component.exports","export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\templateLoader.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--16-0!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\template.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-uni-app-loader\\\\page-meta.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./questionDetails.vue?vue&type=template&id=2ba55db9&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./questionDetails.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!E:\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX.2.6.11.20200409\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./questionDetails.vue?vue&type=script&lang=js&\"","<template>\r\n\t<view class=\"\">\r\n\t\t<rich-text :nodes=\"detail\"></rich-text>\r\n\t</view>\n</template>\n\n<script>\r\n\timport { problemDetail } from '@/api/mine.js'\r\n\texport default {\r\n\t\tdata() {\r\n\t\t\treturn {\r\n\t\t\t\tdetail: '',\r\n\t\t\t\tid:''\r\n\t\t\t}\r\n\t\t},\r\n\t\tonLoad(e) {\r\n\t\t\tthis.id = e.id\r\n\t\t\tthis.problemDetail()\r\n\t\t},\r\n\t\tmethods: {\r\n\t\t\tasync problemDetail(){\r\n\t\t\t try {\r\n\t\t\t const res = await problemDetail(this.id)\r\n\t\t\t\tthis.detail = res.detail.content\r\n\t\t\t console.log('problemDetail', res)\r\n\t\t\t // 保存数据\r\n\t\t\t } catch (err) {\r\n\t\t\t \tuni.showToast({ title:err,icon:'none' })\r\n\t\t\t console.log('problemDetail', err)\r\n\t\t\t }\r\n\t\t\t},\r\n\t\t},\r\n\t}\n</script>\n\n<style>\n</style>\n"],"sourceRoot":""}
@@ -22,7 +22,8 @@ @@ -22,7 +22,8 @@
22 "pages/mine/Feedback", 22 "pages/mine/Feedback",
23 "pages/login/login", 23 "pages/login/login",
24 "pages/login/register", 24 "pages/login/register",
25 - "pages/login/password" 25 + "pages/login/password",
  26 + "pages/login/agreement"
26 ], 27 ],
27 "subPackages": [], 28 "subPackages": [],
28 "window": { 29 "window": {
@@ -105,11 +105,11 @@ @@ -105,11 +105,11 @@
105 /******/ 105 /******/
106 /******/ 106 /******/
107 /******/ // mini-css-extract-plugin CSS loading 107 /******/ // mini-css-extract-plugin CSS loading
108 -/******/ var cssChunks = {"node-modules/uview-ui/components/u-swiper/u-swiper":1,"uni_modules/custom-waterfalls-flow/components/custom-waterfalls-flow/custom-waterfalls-flow":1,"components/Botton":1,"node-modules/uview-ui/components/u-search/u-search":1,"node-modules/uview-ui/components/u-popup/u-popup":1,"uni_modules/uni-data-select/components/uni-data-select/uni-data-select":1,"node-modules/uview-ui/components/u-gap/u-gap":1,"node-modules/uview-ui/components/u-upload/u-upload":1,"node-modules/uview-ui/components/u-sticky/u-sticky":1,"node-modules/uview-ui/components/u-tabs/u-tabs":1,"node-modules/uview-ui/components/u-loading-icon/u-loading-icon":1,"node-modules/uview-ui/components/u-swiper-indicator/u-swiper-indicator":1,"node-modules/uview-ui/components/u-icon/u-icon":1,"node-modules/uview-ui/components/u-overlay/u-overlay":1,"node-modules/uview-ui/components/u-safe-bottom/u-safe-bottom":1,"node-modules/uview-ui/components/u-status-bar/u-status-bar":1,"node-modules/uview-ui/components/u-transition/u-transition":1,"node-modules/uview-ui/components/u-badge/u-badge":1,"node-modules/uview-ui/components/u-textarea/u-textarea":1}; 108 +/******/ var cssChunks = {"node-modules/uview-ui/components/u-swiper/u-swiper":1,"uni_modules/custom-waterfalls-flow/components/custom-waterfalls-flow/custom-waterfalls-flow":1,"components/Botton":1,"node-modules/uview-ui/components/u-search/u-search":1,"node-modules/uview-ui/components/u-popup/u-popup":1,"uni_modules/uni-data-select/components/uni-data-select/uni-data-select":1,"node-modules/uview-ui/components/u-gap/u-gap":1,"node-modules/uview-ui/components/u-upload/u-upload":1,"node-modules/uview-ui/components/u-modal/u-modal":1,"node-modules/uview-ui/components/u-sticky/u-sticky":1,"node-modules/uview-ui/components/u-tabs/u-tabs":1,"node-modules/uview-ui/components/u-loading-icon/u-loading-icon":1,"node-modules/uview-ui/components/u-swiper-indicator/u-swiper-indicator":1,"node-modules/uview-ui/components/u-icon/u-icon":1,"node-modules/uview-ui/components/u-overlay/u-overlay":1,"node-modules/uview-ui/components/u-safe-bottom/u-safe-bottom":1,"node-modules/uview-ui/components/u-status-bar/u-status-bar":1,"node-modules/uview-ui/components/u-transition/u-transition":1,"node-modules/uview-ui/components/u-line/u-line":1,"node-modules/uview-ui/components/u-badge/u-badge":1,"node-modules/uview-ui/components/u-textarea/u-textarea":1};
109 /******/ if(installedCssChunks[chunkId]) promises.push(installedCssChunks[chunkId]); 109 /******/ if(installedCssChunks[chunkId]) promises.push(installedCssChunks[chunkId]);
110 /******/ else if(installedCssChunks[chunkId] !== 0 && cssChunks[chunkId]) { 110 /******/ else if(installedCssChunks[chunkId] !== 0 && cssChunks[chunkId]) {
111 /******/ promises.push(installedCssChunks[chunkId] = new Promise(function(resolve, reject) { 111 /******/ promises.push(installedCssChunks[chunkId] = new Promise(function(resolve, reject) {
112 -/******/ var href = "" + ({"node-modules/uview-ui/components/u-swiper/u-swiper":"node-modules/uview-ui/components/u-swiper/u-swiper","uni_modules/custom-waterfalls-flow/components/custom-waterfalls-flow/custom-waterfalls-flow":"uni_modules/custom-waterfalls-flow/components/custom-waterfalls-flow/custom-waterfalls-flow","components/Botton":"components/Botton","node-modules/uview-ui/components/u-search/u-search":"node-modules/uview-ui/components/u-search/u-search","node-modules/uview-ui/components/u-popup/u-popup":"node-modules/uview-ui/components/u-popup/u-popup","uni_modules/uni-data-select/components/uni-data-select/uni-data-select":"uni_modules/uni-data-select/components/uni-data-select/uni-data-select","node-modules/uview-ui/components/u-gap/u-gap":"node-modules/uview-ui/components/u-gap/u-gap","node-modules/uview-ui/components/u-upload/u-upload":"node-modules/uview-ui/components/u-upload/u-upload","node-modules/uview-ui/components/u-sticky/u-sticky":"node-modules/uview-ui/components/u-sticky/u-sticky","node-modules/uview-ui/components/u-tabs/u-tabs":"node-modules/uview-ui/components/u-tabs/u-tabs","node-modules/uview-ui/components/u--textarea/u--textarea":"node-modules/uview-ui/components/u--textarea/u--textarea","node-modules/uview-ui/components/u-loading-icon/u-loading-icon":"node-modules/uview-ui/components/u-loading-icon/u-loading-icon","node-modules/uview-ui/components/u-swiper-indicator/u-swiper-indicator":"node-modules/uview-ui/components/u-swiper-indicator/u-swiper-indicator","node-modules/uview-ui/components/u-icon/u-icon":"node-modules/uview-ui/components/u-icon/u-icon","node-modules/uview-ui/components/u-overlay/u-overlay":"node-modules/uview-ui/components/u-overlay/u-overlay","node-modules/uview-ui/components/u-safe-bottom/u-safe-bottom":"node-modules/uview-ui/components/u-safe-bottom/u-safe-bottom","node-modules/uview-ui/components/u-status-bar/u-status-bar":"node-modules/uview-ui/components/u-status-bar/u-status-bar","node-modules/uview-ui/components/u-transition/u-transition":"node-modules/uview-ui/components/u-transition/u-transition","node-modules/uview-ui/components/u-badge/u-badge":"node-modules/uview-ui/components/u-badge/u-badge","node-modules/uview-ui/components/u-textarea/u-textarea":"node-modules/uview-ui/components/u-textarea/u-textarea"}[chunkId]||chunkId) + ".wxss"; 112 +/******/ var href = "" + ({"node-modules/uview-ui/components/u-swiper/u-swiper":"node-modules/uview-ui/components/u-swiper/u-swiper","uni_modules/custom-waterfalls-flow/components/custom-waterfalls-flow/custom-waterfalls-flow":"uni_modules/custom-waterfalls-flow/components/custom-waterfalls-flow/custom-waterfalls-flow","components/Botton":"components/Botton","node-modules/uview-ui/components/u-search/u-search":"node-modules/uview-ui/components/u-search/u-search","node-modules/uview-ui/components/u-popup/u-popup":"node-modules/uview-ui/components/u-popup/u-popup","uni_modules/uni-data-select/components/uni-data-select/uni-data-select":"uni_modules/uni-data-select/components/uni-data-select/uni-data-select","node-modules/uview-ui/components/u-gap/u-gap":"node-modules/uview-ui/components/u-gap/u-gap","node-modules/uview-ui/components/u-upload/u-upload":"node-modules/uview-ui/components/u-upload/u-upload","node-modules/uview-ui/components/u-modal/u-modal":"node-modules/uview-ui/components/u-modal/u-modal","node-modules/uview-ui/components/u-sticky/u-sticky":"node-modules/uview-ui/components/u-sticky/u-sticky","node-modules/uview-ui/components/u-tabs/u-tabs":"node-modules/uview-ui/components/u-tabs/u-tabs","node-modules/uview-ui/components/u--textarea/u--textarea":"node-modules/uview-ui/components/u--textarea/u--textarea","node-modules/uview-ui/components/u-loading-icon/u-loading-icon":"node-modules/uview-ui/components/u-loading-icon/u-loading-icon","node-modules/uview-ui/components/u-swiper-indicator/u-swiper-indicator":"node-modules/uview-ui/components/u-swiper-indicator/u-swiper-indicator","node-modules/uview-ui/components/u-icon/u-icon":"node-modules/uview-ui/components/u-icon/u-icon","node-modules/uview-ui/components/u-overlay/u-overlay":"node-modules/uview-ui/components/u-overlay/u-overlay","node-modules/uview-ui/components/u-safe-bottom/u-safe-bottom":"node-modules/uview-ui/components/u-safe-bottom/u-safe-bottom","node-modules/uview-ui/components/u-status-bar/u-status-bar":"node-modules/uview-ui/components/u-status-bar/u-status-bar","node-modules/uview-ui/components/u-transition/u-transition":"node-modules/uview-ui/components/u-transition/u-transition","node-modules/uview-ui/components/u-line/u-line":"node-modules/uview-ui/components/u-line/u-line","node-modules/uview-ui/components/u-badge/u-badge":"node-modules/uview-ui/components/u-badge/u-badge","node-modules/uview-ui/components/u-textarea/u-textarea":"node-modules/uview-ui/components/u-textarea/u-textarea"}[chunkId]||chunkId) + ".wxss";
113 /******/ var fullhref = __webpack_require__.p + href; 113 /******/ var fullhref = __webpack_require__.p + href;
114 /******/ var existingLinkTags = document.getElementsByTagName("link"); 114 /******/ var existingLinkTags = document.getElementsByTagName("link");
115 /******/ for(var i = 0; i < existingLinkTags.length; i++) { 115 /******/ for(var i = 0; i < existingLinkTags.length; i++) {
@@ -20053,6 +20053,358 @@ Object.defineProperty(exports, "__esModule", { value: true });exports.default = @@ -20053,6 +20053,358 @@ Object.defineProperty(exports, "__esModule", { value: true });exports.default =
20053 default: uni.$u.props.gap.marginBottom } } };exports.default = _default; 20053 default: uni.$u.props.gap.marginBottom } } };exports.default = _default;
20054 /* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"])) 20054 /* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
20055 20055
  20056 +/***/ }),
  20057 +/* 515 */,
  20058 +/* 516 */,
  20059 +/* 517 */,
  20060 +/* 518 */,
  20061 +/* 519 */,
  20062 +/* 520 */,
  20063 +/* 521 */,
  20064 +/* 522 */,
  20065 +/* 523 */
  20066 +/*!******************************************************************************!*\
  20067 + !*** F:/minigroup/Bitcoin/node_modules/uview-ui/components/u-modal/props.js ***!
  20068 + \******************************************************************************/
  20069 +/*! no static exports found */
  20070 +/***/ (function(module, exports, __webpack_require__) {
  20071 +
  20072 +"use strict";
  20073 +/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0;var _default = {
  20074 + props: {
  20075 + // 是否展示modal
  20076 + show: {
  20077 + type: Boolean,
  20078 + default: uni.$u.props.modal.show },
  20079 +
  20080 + // 标题
  20081 + title: {
  20082 + type: [String],
  20083 + default: uni.$u.props.modal.title },
  20084 +
  20085 + // 弹窗内容
  20086 + content: {
  20087 + type: String,
  20088 + default: uni.$u.props.modal.content },
  20089 +
  20090 + // 确认文案
  20091 + confirmText: {
  20092 + type: String,
  20093 + default: uni.$u.props.modal.confirmText },
  20094 +
  20095 + // 取消文案
  20096 + cancelText: {
  20097 + type: String,
  20098 + default: uni.$u.props.modal.cancelText },
  20099 +
  20100 + // 是否显示确认按钮
  20101 + showConfirmButton: {
  20102 + type: Boolean,
  20103 + default: uni.$u.props.modal.showConfirmButton },
  20104 +
  20105 + // 是否显示取消按钮
  20106 + showCancelButton: {
  20107 + type: Boolean,
  20108 + default: uni.$u.props.modal.showCancelButton },
  20109 +
  20110 + // 确认按钮颜色
  20111 + confirmColor: {
  20112 + type: String,
  20113 + default: uni.$u.props.modal.confirmColor },
  20114 +
  20115 + // 取消文字颜色
  20116 + cancelColor: {
  20117 + type: String,
  20118 + default: uni.$u.props.modal.cancelColor },
  20119 +
  20120 + // 对调确认和取消的位置
  20121 + buttonReverse: {
  20122 + type: Boolean,
  20123 + default: uni.$u.props.modal.buttonReverse },
  20124 +
  20125 + // 是否开启缩放效果
  20126 + zoom: {
  20127 + type: Boolean,
  20128 + default: uni.$u.props.modal.zoom },
  20129 +
  20130 + // 是否异步关闭,只对确定按钮有效
  20131 + asyncClose: {
  20132 + type: Boolean,
  20133 + default: uni.$u.props.modal.asyncClose },
  20134 +
  20135 + // 是否允许点击遮罩关闭modal
  20136 + closeOnClickOverlay: {
  20137 + type: Boolean,
  20138 + default: uni.$u.props.modal.closeOnClickOverlay },
  20139 +
  20140 + // 给一个负的margin-top,往上偏移,避免和键盘重合的情况
  20141 + negativeTop: {
  20142 + type: [String, Number],
  20143 + default: uni.$u.props.modal.negativeTop },
  20144 +
  20145 + // modal宽度,不支持百分比,可以数值,px,rpx单位
  20146 + width: {
  20147 + type: [String, Number],
  20148 + default: uni.$u.props.modal.width },
  20149 +
  20150 + // 确认按钮的样式,circle-圆形,square-方形,如设置,将不会显示取消按钮
  20151 + confirmButtonShape: {
  20152 + type: String,
  20153 + default: uni.$u.props.modal.confirmButtonShape } } };exports.default = _default;
  20154 +/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
  20155 +
  20156 +/***/ }),
  20157 +/* 524 */,
  20158 +/* 525 */,
  20159 +/* 526 */,
  20160 +/* 527 */,
  20161 +/* 528 */,
  20162 +/* 529 */,
  20163 +/* 530 */,
  20164 +/* 531 */
  20165 +/*!*****************************************************************************!*\
  20166 + !*** F:/minigroup/Bitcoin/node_modules/uview-ui/components/u-line/props.js ***!
  20167 + \*****************************************************************************/
  20168 +/*! no static exports found */
  20169 +/***/ (function(module, exports, __webpack_require__) {
  20170 +
  20171 +"use strict";
  20172 +/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0;var _default = {
  20173 + props: {
  20174 + color: {
  20175 + type: String,
  20176 + default: uni.$u.props.line.color },
  20177 +
  20178 + // 长度,竖向时表现为高度,横向时表现为长度,可以为百分比,带px单位的值等
  20179 + length: {
  20180 + type: [String, Number],
  20181 + default: uni.$u.props.line.length },
  20182 +
  20183 + // 线条方向,col-竖向,row-横向
  20184 + direction: {
  20185 + type: String,
  20186 + default: uni.$u.props.line.direction },
  20187 +
  20188 + // 是否显示细边框
  20189 + hairline: {
  20190 + type: Boolean,
  20191 + default: uni.$u.props.line.hairline },
  20192 +
  20193 + // 线条与上下左右元素的间距,字符串形式,如"30px"、"20px 30px"
  20194 + margin: {
  20195 + type: [String, Number],
  20196 + default: uni.$u.props.line.margin },
  20197 +
  20198 + // 是否虚线,true-实线,false-虚线
  20199 + dashed: {
  20200 + type: Boolean,
  20201 + default: uni.$u.props.line.dashed } } };exports.default = _default;
  20202 +/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
  20203 +
  20204 +/***/ }),
  20205 +/* 532 */,
  20206 +/* 533 */,
  20207 +/* 534 */,
  20208 +/* 535 */,
  20209 +/* 536 */
  20210 +/*!*****************************************!*\
  20211 + !*** F:/minigroup/Bitcoin/api/index.js ***!
  20212 + \*****************************************/
  20213 +/*! no static exports found */
  20214 +/***/ (function(module, exports, __webpack_require__) {
  20215 +
  20216 +"use strict";
  20217 +Object.defineProperty(exports, "__esModule", { value: true });exports.product_list = exports.arcList = exports.sortList = exports.getBanner = void 0;var _request = __webpack_require__(/*! @/utils/request.js */ 537);
  20218 +
  20219 +
  20220 +
  20221 +
  20222 +// 轮播图 /api/index/banner
  20223 +var getBanner = function getBanner() {return (0, _request.request)({ url: 'index/banner', method: 'post', data: {} });};
  20224 +
  20225 +// 首页分类 /api/index/sort_index
  20226 +exports.getBanner = getBanner;var sortList = function sortList() {return (0, _request.request)({ url: 'index/sort_index', method: 'post', data: {} });};
  20227 +
  20228 +// 首页相关资讯列表 /api/index/arc_list
  20229 +exports.sortList = sortList;var arcList = function arcList() {return (0, _request.request)({ url: 'index/arc_list', method: 'post', data: {} });};
  20230 +
  20231 +// 首页产品列表
  20232 +exports.arcList = arcList;var product_list = function product_list(data) {return (0, _request.request)({ url: 'product/product_list', method: 'post', data: data });};exports.product_list = product_list;
  20233 +
  20234 +/***/ }),
  20235 +/* 537 */
  20236 +/*!*********************************************!*\
  20237 + !*** F:/minigroup/Bitcoin/utils/request.js ***!
  20238 + \*********************************************/
  20239 +/*! no static exports found */
  20240 +/***/ (function(module, exports, __webpack_require__) {
  20241 +
  20242 +"use strict";
  20243 +/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.request = exports.baseURL = void 0;var baseURL = 'http://yuanjie.n.broing.cn/api/';exports.baseURL = baseURL;
  20244 +
  20245 +var request = function request(options) {
  20246 + return new Promise(function (resolve, reject) {
  20247 + uni.request({
  20248 + url: baseURL + options.url, //接口地址:前缀+方法中传入的地址
  20249 + method: options.method || 'GET', //请求方法:传入的方法或者默认是“GET”
  20250 + data: options.data || {}, //传递参数:传入的参数或者默认传递空集合
  20251 + header: {
  20252 + "Content-Type": "application/x-www-form-urlencoded",
  20253 + 'token': uni.getStorageSync("token") || "" //自定义请求头信息
  20254 + },
  20255 + success: function success(res) {
  20256 + console.log(res, uni.getStorageSync('token'));
  20257 + //返回的数据(不固定,看后端接口,这里是做了一个判断,如果不为true,用uni.showToast方法提示获取数据失败)
  20258 + if (res.data.code == 1) {
  20259 + resolve(res.data.data);
  20260 + } else {
  20261 + if (res.data.code == 401) {
  20262 + uni.navigateTo({
  20263 + url: '/login/login' });
  20264 +
  20265 + uni.clearStorageSync();
  20266 + }
  20267 + reject(res.data.msg);
  20268 + }
  20269 + // 如果不满足上述判断就输出数据
  20270 + },
  20271 + // 这里的接口请求,如果出现问题就输出接口请求失败
  20272 + fail: function fail(err) {
  20273 + console.log(err);
  20274 + reject(err);
  20275 + } });
  20276 +
  20277 + });
  20278 +};exports.request = request;
  20279 +/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
  20280 +
  20281 +/***/ }),
  20282 +/* 538 */
  20283 +/*!*******************************************!*\
  20284 + !*** F:/minigroup/Bitcoin/utils/toast.js ***!
  20285 + \*******************************************/
  20286 +/*! no static exports found */
  20287 +/***/ (function(module, exports, __webpack_require__) {
  20288 +
  20289 +"use strict";
  20290 +/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.router = exports.toa = exports.hideLoading = exports.loading = exports.success = exports.toast = void 0;var toast = function toast(title) {return uni.showToast({ title: title, icon: 'none' });};exports.toast = toast;
  20291 +var success = function success(title) {return uni.showToast({ title: title });};exports.success = success;
  20292 +var loading = function loading(title) {return uni.showLoading({ title: '加载中' });};exports.loading = loading;
  20293 +var hideLoading = function hideLoading() {return uni.hideLoading();};exports.hideLoading = hideLoading;
  20294 +
  20295 +var toa = {
  20296 + toast: function toast(title) {return uni.showToast({ title: title, icon: 'none' });},
  20297 + success: function success(title) {return uni.showToast({ title: title });},
  20298 + loading: function loading(title) {return uni.showLoading({ title: title || '加载中', mask: true });},
  20299 + hideLoading: function hideLoading() {return uni.hideLoading();} };exports.toa = toa;
  20300 +
  20301 +
  20302 +var router = {
  20303 + back: function back(num) {return uni.navigateBack({ delta: num || 1 });} };exports.router = router;
  20304 +/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
  20305 +
  20306 +/***/ }),
  20307 +/* 539 */
  20308 +/*!****************************************!*\
  20309 + !*** F:/minigroup/Bitcoin/api/mine.js ***!
  20310 + \****************************************/
  20311 +/*! no static exports found */
  20312 +/***/ (function(module, exports, __webpack_require__) {
  20313 +
  20314 +"use strict";
  20315 +Object.defineProperty(exports, "__esModule", { value: true });exports.doFeedback = exports.problemDetail = exports.problemList = exports.problemSort = exports.getContactQrcode = exports.logotLogin = exports.getUserInfo = void 0;var _request = __webpack_require__(/*! @/utils/request.js */ 537);
  20316 +
  20317 +
  20318 +
  20319 +// 会员中心 /api/user/index
  20320 +var getUserInfo = function getUserInfo() {return (0, _request.request)({ url: 'user/index', method: 'post', data: {} });};
  20321 +
  20322 +// 退出登录 /api/user/logout
  20323 +exports.getUserInfo = getUserInfo;var logotLogin = function logotLogin() {return (0, _request.request)({ url: 'user/logout', method: 'post', data: {} });};
  20324 +
  20325 +// 联系客服、品牌入驻 /api/common/contact
  20326 +exports.logotLogin = logotLogin;var getContactQrcode = function getContactQrcode(type) {return (0, _request.request)({ url: 'common/contact', method: 'post', data: { type: type } });};
  20327 +
  20328 +// 常见问题分类 /api/common/problem_sort
  20329 +exports.getContactQrcode = getContactQrcode;var problemSort = function problemSort() {return (0, _request.request)({ url: 'common/problem_sort', method: 'post', data: {} });};
  20330 +
  20331 +// 常见问题列表 /api/common/problem_list
  20332 +exports.problemSort = problemSort;var problemList = function problemList(sort_id, page, pagenum) {return (0, _request.request)({ url: 'common/problem_list', method: 'post', data: { sort_id: sort_id, page: page, pagenum: pagenum } });};
  20333 +
  20334 +// 常见问题详情 /api/common/problem_detail
  20335 +exports.problemList = problemList;var problemDetail = function problemDetail(problem_id) {return (0, _request.request)({ url: 'common/problem_detail', method: 'post', data: { problem_id: problem_id } });};
  20336 +
  20337 +// 意见反馈 /api/user/feedback
  20338 +exports.problemDetail = problemDetail;var doFeedback = function doFeedback(content, image) {return (0, _request.request)({ url: 'user/feedback', method: 'post', data: { content: content, image: image } });};exports.doFeedback = doFeedback;
  20339 +
  20340 +/***/ }),
  20341 +/* 540 */
  20342 +/*!********************************************!*\
  20343 + !*** F:/minigroup/Bitcoin/utils/upload.js ***!
  20344 + \********************************************/
  20345 +/*! no static exports found */
  20346 +/***/ (function(module, exports, __webpack_require__) {
  20347 +
  20348 +"use strict";
  20349 +/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.uploadFile = void 0;var _request = __webpack_require__(/*! ./request.js */ 537);
  20350 +var _toast = __webpack_require__(/*! ./toast.js */ 538);function ownKeys(object, enumerableOnly) {var keys = Object.keys(object);if (Object.getOwnPropertySymbols) {var symbols = Object.getOwnPropertySymbols(object);if (enumerableOnly) symbols = symbols.filter(function (sym) {return Object.getOwnPropertyDescriptor(object, sym).enumerable;});keys.push.apply(keys, symbols);}return keys;}function _objectSpread(target) {for (var i = 1; i < arguments.length; i++) {var source = arguments[i] != null ? arguments[i] : {};if (i % 2) {ownKeys(Object(source), true).forEach(function (key) {_defineProperty(target, key, source[key]);});} else if (Object.getOwnPropertyDescriptors) {Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));} else {ownKeys(Object(source)).forEach(function (key) {Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));});}}return target;}function _defineProperty(obj, key, value) {if (key in obj) {Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true });} else {obj[key] = value;}return obj;}
  20351 +var uploadFile = function uploadFile(tempFilePaths, data) {
  20352 + return new Promise(function (resolve, reject) {
  20353 + _toast.toa.loading('上传中..');
  20354 + uni.uploadFile({
  20355 + url: _request.baseURL + '/common/upload', //仅为示例,非真实的接口地址
  20356 + filePath: tempFilePaths,
  20357 + name: 'file',
  20358 + formData: _objectSpread(_objectSpread({}, data), {}, { token: uni.getStorageSync('token') || '' }),
  20359 + success: function success(res) {
  20360 + _toast.toa.hideLoading();
  20361 + console.log(res);
  20362 + if (res.statusCode == 200) {
  20363 + // return res
  20364 + resolve(JSON.parse(res.data).data);
  20365 + }
  20366 + },
  20367 + fail: function fail(err) {
  20368 + _toast.toa.hideLoading();
  20369 + (0, _toast.toast)(JSON.parse(err.data).msg);
  20370 + console.log(err, '上传报错');
  20371 + // return
  20372 + reject(err);
  20373 + } });
  20374 +
  20375 + });
  20376 +};exports.uploadFile = uploadFile;
  20377 +/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
  20378 +
  20379 +/***/ }),
  20380 +/* 541 */
  20381 +/*!*****************************************!*\
  20382 + !*** F:/minigroup/Bitcoin/api/login.js ***!
  20383 + \*****************************************/
  20384 +/*! no static exports found */
  20385 +/***/ (function(module, exports, __webpack_require__) {
  20386 +
  20387 +"use strict";
  20388 +Object.defineProperty(exports, "__esModule", { value: true });exports.getAgreement = exports.resetPassword = exports.sendCode = exports.register = exports.login = void 0;var _request = __webpack_require__(/*! @/utils/request.js */ 537);
  20389 +
  20390 +
  20391 +
  20392 +
  20393 +// 会员登录 /api/user/login
  20394 +var login = function login(account, password) {return (0, _request.request)({ url: 'user/login', method: 'post', data: { account: account, password: password } });};
  20395 +
  20396 +// 注册会员 /api/user/register
  20397 +exports.login = login;var register = function register(username, password, mobile, code) {return (0, _request.request)({ url: 'user/register', method: 'post', data: { username: username, password: password, mobile: mobile, code: code } });};
  20398 +
  20399 +// 发送验证码 /api/sms/send
  20400 +exports.register = register;var sendCode = function sendCode(mobile, event) {return (0, _request.request)({ url: 'sms/send', method: 'post', data: { mobile: mobile, event: event } });};
  20401 +
  20402 +// 重置密码 /api/user/resetpwd
  20403 +exports.sendCode = sendCode;var resetPassword = function resetPassword(mobile, captcha, newpassword, confirmpassword) {return (0, _request.request)({ url: 'user/resetpwd', method: 'post', data: { mobile: mobile, captcha: captcha, newpassword: newpassword, confirmpassword: confirmpassword } });};
  20404 +
  20405 +// 用户、隐私协议 /api/common/agreement type integer 是 类型:1=用户协议2=隐私协议
  20406 +exports.resetPassword = resetPassword;var getAgreement = function getAgreement(type) {return (0, _request.request)({ url: 'common/agreement ', method: 'post', data: { type: type } });};exports.getAgreement = getAgreement;
  20407 +
20056 /***/ }) 20408 /***/ })
20057 ]]); 20409 ]]);
20058 //# sourceMappingURL=../../.sourcemap/mp-weixin/common/vendor.js.map 20410 //# sourceMappingURL=../../.sourcemap/mp-weixin/common/vendor.js.map
1 (global["webpackJsonp"] = global["webpackJsonp"] || []).push([["node-modules/uview-ui/components/u-modal/u-modal"],{ 1 (global["webpackJsonp"] = global["webpackJsonp"] || []).push([["node-modules/uview-ui/components/u-modal/u-modal"],{
2 2
3 -/***/ 518:  
4 -/*!*********************************************************************************!*\  
5 - !*** F:/minigroup/Bitcoin/node_modules/uview-ui/components/u-modal/u-modal.vue ***!  
6 - \*********************************************************************************/  
7 -/*! no static exports found */  
8 -/***/ (function(module, __webpack_exports__, __webpack_require__) {  
9 -  
10 -"use strict";  
11 -__webpack_require__.r(__webpack_exports__);  
12 -/* harmony import */ var _u_modal_vue_vue_type_template_id_713d0fd3_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./u-modal.vue?vue&type=template&id=713d0fd3&scoped=true& */ 519);  
13 -/* harmony import */ var _u_modal_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./u-modal.vue?vue&type=script&lang=js& */ 521);  
14 -/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _u_modal_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _u_modal_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));  
15 -/* harmony import */ var _u_modal_vue_vue_type_style_index_0_id_713d0fd3_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./u-modal.vue?vue&type=style&index=0&id=713d0fd3&lang=scss&scoped=true& */ 524);  
16 -/* harmony import */ var _E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 13);  
17 -  
18 -var renderjs  
19 -  
20 -  
21 -  
22 -  
23 -  
24 -/* normalize component */  
25 -  
26 -var component = Object(_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(  
27 - _u_modal_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],  
28 - _u_modal_vue_vue_type_template_id_713d0fd3_scoped_true___WEBPACK_IMPORTED_MODULE_0__["render"],  
29 - _u_modal_vue_vue_type_template_id_713d0fd3_scoped_true___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],  
30 - false,  
31 - null,  
32 - "713d0fd3",  
33 - null,  
34 - false,  
35 - _u_modal_vue_vue_type_template_id_713d0fd3_scoped_true___WEBPACK_IMPORTED_MODULE_0__["components"],  
36 - renderjs  
37 -)  
38 -  
39 -component.options.__file = "node_modules/uview-ui/components/u-modal/u-modal.vue"  
40 -/* harmony default export */ __webpack_exports__["default"] = (component.exports);  
41 -  
42 -/***/ }),  
43 -  
44 -/***/ 519:  
45 -/*!****************************************************************************************************************************!*\  
46 - !*** F:/minigroup/Bitcoin/node_modules/uview-ui/components/u-modal/u-modal.vue?vue&type=template&id=713d0fd3&scoped=true& ***!  
47 - \****************************************************************************************************************************/  
48 -/*! exports provided: render, staticRenderFns, recyclableRender, components */  
49 -/***/ (function(module, __webpack_exports__, __webpack_require__) {  
50 -  
51 -"use strict";  
52 -__webpack_require__.r(__webpack_exports__);  
53 -/* harmony import */ var _E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_u_modal_vue_vue_type_template_id_713d0fd3_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./u-modal.vue?vue&type=template&id=713d0fd3&scoped=true& */ 520);  
54 -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_u_modal_vue_vue_type_template_id_713d0fd3_scoped_true___WEBPACK_IMPORTED_MODULE_0__["render"]; });  
55 -  
56 -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_u_modal_vue_vue_type_template_id_713d0fd3_scoped_true___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });  
57 -  
58 -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_u_modal_vue_vue_type_template_id_713d0fd3_scoped_true___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; });  
59 -  
60 -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_u_modal_vue_vue_type_template_id_713d0fd3_scoped_true___WEBPACK_IMPORTED_MODULE_0__["components"]; });  
61 -  
62 -  
63 -  
64 -/***/ }),  
65 -  
66 -/***/ 520:  
67 -/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\  
68 - !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!F:/minigroup/Bitcoin/node_modules/uview-ui/components/u-modal/u-modal.vue?vue&type=template&id=713d0fd3&scoped=true& ***!  
69 - \****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/  
70 -/*! exports provided: render, staticRenderFns, recyclableRender, components */  
71 -/***/ (function(module, __webpack_exports__, __webpack_require__) {  
72 -  
73 -"use strict";  
74 -__webpack_require__.r(__webpack_exports__);  
75 -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });  
76 -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });  
77 -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; });  
78 -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; });  
79 -var components  
80 -try {  
81 - components = {  
82 - uPopup: function() {  
83 - return Promise.all(/*! import() | node-modules/uview-ui/components/u-popup/u-popup */[__webpack_require__.e("common/vendor"), __webpack_require__.e("node-modules/uview-ui/components/u-popup/u-popup")]).then(__webpack_require__.bind(null, /*! uview-ui/components/u-popup/u-popup.vue */ 342))  
84 - },  
85 - uLine: function() {  
86 - return Promise.all(/*! import() | node-modules/uview-ui/components/u-line/u-line */[__webpack_require__.e("common/vendor"), __webpack_require__.e("node-modules/uview-ui/components/u-line/u-line")]).then(__webpack_require__.bind(null, /*! uview-ui/components/u-line/u-line.vue */ 526))  
87 - },  
88 - uLoadingIcon: function() {  
89 - return Promise.all(/*! import() | node-modules/uview-ui/components/u-loading-icon/u-loading-icon */[__webpack_require__.e("common/vendor"), __webpack_require__.e("node-modules/uview-ui/components/u-loading-icon/u-loading-icon")]).then(__webpack_require__.bind(null, /*! uview-ui/components/u-loading-icon/u-loading-icon.vue */ 372))  
90 - }  
91 - }  
92 -} catch (e) {  
93 - if (  
94 - e.message.indexOf("Cannot find module") !== -1 &&  
95 - e.message.indexOf(".vue") !== -1  
96 - ) {  
97 - console.error(e.message)  
98 - console.error("1. 排查组件名称拼写是否正确")  
99 - console.error(  
100 - "2. 排查组件是否符合 easycom 规范,文档:https://uniapp.dcloud.net.cn/collocation/pages?id=easycom"  
101 - )  
102 - console.error(  
103 - "3. 若组件不符合 easycom 规范,需手动引入,并在 components 中注册该组件"  
104 - )  
105 - } else {  
106 - throw e  
107 - }  
108 -}  
109 -var render = function() {  
110 - var _vm = this  
111 - var _h = _vm.$createElement  
112 - var _c = _vm._self._c || _h  
113 - var a0 = {  
114 - borderRadius: "6px",  
115 - overflow: "hidden",  
116 - marginTop: "-" + _vm.$u.addUnit(_vm.negativeTop)  
117 - }  
118 - var g0 = _vm.$u.addUnit(_vm.width)  
119 - _vm.$mp.data = Object.assign(  
120 - {},  
121 - {  
122 - $root: {  
123 - a0: a0,  
124 - g0: g0  
125 - }  
126 - }  
127 - )  
128 -}  
129 -var recyclableRender = false  
130 -var staticRenderFns = []  
131 -render._withStripped = true  
132 -  
133 -  
134 -  
135 -/***/ }),  
136 -  
137 /***/ 521: 3 /***/ 521:
138 /*!**********************************************************************************************************!*\ 4 /*!**********************************************************************************************************!*\
139 !*** F:/minigroup/Bitcoin/node_modules/uview-ui/components/u-modal/u-modal.vue?vue&type=script&lang=js& ***! 5 !*** F:/minigroup/Bitcoin/node_modules/uview-ui/components/u-modal/u-modal.vue?vue&type=script&lang=js& ***!
@@ -407,6 +273,140 @@ __webpack_require__.r(__webpack_exports__); @@ -407,6 +273,140 @@ __webpack_require__.r(__webpack_exports__);
407 if(false) { var cssReload; } 273 if(false) { var cssReload; }
408 274
409 275
  276 +/***/ }),
  277 +
  278 +/***/ 542:
  279 +/*!*********************************************************************************!*\
  280 + !*** F:/minigroup/Bitcoin/node_modules/uview-ui/components/u-modal/u-modal.vue ***!
  281 + \*********************************************************************************/
  282 +/*! no static exports found */
  283 +/***/ (function(module, __webpack_exports__, __webpack_require__) {
  284 +
  285 +"use strict";
  286 +__webpack_require__.r(__webpack_exports__);
  287 +/* harmony import */ var _u_modal_vue_vue_type_template_id_713d0fd3_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./u-modal.vue?vue&type=template&id=713d0fd3&scoped=true& */ 543);
  288 +/* harmony import */ var _u_modal_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./u-modal.vue?vue&type=script&lang=js& */ 521);
  289 +/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _u_modal_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _u_modal_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));
  290 +/* harmony import */ var _u_modal_vue_vue_type_style_index_0_id_713d0fd3_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./u-modal.vue?vue&type=style&index=0&id=713d0fd3&lang=scss&scoped=true& */ 524);
  291 +/* harmony import */ var _E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 13);
  292 +
  293 +var renderjs
  294 +
  295 +
  296 +
  297 +
  298 +
  299 +/* normalize component */
  300 +
  301 +var component = Object(_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
  302 + _u_modal_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
  303 + _u_modal_vue_vue_type_template_id_713d0fd3_scoped_true___WEBPACK_IMPORTED_MODULE_0__["render"],
  304 + _u_modal_vue_vue_type_template_id_713d0fd3_scoped_true___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
  305 + false,
  306 + null,
  307 + "713d0fd3",
  308 + null,
  309 + false,
  310 + _u_modal_vue_vue_type_template_id_713d0fd3_scoped_true___WEBPACK_IMPORTED_MODULE_0__["components"],
  311 + renderjs
  312 +)
  313 +
  314 +component.options.__file = "node_modules/uview-ui/components/u-modal/u-modal.vue"
  315 +/* harmony default export */ __webpack_exports__["default"] = (component.exports);
  316 +
  317 +/***/ }),
  318 +
  319 +/***/ 543:
  320 +/*!****************************************************************************************************************************!*\
  321 + !*** F:/minigroup/Bitcoin/node_modules/uview-ui/components/u-modal/u-modal.vue?vue&type=template&id=713d0fd3&scoped=true& ***!
  322 + \****************************************************************************************************************************/
  323 +/*! exports provided: render, staticRenderFns, recyclableRender, components */
  324 +/***/ (function(module, __webpack_exports__, __webpack_require__) {
  325 +
  326 +"use strict";
  327 +__webpack_require__.r(__webpack_exports__);
  328 +/* harmony import */ var _E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_u_modal_vue_vue_type_template_id_713d0fd3_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./u-modal.vue?vue&type=template&id=713d0fd3&scoped=true& */ 544);
  329 +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_u_modal_vue_vue_type_template_id_713d0fd3_scoped_true___WEBPACK_IMPORTED_MODULE_0__["render"]; });
  330 +
  331 +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_u_modal_vue_vue_type_template_id_713d0fd3_scoped_true___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
  332 +
  333 +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_u_modal_vue_vue_type_template_id_713d0fd3_scoped_true___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; });
  334 +
  335 +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_E_HBuilderX_2_6_11_20200409_HBuilderX_2_6_11_20200409_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_u_modal_vue_vue_type_template_id_713d0fd3_scoped_true___WEBPACK_IMPORTED_MODULE_0__["components"]; });
  336 +
  337 +
  338 +
  339 +/***/ }),
  340 +
  341 +/***/ 544:
  342 +/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  343 + !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!F:/minigroup/Bitcoin/node_modules/uview-ui/components/u-modal/u-modal.vue?vue&type=template&id=713d0fd3&scoped=true& ***!
  344 + \****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
  345 +/*! exports provided: render, staticRenderFns, recyclableRender, components */
  346 +/***/ (function(module, __webpack_exports__, __webpack_require__) {
  347 +
  348 +"use strict";
  349 +__webpack_require__.r(__webpack_exports__);
  350 +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
  351 +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
  352 +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; });
  353 +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; });
  354 +var components
  355 +try {
  356 + components = {
  357 + uPopup: function() {
  358 + return Promise.all(/*! import() | node-modules/uview-ui/components/u-popup/u-popup */[__webpack_require__.e("common/vendor"), __webpack_require__.e("node-modules/uview-ui/components/u-popup/u-popup")]).then(__webpack_require__.bind(null, /*! uview-ui/components/u-popup/u-popup.vue */ 342))
  359 + },
  360 + uLine: function() {
  361 + return Promise.all(/*! import() | node-modules/uview-ui/components/u-line/u-line */[__webpack_require__.e("common/vendor"), __webpack_require__.e("node-modules/uview-ui/components/u-line/u-line")]).then(__webpack_require__.bind(null, /*! uview-ui/components/u-line/u-line.vue */ 526))
  362 + },
  363 + uLoadingIcon: function() {
  364 + return Promise.all(/*! import() | node-modules/uview-ui/components/u-loading-icon/u-loading-icon */[__webpack_require__.e("common/vendor"), __webpack_require__.e("node-modules/uview-ui/components/u-loading-icon/u-loading-icon")]).then(__webpack_require__.bind(null, /*! uview-ui/components/u-loading-icon/u-loading-icon.vue */ 372))
  365 + }
  366 + }
  367 +} catch (e) {
  368 + if (
  369 + e.message.indexOf("Cannot find module") !== -1 &&
  370 + e.message.indexOf(".vue") !== -1
  371 + ) {
  372 + console.error(e.message)
  373 + console.error("1. 排查组件名称拼写是否正确")
  374 + console.error(
  375 + "2. 排查组件是否符合 easycom 规范,文档:https://uniapp.dcloud.net.cn/collocation/pages?id=easycom"
  376 + )
  377 + console.error(
  378 + "3. 若组件不符合 easycom 规范,需手动引入,并在 components 中注册该组件"
  379 + )
  380 + } else {
  381 + throw e
  382 + }
  383 +}
  384 +var render = function() {
  385 + var _vm = this
  386 + var _h = _vm.$createElement
  387 + var _c = _vm._self._c || _h
  388 + var a0 = {
  389 + borderRadius: "6px",
  390 + overflow: "hidden",
  391 + marginTop: "-" + _vm.$u.addUnit(_vm.negativeTop)
  392 + }
  393 + var g0 = _vm.$u.addUnit(_vm.width)
  394 + _vm.$mp.data = Object.assign(
  395 + {},
  396 + {
  397 + $root: {
  398 + a0: a0,
  399 + g0: g0
  400 + }
  401 + }
  402 + )
  403 +}
  404 +var recyclableRender = false
  405 +var staticRenderFns = []
  406 +render._withStripped = true
  407 +
  408 +
  409 +
410 /***/ }) 410 /***/ })
411 411
412 }]); 412 }]);
@@ -415,7 +415,7 @@ __webpack_require__.r(__webpack_exports__); @@ -415,7 +415,7 @@ __webpack_require__.r(__webpack_exports__);
415 'node-modules/uview-ui/components/u-modal/u-modal-create-component', 415 'node-modules/uview-ui/components/u-modal/u-modal-create-component',
416 { 416 {
417 'node-modules/uview-ui/components/u-modal/u-modal-create-component':(function(module, exports, __webpack_require__){ 417 'node-modules/uview-ui/components/u-modal/u-modal-create-component':(function(module, exports, __webpack_require__){
418 - __webpack_require__('1')['createComponent'](__webpack_require__(518)) 418 + __webpack_require__('1')['createComponent'](__webpack_require__(542))
419 }) 419 })
420 }, 420 },
421 [['node-modules/uview-ui/components/u-modal/u-modal-create-component']] 421 [['node-modules/uview-ui/components/u-modal/u-modal-create-component']]
@@ -156,7 +156,7 @@ __webpack_require__.r(__webpack_exports__); @@ -156,7 +156,7 @@ __webpack_require__.r(__webpack_exports__);
156 /***/ (function(module, exports, __webpack_require__) { 156 /***/ (function(module, exports, __webpack_require__) {
157 157
158 "use strict"; 158 "use strict";
159 -/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0;var helangWaterfall = function helangWaterfall() {Promise.all(/*! require.ensure | uni_modules/custom-waterfalls-flow/components/custom-waterfalls-flow/custom-waterfalls-flow */[__webpack_require__.e("common/vendor"), __webpack_require__.e("uni_modules/custom-waterfalls-flow/components/custom-waterfalls-flow/custom-waterfalls-flow")]).then((function () {return resolve(__webpack_require__(/*! @/uni_modules/custom-waterfalls-flow/components/custom-waterfalls-flow/custom-waterfalls-flow.vue */ 320));}).bind(null, __webpack_require__)).catch(__webpack_require__.oe);};var Botton = function Botton() {__webpack_require__.e(/*! require.ensure | components/Botton */ "components/Botton").then((function () {return resolve(__webpack_require__(/*! @/components/Botton.vue */ 327));}).bind(null, __webpack_require__)).catch(__webpack_require__.oe);};var _default = 159 +/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0;var _regenerator = _interopRequireDefault(__webpack_require__(/*! ./node_modules/@babel/runtime/regenerator */ 36));
160 160
161 161
162 162
@@ -273,6 +273,12 @@ __webpack_require__.r(__webpack_exports__); @@ -273,6 +273,12 @@ __webpack_require__.r(__webpack_exports__);
273 273
274 274
275 275
  276 +var _index = __webpack_require__(/*! @/api/index */ 536);function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {try {var info = gen[key](arg);var value = info.value;} catch (error) {reject(error);return;}if (info.done) {resolve(value);} else {Promise.resolve(value).then(_next, _throw);}}function _asyncToGenerator(fn) {return function () {var self = this,args = arguments;return new Promise(function (resolve, reject) {var gen = fn.apply(self, args);function _next(value) {asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value);}function _throw(err) {asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err);}_next(undefined);});};}var helangWaterfall = function helangWaterfall() {Promise.all(/*! require.ensure | uni_modules/custom-waterfalls-flow/components/custom-waterfalls-flow/custom-waterfalls-flow */[__webpack_require__.e("common/vendor"), __webpack_require__.e("uni_modules/custom-waterfalls-flow/components/custom-waterfalls-flow/custom-waterfalls-flow")]).then((function () {return resolve(__webpack_require__(/*! @/uni_modules/custom-waterfalls-flow/components/custom-waterfalls-flow/custom-waterfalls-flow.vue */ 320));}).bind(null, __webpack_require__)).catch(__webpack_require__.oe);};var Botton = function Botton() {__webpack_require__.e(/*! require.ensure | components/Botton */ "components/Botton").then((function () {return resolve(__webpack_require__(/*! @/components/Botton.vue */ 327));}).bind(null, __webpack_require__)).catch(__webpack_require__.oe);};var _default =
  277 +
  278 +
  279 +
  280 +
  281 +
276 282
277 283
278 { 284 {
@@ -292,37 +298,68 @@ __webpack_require__.r(__webpack_exports__); @@ -292,37 +298,68 @@ __webpack_require__.r(__webpack_exports__);
292 leftlist: [1, 2, 3], 298 leftlist: [1, 2, 3],
293 fallindex: 1, 299 fallindex: 1,
294 //瀑布 300 //瀑布
295 - list: [{  
296 - image: 'https://via.placeholder.com/200x500.png/ff0000',  
297 - title: '我是标题1',  
298 - desc: '描述描述描述描述描述描述描述描述1' }, 301 + list: [],
  302 + categoryList: [], // 分类列表
  303 + categoryLength: 0, //分类数量
  304 + informationList: [], // 相关资讯
  305 + currentpage: 1 //分页
  306 + };
  307 + },
  308 + onShow: function onShow() {
  309 + this.initial();
  310 + this.product_list();
  311 + },
  312 + onLoad: function onLoad() {
299 313
300 - {  
301 - image: 'https://via.placeholder.com/200x200.png/2878ff',  
302 - title: '我是标题2',  
303 - desc: '描述描述描述描述描述描述描述描述2' },  
304 - {  
305 - image: 'https://via.placeholder.com/200x200.png/2878ff',  
306 - title: '我是标题2',  
307 - desc: '描述描述描述描述描述描述描述描述2' }, 314 + },
  315 + methods: {
  316 + //产品列表
  317 + product_list: function product_list() {var _this = this;return _asyncToGenerator( /*#__PURE__*/_regenerator.default.mark(function _callee() {var obj, res;return _regenerator.default.wrap(function _callee$(_context) {while (1) {switch (_context.prev = _context.next) {case 0:
  318 + obj = {
  319 + type: _this.fallindex,
  320 + page: _this.currentpage,
  321 + pagenum: 15 };_context.prev = 1;_context.next = 4;return (
  322 +
  323 +
  324 + (0, _index.product_list)(obj));case 4:res = _context.sent;
  325 + console.log('产品列表', res);
  326 + _this.list = res.list.data;
  327 + console.log('产品列表', _this.list);
  328 + // 保存数据
  329 + _context.next = 14;break;case 10:_context.prev = 10;_context.t0 = _context["catch"](1);
  330 + uni.showToast({
  331 + title: _context.t0,
  332 + icon: 'none' });
  333 +
  334 + console.log('product_list', _context.t0);case 14:case "end":return _context.stop();}}}, _callee, null, [[1, 10]]);}))();
308 335
309 - {  
310 - image: 'https://via.placeholder.com/200x200.png/2878ff',  
311 - title: '我是标题2',  
312 - desc: '描述描述描述描述描述描述描述描述2' }, 336 + },
  337 + initial: function initial() {var _this2 = this;return _asyncToGenerator( /*#__PURE__*/_regenerator.default.mark(function _callee2() {var res, sortRes, information;return _regenerator.default.wrap(function _callee2$(_context2) {while (1) {switch (_context2.prev = _context2.next) {case 0:_context2.prev = 0;_context2.next = 3;return (
313 338
314 - {  
315 - image: 'https://via.placeholder.com/200x200.png/2878ff',  
316 - title: '我是标题2',  
317 - desc: '描述描述描述描述描述描述描述描述2' }] };  
318 339
  340 + (0, _index.getBanner)());case 3:res = _context2.sent;_context2.next = 6;return (
319 341
  342 + (0, _index.sortList)());case 6:sortRes = _context2.sent;_context2.next = 9;return (
320 343
321 - },  
322 - onLoad: function onLoad() { 344 + (0, _index.arcList)());case 9:information = _context2.sent;
  345 + // 轮播图
  346 + _this2.list1 = res.list;
  347 + _this2.categoryLength = sortRes.list.length;
  348 + _this2.categoryList = sortRes.list.length > 8 ? sortRes.list.slice(0, 7) : sortRes.list;
  349 + _this2.informationList = information.list.length > 3 ? information.list.slice(0, 3) : information.
  350 + list;
  351 + console.log(sortRes, '分类');
  352 + console.log('getBanner', res);
  353 + console.log(information, '资讯列表');
  354 + // 保存数据
  355 + _context2.next = 23;break;case 19:_context2.prev = 19;_context2.t0 = _context2["catch"](0);
  356 + uni.showToast({
  357 + title: _context2.t0,
  358 + icon: 'none' });
  359 +
  360 + console.log('getBanner', _context2.t0);case 23:case "end":return _context2.stop();}}}, _callee2, null, [[0, 19]]);}))();
323 361
324 }, 362 },
325 - methods: {  
326 changefall: function changefall(e) { 363 changefall: function changefall(e) {
327 this.fallindex = e; 364 this.fallindex = e;
328 }, 365 },
1 -<view class="content"><view class="top"><view class="logo"><image src="../../static/logo.png" mode></image><view class="search"><view data-event-opts="{{[['tap',[['gosourch',['$event']]]]]}}" class="tosear" bindtap="__e"><input type="text" value="" placeholder="搜索" disabled="true" placeholder-style="text-align: center;font-size: 28rpx; color: rgba(194,194,194,1);"/><image src="../../static/icon-search.png" mode></image></view></view></view><view class="banner"><u-swiper vue-id="8dd740cc-1" list="{{list1}}" indicator="{{true}}" indicatorMode="dot" radius="12" height="160" circular="{{true}}" data-event-opts="{{[['^click',[['click']]]]}}" bind:click="__e" bind:__l="__l"></u-swiper></view></view><view class="contail"><view class="nev"><block wx:for="{{nevlist}}" wx:for-item="item" wx:for-index="index" wx:key="index"><view class="bar"><image class="barimg" src="../../static/logo.png" mode></image><text>第十四大</text></view></block><view class="bar"><image class="barimg" src="../../static/logo.png" mode></image><text>更多</text></view></view><view class="info"><view class="leftbox"><view class="lefttitle"><view class="title">相关资讯</view><view class="more">更多<image src="../../static/ic-arrow.png" mode></image></view></view><view class="newbar"><block wx:for="{{leftlist}}" wx:for-item="item" wx:for-index="index" wx:key="index"><view>·比特币明日走势图</view></block></view></view><view class="rightbox"><view class="righttitle"><view class="title">相关资讯</view><view class="active">充值活动</view></view><view class="activeimg"><image src="../../static/Rectangle 2372.png" mode></image></view></view></view><view class="waterfall"><view class="falltitle"><view data-event-opts="{{[['tap',[['changefall',[1]]]]]}}" class="{{['fallnev',(fallindex==1)?'newfall':'']}}" bindtap="__e">猜你喜欢<view class="tip"></view></view><view data-event-opts="{{[['tap',[['changefall',[2]]]]]}}" class="{{['fallnev',(fallindex==2)?'newfall':'']}}" bindtap="__e">最新<view class="tip"></view></view><view data-event-opts="{{[['tap',[['changefall',[3]]]]]}}" class="{{['fallnev',(fallindex==3)?'newfall':'']}}" bindtap="__e">人气<view class="tip"></view></view></view><view class="misslist"><custom-waterfalls-flow vue-id="8dd740cc-2" value="{{list}}" bind:__l="__l" vue-slots="{{['default']}}"><block wx:for="{{list}}" wx:for-item="item" wx:for-index="index" wx:key="index"><view class="item" slot="slot{{index}}"><view class="title">{{item.title}}</view><view class="desc"><text>张三</text><view class="money"><text>¥</text>6666</view></view></view></block></custom-waterfalls-flow></view></view></view><botton vue-id="8dd740cc-3" flag="{{1}}" bind:__l="__l"></botton></view>  
  1 +<view class="content"><view class="top"><view class="logo"><image src="/static/ic_logo.png" mode></image><view class="search"><view data-event-opts="{{[['tap',[['gosourch',['$event']]]]]}}" class="tosear" bindtap="__e"><input type="text" value="" placeholder="搜索" disabled="true" placeholder-style="text-align: center;font-size: 28rpx; color: rgba(194,194,194,1);"/><image src="/static/icon-search.png" mode></image></view></view></view><view class="banner"><u-swiper vue-id="8dd740cc-1" keyName="image_preview" list="{{list1}}" indicator="{{true}}" indicatorMode="dot" radius="12" height="160" circular="{{true}}" data-event-opts="{{[['^click',[['click']]]]}}" bind:click="__e" bind:__l="__l"></u-swiper></view></view><view class="contail"><view class="nev"><block wx:for="{{categoryList}}" wx:for-item="item" wx:for-index="index" wx:key="index"><view class="bar"><image class="barimg" src="{{item.image_preview}}" mode></image><text>{{item.name}}</text></view></block><block wx:if="{{categoryLength>8}}"><view class="bar"><image class="barimg" src="/static/logo.png" mode></image><text>更多</text></view></block></view><view class="info"><view class="leftbox"><view class="lefttitle"><view class="title">相关资讯</view><view class="more">更多<image src="/static/ic-arrow.png" mode></image></view></view><view class="newbar"><block wx:for="{{informationList}}" wx:for-item="item" wx:for-index="index" wx:key="index"><view>{{"·"+item.title}}</view></block></view></view><view class="rightbox"><view class="righttitle"><view class="title">相关资讯</view><view class="active">充值活动</view></view><view class="activeimg"><image src="/static/Rectangle 2372.png" mode></image></view></view></view><view class="waterfall"><view class="falltitle"><view data-event-opts="{{[['tap',[['changefall',[1]]]]]}}" class="{{['fallnev',(fallindex==1)?'newfall':'']}}" bindtap="__e">猜你喜欢<view class="tip"></view></view><view data-event-opts="{{[['tap',[['changefall',[2]]]]]}}" class="{{['fallnev',(fallindex==2)?'newfall':'']}}" bindtap="__e">最新<view class="tip"></view></view><view data-event-opts="{{[['tap',[['changefall',[3]]]]]}}" class="{{['fallnev',(fallindex==3)?'newfall':'']}}" bindtap="__e">人气<view class="tip"></view></view></view><view class="misslist"><custom-waterfalls-flow vue-id="8dd740cc-2" value="{{list}}" bind:__l="__l" vue-slots="{{['default']}}"><block wx:for="{{list}}" wx:for-item="item" wx:for-index="index" wx:key="index"><view class="item" slot="slot{{index}}"><view class="title">{{item.name}}</view><view class="desc"><text>{{item.sort.name}}</text><view class="money"><text>¥</text>6666</view></view></view></block></custom-waterfalls-flow></view></view></view><botton vue-id="8dd740cc-3" flag="{{1}}" bind:__l="__l"></botton></view>
@@ -37,8 +37,8 @@ page { @@ -37,8 +37,8 @@ page {
37 align-items: center; 37 align-items: center;
38 } 38 }
39 .content .top .logo image { 39 .content .top .logo image {
40 - width: 98rpx;  
41 - height: 50rpx; 40 + width: 84rpx;
  41 + height: 74rpx;
42 margin-right: 36rpx; 42 margin-right: 36rpx;
43 } 43 }
44 .content .top .logo .search { 44 .content .top .logo .search {
  1 +{
  2 + "navigationBarTitleText": "用户协议",
  3 + "enablePullDownRefresh": false,
  4 + "usingComponents": {}
  5 +}
@@ -130,45 +130,84 @@ __webpack_require__.r(__webpack_exports__); @@ -130,45 +130,84 @@ __webpack_require__.r(__webpack_exports__);
130 /***/ (function(module, exports, __webpack_require__) { 130 /***/ (function(module, exports, __webpack_require__) {
131 131
132 "use strict"; 132 "use strict";
133 -Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; //  
134 -//  
135 -//  
136 -//  
137 -//  
138 -//  
139 -//  
140 -//  
141 -//  
142 -//  
143 -//  
144 -//  
145 -//  
146 -//  
147 -//  
148 -//  
149 -//  
150 -//  
151 -//  
152 -//  
153 -//  
154 -//  
155 -//  
156 -//  
157 -//  
158 -//  
159 -//  
160 -//  
161 -//  
162 -//  
163 -//  
164 -//  
165 -var _default =  
166 -{  
167 - data: function data() {  
168 - return {}; 133 +/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0;var _regenerator = _interopRequireDefault(__webpack_require__(/*! ./node_modules/@babel/runtime/regenerator */ 36));
  134 +
  135 +
  136 +
  137 +
  138 +
  139 +
  140 +
  141 +
  142 +
  143 +
  144 +
  145 +
  146 +
  147 +
  148 +
169 149
170 150
171 - } };exports.default = _default; 151 +
  152 +
  153 +
  154 +
  155 +
  156 +
  157 +
  158 +
  159 +
  160 +
  161 +
  162 +
  163 +
  164 +
  165 +
  166 +var _login2 = __webpack_require__(/*! @/api/login.js */ 541);
  167 +var _toast = __webpack_require__(/*! @/utils/toast.js */ 538);function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {try {var info = gen[key](arg);var value = info.value;} catch (error) {reject(error);return;}if (info.done) {resolve(value);} else {Promise.resolve(value).then(_next, _throw);}}function _asyncToGenerator(fn) {return function () {var self = this,args = arguments;return new Promise(function (resolve, reject) {var gen = fn.apply(self, args);function _next(value) {asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value);}function _throw(err) {asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err);}_next(undefined);});};}var _default =
  168 +{
  169 + data: function data() {
  170 + return {
  171 + account: '',
  172 + password: '' };
  173 +
  174 + },
  175 + methods: {
  176 + forget: function forget() {
  177 + uni.navigateTo({
  178 + url: '/pages/login/password' });
  179 +
  180 + },
  181 + register: function register() {
  182 + uni.navigateTo({
  183 + url: '/pages/login/register' });
  184 +
  185 + },
  186 + // 登录
  187 + doLogin: function doLogin() {
  188 + if (!this.account) return _toast.toa.toast('请输入账号');
  189 + if (!this.password) return _toast.toa.toast('请输入密码');
  190 + this.login();
  191 + },
  192 + login: function login() {var _this = this;return _asyncToGenerator( /*#__PURE__*/_regenerator.default.mark(function _callee() {var res;return _regenerator.default.wrap(function _callee$(_context) {while (1) {switch (_context.prev = _context.next) {case 0:_context.prev = 0;_context.next = 3;return (
  193 +
  194 + (0, _login2.login)(_this.account, _this.password));case 3:res = _context.sent;
  195 + console.log('login', res);
  196 + uni.setStorageSync('userInfo', res.userinfo);
  197 + uni.setStorageSync('token', res.userinfo.token);
  198 + setTimeout(function () {
  199 + _toast.toa.success('登录成功');
  200 + }, 200);
  201 + uni.reLaunch({
  202 + url: '/pages/index/index' });
  203 +
  204 + // 保存数据
  205 + _context.next = 15;break;case 11:_context.prev = 11;_context.t0 = _context["catch"](0);
  206 + uni.showToast({ title: _context.t0, icon: 'none' });
  207 + console.log('login', _context.t0);case 15:case "end":return _context.stop();}}}, _callee, null, [[0, 11]]);}))();
  208 +
  209 + } } };exports.default = _default;
  210 +/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
172 211
173 /***/ }), 212 /***/ }),
174 213
1 { 1 {
2 - "navigationBarTitleText": "", 2 + "navigationBarTitleText": "登录",
3 "enablePullDownRefresh": false, 3 "enablePullDownRefresh": false,
4 "usingComponents": {} 4 "usingComponents": {}
5 } 5 }
1 -<view class="login"><view class="icon"><image class="bgimg" src="../../static/ic_logo.png" mode></image><view class="bar flexwrap"><view class="name">用户名:</view><view class="last name"><input type="text" value="" placeholder="请输入用户名"/></view></view><view class="bar flexwrap"><view class="name">密码:</view><view class="last name"><input type="text" value="" placeholder="密码:"/></view></view><view class="loginbtn">登录</view><view class="passway"><text>忘记密码</text><text>没有账号,去注册</text></view></view></view>  
  1 +<view class="login"><view class="icon"><image class="bgimg" src="../../static/ic_logo.png" mode></image><view class="bar flexwrap"><view class="name">用户名:</view><view class="last name"><input maxlength="16" type="text" value="{{account}}" placeholder="请输入用户名" data-event-opts="{{[['input',[['__set_model',['','account','$event',[]]]]]]}}" bindinput="__e"/></view></view><view class="bar flexwrap"><view class="name">密码:</view><view class="last name"><input maxlength="16" type="text" value="{{password}}" placeholder="密码:" data-event-opts="{{[['input',[['__set_model',['','password','$event',[]]]]]]}}" bindinput="__e"/></view></view><view data-event-opts="{{[['tap',[['doLogin',['$event']]]]]}}" class="loginbtn" bindtap="__e">登录</view><view class="passway"><text data-event-opts="{{[['tap',[['forget',['$event']]]]]}}" bindtap="__e">忘记密码</text><text data-event-opts="{{[['tap',[['register',['$event']]]]]}}" bindtap="__e">没有账号,去注册</text></view></view></view>
@@ -48,8 +48,8 @@ @@ -48,8 +48,8 @@
48 .login .icon .bar .name { 48 .login .icon .bar .name {
49 width: 180rpx; 49 width: 180rpx;
50 } 50 }
51 -.login .icon .bar .lastname {  
52 - width: 300rpx; 51 +.login .icon .bar .last {
  52 + flex: 1;
53 } 53 }
54 .login .icon .loginbtn { 54 .login .icon .loginbtn {
55 margin-top: 100rpx; 55 margin-top: 100rpx;
@@ -130,61 +130,115 @@ __webpack_require__.r(__webpack_exports__); @@ -130,61 +130,115 @@ __webpack_require__.r(__webpack_exports__);
130 /***/ (function(module, exports, __webpack_require__) { 130 /***/ (function(module, exports, __webpack_require__) {
131 131
132 "use strict"; 132 "use strict";
133 -Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; //  
134 -//  
135 -//  
136 -//  
137 -//  
138 -//  
139 -//  
140 -//  
141 -//  
142 -//  
143 -//  
144 -//  
145 -//  
146 -//  
147 -//  
148 -//  
149 -//  
150 -//  
151 -//  
152 -//  
153 -//  
154 -//  
155 -//  
156 -//  
157 -//  
158 -//  
159 -//  
160 -//  
161 -//  
162 -//  
163 -//  
164 -//  
165 -//  
166 -//  
167 -//  
168 -//  
169 -//  
170 -//  
171 -//  
172 -//  
173 -//  
174 -//  
175 -//  
176 -//  
177 -//  
178 -//  
179 -//  
180 -//  
181 -var _default =  
182 -{  
183 - data: function data() {  
184 - return {}; 133 +/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0;var _regenerator = _interopRequireDefault(__webpack_require__(/*! ./node_modules/@babel/runtime/regenerator */ 36));
  134 +
  135 +
  136 +
  137 +
  138 +
  139 +
  140 +
  141 +
  142 +
  143 +
  144 +
  145 +
  146 +
  147 +
  148 +
  149 +
  150 +
  151 +
  152 +
  153 +
  154 +
  155 +
  156 +
185 157
186 158
187 - } };exports.default = _default; 159 +
  160 +
  161 +
  162 +
  163 +
  164 +
  165 +
  166 +
  167 +
  168 +
  169 +
  170 +
  171 +
  172 +
  173 +
  174 +
  175 +
  176 +
  177 +
  178 +
  179 +
  180 +
  181 +
  182 +var _login = __webpack_require__(/*! @/api/login.js */ 541);
  183 +var _toast = __webpack_require__(/*! @/utils/toast.js */ 538);function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {try {var info = gen[key](arg);var value = info.value;} catch (error) {reject(error);return;}if (info.done) {resolve(value);} else {Promise.resolve(value).then(_next, _throw);}}function _asyncToGenerator(fn) {return function () {var self = this,args = arguments;return new Promise(function (resolve, reject) {var gen = fn.apply(self, args);function _next(value) {asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value);}function _throw(err) {asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err);}_next(undefined);});};}var _default =
  184 +{
  185 + data: function data() {
  186 + return {
  187 + mobile: '',
  188 + captcha: '',
  189 + newpassword: '',
  190 + confirmpassword: '',
  191 + clearId: '',
  192 + num: 0 };
  193 +
  194 + },
  195 + methods: {
  196 + getCode: function getCode() {
  197 + if (this.num > 0) return;
  198 + if (!this.mobile) return _toast.toa.toast('请先输入手机号');
  199 + if (!/^1[34578]\d{9}$/.test(this.mobile)) return _toast.toa.toast('请输入正确手机号');
  200 + this.sendCode();
  201 + },
  202 + sendCode: function sendCode() {var _this = this;return _asyncToGenerator( /*#__PURE__*/_regenerator.default.mark(function _callee() {var res;return _regenerator.default.wrap(function _callee$(_context) {while (1) {switch (_context.prev = _context.next) {case 0:_context.prev = 0;_context.next = 3;return (
  203 +
  204 + (0, _login.sendCode)(_this.mobile, 'resetpwd'));case 3:res = _context.sent;
  205 + _toast.toa.success('发送成功');
  206 + _this.setInter();
  207 + console.log('sendCode', res);
  208 + // 保存数据
  209 + _context.next = 13;break;case 9:_context.prev = 9;_context.t0 = _context["catch"](0);
  210 + uni.showToast({ title: _context.t0, icon: 'none' });
  211 + console.log('sendCode', _context.t0);case 13:case "end":return _context.stop();}}}, _callee, null, [[0, 9]]);}))();
  212 +
  213 + },
  214 + setInter: function setInter() {var _this2 = this;
  215 + this.num = 60;
  216 + this.clearId = setInterval(function () {
  217 + _this2.num--;
  218 + }, 1000);
  219 + },
  220 + goReset: function goReset() {
  221 + if (!this.mobile) return _toast.toa.toast('请输入手机号');
  222 + if (!this.captcha) return _toast.toa.toast('请输入验证码');
  223 + if (!this.newpassword) return _toast.toa.toast('请输入密码');
  224 + if (!this.confirmpassword) return _toast.toa.toast('请输入确认密码');
  225 + this.resetPassword();
  226 + },
  227 + resetPassword: function resetPassword() {var _this3 = this;return _asyncToGenerator( /*#__PURE__*/_regenerator.default.mark(function _callee2() {var res;return _regenerator.default.wrap(function _callee2$(_context2) {while (1) {switch (_context2.prev = _context2.next) {case 0:_context2.prev = 0;_context2.next = 3;return (
  228 +
  229 + (0, _login.resetPassword)(_this3.mobile, _this3.captcha, _this3.newpassword, _this3.confirmpassword));case 3:res = _context2.sent;
  230 + console.log('resetPassword', res);
  231 + setTimeout(function () {
  232 + _toast.toa.success('重置密码成功');
  233 + }, 200);
  234 + uni.navigateBack({});
  235 + // 保存数据
  236 + _context2.next = 13;break;case 9:_context2.prev = 9;_context2.t0 = _context2["catch"](0);
  237 + uni.showToast({ title: _context2.t0, icon: 'none' });
  238 + console.log('resetPassword', _context2.t0);case 13:case "end":return _context2.stop();}}}, _callee2, null, [[0, 9]]);}))();
  239 +
  240 + } } };exports.default = _default;
  241 +/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
188 242
189 /***/ }), 243 /***/ }),
190 244
1 { 1 {
2 - "navigationBarTitleText": "", 2 + "navigationBarTitleText": "忘记密码",
3 "enablePullDownRefresh": false, 3 "enablePullDownRefresh": false,
4 "usingComponents": {} 4 "usingComponents": {}
5 } 5 }
1 -<view class="login"><view class="icon"><view class="icontitle">忘记密码</view><view class="bar flexwrap"><view class="name">用户名:</view><view class="lastname"><input type="text" value="" placeholder="请输入用户名"/></view></view><view class="bar flexwrap"><view class="name">验证码:</view><view class="lastname"><input type="text" value="" placeholder="请输入验证码"/><view class="code">获取验证码</view></view></view><view class="bar flexwrap"><view class="name">密码:</view><view class="lastname"><input type="text" value="" placeholder="请输入密码"/></view></view><view class="bar flexwrap"><view class="name">确认密码:</view><view class="lastname"><input type="text" value="" placeholder="请确认密码"/></view></view><view class="loginbtn">确认</view></view></view>  
  1 +<view class="login"><view class="icon"><view class="icontitle">忘记密码</view><view class="bar flexwrap"><view class="name">手机号:</view><view class="lastname"><input maxlength="16" type="text" value="{{mobile}}" placeholder="请输入手机号" data-event-opts="{{[['input',[['__set_model',['','mobile','$event',[]]]]]]}}" bindinput="__e"/></view></view><view class="bar flexwrap"><view class="name">验证码:</view><view class="lastname"><input maxlength type="number" value="{{captcha}}" placeholder="请输入验证码" data-event-opts="{{[['input',[['__set_model',['','captcha','$event',[]]]]]]}}" bindinput="__e"/><view data-event-opts="{{[['tap',[['getCode',['$event']]]]]}}" class="code" bindtap="__e">{{''+(num==0?'获取验证码':num+'秒重新发送')+''}}</view></view></view><view class="bar flexwrap"><view class="name">密码:</view><view class="lastname"><input type="text" value="{{newpassword}}" placeholder="请输入密码" data-event-opts="{{[['input',[['__set_model',['','newpassword','$event',[]]]]]]}}" bindinput="__e"/></view></view><view class="bar flexwrap"><view class="name">确认密码:</view><view class="lastname"><input type="text" value="{{confirmpassword}}" placeholder="请确认密码" data-event-opts="{{[['input',[['__set_model',['','confirmpassword','$event',[]]]]]]}}" bindinput="__e"/></view></view><view data-event-opts="{{[['tap',[['goReset',['$event']]]]]}}" class="loginbtn" bindtap="__e">确认</view></view></view>
@@ -53,7 +53,7 @@ @@ -53,7 +53,7 @@
53 position: relative; 53 position: relative;
54 } 54 }
55 .login .icon .bar .lastname input { 55 .login .icon .bar .lastname input {
56 - width: 260rpx; 56 + width: 100%;
57 } 57 }
58 .login .icon .bar .lastname .code { 58 .login .icon .bar .lastname .code {
59 position: absolute; 59 position: absolute;
@@ -97,6 +97,15 @@ var render = function() { @@ -97,6 +97,15 @@ var render = function() {
97 var _vm = this 97 var _vm = this
98 var _h = _vm.$createElement 98 var _h = _vm.$createElement
99 var _c = _vm._self._c || _h 99 var _c = _vm._self._c || _h
  100 + if (!_vm._isMounted) {
  101 + _vm.e0 = function($event) {
  102 + _vm.isSelect = !_vm.isSelect
  103 + }
  104 +
  105 + _vm.e1 = function($event) {
  106 + _vm.isSelect = !_vm.isSelect
  107 + }
  108 + }
100 } 109 }
101 var recyclableRender = false 110 var recyclableRender = false
102 var staticRenderFns = [] 111 var staticRenderFns = []
@@ -130,69 +139,146 @@ __webpack_require__.r(__webpack_exports__); @@ -130,69 +139,146 @@ __webpack_require__.r(__webpack_exports__);
130 /***/ (function(module, exports, __webpack_require__) { 139 /***/ (function(module, exports, __webpack_require__) {
131 140
132 "use strict"; 141 "use strict";
133 -Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; //  
134 -//  
135 -//  
136 -//  
137 -//  
138 -//  
139 -//  
140 -//  
141 -//  
142 -//  
143 -//  
144 -//  
145 -//  
146 -//  
147 -//  
148 -//  
149 -//  
150 -//  
151 -//  
152 -//  
153 -//  
154 -//  
155 -//  
156 -//  
157 -//  
158 -//  
159 -//  
160 -//  
161 -//  
162 -//  
163 -//  
164 -//  
165 -//  
166 -//  
167 -//  
168 -//  
169 -//  
170 -//  
171 -//  
172 -//  
173 -//  
174 -//  
175 -//  
176 -//  
177 -//  
178 -//  
179 -//  
180 -//  
181 -//  
182 -//  
183 -//  
184 -//  
185 -//  
186 -//  
187 -//  
188 -//  
189 -var _default =  
190 -{  
191 - data: function data() {  
192 - return {}; 142 +/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0;var _regenerator = _interopRequireDefault(__webpack_require__(/*! ./node_modules/@babel/runtime/regenerator */ 36));
  143 +
  144 +
  145 +
  146 +
  147 +
  148 +
  149 +
  150 +
  151 +
  152 +
  153 +
  154 +
  155 +
  156 +
  157 +
  158 +
  159 +
  160 +
  161 +
  162 +
  163 +
  164 +
  165 +
  166 +
  167 +
  168 +
  169 +
  170 +
193 171
194 172
195 - } };exports.default = _default; 173 +
  174 +
  175 +
  176 +
  177 +
  178 +
  179 +
  180 +
  181 +
  182 +
  183 +
  184 +
  185 +
  186 +
  187 +
  188 +
  189 +
  190 +
  191 +
  192 +
  193 +
  194 +
  195 +
  196 +
  197 +
  198 +
  199 +
  200 +var _login = __webpack_require__(/*! @/api/login.js */ 541);
  201 +var _toast = __webpack_require__(/*! @/utils/toast.js */ 538);function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {try {var info = gen[key](arg);var value = info.value;} catch (error) {reject(error);return;}if (info.done) {resolve(value);} else {Promise.resolve(value).then(_next, _throw);}}function _asyncToGenerator(fn) {return function () {var self = this,args = arguments;return new Promise(function (resolve, reject) {var gen = fn.apply(self, args);function _next(value) {asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value);}function _throw(err) {asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err);}_next(undefined);});};}var _default =
  202 +{
  203 + data: function data() {
  204 + return {
  205 + username: '',
  206 + password: '',
  207 + mobile: '',
  208 + code: '',
  209 + clearId: '',
  210 + num: 0,
  211 + isSelect: false };
  212 +
  213 + },
  214 + methods: {
  215 + goLogin: function goLogin() {
  216 + uni.navigateBack({});
  217 + // uni.navigateTo({
  218 + // url:'/pages/login/login'
  219 + // })
  220 + },
  221 + toRegister: function toRegister() {
  222 + if (!this.username) return _toast.toa.toast('请输入用户名');
  223 + if (!this.password) return _toast.toa.toast('请输入密码');
  224 + if (!this.mobile) return _toast.toa.toast('请输入手机号');
  225 + if (!this.code) return _toast.toa.toast('请输入验证码');
  226 + if (!this.isSelect) return _toast.toa.toast('请先同意用户协议和隐私政策');
  227 + this.register();
  228 + },
  229 + register: function register() {var _this = this;return _asyncToGenerator( /*#__PURE__*/_regenerator.default.mark(function _callee() {var res;return _regenerator.default.wrap(function _callee$(_context) {while (1) {switch (_context.prev = _context.next) {case 0:_context.prev = 0;_context.next = 3;return (
  230 +
  231 + (0, _login.register)(_this.username, _this.password, _this.mobile, _this.code));case 3:res = _context.sent;
  232 + console.log('register', res);
  233 + _toast.toa.success('注册成功');
  234 + // 保存数据
  235 + _context.next = 12;break;case 8:_context.prev = 8;_context.t0 = _context["catch"](0);
  236 + uni.showToast({ title: _context.t0, icon: 'none' });
  237 + console.log('register', _context.t0);case 12:case "end":return _context.stop();}}}, _callee, null, [[0, 8]]);}))();
  238 +
  239 + },
  240 + getCode: function getCode() {
  241 + if (this.num > 0) return;
  242 + if (!this.mobile) return _toast.toa.toast('请先输入手机号');
  243 + if (!/^1[34578]\d{9}$/.test(this.mobile)) return _toast.toa.toast('请输入正确手机号');
  244 + this.sendCode();
  245 + },
  246 + sendCode: function sendCode() {var _this2 = this;return _asyncToGenerator( /*#__PURE__*/_regenerator.default.mark(function _callee2() {var res;return _regenerator.default.wrap(function _callee2$(_context2) {while (1) {switch (_context2.prev = _context2.next) {case 0:_context2.prev = 0;_context2.next = 3;return (
  247 +
  248 + (0, _login.sendCode)(_this2.mobile, 'register'));case 3:res = _context2.sent;
  249 + _toast.toa.success('发送成功');
  250 + _this2.setInter();
  251 + console.log('sendCode', res);
  252 + // 保存数据
  253 + _context2.next = 13;break;case 9:_context2.prev = 9;_context2.t0 = _context2["catch"](0);
  254 + uni.showToast({ title: _context2.t0, icon: 'none' });
  255 + console.log('sendCode', _context2.t0);case 13:case "end":return _context2.stop();}}}, _callee2, null, [[0, 9]]);}))();
  256 +
  257 + },
  258 + setInter: function setInter() {var _this3 = this;
  259 + this.num = 60;
  260 + this.clearId = setInterval(function () {
  261 + _this3.num--;
  262 + }, 1000);
  263 + },
  264 + toAgree: function toAgree(type) {
  265 + uni.navigateTo({
  266 + url: '/pages/login/agreement?type=' + type });
  267 +
  268 + } },
  269 +
  270 + onHide: function onHide() {
  271 + this.num = 0;
  272 + clearInterval(this.clearId);
  273 + },
  274 + watch: {
  275 + num: function num(newValue, oldValue) {
  276 + if (newValue == 0) {
  277 + this.num = 0;
  278 + clearInterval(this.clearId);
  279 + }
  280 + } } };exports.default = _default;
  281 +/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
196 282
197 /***/ }), 283 /***/ }),
198 284
1 { 1 {
2 - "navigationBarTitleText": "", 2 + "navigationBarTitleText": "注册",
3 "enablePullDownRefresh": false, 3 "enablePullDownRefresh": false,
4 "usingComponents": {} 4 "usingComponents": {}
5 } 5 }
1 -<view class="login"><view class="icon"><image class="bgimg" src="../../static/ic_logo.png" mode></image><view class="bar flexwrap"><view class="name">用户名:</view><view class="lastname"><input type="text" value="" placeholder="请输入用户名"/></view></view><view class="bar flexwrap"><view class="name">密码:</view><view class="lastname"><input type="text" value="" placeholder="请输入密码"/></view></view><view class="bar flexwrap"><view class="name">手机号:</view><view class="lastname"><input type="text" value="" placeholder="请输入手机号"/></view></view><view class="bar flexwrap"><view class="name">验证码:</view><view class="lastname"><input type="text" value="" placeholder="请输入验证码"/><view class="code">获取验证码</view></view></view><view class="loginbtn">注册</view><view class="passway"><text>已有账号,直接登录</text></view><view class="user"><image src="../../static/icon24.png" mode></image><image src="../../static/icon25.png" mode></image>我已阅读并同意<text>用户协议、</text><text>隐私政策</text></view></view></view>  
  1 +<view class="login"><view class="icon"><image class="bgimg" src="../../static/ic_logo.png" mode></image><view class="bar flexwrap"><view class="name">用户名:</view><view class="lastname"><input maxlength="16" type="text" value="{{username}}" placeholder="请输入用户名" data-event-opts="{{[['input',[['__set_model',['','username','$event',[]]]]]]}}" bindinput="__e"/></view></view><view class="bar flexwrap"><view class="name">密码:</view><view class="lastname"><input maxlength="16" type="text" value="{{password}}" placeholder="请输入密码" data-event-opts="{{[['input',[['__set_model',['','password','$event',[]]]]]]}}" bindinput="__e"/></view></view><view class="bar flexwrap"><view class="name">手机号:</view><view class="lastname"><input maxlength="11" type="number" value="{{mobile}}" placeholder="请输入手机号" data-event-opts="{{[['input',[['__set_model',['','mobile','$event',[]]]]]]}}" bindinput="__e"/></view></view><view class="bar flexwrap"><view class="name">验证码:</view><view class="lastname"><input maxlength="6" type="text" value="{{code}}" placeholder="请输入验证码" data-event-opts="{{[['input',[['__set_model',['','code','$event',[]]]]]]}}" bindinput="__e"/><view data-event-opts="{{[['tap',[['getCode',['$event']]]]]}}" class="code" bindtap="__e">{{''+(num==0?'获取验证码':num+'秒重新发送')+''}}</view></view></view><view data-event-opts="{{[['tap',[['toRegister',['$event']]]]]}}" class="loginbtn" bindtap="__e">注册</view><view data-event-opts="{{[['tap',[['goLogin',['$event']]]]]}}" class="passway" bindtap="__e"><text>已有账号,直接登录</text></view><view class="user"><block wx:if="{{isSelect}}"><image src="/static/icon25.png" mode data-event-opts="{{[['tap',[['e0',['$event']]]]]}}" bindtap="__e"></image></block><block wx:else><image src="/static/icon24.png" mode data-event-opts="{{[['tap',[['e1',['$event']]]]]}}" bindtap="__e"></image></block>我已阅读并同意<text data-event-opts="{{[['tap',[['toAgree',[1]]]]]}}" style="margin-left:10rpx;" bindtap="__e">用户协议、</text><text data-event-opts="{{[['tap',[['toAgree',[2]]]]]}}" bindtap="__e">隐私政策</text></view></view></view>
@@ -53,7 +53,7 @@ @@ -53,7 +53,7 @@
53 position: relative; 53 position: relative;
54 } 54 }
55 .login .icon .bar .lastname input { 55 .login .icon .bar .lastname input {
56 - width: 260rpx; 56 + width: 100%;
57 } 57 }
58 .login .icon .bar .lastname .code { 58 .login .icon .bar .lastname .code {
59 position: absolute; 59 position: absolute;
@@ -91,7 +91,7 @@ @@ -91,7 +91,7 @@
91 } 91 }
92 .login .icon .user { 92 .login .icon .user {
93 position: fixed; 93 position: fixed;
94 - bottom: 28rpx; 94 + bottom: 78rpx;
95 left: 50%; 95 left: 50%;
96 width: 100%; 96 width: 100%;
97 text-align: center; 97 text-align: center;
@@ -153,7 +153,42 @@ __webpack_require__.r(__webpack_exports__); @@ -153,7 +153,42 @@ __webpack_require__.r(__webpack_exports__);
153 /***/ (function(module, exports, __webpack_require__) { 153 /***/ (function(module, exports, __webpack_require__) {
154 154
155 "use strict"; 155 "use strict";
156 -Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; // 156 +/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0;var _regenerator = _interopRequireDefault(__webpack_require__(/*! ./node_modules/@babel/runtime/regenerator */ 36));
  157 +
  158 +
  159 +
  160 +
  161 +
  162 +
  163 +
  164 +
  165 +
  166 +
  167 +
  168 +
  169 +
  170 +
  171 +
  172 +
  173 +
  174 +
  175 +
  176 +
  177 +
  178 +
  179 +
  180 +
  181 +
  182 +
  183 +
  184 +
  185 +
  186 +
  187 +var _mine = __webpack_require__(/*! @/api/mine.js */ 539);
  188 +
  189 +
  190 +var _toast = __webpack_require__(/*! @/utils/toast.js */ 538);
  191 +var _upload = __webpack_require__(/*! @/utils/upload.js */ 540);function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {try {var info = gen[key](arg);var value = info.value;} catch (error) {reject(error);return;}if (info.done) {resolve(value);} else {Promise.resolve(value).then(_next, _throw);}}function _asyncToGenerator(fn) {return function () {var self = this,args = arguments;return new Promise(function (resolve, reject) {var gen = fn.apply(self, args);function _next(value) {asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value);}function _throw(err) {asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err);}_next(undefined);});};} //
157 // 192 //
158 // 193 //
159 // 194 //
@@ -175,13 +210,44 @@ Object.defineProperty(exports, "__esModule", { value: true });exports.default = @@ -175,13 +210,44 @@ Object.defineProperty(exports, "__esModule", { value: true });exports.default =
175 // 210 //
176 // 211 //
177 // 212 //
178 -var _default =  
179 -{  
180 - data: function data() {  
181 - return {  
182 - value1: '' };  
183 -  
184 - } };exports.default = _default; 213 +//
  214 +//
  215 +//
  216 +//
  217 +//
  218 +//
  219 +//
  220 +var that;var _default = { data: function data() {return { content: '', image: '', imgList: [] };}, onLoad: function onLoad() {that = this;}, methods: { // 删除图片
  221 + delImage: function delImage(idx) {this.imgList.splice(idx, 1);}, upload: function upload() {uni.chooseImage({ count: 9 - that.imgList.length, //默认9
  222 + sizeType: ['original'], //可以指定是原图还是压缩图,默认二者都有 , 'original','compressed'
  223 + sourceType: ['album'], //从相册选择
  224 + success: function () {var _success = _asyncToGenerator( /*#__PURE__*/_regenerator.default.mark(function _callee(res) {var tempFilePaths, i, result;return _regenerator.default.wrap(function _callee$(_context) {while (1) {switch (_context.prev = _context.next) {case 0:console.log(JSON.stringify(res.tempFilePaths));tempFilePaths = res.tempFilePaths;i = 0;case 3:if (!(i < tempFilePaths.length)) {_context.next = 12;break;}_context.next = 6;return (0, _upload.uploadFile)(tempFilePaths[i]);case 6:result = _context.sent;console.log(result);that.imgList.push(result);case 9:i++;_context.next = 3;break;case 12:case "end":return _context.stop();}}}, _callee);}));function success(_x) {return _success.apply(this, arguments);}return success;}() });
  225 +
  226 + },
  227 + submit: function submit() {
  228 + if (!this.content) return _toast.toa.toast('请输入意见或反馈内容');
  229 + // if(!this.imgList.length) return toa.toast('请上传图片')
  230 + this.image = this.imgList.map(function (it) {return it.url;});
  231 + this.Feedback();
  232 + },
  233 + Feedback: function Feedback() {var _this = this;return _asyncToGenerator( /*#__PURE__*/_regenerator.default.mark(function _callee2() {var res;return _regenerator.default.wrap(function _callee2$(_context2) {while (1) {switch (_context2.prev = _context2.next) {case 0:_context2.prev = 0;_context2.next = 3;return (
  234 +
  235 + (0, _mine.doFeedback)(_this.content, _this.image));case 3:res = _context2.sent;
  236 + console.log('doFeedback', res);
  237 + setTimeout(function () {
  238 + _toast.toa.success('反馈成功');
  239 + }, 200);
  240 + uni.navigateBack({});
  241 + // 保存数据
  242 + _context2.next = 13;break;case 9:_context2.prev = 9;_context2.t0 = _context2["catch"](0);
  243 + uni.showToast({
  244 + title: _context2.t0,
  245 + icon: 'none' });
  246 +
  247 + console.log('doFeedback', _context2.t0);case 13:case "end":return _context2.stop();}}}, _callee2, null, [[0, 9]]);}))();
  248 +
  249 + } } };exports.default = _default;
  250 +/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
185 251
186 /***/ }), 252 /***/ }),
187 253
1 -<view><view class="mainBox"><view class="title">建议&意见</view><u--textarea bind:input="__e" vue-id="f0188b64-1" autoHeight="{{true}}" maxlength="300" border="none" placeholder="请输入内容" value="{{value1}}" data-event-opts="{{[['^input',[['__set_model',['','value1','$event',[]]]]]]}}" bind:__l="__l"></u--textarea><view class="title">上传图片(选填)</view><view class="botImage"><image src="/static/addPhoto.png" mode></image></view></view><view class="botBtn flexC"><view class="flexC">提交</view></view></view>  
  1 +<view><view class="mainBox"><view class="title">建议&意见</view><u--textarea bind:input="__e" vue-id="f0188b64-1" autoHeight="{{true}}" maxlength="300" border="none" placeholder="请输入内容" value="{{content}}" data-event-opts="{{[['^input',[['__set_model',['','content','$event',[]]]]]]}}" bind:__l="__l"></u--textarea><view class="title" style="margin-top:24rpx;">上传图片(选填)</view><view class="botImage"><block wx:for="{{imgList}}" wx:for-item="item" wx:for-index="idx" wx:key="idx"><view class="box"><image class="close" src="/static/closeImage.png" mode data-event-opts="{{[['tap',[['delImage',[idx]]]]]}}" bindtap="__e"></image><image class="image" src="{{item.fullurl}}" mode></image></view></block><block wx:if="{{imgList.length<9}}"><view data-event-opts="{{[['tap',[['upload',['$event']]]]]}}" class="box" bindtap="__e"><image src="/static/addPhoto.png" mode></image></view></block></view></view><view class="botBtn flexC"><view data-event-opts="{{[['tap',[['submit',['$event']]]]]}}" class="flexC" bindtap="__e">提交</view></view></view>
@@ -13,10 +13,29 @@ page { @@ -13,10 +13,29 @@ page {
13 .u-textarea { 13 .u-textarea {
14 min-height: 292rpx; 14 min-height: 292rpx;
15 } 15 }
  16 +.botImage {
  17 + display: flex;
  18 + flex-wrap: wrap;
  19 +}
  20 +.botImage .box {
  21 + position: relative;
  22 + margin-right: 30rpx;
  23 + margin-bottom: 20rpx;
  24 +}
  25 +.botImage .box:nth-child(3n) {
  26 + margin-right: 0;
  27 +}
16 .botImage image { 28 .botImage image {
17 width: 200rpx; 29 width: 200rpx;
18 height: 200rpx; 30 height: 200rpx;
19 } 31 }
  32 +.botImage .close {
  33 + width: 36rpx;
  34 + height: 36rpx;
  35 + position: absolute;
  36 + right: 0;
  37 + top: 0;
  38 +}
20 .botBtn { 39 .botBtn {
21 position: fixed; 40 position: fixed;
22 left: 0; 41 left: 0;
@@ -36,4 +55,7 @@ page { @@ -36,4 +55,7 @@ page {
36 opacity: 1; 55 opacity: 1;
37 background: linear-gradient(134.8deg, #ffe864 0%, #ffd800 100%); 56 background: linear-gradient(134.8deg, #ffe864 0%, #ffd800 100%);
38 } 57 }
  58 + .uni-textarea-wrapper {
  59 + height: 100% !important;
  60 +}
39 61
@@ -153,23 +153,25 @@ __webpack_require__.r(__webpack_exports__); @@ -153,23 +153,25 @@ __webpack_require__.r(__webpack_exports__);
153 /***/ (function(module, exports, __webpack_require__) { 153 /***/ (function(module, exports, __webpack_require__) {
154 154
155 "use strict"; 155 "use strict";
156 -/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; //  
157 -//  
158 -//  
159 -//  
160 -//  
161 -//  
162 -//  
163 -//  
164 -//  
165 -//  
166 -//  
167 -//  
168 -//  
169 -//  
170 -//  
171 -//  
172 -var _default = 156 +/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0;var _regenerator = _interopRequireDefault(__webpack_require__(/*! ./node_modules/@babel/runtime/regenerator */ 36));
  157 +
  158 +
  159 +
  160 +
  161 +
  162 +
  163 +
  164 +
  165 +
  166 +
  167 +
  168 +
  169 +
  170 +
  171 +
  172 +
  173 +var _toast = __webpack_require__(/*! @/utils/toast.js */ 538);
  174 +var _mine = __webpack_require__(/*! @/api/mine.js */ 539);function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {try {var info = gen[key](arg);var value = info.value;} catch (error) {reject(error);return;}if (info.done) {resolve(value);} else {Promise.resolve(value).then(_next, _throw);}}function _asyncToGenerator(fn) {return function () {var self = this,args = arguments;return new Promise(function (resolve, reject) {var gen = fn.apply(self, args);function _next(value) {asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value);}function _throw(err) {asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err);}_next(undefined);});};}var _default =
173 { 175 {
174 data: function data() { 176 data: function data() {
175 return { 177 return {
@@ -179,14 +181,60 @@ var _default = @@ -179,14 +181,60 @@ var _default =
179 name: '退换货品' }, 181 name: '退换货品' },
180 { 182 {
181 name: '服务条款' }, 183 name: '服务条款' },
182 - { name: '分期支付' }] }; 184 + { name: '分期支付' }],
  185 + page: 1,
  186 + lastPage: 1,
  187 + curId: '',
  188 + list: [] };
183 189
184 }, 190 },
  191 + onLoad: function onLoad() {
  192 + this.problemSort();
  193 + },
185 methods: { 194 methods: {
186 - toItem: function toItem() { 195 + toItem: function toItem(id) {
187 uni.navigateTo({ 196 uni.navigateTo({
188 - url: '/pages/mine/questionDetails' }); 197 + url: '/pages/mine/questionDetails?id=' + id });
189 198
  199 + },
  200 + problemSort: function problemSort() {var _this = this;return _asyncToGenerator( /*#__PURE__*/_regenerator.default.mark(function _callee() {var res;return _regenerator.default.wrap(function _callee$(_context) {while (1) {switch (_context.prev = _context.next) {case 0:_context.prev = 0;_context.next = 3;return (
  201 +
  202 + (0, _mine.problemSort)());case 3:res = _context.sent;
  203 + _this.list2 = res.list;
  204 + _this.curId = res.list[0].id;
  205 + _this.problemList();
  206 + console.log('problemSort', res);
  207 + // 保存数据
  208 + _context.next = 14;break;case 10:_context.prev = 10;_context.t0 = _context["catch"](0);
  209 + uni.showToast({ title: _context.t0, icon: 'none' });
  210 + console.log('problemSort', _context.t0);case 14:case "end":return _context.stop();}}}, _callee, null, [[0, 10]]);}))();
  211 +
  212 + },
  213 + problemList: function problemList(f) {var _this2 = this;return _asyncToGenerator( /*#__PURE__*/_regenerator.default.mark(function _callee2() {var res;return _regenerator.default.wrap(function _callee2$(_context2) {while (1) {switch (_context2.prev = _context2.next) {case 0:_context2.prev = 0;
  214 +
  215 + _toast.toa.loading('加载中');_context2.next = 4;return (
  216 + (0, _mine.problemList)(_this2.curId, _this2.page, 15));case 4:res = _context2.sent;
  217 + _toast.toa.hideLoading();
  218 + _this2.lastPage = res.list.last_page;
  219 + _this2.list = f ? res.list.data : _this2.list.concat(res.list.data);
  220 + console.log('problemList', res);
  221 + // 保存数据
  222 + _context2.next = 15;break;case 11:_context2.prev = 11;_context2.t0 = _context2["catch"](0);
  223 + uni.showToast({ title: _context2.t0, icon: 'none' });
  224 + console.log('problemList', _context2.t0);case 15:case "end":return _context2.stop();}}}, _callee2, null, [[0, 11]]);}))();
  225 +
  226 + },
  227 + toggle: function toggle(e) {
  228 + console.log(e);
  229 + if (this.curId == e.id) return;
  230 + this.page = 1;
  231 + this.curId = e.id;
  232 + this.problemList(1);
  233 + },
  234 + scrolltolower: function scrolltolower() {
  235 + if (this.page >= this.lastPage) return;
  236 + this.page = this.page + 1;
  237 + this.problemList();
190 } } };exports.default = _default; 238 } } };exports.default = _default;
191 /* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"])) 239 /* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
192 240
1 -<view><view class="top"><image class="wh100" src="/static/questionBg.png" mode></image></view><view class="topTitle">有什么可以帮您!</view><view class="botQuestion"><u-tabs vue-id="73934d75-1" list="{{list2}}" lineColor="#FED000" scrollable="{{false}}" data-event-opts="{{[['^click',[['click']]]]}}" bind:click="__e" bind:__l="__l"></u-tabs><scroll-view class="questionList" scroll-y="true"><block wx:for="{{50}}" wx:for-item="item" wx:for-index="idx" wx:key="idx"><view data-event-opts="{{[['tap',[['toItem',['$event']]]]]}}" class="list" bindtap="__e"><view class="question">123132</view><view class="arrow"><image class="wh100" src="/static/arrowR.png" mode></image></view></view></block></scroll-view></view></view>  
  1 +<view><view class="top"><image class="wh100" src="/static/questionBg.png" mode></image></view><view class="topTitle">有什么可以帮您!</view><view class="botQuestion"><u-tabs vue-id="73934d75-1" list="{{list2}}" lineColor="#FED000" scrollable="{{false}}" data-event-opts="{{[['^click',[['toggle']]]]}}" bind:click="__e" bind:__l="__l"></u-tabs><scroll-view class="questionList" scroll-y="true" data-event-opts="{{[['scrolltolower',[['scrolltolower',['$event']]]]]}}" bindscrolltolower="__e"><block wx:for="{{list}}" wx:for-item="item" wx:for-index="idx" wx:key="idx"><view data-event-opts="{{[['tap',[['toItem',['$0'],[[['list','',idx,'id']]]]]]]}}" class="list" bindtap="__e"><view class="question">{{item.title}}</view><view class="arrow"><image src="/static/arrowR.png"></image></view></view></block></scroll-view></view></view>
@@ -33,9 +33,13 @@ @@ -33,9 +33,13 @@
33 display: flex; 33 display: flex;
34 justify-content: space-between; 34 justify-content: space-between;
35 align-items: center; 35 align-items: center;
36 - height: 40rpx;  
37 } 36 }
38 .botQuestion .questionList .list .arrow { 37 .botQuestion .questionList .list .arrow {
  38 + margin-left: 10rpx;
  39 + width: 16rpx;
  40 + height: 32rpx;
  41 +}
  42 +.botQuestion .questionList .list .arrow image {
39 width: 16rpx; 43 width: 16rpx;
40 height: 32rpx; 44 height: 32rpx;
41 } 45 }
@@ -95,6 +95,9 @@ __webpack_require__.r(__webpack_exports__); @@ -95,6 +95,9 @@ __webpack_require__.r(__webpack_exports__);
95 var components 95 var components
96 try { 96 try {
97 components = { 97 components = {
  98 + uModal: function() {
  99 + return Promise.all(/*! import() | node-modules/uview-ui/components/u-modal/u-modal */[__webpack_require__.e("common/vendor"), __webpack_require__.e("node-modules/uview-ui/components/u-modal/u-modal")]).then(__webpack_require__.bind(null, /*! uview-ui/components/u-modal/u-modal.vue */ 542))
  100 + },
98 uPopup: function() { 101 uPopup: function() {
99 return Promise.all(/*! import() | node-modules/uview-ui/components/u-popup/u-popup */[__webpack_require__.e("common/vendor"), __webpack_require__.e("node-modules/uview-ui/components/u-popup/u-popup")]).then(__webpack_require__.bind(null, /*! uview-ui/components/u-popup/u-popup.vue */ 342)) 102 return Promise.all(/*! import() | node-modules/uview-ui/components/u-popup/u-popup */[__webpack_require__.e("common/vendor"), __webpack_require__.e("node-modules/uview-ui/components/u-popup/u-popup")]).then(__webpack_require__.bind(null, /*! uview-ui/components/u-popup/u-popup.vue */ 342))
100 } 103 }
@@ -122,6 +125,14 @@ var render = function() { @@ -122,6 +125,14 @@ var render = function() {
122 var _c = _vm._self._c || _h 125 var _c = _vm._self._c || _h
123 if (!_vm._isMounted) { 126 if (!_vm._isMounted) {
124 _vm.e0 = function($event) { 127 _vm.e0 = function($event) {
  128 + _vm.showCancel = true
  129 + }
  130 +
  131 + _vm.e1 = function($event) {
  132 + _vm.showCancel = false
  133 + }
  134 +
  135 + _vm.e2 = function($event) {
125 _vm.showService = false 136 _vm.showService = false
126 } 137 }
127 } 138 }
@@ -158,7 +169,9 @@ __webpack_require__.r(__webpack_exports__); @@ -158,7 +169,9 @@ __webpack_require__.r(__webpack_exports__);
158 /***/ (function(module, exports, __webpack_require__) { 169 /***/ (function(module, exports, __webpack_require__) {
159 170
160 "use strict"; 171 "use strict";
161 -/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0;var Botton = function Botton() {__webpack_require__.e(/*! require.ensure | components/Botton */ "components/Botton").then((function () {return resolve(__webpack_require__(/*! @/components/Botton.vue */ 327));}).bind(null, __webpack_require__)).catch(__webpack_require__.oe);};var _default = 172 +/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0;var _regenerator = _interopRequireDefault(__webpack_require__(/*! ./node_modules/@babel/runtime/regenerator */ 36));
  173 +
  174 +
162 175
163 176
164 177
@@ -236,6 +249,10 @@ __webpack_require__.r(__webpack_exports__); @@ -236,6 +249,10 @@ __webpack_require__.r(__webpack_exports__);
236 249
237 250
238 251
  252 +
  253 +var _toast = __webpack_require__(/*! @/utils/toast.js */ 538);
  254 +var _mine = __webpack_require__(/*! @/api/mine.js */ 539);function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {try {var info = gen[key](arg);var value = info.value;} catch (error) {reject(error);return;}if (info.done) {resolve(value);} else {Promise.resolve(value).then(_next, _throw);}}function _asyncToGenerator(fn) {return function () {var self = this,args = arguments;return new Promise(function (resolve, reject) {var gen = fn.apply(self, args);function _next(value) {asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value);}function _throw(err) {asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err);}_next(undefined);});};}var Botton = function Botton() {__webpack_require__.e(/*! require.ensure | components/Botton */ "components/Botton").then((function () {return resolve(__webpack_require__(/*! @/components/Botton.vue */ 327));}).bind(null, __webpack_require__)).catch(__webpack_require__.oe);};var _default =
  255 +
239 { 256 {
240 components: { 257 components: {
241 Botton: Botton }, 258 Botton: Botton },
@@ -253,10 +270,52 @@ __webpack_require__.r(__webpack_exports__); @@ -253,10 +270,52 @@ __webpack_require__.r(__webpack_exports__);
253 { name: '常用地址' }], 270 { name: '常用地址' }],
254 271
255 showService: false, 272 showService: false,
256 - Service: 0 // 是否是联系客服  
257 - }; 273 + Service: 0, // 是否是联系客服
  274 + token: '',
  275 + userInfo: {},
  276 + allMoney: {},
  277 + showCancel: false,
  278 + qrCode: '' };
  279 +
  280 + },
  281 + onShow: function onShow() {
  282 + this.token = uni.getStorageSync('token') || '';
  283 + this.userInfo = uni.getStorageSync('userInfo') || '';
  284 + if (this.token) {
  285 + this.getUserInfo();
  286 + }
  287 +
258 }, 288 },
259 methods: { 289 methods: {
  290 + confirmCancel: function confirmCancel() {return _asyncToGenerator( /*#__PURE__*/_regenerator.default.mark(function _callee() {var res;return _regenerator.default.wrap(function _callee$(_context) {while (1) {switch (_context.prev = _context.next) {case 0:_context.prev = 0;_context.next = 3;return (
  291 +
  292 + (0, _mine.logotLogin)());case 3:res = _context.sent;
  293 + setTimeout(function () {
  294 + _toast.toa.success('退出成功');
  295 + }, 200);
  296 + uni.clearStorage();
  297 + uni.navigateTo({
  298 + url: '/pages/login/login' });
  299 +
  300 + console.log('logotLogin', res);
  301 + // 保存数据
  302 + _context.next = 14;break;case 10:_context.prev = 10;_context.t0 = _context["catch"](0);
  303 + uni.showToast({ title: _context.t0, icon: 'none' });
  304 + console.log('logotLogin', _context.t0);case 14:case "end":return _context.stop();}}}, _callee, null, [[0, 10]]);}))();
  305 +
  306 + },
  307 + getUserInfo: function getUserInfo() {var _this = this;return _asyncToGenerator( /*#__PURE__*/_regenerator.default.mark(function _callee2() {var res;return _regenerator.default.wrap(function _callee2$(_context2) {while (1) {switch (_context2.prev = _context2.next) {case 0:_context2.prev = 0;_context2.next = 3;return (
  308 +
  309 + (0, _mine.getUserInfo)());case 3:res = _context2.sent;
  310 + console.log('getUserInfo', res);
  311 + _this.allMoney = res.user;
  312 + // 保存数据
  313 + _context2.next = 12;break;case 8:_context2.prev = 8;_context2.t0 = _context2["catch"](0);
  314 + uni.showToast({ title: _context2.t0, icon: 'none' });
  315 + console.log('getUserInfo', _context2.t0);case 12:case "end":return _context2.stop();}}}, _callee2, null, [[0, 8]]);}))();
  316 +
  317 + },
  318 +
260 totackMoney: function totackMoney(type) { 319 totackMoney: function totackMoney(type) {
261 if (type == 3) { 320 if (type == 3) {
262 uni.navigateTo({ 321 uni.navigateTo({
@@ -285,18 +344,27 @@ __webpack_require__.r(__webpack_exports__); @@ -285,18 +344,27 @@ __webpack_require__.r(__webpack_exports__);
285 openService: function openService(idx) { 344 openService: function openService(idx) {
286 if (idx == 0) { 345 if (idx == 0) {
287 this.Service = 1; 346 this.Service = 1;
288 - return this.showService = true;  
289 - 347 + this.getContactQrcode(1);
290 } 348 }
  349 +
291 if (idx == 1) { 350 if (idx == 1) {
292 this.Service = 0; 351 this.Service = 0;
293 - return this.showService = true; 352 + this.getContactQrcode(2);
294 } 353 }
295 - if (idx == 2) return uni.navigateTo({  
296 - url: '/pages/mine/Feedback' }); 354 + if (idx == 2) return uni.navigateTo({ url: '/pages/mine/Feedback' });
  355 + if (idx == 3) return uni.navigateTo({ url: '/pages/mine/commonProblem' });
297 356
298 - if (idx == 3) return uni.navigateTo({  
299 - url: '/pages/mine/commonProblem' }); 357 + },
  358 + getContactQrcode: function getContactQrcode(type) {var _this2 = this;return _asyncToGenerator( /*#__PURE__*/_regenerator.default.mark(function _callee3() {var res;return _regenerator.default.wrap(function _callee3$(_context3) {while (1) {switch (_context3.prev = _context3.next) {case 0:_context3.prev = 0;_context3.next = 3;return (
  359 +
  360 + (0, _mine.getContactQrcode)(type));case 3:res = _context3.sent;
  361 + _this2.qrCode = res.qrcode;
  362 + _this2.showService = true;
  363 + // console.log('getContactQrcode', res)
  364 + // 保存数据
  365 + _context3.next = 12;break;case 8:_context3.prev = 8;_context3.t0 = _context3["catch"](0);
  366 + uni.showToast({ title: _context3.t0, icon: 'none' });
  367 + console.log('getContactQrcode', _context3.t0);case 12:case "end":return _context3.stop();}}}, _callee3, null, [[0, 8]]);}))();
300 368
301 } } };exports.default = _default; 369 } } };exports.default = _default;
302 /* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"])) 370 /* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
@@ -2,6 +2,7 @@ @@ -2,6 +2,7 @@
2 "navigationBarTitleText": "我的", 2 "navigationBarTitleText": "我的",
3 "enablePullDownRefresh": false, 3 "enablePullDownRefresh": false,
4 "usingComponents": { 4 "usingComponents": {
  5 + "u-modal": "/node-modules/uview-ui/components/u-modal/u-modal",
5 "u-popup": "/node-modules/uview-ui/components/u-popup/u-popup", 6 "u-popup": "/node-modules/uview-ui/components/u-popup/u-popup",
6 "botton": "/components/Botton" 7 "botton": "/components/Botton"
7 } 8 }
1 -<view><view class="absTop"></view><view class="mainBox"><view class="exit flexA"><image src="/static/exit.png" mode></image>退出登录</view><view class="topInfo flexA"><image src="/static/logo.png" mode></image><view class="right"><view>张小萌</view><view>15664000180</view></view></view><view class="money"><view class="item"><view class="qian"><text style="font-size:32rpx;">¥</text>600</view><view class="yue">账户余额</view><view data-event-opts="{{[['tap',[['totackMoney',[1]]]]]}}" class="tixian flexC" bindtap="__e">提现</view></view><view class="item"><view class="qian"><text style="font-size:32rpx;">¥</text>600</view><view class="yue">保证金</view><view data-event-opts="{{[['tap',[['totackMoney',[2]]]]]}}" class="tixian flexC" bindtap="__e">提现</view></view><view class="item"><image src="/static/bill.png" mode></image><view data-event-opts="{{[['tap',[['totackMoney',[3]]]]]}}" class="tixian flexC" bindtap="__e">账户流水</view></view></view></view><view style="height:462rpx;"></view><view class="cenBox"><view data-event-opts="{{[['tap',[['toMyPage',[1]]]]]}}" class="item" bindtap="__e"><image src="/static/center1.png" mode></image>我买入的</view><view data-event-opts="{{[['tap',[['toMyPage',[2]]]]]}}" class="item" bindtap="__e"><image src="/static/center2.png" mode></image>我卖出的</view><view data-event-opts="{{[['tap',[['toMyPage',[3]]]]]}}" class="item" bindtap="__e"><image src="/static/center3.png" mode></image>我的发布</view><view data-event-opts="{{[['tap',[['toMyPage',[4]]]]]}}" class="item" bindtap="__e"><image src="/static/center4.png" mode></image>我的收藏</view></view><view class="botBox"><view class="title">更多服务</view><view class="group"><block wx:for="{{serviceList}}" wx:for-item="item" wx:for-index="idx" wx:key="idx"><view data-event-opts="{{[['tap',[['openService',[idx]]]]]}}" class="item" bindtap="__e"><image src="{{'/static/bot'+(idx+1)+'.png'}}" mode></image>{{''+item.name+''}}</view></block></view></view><u-popup vue-id="bae1c640-1" show="{{showService}}" mode="center" bgColor="transparent" round="{{15}}" bind:__l="__l" vue-slots="{{['default']}}"><view class="centerBox"><image class="potImg" src="/static/codeBg.png" mode></image><view class="popTitle">{{''+(Service==1?'我的客服':'品牌入驻')+''}}</view><image class="code" src="/static/logo.png" mode></image><view class="dashed"></view><view class="botText">长按识别二维码</view></view><view data-event-opts="{{[['tap',[['e0',['$event']]]]]}}" class="close" bindtap="__e"><image class="wh100" src="/static/close.png" mode></image></view></u-popup></view>  
  1 +<view><view class="absTop"></view><view class="mainBox"><view data-event-opts="{{[['tap',[['e0',['$event']]]]]}}" class="exit flexA" style="{{(token?'visibility: visible':'visibility: hidden')}}" bindtap="__e"><image src="/static/exit.png" mode></image>退出登录</view><view class="topInfo flexA"><image src="{{userInfo.avatar}}" mode></image><view class="right"><view>{{userInfo.nickname||'未登录'}}</view><view>{{userInfo.mobile||''}}</view></view></view><view class="money"><view class="item"><view class="qian"><text style="font-size:32rpx;">¥</text>{{allMoney.money||0}}</view><view class="yue">账户余额</view><view data-event-opts="{{[['tap',[['totackMoney',[1]]]]]}}" class="tixian flexC" bindtap="__e">提现</view></view><view class="item"><view class="qian"><text style="font-size:32rpx;">¥</text>{{allMoney.score||0}}</view><view class="yue">保证金</view><view data-event-opts="{{[['tap',[['totackMoney',[2]]]]]}}" class="tixian flexC" bindtap="__e">提现</view></view><view class="item"><image src="/static/bill.png" mode></image><view data-event-opts="{{[['tap',[['totackMoney',[3]]]]]}}" class="tixian flexC" bindtap="__e">账户流水</view></view></view></view><view style="height:462rpx;"></view><view class="cenBox"><view data-event-opts="{{[['tap',[['toMyPage',[1]]]]]}}" class="item" bindtap="__e"><image src="/static/center1.png" mode></image>我买入的</view><view data-event-opts="{{[['tap',[['toMyPage',[2]]]]]}}" class="item" bindtap="__e"><image src="/static/center2.png" mode></image>我卖出的</view><view data-event-opts="{{[['tap',[['toMyPage',[3]]]]]}}" class="item" bindtap="__e"><image src="/static/center3.png" mode></image>我的发布</view><view data-event-opts="{{[['tap',[['toMyPage',[4]]]]]}}" class="item" bindtap="__e"><image src="/static/center4.png" mode></image>我的收藏</view></view><view class="botBox"><view class="title">更多服务</view><view class="group"><block wx:for="{{serviceList}}" wx:for-item="item" wx:for-index="idx" wx:key="idx"><view data-event-opts="{{[['tap',[['openService',[idx]]]]]}}" class="item" bindtap="__e"><image src="{{'/static/bot'+(idx+1)+'.png'}}" mode></image>{{''+item.name+''}}</view></block></view></view><u-modal vue-id="bae1c640-1" show="{{showCancel}}" showCancelButton="{{true}}" content="您确定要退出登录吗" data-event-opts="{{[['^confirm',[['confirmCancel']]],['^cancel',[['e1']]]]}}" bind:confirm="__e" bind:cancel="__e" bind:__l="__l"></u-modal><u-popup vue-id="bae1c640-2" show="{{showService}}" mode="center" bgColor="transparent" round="{{15}}" bind:__l="__l" vue-slots="{{['default']}}"><view class="centerBox"><image class="potImg" src="/static/codeBg.png" mode></image><view class="popTitle">{{''+(Service==1?'我的客服':'品牌入驻')+''}}</view><image class="code" src="{{qrCode}}" mode></image><view class="dashed"></view><view class="botText">长按识别二维码</view></view><view data-event-opts="{{[['tap',[['e2',['$event']]]]]}}" class="close" bindtap="__e"><image class="wh100" src="/static/close.png" mode></image></view></u-popup><botton vue-id="bae1c640-3" flag="{{2}}" bind:__l="__l"></botton></view>
@@ -128,19 +128,38 @@ __webpack_require__.r(__webpack_exports__); @@ -128,19 +128,38 @@ __webpack_require__.r(__webpack_exports__);
128 /***/ (function(module, exports, __webpack_require__) { 128 /***/ (function(module, exports, __webpack_require__) {
129 129
130 "use strict"; 130 "use strict";
131 -Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; //  
132 -//  
133 -//  
134 -//  
135 -//  
136 -//  
137 -var _default = 131 +/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0;var _regenerator = _interopRequireDefault(__webpack_require__(/*! ./node_modules/@babel/runtime/regenerator */ 36));
  132 +
  133 +
  134 +
  135 +
  136 +
  137 +
  138 +var _mine = __webpack_require__(/*! @/api/mine.js */ 539);function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {try {var info = gen[key](arg);var value = info.value;} catch (error) {reject(error);return;}if (info.done) {resolve(value);} else {Promise.resolve(value).then(_next, _throw);}}function _asyncToGenerator(fn) {return function () {var self = this,args = arguments;return new Promise(function (resolve, reject) {var gen = fn.apply(self, args);function _next(value) {asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value);}function _throw(err) {asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err);}_next(undefined);});};}var _default =
138 { 139 {
139 data: function data() { 140 data: function data() {
140 return { 141 return {
141 - detail: '<h1>服务条款</h1>' };  
142 -  
143 - } };exports.default = _default; 142 + detail: '',
  143 + id: '' };
  144 +
  145 + },
  146 + onLoad: function onLoad(e) {
  147 + this.id = e.id;
  148 + this.problemDetail();
  149 + },
  150 + methods: {
  151 + problemDetail: function problemDetail() {var _this = this;return _asyncToGenerator( /*#__PURE__*/_regenerator.default.mark(function _callee() {var res;return _regenerator.default.wrap(function _callee$(_context) {while (1) {switch (_context.prev = _context.next) {case 0:_context.prev = 0;_context.next = 3;return (
  152 +
  153 + (0, _mine.problemDetail)(_this.id));case 3:res = _context.sent;
  154 + _this.detail = res.detail.content;
  155 + console.log('problemDetail', res);
  156 + // 保存数据
  157 + _context.next = 12;break;case 8:_context.prev = 8;_context.t0 = _context["catch"](0);
  158 + uni.showToast({ title: _context.t0, icon: 'none' });
  159 + console.log('problemDetail', _context.t0);case 12:case "end":return _context.stop();}}}, _callee, null, [[0, 8]]);}))();
  160 +
  161 + } } };exports.default = _default;
  162 +/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
144 163
145 /***/ }) 164 /***/ })
146 165