Commit 82540ce2 by 林翔

Merge branch 'lx_wallet_20190423' of http://119.23.72.7/liangjianmin/h5 into lx_wallet_20190423

# Conflicts:
#	view/21.js
#	view/9.js
#	view/app.js
parents 185396f9 7480fe69
<template> <template>
<div id="app"> <div id="app">
<keep-alive exclude="newsDetail,wallet,status"> <keep-alive exclude="newsDetail,wallet,walletRetrieve,walletDetail,walletRecord,walletStatus">
<router-view class="router-view"></router-view> <router-view class="router-view"></router-view>
</keep-alive> </keep-alive>
</div> </div>
......
...@@ -356,7 +356,7 @@ ...@@ -356,7 +356,7 @@
/*.recharge-content .payment-content .vanCell .checked{ display: inline-block; height: 60px; vertical-align: middle; float: right; margin-right: 1rem; position: relative; } /*.recharge-content .payment-content .vanCell .checked{ display: inline-block; height: 60px; vertical-align: middle; float: right; margin-right: 1rem; position: relative; }
.recharge-content .payment-content .vanCell .checked img{ width: 22px; height: 22px; position: absolute; top: 0; left: 0; right: 0; bottom: 0; margin: auto; }*/ .recharge-content .payment-content .vanCell .checked img{ width: 22px; height: 22px; position: absolute; top: 0; left: 0; right: 0; bottom: 0; margin: auto; }*/
.recharge-content .recharge { .recharge-content .recharge {
position: fixed; position: absolute;
bottom: 0; bottom: 0;
width: 100%; width: 100%;
text-align: center; text-align: center;
...@@ -365,6 +365,8 @@ ...@@ -365,6 +365,8 @@
background: #1080d0; background: #1080d0;
color: #ffffff; color: #ffffff;
font-size: 16px; font-size: 16px;
z-index: 9999999999;
transition: all 0.2s ease;
} }
.recharge-content .rechargeNO { .recharge-content .rechargeNO {
...@@ -640,7 +642,7 @@ ...@@ -640,7 +642,7 @@
} }
.withdraw-content .submit { .withdraw-content .submit {
position: fixed; position: absolute;
bottom: 0; bottom: 0;
width: 100%; width: 100%;
text-align: center; text-align: center;
...@@ -649,6 +651,8 @@ ...@@ -649,6 +651,8 @@
background: #1080d0; background: #1080d0;
color: #ffffff; color: #ffffff;
font-size: 16px; font-size: 16px;
z-index: 999999999999;
transition: all 0.2s ease;
} }
.withdraw-content .submitNO { .withdraw-content .submitNO {
......
...@@ -57,7 +57,7 @@ ...@@ -57,7 +57,7 @@
Vue.use(Icon).use(Popup).use(DatetimePicker).use(Picker).use(Toast); Vue.use(Icon).use(Popup).use(DatetimePicker).use(Picker).use(Toast);
export default { export default {
name: 'WalletRecord', name: 'walletRecord',
data() { data() {
return { return {
title: "充值提现记录", title: "充值提现记录",
......
...@@ -26,10 +26,10 @@ ...@@ -26,10 +26,10 @@
<li class="inp-wrap"> <li class="inp-wrap">
<label class="va-m">设置支付密码</label><br> <label class="va-m">设置支付密码</label><br>
<template v-if="showPassword"> <template v-if="showPassword">
<input type="password" placeholder="密码由8~20位字母、数字组合而成" class="va-m inp" v-model="form.password"/> <input type="password" placeholder="密码由6~20位字母、数字组合而成" class="va-m inp" v-model="form.password"/>
</template> </template>
<template v-else> <template v-else>
<input type="text" placeholder="密码由8~20位字母、数字组合而成" class="va-m inp" v-model="form.password"/> <input type="text" placeholder="密码由6~20位字母、数字组合而成" class="va-m inp" v-model="form.password"/>
</template> </template>
<van-icon v-if="showPassword" name="closed-eye" class="va-m f-r" @click="changeShow"/> <van-icon v-if="showPassword" name="closed-eye" class="va-m f-r" @click="changeShow"/>
<van-icon v-else name="eye-o" class="va-m f-r" @click="changeShow"/> <van-icon v-else name="eye-o" class="va-m f-r" @click="changeShow"/>
...@@ -56,13 +56,13 @@ ...@@ -56,13 +56,13 @@
import Vue from 'vue'; import Vue from 'vue';
import {mapState} from 'vuex' import {mapState} from 'vuex'
import Header from '@/views/common/Header.vue'; import Header from '@/views/common/Header.vue';
import { Icon } from 'vant'; import {Icon} from 'vant';
import {productionUrlPc} from '../../api/index'; import {productionUrlPc} from '../../api/index';
Vue.use(Icon); Vue.use(Icon);
export default { export default {
name: 'WalletRetrieve', name: 'walletRetrieve',
data() { data() {
return { return {
title: "找回密码", title: "找回密码",
...@@ -82,7 +82,7 @@ ...@@ -82,7 +82,7 @@
}, },
formError: false, formError: false,
formMsg: '', formMsg: '',
imgCodeVal: productionUrlPc+"public/verify", imgCodeVal: productionUrlPc + "public/verify",
} }
}, },
computed: { computed: {
...@@ -95,18 +95,18 @@ ...@@ -95,18 +95,18 @@
}, },
watch: { watch: {
retieveCountDownFlag(value) { retieveCountDownFlag(value) {
if(value){ if (value) {
this.yzmSend = false; this.yzmSend = false;
this.timeNum(); this.timeNum();
}else{ } else {
this.yzmSend = true; this.yzmSend = true;
} }
}, },
passwordToken(value) { passwordToken(value) {
if(value){ //返回token则验证成功,下一步 if (value) { //返回token则验证成功,下一步
this.step1 = false; this.step1 = false;
this.step2 = true; this.step2 = true;
}else{ } else {
this.step1 = true; this.step1 = true;
this.step2 = false; this.step2 = false;
} }
...@@ -163,7 +163,7 @@ ...@@ -163,7 +163,7 @@
}) })
}, },
confirm() { //确认 confirm() { //确认
var password_reg = new RegExp(/^[a-zA-Z0-9]{8,20}$/); //^表示开始 $表示结束 8~20位字母和数字组合 var password_reg = new RegExp(/^[a-zA-Z0-9]{6,20}$/); //^表示开始 $表示结束 6~20位字母和数字组合
if (!this.form.password) { if (!this.form.password) {
this.formError = true; this.formError = true;
...@@ -173,7 +173,7 @@ ...@@ -173,7 +173,7 @@
if (!password_reg.test(this.form.password)) { if (!password_reg.test(this.form.password)) {
this.formError = true; this.formError = true;
this.formMsg = '亲,密码由8~20位字母、数字组合'; this.formMsg = '亲,密码由6~20位字母、数字组合';
return; return;
} }
......
...@@ -42,7 +42,7 @@ ...@@ -42,7 +42,7 @@
Vue.use(Icon).use(Dialog); Vue.use(Icon).use(Dialog);
export default { export default {
name: 'status', name: 'walletStatus',
data() { data() {
return { return {
title: "钱包状态", title: "钱包状态",
......
...@@ -54,7 +54,7 @@ ...@@ -54,7 +54,7 @@
Vue.use(Icon).use(Popup).use(DatetimePicker).use(Picker).use(Toast); Vue.use(Icon).use(Popup).use(DatetimePicker).use(Picker).use(Toast);
export default { export default {
name: 'WalletDetail', name: 'walletDetail',
data() { data() {
return { return {
title: "钱包明细", title: "钱包明细",
......
...@@ -42,7 +42,7 @@ eval("exports = module.exports = __webpack_require__(/*! ../../../node_modules/_ ...@@ -42,7 +42,7 @@ eval("exports = module.exports = __webpack_require__(/*! ../../../node_modules/_
/*! no static exports found */ /*! no static exports found */
/***/ (function(module, exports, __webpack_require__) { /***/ (function(module, exports, __webpack_require__) {
eval("var escape = __webpack_require__(/*! ../../../../node_modules/_css-loader@1.0.1@css-loader/lib/url/escape.js */ \"./node_modules/_css-loader@1.0.1@css-loader/lib/url/escape.js\");\nexports = module.exports = __webpack_require__(/*! ../../../../node_modules/_css-loader@1.0.1@css-loader/lib/css-base.js */ \"./node_modules/_css-loader@1.0.1@css-loader/lib/css-base.js\")(false);\n// imports\n\n\n// module\nexports.push([module.i, \".wallet-content {\\r\\n background: #f0f0f0;\\n}\\n.wallet-balance {\\r\\n background: #fff;\\r\\n margin-bottom: 0.267rem;\\n}\\n.wallet-balance .balance-bg {\\r\\n width: 94%;\\r\\n height: 4rem;\\r\\n background: url(\" + escape(__webpack_require__(/*! ../../images/wallet/bg.png */ \"./src/assets/images/wallet/bg.png\")) + \") no-repeat center;\\r\\n background-size: cover;\\r\\n margin: 0.267rem auto;\\r\\n color: #ffffff;\\r\\n -webkit-box-shadow: -0.007rem 0.012rem 0.093rem 0rem rgba(14, 4, 8, 0.4);\\r\\n box-shadow: -0.007rem 0.012rem 0.093rem 0rem rgba(14, 4, 8, 0.4);\\r\\n border-radius: 0.093rem;\\n}\\n.wallet-balance .balance-bg .text-1 {\\r\\n width: 94%;\\r\\n font-size: 16px;\\r\\n margin-top: 0.627rem;\\r\\n padding-left: 0.4rem;\\n}\\n.wallet-balance .balance-bg .text-2 {\\r\\n width: 94%;\\r\\n font-size: 24px;\\r\\n margin-top: 0.3rem;\\r\\n padding-left: 0.4rem;\\n}\\n.wallet-balance .balance-bg .text-3 {\\r\\n font-size: 45px;\\n}\\n.wallet-balance .balance-bg .text-4 {\\r\\n width: 94%;\\r\\n font-size: 12px;\\r\\n margin-top: 0.2rem;\\r\\n padding-right: 0.4rem;\\r\\n text-align: right;\\n}\\n.wallet-balance .balance-bg .text-4 a {\\r\\n color: #fff;\\n}\\n.wallet-balance .balance-handle {\\r\\n width: 9.387rem;\\r\\n height: 1.333rem;\\r\\n margin: 0 auto;\\r\\n padding-bottom: 0.253rem;\\n}\\n.wallet-balance .balance-handle span {\\r\\n float: left;\\r\\n width: 49.5%;\\r\\n text-align: center;\\r\\n height: 1.333rem;\\r\\n line-height: 1.333rem;\\r\\n font-size: 18px;\\r\\n color: #1080d0;\\n}\\n.wallet-balance .balance-handle .withdraw {\\r\\n border-right: 1px solid #e5e5e5;\\n}\\n.wallet-balance .balance-handle .gray {\\r\\n color: #999;\\n}\\n.wallet-content ul {\\r\\n background: #fff;\\n}\\n.wallet-content ul li {\\r\\n float: left;\\r\\n width: 33.33%;\\r\\n text-align: center;\\r\\n margin: 0.8rem 0;\\n}\\n.wallet-content ul li p {\\r\\n margin-top: 0.587rem;\\r\\n font-size: 14px;\\r\\n color: #000;\\n}\\r\\n\\r\\n/*钱包状态*/\\n#app {\\r\\n background: #f0f0f0;\\n}\\n.status-content {\\r\\n background: #f0f0f0;\\n}\\n.status-content .form-wrap {\\r\\n background: #ffffff;\\n}\\n.status-content .form-wrap .inp-wrap {\\r\\n height: 1.6rem;\\r\\n border-bottom: 1px solid #f0f0f0;\\n}\\n.status-content .form-wrap .inp-wrap label {\\r\\n font-size: 18px;\\r\\n line-height: 1.6rem;\\r\\n width: 25%;\\r\\n color: #666666;\\r\\n padding-left: 0.3rem;\\n}\\n.status-content .form-wrap .inp-wrap input {\\r\\n font-size: 18px;\\r\\n line-height: 1.6rem;\\r\\n width: 45%;\\r\\n color: #333333;\\r\\n padding-left: 0.7rem;\\n}\\n.status-content .form-wrap .inp-wrap .forget-password {\\r\\n font-size: 16px;\\r\\n line-height: 1.6rem;\\r\\n color: #1080d0;\\n}\\n.status-content .form-wrap .inp-wrap .bind-bank {\\r\\n font-size: 16px;\\r\\n line-height: 1.6rem;\\r\\n color: #1080d0;\\n}\\n.status-content .submit {\\r\\n width: 305px;\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n background: #1080d0;\\r\\n text-align: center;\\r\\n border-radius: 20px;\\r\\n font-size: 16px;\\r\\n color: #fff;\\r\\n display: block;\\r\\n margin: 1.333rem 0.933rem;\\r\\n font-weight: bold;\\n}\\r\\n\\r\\n/*激活钱包*/\\n.activate-content .form-wrap {\\r\\n background: #ffffff;\\r\\n padding-bottom: 20px;\\r\\n /*padding-top: 20px;*/\\n}\\n.activate-content .form-wrap .inp-wrap {\\r\\n height: 2.5rem;\\r\\n border-top: 1px solid #f0f0f0;\\r\\n margin-left: 0.3rem;\\n}\\n.activate-content .form-wrap .inp-wrap:first-child{\\r\\n border-top: none;\\n}\\n.activate-content .form-wrap .inp-wrap label {\\r\\n font-size: 18px;\\r\\n line-height: 1.3rem;\\r\\n color: #333333;\\n}\\n.activate-content .form-wrap .inp-wrap input {\\r\\n font-size: 16px;\\r\\n line-height: 1.2rem;\\r\\n width: 85%;\\r\\n color: #333333;\\n}\\n.activate-content .form-wrap .inp-wrap:last-child input {\\r\\n width: 65% !important;\\n}\\n.activate-content .form-wrap .yzmImg input {\\r\\n width: 65% !important;\\n}\\n.activate-content .form-wrap .inp-wrap .send-yzm {\\r\\n display: inline-block;\\r\\n text-align: center;\\r\\n font-size: 16px;\\r\\n width: 3rem;\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n color: #1080d0;\\r\\n border-radius: 20px;\\r\\n border: 1px solid #1080d0;\\n}\\n.activate-content .form-wrap .inp-wrap .sending-yzm {\\r\\n display: inline-block;\\r\\n text-align: center;\\r\\n font-size: 16px;\\r\\n width: 3rem;\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n color: #666;\\r\\n border-radius: 20px;\\r\\n background: #f0f0f0;\\n}\\n.activate-content .confirm {\\r\\n width: 305px;\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n background: #1080d0;\\r\\n text-align: center;\\r\\n border-radius: 20px;\\r\\n font-size: 16px;\\r\\n color: #fff;\\r\\n display: block;\\r\\n margin: 1.333rem 0.933rem;\\r\\n font-weight: bold;\\n}\\n.activate-content .next {\\r\\n width: 90%;\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n background: #1080d0;\\r\\n text-align: center;\\r\\n border-radius: 20px;\\r\\n font-size: 16px;\\r\\n color: #fff;\\r\\n display: block;\\r\\n margin: 1.333rem auto;\\r\\n font-weight: bold;\\n}\\n.activate-content .noClick {\\r\\n\\topacity: 0.5;\\n}\\n.activate-content .form-wrap .inp-wrap .f-r {\\r\\n float: right;\\r\\n font-size: 22px;\\r\\n margin-right: 0.25rem;\\r\\n margin-top: 0.35rem;\\n}\\n.activate-content {\\r\\n position: relative;\\n}\\n.activate-content .form-error {\\r\\n position: absolute;\\r\\n left: 0.3rem;\\r\\n bottom: 65px;\\r\\n font-size: 16px;\\r\\n line-height: 16px;\\r\\n color: red;\\n}\\r\\n\\r\\n/*钱包充值*/\\n.recharge-content .wallet-account {\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n font-size: 16px;\\r\\n color: #666666;\\r\\n background: rgba(16, 128, 208, 0.1);\\r\\n padding: 0 0.32rem;\\n}\\n.recharge-content .recharge-amount {\\r\\n height: 100px;\\r\\n background: #ffffff;\\r\\n padding: 0 0.32rem;\\r\\n margin-bottom: 10px;\\n}\\n.recharge-content .recharge-amount p {\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n font-size: 16px;\\r\\n color: #333333;\\n}\\n.recharge-content .recharge-amount span {\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n font-size: 24px;\\r\\n color: #333333;\\n}\\n.recharge-content .recharge-amount .money {\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n font-size: 24px;\\r\\n color: #333333;\\n}\\n.recharge-content .payment-method {\\r\\n height: 30px;\\r\\n line-height: 30px;\\r\\n font-size: 14px;\\r\\n color: #666666;\\r\\n padding: 0 0.32rem;\\n}\\n.recharge-content .payment-content {\\r\\n background: #ffffff;\\n}\\n.recharge-content .payment-content .vanCell {\\r\\n height: 60px; /*margin-left: 0.32rem;*/\\r\\n border-bottom: 1px solid #f0f0f0;\\n}\\n.recharge-content .payment-content .vanCell:last-child {\\r\\n border-bottom: none;\\n}\\n.recharge-content .payment-content .vanCell .vanCelldt {\\r\\n display: inline-block;\\r\\n width: 25px;\\r\\n height: 40px;\\r\\n margin-right: 15px;\\r\\n vertical-align: top;\\r\\n position: relative;\\n}\\n.recharge-content .payment-content .vanCell .vanCelldt img {\\r\\n position: absolute;\\r\\n top: 0;\\r\\n left: 0;\\r\\n right: 0;\\r\\n bottom: 0;\\r\\n margin: auto;\\n}\\n.recharge-content .payment-content .vanCell .vanCelldd {\\r\\n display: inline-block;\\r\\n height: 40px;\\r\\n vertical-align: top;\\r\\n font-size: 12px;\\r\\n line-height: 18px;\\r\\n color: #999; /*padding: 10px 0;*/\\n}\\n.recharge-content .payment-content .vanCell .vanCelldd span {\\r\\n font-size: 14px;\\r\\n line-height: 18px;\\r\\n color: #333333;\\n}\\r\\n\\r\\n/*.recharge-content .payment-content .vanCell .checked{ display: inline-block; height: 60px; vertical-align: middle; float: right; margin-right: 1rem; position: relative; }\\r\\n.recharge-content .payment-content .vanCell .checked img{ width: 22px; height: 22px; position: absolute; top: 0; left: 0; right: 0; bottom: 0; margin: auto; }*/\\n.recharge-content .recharge {\\r\\n position: fixed;\\r\\n bottom: 0;\\r\\n width: 100%;\\r\\n text-align: center;\\r\\n height: 50px;\\r\\n line-height: 50px;\\r\\n background: #1080d0;\\r\\n color: #ffffff;\\r\\n font-size: 16px;\\n}\\n.recharge-content .rechargeNO {\\r\\n opacity: 0.5;\\n}\\r\\n\\r\\n/*验证身份*/\\n.verify-content .form-wrap {\\r\\n background: #ffffff;\\r\\n padding-bottom: 20px;\\n}\\n.verify-content .form-wrap .inp-wrap {\\r\\n height: 2.5rem;\\r\\n border-top: 1px solid #f0f0f0;\\r\\n margin-left: 0.3rem;\\n}\\n.verify-content .form-wrap .inp-wrap label {\\r\\n font-size: 18px;\\r\\n line-height: 1.3rem;\\r\\n color: #333333;\\n}\\n.verify-content .form-wrap .inp-wrap input {\\r\\n font-size: 16px;\\r\\n line-height: 1.2rem;\\r\\n width: 85%;\\r\\n color: #333333;\\n}\\n.verify-content .form-wrap .inp-wrap input {\\r\\n width: 65% !important;\\n}\\n.verify-content .form-wrap .inp-wrap .send-yzm {\\r\\n display: inline-block;\\r\\n text-align: center;\\r\\n font-size: 16px;\\r\\n width: 3rem;\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n color: #1080d0;\\r\\n border-radius: 20px;\\r\\n border: 1px solid #1080d0;\\n}\\n.verify-content .form-wrap .inp-wrap .sending-yzm {\\r\\n display: inline-block;\\r\\n text-align: center;\\r\\n font-size: 16px;\\r\\n width: 3rem;\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n color: #666;\\r\\n border-radius: 20px;\\r\\n background: #f0f0f0;\\n}\\n.verify-content .form-wrap .inp-wrap .f-r {\\r\\n float: right;\\r\\n font-size: 22px;\\r\\n margin-right: 0.25rem;\\r\\n margin-top: 0.35rem;\\n}\\n.verify-content .next {\\r\\n width: 305px;\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n background: #1080d0;\\r\\n text-align: center;\\r\\n border-radius: 20px;\\r\\n font-size: 16px;\\r\\n color: #fff;\\r\\n display: block;\\r\\n margin: 1.333rem 0.933rem;\\r\\n font-weight: bold;\\n}\\r\\n\\r\\n/*绑定银行账号*/\\n.bind-content .safe-mobile {\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n font-size: 16px;\\r\\n color: #666666;\\r\\n background: rgba(16, 128, 208, 0.1);\\r\\n padding: 0 0.32rem;\\n}\\n.bind-content .form-wrap {\\r\\n background: #ffffff;\\r\\n padding-bottom: 10px;\\n}\\n.bind-content .form-wrap .inp-wrap {\\r\\n height: 2.2rem;\\r\\n border-top: 1px solid #f0f0f0;\\r\\n margin-left: 0.3rem;\\n}\\n.bind-content .form-wrap .inp-wrap label {\\r\\n font-size: 18px;\\r\\n line-height: 1.1rem;\\r\\n color: #333333;\\n}\\n.bind-content .form-wrap .inp-wrap input {\\r\\n font-size: 16px;\\r\\n line-height: 1.1rem;\\r\\n width: 85%;\\r\\n color: #333333;\\n}\\n.bind-content .form-wrap .inp-wrap:last-child input {\\r\\n width: 65% !important;\\n}\\r\\n\\r\\n/*.bind-content .form-wrap .inp-wrap:nth-child(5) input{ width: 65% !important; }*/\\n.bind-content .form-wrap .inp-wrap .send-yzm {\\r\\n display: inline-block;\\r\\n text-align: center;\\r\\n font-size: 16px;\\r\\n width: 3rem;\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n color: #1080d0;\\r\\n border-radius: 20px;\\r\\n border: 1px solid #1080d0;\\n}\\n.bind-content .form-wrap .inp-wrap .sending-yzm {\\r\\n display: inline-block;\\r\\n text-align: center;\\r\\n font-size: 16px;\\r\\n width: 3rem;\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n color: #666;\\r\\n border-radius: 20px;\\r\\n background: #f0f0f0;\\n}\\n.bind-content .confirm {\\r\\n position: fixed;\\r\\n bottom: 0;\\r\\n width: 100%;\\r\\n text-align: center;\\r\\n height: 50px;\\r\\n line-height: 50px;\\r\\n background: #1080d0;\\r\\n color: #ffffff;\\r\\n font-size: 16px;\\n}\\n.bind-content .form-error {\\r\\n font-size: 12px;\\r\\n line-height: 20px;\\r\\n color: #e00106;\\r\\n padding: 0.1rem 0.3rem;\\n}\\r\\n\\r\\n/*钱包提现*/\\n.withdraw-content .withdrawUser-ifo {\\r\\n height: 105px;\\r\\n line-height: 35px;\\r\\n font-size: 16px;\\r\\n color: #333;\\r\\n background: #fff;\\r\\n padding: 0 0.32rem;\\r\\n margin-bottom: 5px;\\n}\\n.withdraw-content .withdrawUser-ifo span {\\r\\n float: right;\\r\\n font-size: 14px;\\r\\n color: #666666;\\n}\\n.withdraw-content .withdraw-tips {\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n font-size: 12px;\\r\\n color: #ffa200;\\r\\n background: rgba(255, 162, 0, 0.2);\\r\\n padding: 0 0.32rem;\\r\\n margin-bottom: 5px;\\n}\\n.withdraw-content .withdraw-amount {\\r\\n height: 120px;\\r\\n background: #ffffff;\\r\\n padding: 0 0.32rem;\\r\\n margin-bottom: 10px;\\r\\n color: #333333;\\n}\\n.withdraw-content .withdraw-amount em {\\r\\n color: red;\\n}\\n.withdraw-content .withdraw-amount p {\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n font-size: 16px;\\n}\\n.withdraw-content .withdraw-amount span {\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n font-size: 24px;\\n}\\n.withdraw-content .withdraw-amount .money {\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n font-size: 24px;\\n}\\n.withdraw-content .withdraw-amount .withdraw-money {\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n font-size: 14px;\\r\\n border-top: 1px solid #f0f0f0;\\n}\\n.withdraw-content .withdraw-amount .withdraw-money span {\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n font-size: 14px;\\r\\n color: #1080d0;\\r\\n margin-left: 0.2rem;\\n}\\n.withdraw-content .withdraw-amount .amount-tips {\\r\\n color: red;\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n font-size: 14px;\\r\\n border-top: 1px solid #f0f0f0;\\n}\\n.withdraw-content .withdraw-password {\\r\\n height: 100px;\\r\\n background: #ffffff;\\r\\n padding: 0 0.32rem;\\r\\n margin-bottom: 10px;\\r\\n color: #333333;\\n}\\n.withdraw-content .withdraw-password em {\\r\\n color: red;\\n}\\n.withdraw-content .withdraw-password p {\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n font-size: 16px;\\n}\\n.withdraw-content .withdraw-password .password {\\r\\n width: 85%;\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n font-size: 16px;\\n}\\n.withdraw-content .withdraw-password .f-r {\\r\\n float: right;\\r\\n font-size: 22px;\\r\\n margin-right: 0.25rem;\\r\\n margin-top: 0.35rem;\\n}\\n.withdraw-content .submit {\\r\\n position: fixed;\\r\\n bottom: 0;\\r\\n width: 100%;\\r\\n text-align: center;\\r\\n height: 50px;\\r\\n line-height: 50px;\\r\\n background: #1080d0;\\r\\n color: #ffffff;\\r\\n font-size: 16px;\\n}\\n.withdraw-content .submitNO {\\r\\n opacity: 0.5;\\n}\\r\\n\\r\\n/*钱包明细*/\\n.wallet-detail-content .trade-type {\\r\\n height: 50px;\\r\\n line-height: 50px;\\r\\n text-align: center;\\r\\n font-size: 18px;\\r\\n color: #666666;\\r\\n background: #fff;\\r\\n margin-bottom: 0.5rem;\\n}\\n.wallet-detail-content .trade-date {\\r\\n height: 35px;\\r\\n padding: 0 0.32rem;\\n}\\n.wallet-detail-content .trade-date span {\\r\\n height: 20px;\\r\\n line-height: 20px;\\r\\n font-size: 16px;\\r\\n color: #333;\\n}\\n.wallet-detail-content .trade-date p {\\r\\n height: 20px;\\r\\n line-height: 20px;\\r\\n font-size: 14px;\\r\\n color: #666666;\\n}\\n.wallet-detail-content .trade-detail {\\r\\n background: #fff;\\r\\n max-height: 520px;\\r\\n overflow-y: auto;\\n}\\n.wallet-detail-content .trade-detail li {\\r\\n height: 64px;\\r\\n margin-left: 0.32rem;\\r\\n border-bottom: 1px solid #f0f0f0;\\n}\\n.wallet-detail-content .trade-detail li.no-data {\\r\\n height: auto;\\r\\n margin-left: 0;\\r\\n border: none;\\r\\n background: #f0f0f0;\\n}\\n.wallet-detail-content .trade-detail li.no-data .no-data-pic {\\r\\n width: 100px;\\r\\n height: 75px;\\r\\n display: block;\\r\\n margin: 0 auto;\\r\\n background: url(\" + escape(__webpack_require__(/*! ../../images/wallet/nodata.png */ \"./src/assets/images/wallet/nodata.png\")) + \") no-repeat;\\r\\n background-size: contain;\\n}\\n.wallet-detail-content .trade-detail li .typeIcon {\\r\\n display: inline-block;\\r\\n width: 25px;\\r\\n height: 64px;\\r\\n margin-right: 15px;\\r\\n vertical-align: middle;\\r\\n position: relative;\\n}\\n.wallet-detail-content .trade-detail li .typeIcon img {\\r\\n position: absolute;\\r\\n top: 0;\\r\\n left: 0;\\r\\n right: 0;\\r\\n bottom: 0;\\r\\n margin: auto;\\n}\\n.wallet-detail-content .trade-detail li .typeDetail {\\r\\n display: inline-block;\\r\\n height: 40px;\\r\\n vertical-align: middle;\\r\\n font-size: 12px;\\r\\n line-height: 18px;\\r\\n color: #999;\\r\\n padding: 12px 0;\\n}\\n.wallet-detail-content .trade-detail li .typeDetail span {\\r\\n font-size: 14px;\\r\\n line-height: 18px;\\r\\n color: #333333;\\n}\\n.wallet-detail-content .trade-detail li .trade-num {\\r\\n display: inline-block;\\r\\n height: 64px;\\r\\n line-height: 64px;\\r\\n font-size: 18px;\\r\\n color: #333333;\\r\\n vertical-align: middle;\\r\\n float: right;\\r\\n margin-right: 0.32rem;\\r\\n position: relative;\\n}\\r\\n\\r\\n/*账单详情*/\\n.account-detail-content {\\r\\n background: #ffffff;\\n}\\n.account-detail-content .detail-box {\\r\\n margin: 0 0.32rem;\\r\\n border-bottom: 1px solid #f0f0f0;\\n}\\n.account-detail-content .detail-box:last-child {\\r\\n border-bottom: none;\\n}\\n.account-detail-content .detail-content-1 {\\r\\n height: 180px;\\n}\\n.account-detail-content .detail-content-1 .pay-img {\\r\\n height: 45px;\\r\\n text-align: center;\\r\\n margin-top: 20px;\\n}\\n.account-detail-content .detail-content-1 span {\\r\\n display: inline-block;\\r\\n width: 45px;\\r\\n height: 45px;\\r\\n border-radius: 22.5px;\\r\\n position: relative;\\r\\n background: #f0f0f0;\\n}\\n.account-detail-content .detail-content-1 span img {\\r\\n width: 23px;\\r\\n height: 25px;\\r\\n position: absolute;\\r\\n top: 0;\\r\\n left: 0;\\r\\n right: 0;\\r\\n bottom: 0;\\r\\n margin: auto;\\n}\\n.account-detail-content .detail-content-1 p {\\r\\n text-align: center;\\n}\\n.account-detail-content .detail-content-1 .pay-type {\\r\\n font-size: 14px;\\r\\n line-height: 36px;\\r\\n color: #333;\\n}\\n.account-detail-content .detail-content-1 .pay-amount {\\r\\n font-size: 24px;\\r\\n line-height: 36px;\\r\\n color: #333;\\n}\\n.account-detail-content .detail-content-1 .pay-status {\\r\\n font-size: 12px;\\r\\n line-height: 36px;\\r\\n color: #999;\\n}\\n.account-detail-content .detail-content-2 p {\\r\\n font-size: 14px;\\r\\n line-height: 36px;\\r\\n color: #666;\\n}\\n.account-detail-content .detail-content-2 p span {\\r\\n float: right;\\r\\n color: #333;\\n}\\n.account-detail-content .detail-content-3 p {\\r\\n font-size: 14px;\\r\\n line-height: 36px;\\r\\n color: #666;\\n}\\n.account-detail-content .detail-content-3 p span {\\r\\n float: right;\\r\\n color: #333;\\n}\\n.account-detail-content .detail-content-3 p a {\\r\\n float: right;\\r\\n color: #1080d0;\\n}\\r\\n\\r\\n/*充值提现记录*/\\n.record-content .record-type {\\r\\n height: 50px;\\r\\n line-height: 50px;\\r\\n text-align: center;\\r\\n font-size: 18px;\\r\\n color: #666666;\\r\\n background: #fff;\\r\\n margin-bottom: 0.5rem;\\n}\\n.record-content .record-date {\\r\\n height: 35px;\\r\\n padding: 0 0.32rem;\\n}\\n.record-content .record-date span {\\r\\n height: 20px;\\r\\n line-height: 20px;\\r\\n font-size: 16px;\\r\\n color: #333;\\n}\\n.record-content .record-date p {\\r\\n height: 20px;\\r\\n line-height: 20px;\\r\\n font-size: 14px;\\r\\n color: #666666;\\n}\\n.record-content .record-detail {\\r\\n background: #fff;\\r\\n max-height: 520px;\\r\\n overflow-y: auto;\\n}\\n.record-content .record-detail li {\\r\\n height: 64px;\\r\\n margin-left: 0.32rem;\\r\\n border-bottom: 1px solid #f0f0f0;\\n}\\n.record-content .record-detail li.no-data {\\r\\n height: auto;\\r\\n margin-left: 0;\\r\\n border: none;\\r\\n background: #f0f0f0;\\n}\\n.record-content .record-detail li.no-data .no-data-pic {\\r\\n width: 100px;\\r\\n height: 75px;\\r\\n display: block;\\r\\n margin: 0 auto;\\r\\n background: url(\" + escape(__webpack_require__(/*! ../../images/wallet/nodata.png */ \"./src/assets/images/wallet/nodata.png\")) + \") no-repeat;\\r\\n background-size: contain;\\n}\\n.record-content .record-detail li .record-item {\\r\\n display: inline-block;\\r\\n height: 40px;\\r\\n vertical-align: middle;\\r\\n font-size: 12px;\\r\\n line-height: 18px;\\r\\n color: #999;\\r\\n padding: 12px 0;\\n}\\n.record-content .record-detail li .record-item span {\\r\\n font-size: 16px;\\r\\n line-height: 18px;\\r\\n color: #333333;\\n}\\n.record-content .record-detail li .record-num {\\r\\n display: inline-block;\\r\\n height: 54px;\\r\\n line-height: 26px;\\r\\n font-size: 18px;\\r\\n color: #333333;\\r\\n text-align: right;\\r\\n vertical-align: middle;\\r\\n float: right;\\r\\n margin-right: 0.32rem;\\r\\n padding: 5px 0;\\r\\n position: relative;\\n}\\n.record-content .record-detail li .record-num .withdrawText {\\r\\n width: 75px;\\r\\n height: 25px;\\r\\n line-height: 25px;\\r\\n font-size: 14px;\\r\\n color: red;\\n}\\n.record-content .record-detail li .record-num .successText {\\r\\n width: 75px;\\r\\n height: 25px;\\r\\n line-height: 25px;\\r\\n font-size: 14px;\\r\\n color: #999999;\\n}\\n.record-content .record-detail li .record-num .rechargeBtn {\\r\\n display: inline-block;\\r\\n text-align: center;\\r\\n width: 75px;\\r\\n height: 25px;\\r\\n line-height: 25px;\\r\\n font-size: 14px;\\r\\n color: #1080d0;\\r\\n border: 1px solid #1080d0;\\r\\n border-radius: 15px;\\n}\\r\\n\\r\\n/*账单详情*/\\n.withdraw-detail-content {\\r\\n background: #ffffff;\\n}\\n.withdraw-detail-content .detail-box {\\r\\n margin: 0 0.32rem;\\r\\n border-bottom: 1px solid #f0f0f0;\\n}\\n.withdraw-detail-content .detail-box:last-child {\\r\\n border-bottom: none;\\n}\\n.withdraw-detail-content .detail-content-1 {\\r\\n height: 120px;\\n}\\n.withdraw-detail-content .detail-content-1 .withdraw-img {\\r\\n height: 45px;\\r\\n text-align: center;\\r\\n margin-top: 20px;\\n}\\n.withdraw-detail-content .detail-content-1 span {\\r\\n display: inline-block;\\r\\n width: 45px;\\r\\n height: 45px;\\r\\n border-radius: 22.5px;\\r\\n position: relative;\\r\\n background: #f0f0f0;\\n}\\n.withdraw-detail-content .detail-content-1 span img {\\r\\n width: 23px;\\r\\n height: 25px;\\r\\n position: absolute;\\r\\n top: 0;\\r\\n left: 0;\\r\\n right: 0;\\r\\n bottom: 0;\\r\\n margin: auto;\\n}\\n.withdraw-detail-content .detail-content-1 p {\\r\\n text-align: center;\\n}\\n.withdraw-detail-content .detail-content-1 .withdraw-record {\\r\\n font-size: 14px;\\r\\n line-height: 36px;\\r\\n color: #333;\\n}\\n.withdraw-detail-content .detail-content-1 .withdraw-amount {\\r\\n font-size: 24px;\\r\\n line-height: 36px;\\r\\n color: #333;\\n}\\n.withdraw-detail-content .detail-content-1 .withdraw-status {\\r\\n font-size: 12px;\\r\\n line-height: 36px;\\r\\n color: #999;\\n}\\n.withdraw-detail-content .detail-content-2 p {\\r\\n font-size: 14px;\\r\\n line-height: 36px;\\r\\n color: #666;\\n}\\n.withdraw-detail-content .detail-content-2 p span {\\r\\n float: right;\\r\\n color: #333;\\n}\\n.withdraw-detail-content .detail-content-3 p {\\r\\n font-size: 14px;\\r\\n line-height: 36px;\\r\\n color: #666;\\n}\\n.withdraw-detail-content .detail-content-3 p span {\\r\\n float: right;\\r\\n color: #333;\\n}\\n.withdraw-detail-content .detail-content-3 p a {\\r\\n float: right;\\r\\n color: #1080d0;\\n}\\r\\n\\r\\n/*找回密码*/\\n.retrieve-content .form-wrap {\\r\\n background: #ffffff;\\r\\n padding-bottom: 20px;\\n}\\n.retrieve-content .form-wrap .inp-wrap {\\r\\n height: 2.5rem;\\r\\n border-top: 1px solid #f0f0f0;\\r\\n margin-left: 0.3rem;\\n}\\n.retrieve-content .form-wrap .inp-wrap label {\\r\\n font-size: 18px;\\r\\n line-height: 1.3rem;\\r\\n color: #333333;\\n}\\n.retrieve-content .form-wrap .inp-wrap input {\\r\\n font-size: 16px;\\r\\n line-height: 1.2rem;\\r\\n width: 85%;\\r\\n color: #333333;\\n}\\n.retrieve-content .form-wrap .inp-wrap:nth-child(2) input {\\r\\n width: 65% !important;\\n}\\n.retrieve-content .form-wrap .inp-wrap:nth-child(3) input {\\r\\n width: 65% !important;\\n}\\n.retrieve-content .form-wrap .inp-wrap .send-yzm {\\r\\n display: inline-block;\\r\\n text-align: center;\\r\\n font-size: 16px;\\r\\n width: 3rem;\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n color: #1080d0;\\r\\n border-radius: 20px;\\r\\n border: 1px solid #1080d0;\\n}\\n.retrieve-content .form-wrap .inp-wrap .sending-yzm {\\r\\n display: inline-block;\\r\\n text-align: center;\\r\\n font-size: 16px;\\r\\n width: 3rem;\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n color: #666;\\r\\n border-radius: 20px;\\r\\n background: #f0f0f0;\\n}\\n.retrieve-content .confirm {\\r\\n width: 305px;\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n background: #1080d0;\\r\\n text-align: center;\\r\\n border-radius: 20px;\\r\\n font-size: 16px;\\r\\n color: #fff;\\r\\n display: block;\\r\\n margin: 1.333rem 0.933rem;\\r\\n font-weight: bold;\\n}\\n.retrieve-content .next {\\r\\n width: 305px;\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n background: #1080d0;\\r\\n text-align: center;\\r\\n border-radius: 20px;\\r\\n font-size: 16px;\\r\\n color: #fff;\\r\\n display: block;\\r\\n margin: 1.333rem 0.933rem;\\r\\n font-weight: bold;\\n}\\n.retrieve-content .form-wrap .inp-wrap .f-r {\\r\\n float: right;\\r\\n font-size: 22px;\\r\\n margin-right: 0.25rem;\\r\\n margin-top: 0.35rem;\\n}\\n.retrieve-content {\\r\\n position: relative;\\n}\\n.retrieve-content .form-error {\\r\\n position: absolute;\\r\\n left: 0.3rem;\\r\\n bottom: 65px;\\r\\n font-size: 16px;\\r\\n line-height: 16px;\\r\\n color: red;\\n}\\r\\n\\r\\n/*收银台*/\\n.cashier-content .cashier-detail {\\r\\n background: #ffffff;\\r\\n height: 85px;\\r\\n margin-bottom: 10px;\\n}\\n.cashier-content .cashier-detail p {\\r\\n color: #333333;\\r\\n text-align: center;\\n}\\n.cashier-content .cashier-detail .order-num {\\r\\n font-size: 14px;\\r\\n line-height: 36px;\\n}\\n.cashier-content .cashier-detail .order-money {\\r\\n font-size: 24px;\\r\\n line-height: 36px;\\n}\\n.cashier-content .form-wrap {\\r\\n background: #ffffff;\\n}\\n.cashier-content .form-wrap .inp-wrap {\\r\\n height: 60px;\\n}\\n.cashier-content .form-wrap .inp-wrap label {\\r\\n font-size: 16px;\\r\\n line-height: 60px;\\r\\n width: 25%;\\r\\n color: #333333;\\r\\n padding-left: 0.3rem;\\n}\\n.cashier-content .form-wrap .inp-wrap input {\\r\\n font-size: 16px;\\r\\n line-height: 60px;\\r\\n width: 45%;\\r\\n color: #333333;\\n}\\n.cashier-content .form-wrap .inp-wrap .f-r {\\r\\n float: right;\\r\\n font-size: 22px;\\r\\n margin-right: 0.55rem;\\r\\n margin-top: 0.55rem;\\n}\\n.cashier-content .pay {\\r\\n width: 9.2rem;\\r\\n height: 1.33rem;\\r\\n line-height: 1.33rem;\\r\\n background: #1080d0;\\r\\n text-align: center;\\r\\n border-radius: 0.6rem;\\r\\n font-size: 16px;\\r\\n color: #fff;\\r\\n display: block;\\r\\n margin: 1.333rem auto;\\r\\n font-weight: bold;\\n}\\n.cashier-content .forget-password {\\r\\n text-align: right;\\r\\n font-size: 14px;\\r\\n line-height: 36px;\\r\\n padding-right: 0.3rem;\\n}\\n.cashier-content .forget-password a {\\r\\n color: #666666;\\n}\\n.dialog-layer-shade {\\r\\n position: fixed;\\r\\n width: 100%;\\r\\n height: 100%;\\r\\n top: 0;\\r\\n right: 0;\\r\\n left: 0;\\r\\n z-index: 2018;\\r\\n background: rgba(0, 0, 0, 0.4);\\n}\\n.dialog-layer-shade .dialog-layer {\\r\\n width: 100%;\\r\\n position: fixed;\\r\\n bottom: 0;\\r\\n left: 0;\\r\\n right: 0;\\r\\n text-align: center;\\r\\n background-color: #f0f0f0;\\r\\n min-height: 150px;\\r\\n -webkit-animation: fadeInUp 0.3s ease-in-out;\\n}\\n.dialog-layer-shade .dialog-layer .tit {\\r\\n font-size: 16px;\\r\\n color: #333333;\\r\\n height: 48px;\\r\\n line-height: 48px;\\r\\n border-bottom: 1px solid #e5e5e5;\\r\\n font-weight: bold;\\n}\\n.dialog-layer-shade .dialog-layer .tab {\\r\\n display: -webkit-box;\\r\\n display: -ms-flexbox;\\r\\n display: flex;\\r\\n padding: 0.533rem 0.4rem;\\r\\n -ms-flex-pack: distribute;\\r\\n justify-content: space-around;\\r\\n -ms-flex-flow: wrap;\\r\\n flex-flow: wrap;\\n}\\n.dialog-layer-shade .dialog-layer .tab li {\\r\\n -webkit-box-flex: 0;\\r\\n -ms-flex: 0 0 31%;\\r\\n flex: 0 0 31%;\\r\\n height: 55px;\\r\\n line-height: 55px;\\r\\n text-align: center;\\r\\n background-color: #ffffff;\\r\\n font-size: 16px;\\r\\n color: #666666;\\r\\n margin-bottom: 0.16rem;\\r\\n margin-right: 0.16rem;\\n}\\n.dialog-layer-shade .dialog-layer .tab li.curr {\\r\\n background-color: #1080d0;\\r\\n color: #ffffff;\\n}\\n.dialog-layer-shade .dialog-layer .btn {\\r\\n display: block;\\r\\n width: 100%;\\r\\n height: 50px;\\r\\n line-height: 50px;\\r\\n background-color: #ffffff;\\r\\n text-align: center;\\r\\n font-size: 16px;\\r\\n color: #333333;\\r\\n font-weight: bold;\\r\\n border-top: 0.133rem solid rgba(0, 0, 0, 0.4);\\n}\\n@-webkit-keyframes fadeInUp {\\n0% {\\r\\n -webkit-transform: translateY(200px)\\n}\\n100% {\\r\\n -webkit-transform: translateY(0)\\n}\\n}\", \"\"]);\n\n// exports\n\n\n//# sourceURL=webpack:///./src/assets/css/wallet/wallet.css?./node_modules/_css-loader@1.0.1@css-loader??ref--6-oneOf-1-1!./node_modules/_vue-loader@15.6.4@vue-loader/lib/loaders/stylePostLoader.js!./node_modules/_postcss-loader@3.0.0@postcss-loader/src??ref--6-oneOf-1-2"); eval("var escape = __webpack_require__(/*! ../../../../node_modules/_css-loader@1.0.1@css-loader/lib/url/escape.js */ \"./node_modules/_css-loader@1.0.1@css-loader/lib/url/escape.js\");\nexports = module.exports = __webpack_require__(/*! ../../../../node_modules/_css-loader@1.0.1@css-loader/lib/css-base.js */ \"./node_modules/_css-loader@1.0.1@css-loader/lib/css-base.js\")(false);\n// imports\n\n\n// module\nexports.push([module.i, \".wallet-content {\\r\\n background: #f0f0f0;\\n}\\n.wallet-balance {\\r\\n background: #fff;\\r\\n margin-bottom: 0.267rem;\\n}\\n.wallet-balance .balance-bg {\\r\\n width: 94%;\\r\\n height: 4rem;\\r\\n background: url(\" + escape(__webpack_require__(/*! ../../images/wallet/bg.png */ \"./src/assets/images/wallet/bg.png\")) + \") no-repeat center;\\r\\n background-size: cover;\\r\\n margin: 0.267rem auto;\\r\\n color: #ffffff;\\r\\n -webkit-box-shadow: -0.007rem 0.012rem 0.093rem 0rem rgba(14, 4, 8, 0.4);\\r\\n box-shadow: -0.007rem 0.012rem 0.093rem 0rem rgba(14, 4, 8, 0.4);\\r\\n border-radius: 0.093rem;\\n}\\n.wallet-balance .balance-bg .text-1 {\\r\\n width: 94%;\\r\\n font-size: 16px;\\r\\n margin-top: 0.627rem;\\r\\n padding-left: 0.4rem;\\n}\\n.wallet-balance .balance-bg .text-2 {\\r\\n width: 94%;\\r\\n font-size: 24px;\\r\\n margin-top: 0.3rem;\\r\\n padding-left: 0.4rem;\\n}\\n.wallet-balance .balance-bg .text-3 {\\r\\n font-size: 45px;\\n}\\n.wallet-balance .balance-bg .text-4 {\\r\\n width: 94%;\\r\\n font-size: 12px;\\r\\n margin-top: 0.2rem;\\r\\n padding-right: 0.4rem;\\r\\n text-align: right;\\n}\\n.wallet-balance .balance-bg .text-4 a {\\r\\n color: #fff;\\n}\\n.wallet-balance .balance-handle {\\r\\n width: 9.387rem;\\r\\n height: 1.333rem;\\r\\n margin: 0 auto;\\r\\n padding-bottom: 0.253rem;\\n}\\n.wallet-balance .balance-handle span {\\r\\n float: left;\\r\\n width: 49.5%;\\r\\n text-align: center;\\r\\n height: 1.333rem;\\r\\n line-height: 1.333rem;\\r\\n font-size: 18px;\\r\\n color: #1080d0;\\n}\\n.wallet-balance .balance-handle .withdraw {\\r\\n border-right: 1px solid #e5e5e5;\\n}\\n.wallet-balance .balance-handle .gray {\\r\\n color: #999;\\n}\\n.wallet-content ul {\\r\\n background: #fff;\\n}\\n.wallet-content ul li {\\r\\n float: left;\\r\\n width: 33.33%;\\r\\n text-align: center;\\r\\n margin: 0.8rem 0;\\n}\\n.wallet-content ul li p {\\r\\n margin-top: 0.587rem;\\r\\n font-size: 14px;\\r\\n color: #000;\\n}\\r\\n\\r\\n/*钱包状态*/\\n#app {\\r\\n background: #f0f0f0;\\n}\\n.status-content {\\r\\n background: #f0f0f0;\\n}\\n.status-content .form-wrap {\\r\\n background: #ffffff;\\n}\\n.status-content .form-wrap .inp-wrap {\\r\\n height: 1.6rem;\\r\\n border-bottom: 1px solid #f0f0f0;\\n}\\n.status-content .form-wrap .inp-wrap label {\\r\\n font-size: 18px;\\r\\n line-height: 1.6rem;\\r\\n width: 25%;\\r\\n color: #666666;\\r\\n padding-left: 0.3rem;\\n}\\n.status-content .form-wrap .inp-wrap input {\\r\\n font-size: 18px;\\r\\n line-height: 1.6rem;\\r\\n width: 45%;\\r\\n color: #333333;\\r\\n padding-left: 0.7rem;\\n}\\n.status-content .form-wrap .inp-wrap .forget-password {\\r\\n font-size: 16px;\\r\\n line-height: 1.6rem;\\r\\n color: #1080d0;\\n}\\n.status-content .form-wrap .inp-wrap .bind-bank {\\r\\n font-size: 16px;\\r\\n line-height: 1.6rem;\\r\\n color: #1080d0;\\n}\\n.status-content .submit {\\r\\n width: 305px;\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n background: #1080d0;\\r\\n text-align: center;\\r\\n border-radius: 20px;\\r\\n font-size: 16px;\\r\\n color: #fff;\\r\\n display: block;\\r\\n margin: 1.333rem 0.933rem;\\r\\n font-weight: bold;\\n}\\r\\n\\r\\n/*激活钱包*/\\n.activate-content .form-wrap {\\r\\n background: #ffffff;\\r\\n padding-bottom: 20px;\\r\\n /*padding-top: 20px;*/\\n}\\n.activate-content .form-wrap .inp-wrap {\\r\\n height: 2.5rem;\\r\\n border-top: 1px solid #f0f0f0;\\r\\n margin-left: 0.3rem;\\n}\\n.activate-content .form-wrap .inp-wrap:first-child{\\r\\n border-top: none;\\n}\\n.activate-content .form-wrap .inp-wrap label {\\r\\n font-size: 18px;\\r\\n line-height: 1.3rem;\\r\\n color: #333333;\\n}\\n.activate-content .form-wrap .inp-wrap input {\\r\\n font-size: 16px;\\r\\n line-height: 1.2rem;\\r\\n width: 85%;\\r\\n color: #333333;\\n}\\n.activate-content .form-wrap .inp-wrap:last-child input {\\r\\n width: 65% !important;\\n}\\n.activate-content .form-wrap .yzmImg input {\\r\\n width: 65% !important;\\n}\\n.activate-content .form-wrap .inp-wrap .send-yzm {\\r\\n display: inline-block;\\r\\n text-align: center;\\r\\n font-size: 16px;\\r\\n width: 3rem;\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n color: #1080d0;\\r\\n border-radius: 20px;\\r\\n border: 1px solid #1080d0;\\n}\\n.activate-content .form-wrap .inp-wrap .sending-yzm {\\r\\n display: inline-block;\\r\\n text-align: center;\\r\\n font-size: 16px;\\r\\n width: 3rem;\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n color: #666;\\r\\n border-radius: 20px;\\r\\n background: #f0f0f0;\\n}\\n.activate-content .confirm {\\r\\n width: 305px;\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n background: #1080d0;\\r\\n text-align: center;\\r\\n border-radius: 20px;\\r\\n font-size: 16px;\\r\\n color: #fff;\\r\\n display: block;\\r\\n margin: 1.333rem 0.933rem;\\r\\n font-weight: bold;\\n}\\n.activate-content .next {\\r\\n width: 90%;\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n background: #1080d0;\\r\\n text-align: center;\\r\\n border-radius: 20px;\\r\\n font-size: 16px;\\r\\n color: #fff;\\r\\n display: block;\\r\\n margin: 1.333rem auto;\\r\\n font-weight: bold;\\n}\\n.activate-content .noClick {\\r\\n\\topacity: 0.5;\\n}\\n.activate-content .form-wrap .inp-wrap .f-r {\\r\\n float: right;\\r\\n font-size: 22px;\\r\\n margin-right: 0.25rem;\\r\\n margin-top: 0.35rem;\\n}\\n.activate-content {\\r\\n position: relative;\\n}\\n.activate-content .form-error {\\r\\n position: absolute;\\r\\n left: 0.3rem;\\r\\n bottom: 65px;\\r\\n font-size: 16px;\\r\\n line-height: 16px;\\r\\n color: red;\\n}\\r\\n\\r\\n/*钱包充值*/\\n.recharge-content .wallet-account {\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n font-size: 16px;\\r\\n color: #666666;\\r\\n background: rgba(16, 128, 208, 0.1);\\r\\n padding: 0 0.32rem;\\n}\\n.recharge-content .recharge-amount {\\r\\n height: 100px;\\r\\n background: #ffffff;\\r\\n padding: 0 0.32rem;\\r\\n margin-bottom: 10px;\\n}\\n.recharge-content .recharge-amount p {\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n font-size: 16px;\\r\\n color: #333333;\\n}\\n.recharge-content .recharge-amount span {\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n font-size: 24px;\\r\\n color: #333333;\\n}\\n.recharge-content .recharge-amount .money {\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n font-size: 24px;\\r\\n color: #333333;\\n}\\n.recharge-content .payment-method {\\r\\n height: 30px;\\r\\n line-height: 30px;\\r\\n font-size: 14px;\\r\\n color: #666666;\\r\\n padding: 0 0.32rem;\\n}\\n.recharge-content .payment-content {\\r\\n background: #ffffff;\\n}\\n.recharge-content .payment-content .vanCell {\\r\\n height: 60px; /*margin-left: 0.32rem;*/\\r\\n border-bottom: 1px solid #f0f0f0;\\n}\\n.recharge-content .payment-content .vanCell:last-child {\\r\\n border-bottom: none;\\n}\\n.recharge-content .payment-content .vanCell .vanCelldt {\\r\\n display: inline-block;\\r\\n width: 25px;\\r\\n height: 40px;\\r\\n margin-right: 15px;\\r\\n vertical-align: top;\\r\\n position: relative;\\n}\\n.recharge-content .payment-content .vanCell .vanCelldt img {\\r\\n position: absolute;\\r\\n top: 0;\\r\\n left: 0;\\r\\n right: 0;\\r\\n bottom: 0;\\r\\n margin: auto;\\n}\\n.recharge-content .payment-content .vanCell .vanCelldd {\\r\\n display: inline-block;\\r\\n height: 40px;\\r\\n vertical-align: top;\\r\\n font-size: 12px;\\r\\n line-height: 18px;\\r\\n color: #999; /*padding: 10px 0;*/\\n}\\n.recharge-content .payment-content .vanCell .vanCelldd span {\\r\\n font-size: 14px;\\r\\n line-height: 18px;\\r\\n color: #333333;\\n}\\r\\n\\r\\n/*.recharge-content .payment-content .vanCell .checked{ display: inline-block; height: 60px; vertical-align: middle; float: right; margin-right: 1rem; position: relative; }\\r\\n.recharge-content .payment-content .vanCell .checked img{ width: 22px; height: 22px; position: absolute; top: 0; left: 0; right: 0; bottom: 0; margin: auto; }*/\\n.recharge-content .recharge {\\r\\n position: absolute;\\r\\n bottom: 0;\\r\\n width: 100%;\\r\\n text-align: center;\\r\\n height: 50px;\\r\\n line-height: 50px;\\r\\n background: #1080d0;\\r\\n color: #ffffff;\\r\\n font-size: 16px;\\r\\n z-index: 9999999999;\\r\\n -webkit-transition: all 0.2s ease;\\r\\n transition: all 0.2s ease;\\n}\\n.recharge-content .rechargeNO {\\r\\n opacity: 0.5;\\n}\\r\\n\\r\\n/*验证身份*/\\n.verify-content .form-wrap {\\r\\n background: #ffffff;\\r\\n padding-bottom: 20px;\\n}\\n.verify-content .form-wrap .inp-wrap {\\r\\n height: 2.5rem;\\r\\n border-top: 1px solid #f0f0f0;\\r\\n margin-left: 0.3rem;\\n}\\n.verify-content .form-wrap .inp-wrap label {\\r\\n font-size: 18px;\\r\\n line-height: 1.3rem;\\r\\n color: #333333;\\n}\\n.verify-content .form-wrap .inp-wrap input {\\r\\n font-size: 16px;\\r\\n line-height: 1.2rem;\\r\\n width: 85%;\\r\\n color: #333333;\\n}\\n.verify-content .form-wrap .inp-wrap input {\\r\\n width: 65% !important;\\n}\\n.verify-content .form-wrap .inp-wrap .send-yzm {\\r\\n display: inline-block;\\r\\n text-align: center;\\r\\n font-size: 16px;\\r\\n width: 3rem;\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n color: #1080d0;\\r\\n border-radius: 20px;\\r\\n border: 1px solid #1080d0;\\n}\\n.verify-content .form-wrap .inp-wrap .sending-yzm {\\r\\n display: inline-block;\\r\\n text-align: center;\\r\\n font-size: 16px;\\r\\n width: 3rem;\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n color: #666;\\r\\n border-radius: 20px;\\r\\n background: #f0f0f0;\\n}\\n.verify-content .form-wrap .inp-wrap .f-r {\\r\\n float: right;\\r\\n font-size: 22px;\\r\\n margin-right: 0.25rem;\\r\\n margin-top: 0.35rem;\\n}\\n.verify-content .next {\\r\\n width: 305px;\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n background: #1080d0;\\r\\n text-align: center;\\r\\n border-radius: 20px;\\r\\n font-size: 16px;\\r\\n color: #fff;\\r\\n display: block;\\r\\n margin: 1.333rem 0.933rem;\\r\\n font-weight: bold;\\n}\\r\\n\\r\\n/*绑定银行账号*/\\n.bind-content .safe-mobile {\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n font-size: 16px;\\r\\n color: #666666;\\r\\n background: rgba(16, 128, 208, 0.1);\\r\\n padding: 0 0.32rem;\\n}\\n.bind-content .form-wrap {\\r\\n background: #ffffff;\\r\\n padding-bottom: 10px;\\n}\\n.bind-content .form-wrap .inp-wrap {\\r\\n height: 2.2rem;\\r\\n border-top: 1px solid #f0f0f0;\\r\\n margin-left: 0.3rem;\\n}\\n.bind-content .form-wrap .inp-wrap label {\\r\\n font-size: 18px;\\r\\n line-height: 1.1rem;\\r\\n color: #333333;\\n}\\n.bind-content .form-wrap .inp-wrap input {\\r\\n font-size: 16px;\\r\\n line-height: 1.1rem;\\r\\n width: 85%;\\r\\n color: #333333;\\n}\\n.bind-content .form-wrap .inp-wrap:last-child input {\\r\\n width: 65% !important;\\n}\\r\\n\\r\\n/*.bind-content .form-wrap .inp-wrap:nth-child(5) input{ width: 65% !important; }*/\\n.bind-content .form-wrap .inp-wrap .send-yzm {\\r\\n display: inline-block;\\r\\n text-align: center;\\r\\n font-size: 16px;\\r\\n width: 3rem;\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n color: #1080d0;\\r\\n border-radius: 20px;\\r\\n border: 1px solid #1080d0;\\n}\\n.bind-content .form-wrap .inp-wrap .sending-yzm {\\r\\n display: inline-block;\\r\\n text-align: center;\\r\\n font-size: 16px;\\r\\n width: 3rem;\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n color: #666;\\r\\n border-radius: 20px;\\r\\n background: #f0f0f0;\\n}\\n.bind-content .confirm {\\r\\n position: fixed;\\r\\n bottom: 0;\\r\\n width: 100%;\\r\\n text-align: center;\\r\\n height: 50px;\\r\\n line-height: 50px;\\r\\n background: #1080d0;\\r\\n color: #ffffff;\\r\\n font-size: 16px;\\n}\\n.bind-content .form-error {\\r\\n font-size: 12px;\\r\\n line-height: 20px;\\r\\n color: #e00106;\\r\\n padding: 0.1rem 0.3rem;\\n}\\r\\n\\r\\n/*钱包提现*/\\n.withdraw-content .withdrawUser-ifo {\\r\\n height: 105px;\\r\\n line-height: 35px;\\r\\n font-size: 16px;\\r\\n color: #333;\\r\\n background: #fff;\\r\\n padding: 0 0.32rem;\\r\\n margin-bottom: 5px;\\n}\\n.withdraw-content .withdrawUser-ifo span {\\r\\n float: right;\\r\\n font-size: 14px;\\r\\n color: #666666;\\n}\\n.withdraw-content .withdraw-tips {\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n font-size: 12px;\\r\\n color: #ffa200;\\r\\n background: rgba(255, 162, 0, 0.2);\\r\\n padding: 0 0.32rem;\\r\\n margin-bottom: 5px;\\n}\\n.withdraw-content .withdraw-amount {\\r\\n height: 120px;\\r\\n background: #ffffff;\\r\\n padding: 0 0.32rem;\\r\\n margin-bottom: 10px;\\r\\n color: #333333;\\n}\\n.withdraw-content .withdraw-amount em {\\r\\n color: red;\\n}\\n.withdraw-content .withdraw-amount p {\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n font-size: 16px;\\n}\\n.withdraw-content .withdraw-amount span {\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n font-size: 24px;\\n}\\n.withdraw-content .withdraw-amount .money {\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n font-size: 24px;\\n}\\n.withdraw-content .withdraw-amount .withdraw-money {\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n font-size: 14px;\\r\\n border-top: 1px solid #f0f0f0;\\n}\\n.withdraw-content .withdraw-amount .withdraw-money span {\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n font-size: 14px;\\r\\n color: #1080d0;\\r\\n margin-left: 0.2rem;\\n}\\n.withdraw-content .withdraw-amount .amount-tips {\\r\\n color: red;\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n font-size: 14px;\\r\\n border-top: 1px solid #f0f0f0;\\n}\\n.withdraw-content .withdraw-password {\\r\\n height: 100px;\\r\\n background: #ffffff;\\r\\n padding: 0 0.32rem;\\r\\n margin-bottom: 10px;\\r\\n color: #333333;\\n}\\n.withdraw-content .withdraw-password em {\\r\\n color: red;\\n}\\n.withdraw-content .withdraw-password p {\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n font-size: 16px;\\n}\\n.withdraw-content .withdraw-password .password {\\r\\n width: 85%;\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n font-size: 16px;\\n}\\n.withdraw-content .withdraw-password .f-r {\\r\\n float: right;\\r\\n font-size: 22px;\\r\\n margin-right: 0.25rem;\\r\\n margin-top: 0.35rem;\\n}\\n.withdraw-content .submit {\\r\\n position: absolute;\\r\\n bottom: 0;\\r\\n width: 100%;\\r\\n text-align: center;\\r\\n height: 50px;\\r\\n line-height: 50px;\\r\\n background: #1080d0;\\r\\n color: #ffffff;\\r\\n font-size: 16px;\\r\\n z-index: 999999999999;\\r\\n -webkit-transition: all 0.2s ease;\\r\\n transition: all 0.2s ease;\\n}\\n.withdraw-content .submitNO {\\r\\n opacity: 0.5;\\n}\\r\\n\\r\\n/*钱包明细*/\\n.wallet-detail-content .trade-type {\\r\\n height: 50px;\\r\\n line-height: 50px;\\r\\n text-align: center;\\r\\n font-size: 18px;\\r\\n color: #666666;\\r\\n background: #fff;\\r\\n margin-bottom: 0.5rem;\\n}\\n.wallet-detail-content .trade-date {\\r\\n height: 35px;\\r\\n padding: 0 0.32rem;\\n}\\n.wallet-detail-content .trade-date span {\\r\\n height: 20px;\\r\\n line-height: 20px;\\r\\n font-size: 16px;\\r\\n color: #333;\\n}\\n.wallet-detail-content .trade-date p {\\r\\n height: 20px;\\r\\n line-height: 20px;\\r\\n font-size: 14px;\\r\\n color: #666666;\\n}\\n.wallet-detail-content .trade-detail {\\r\\n background: #fff;\\r\\n max-height: 520px;\\r\\n overflow-y: auto;\\n}\\n.wallet-detail-content .trade-detail li {\\r\\n height: 64px;\\r\\n margin-left: 0.32rem;\\r\\n border-bottom: 1px solid #f0f0f0;\\n}\\n.wallet-detail-content .trade-detail li.no-data {\\r\\n height: auto;\\r\\n margin-left: 0;\\r\\n border: none;\\r\\n background: #f0f0f0;\\n}\\n.wallet-detail-content .trade-detail li.no-data .no-data-pic {\\r\\n width: 100px;\\r\\n height: 75px;\\r\\n display: block;\\r\\n margin: 0 auto;\\r\\n background: url(\" + escape(__webpack_require__(/*! ../../images/wallet/nodata.png */ \"./src/assets/images/wallet/nodata.png\")) + \") no-repeat;\\r\\n background-size: contain;\\n}\\n.wallet-detail-content .trade-detail li .typeIcon {\\r\\n display: inline-block;\\r\\n width: 25px;\\r\\n height: 64px;\\r\\n margin-right: 15px;\\r\\n vertical-align: middle;\\r\\n position: relative;\\n}\\n.wallet-detail-content .trade-detail li .typeIcon img {\\r\\n position: absolute;\\r\\n top: 0;\\r\\n left: 0;\\r\\n right: 0;\\r\\n bottom: 0;\\r\\n margin: auto;\\n}\\n.wallet-detail-content .trade-detail li .typeDetail {\\r\\n display: inline-block;\\r\\n height: 40px;\\r\\n vertical-align: middle;\\r\\n font-size: 12px;\\r\\n line-height: 18px;\\r\\n color: #999;\\r\\n padding: 12px 0;\\n}\\n.wallet-detail-content .trade-detail li .typeDetail span {\\r\\n font-size: 14px;\\r\\n line-height: 18px;\\r\\n color: #333333;\\n}\\n.wallet-detail-content .trade-detail li .trade-num {\\r\\n display: inline-block;\\r\\n height: 64px;\\r\\n line-height: 64px;\\r\\n font-size: 18px;\\r\\n color: #333333;\\r\\n vertical-align: middle;\\r\\n float: right;\\r\\n margin-right: 0.32rem;\\r\\n position: relative;\\n}\\r\\n\\r\\n/*账单详情*/\\n.account-detail-content {\\r\\n background: #ffffff;\\n}\\n.account-detail-content .detail-box {\\r\\n margin: 0 0.32rem;\\r\\n border-bottom: 1px solid #f0f0f0;\\n}\\n.account-detail-content .detail-box:last-child {\\r\\n border-bottom: none;\\n}\\n.account-detail-content .detail-content-1 {\\r\\n height: 180px;\\n}\\n.account-detail-content .detail-content-1 .pay-img {\\r\\n height: 45px;\\r\\n text-align: center;\\r\\n margin-top: 20px;\\n}\\n.account-detail-content .detail-content-1 span {\\r\\n display: inline-block;\\r\\n width: 45px;\\r\\n height: 45px;\\r\\n border-radius: 22.5px;\\r\\n position: relative;\\r\\n background: #f0f0f0;\\n}\\n.account-detail-content .detail-content-1 span img {\\r\\n width: 23px;\\r\\n height: 25px;\\r\\n position: absolute;\\r\\n top: 0;\\r\\n left: 0;\\r\\n right: 0;\\r\\n bottom: 0;\\r\\n margin: auto;\\n}\\n.account-detail-content .detail-content-1 p {\\r\\n text-align: center;\\n}\\n.account-detail-content .detail-content-1 .pay-type {\\r\\n font-size: 14px;\\r\\n line-height: 36px;\\r\\n color: #333;\\n}\\n.account-detail-content .detail-content-1 .pay-amount {\\r\\n font-size: 24px;\\r\\n line-height: 36px;\\r\\n color: #333;\\n}\\n.account-detail-content .detail-content-1 .pay-status {\\r\\n font-size: 12px;\\r\\n line-height: 36px;\\r\\n color: #999;\\n}\\n.account-detail-content .detail-content-2 p {\\r\\n font-size: 14px;\\r\\n line-height: 36px;\\r\\n color: #666;\\n}\\n.account-detail-content .detail-content-2 p span {\\r\\n float: right;\\r\\n color: #333;\\n}\\n.account-detail-content .detail-content-3 p {\\r\\n font-size: 14px;\\r\\n line-height: 36px;\\r\\n color: #666;\\n}\\n.account-detail-content .detail-content-3 p span {\\r\\n float: right;\\r\\n color: #333;\\n}\\n.account-detail-content .detail-content-3 p a {\\r\\n float: right;\\r\\n color: #1080d0;\\n}\\r\\n\\r\\n/*充值提现记录*/\\n.record-content .record-type {\\r\\n height: 50px;\\r\\n line-height: 50px;\\r\\n text-align: center;\\r\\n font-size: 18px;\\r\\n color: #666666;\\r\\n background: #fff;\\r\\n margin-bottom: 0.5rem;\\n}\\n.record-content .record-date {\\r\\n height: 35px;\\r\\n padding: 0 0.32rem;\\n}\\n.record-content .record-date span {\\r\\n height: 20px;\\r\\n line-height: 20px;\\r\\n font-size: 16px;\\r\\n color: #333;\\n}\\n.record-content .record-date p {\\r\\n height: 20px;\\r\\n line-height: 20px;\\r\\n font-size: 14px;\\r\\n color: #666666;\\n}\\n.record-content .record-detail {\\r\\n background: #fff;\\r\\n max-height: 520px;\\r\\n overflow-y: auto;\\n}\\n.record-content .record-detail li {\\r\\n height: 64px;\\r\\n margin-left: 0.32rem;\\r\\n border-bottom: 1px solid #f0f0f0;\\n}\\n.record-content .record-detail li.no-data {\\r\\n height: auto;\\r\\n margin-left: 0;\\r\\n border: none;\\r\\n background: #f0f0f0;\\n}\\n.record-content .record-detail li.no-data .no-data-pic {\\r\\n width: 100px;\\r\\n height: 75px;\\r\\n display: block;\\r\\n margin: 0 auto;\\r\\n background: url(\" + escape(__webpack_require__(/*! ../../images/wallet/nodata.png */ \"./src/assets/images/wallet/nodata.png\")) + \") no-repeat;\\r\\n background-size: contain;\\n}\\n.record-content .record-detail li .record-item {\\r\\n display: inline-block;\\r\\n height: 40px;\\r\\n vertical-align: middle;\\r\\n font-size: 12px;\\r\\n line-height: 18px;\\r\\n color: #999;\\r\\n padding: 12px 0;\\n}\\n.record-content .record-detail li .record-item span {\\r\\n font-size: 16px;\\r\\n line-height: 18px;\\r\\n color: #333333;\\n}\\n.record-content .record-detail li .record-num {\\r\\n display: inline-block;\\r\\n height: 54px;\\r\\n line-height: 26px;\\r\\n font-size: 18px;\\r\\n color: #333333;\\r\\n text-align: right;\\r\\n vertical-align: middle;\\r\\n float: right;\\r\\n margin-right: 0.32rem;\\r\\n padding: 5px 0;\\r\\n position: relative;\\n}\\n.record-content .record-detail li .record-num .withdrawText {\\r\\n width: 75px;\\r\\n height: 25px;\\r\\n line-height: 25px;\\r\\n font-size: 14px;\\r\\n color: red;\\n}\\n.record-content .record-detail li .record-num .successText {\\r\\n width: 75px;\\r\\n height: 25px;\\r\\n line-height: 25px;\\r\\n font-size: 14px;\\r\\n color: #999999;\\n}\\n.record-content .record-detail li .record-num .rechargeBtn {\\r\\n display: inline-block;\\r\\n text-align: center;\\r\\n width: 75px;\\r\\n height: 25px;\\r\\n line-height: 25px;\\r\\n font-size: 14px;\\r\\n color: #1080d0;\\r\\n border: 1px solid #1080d0;\\r\\n border-radius: 15px;\\n}\\r\\n\\r\\n/*账单详情*/\\n.withdraw-detail-content {\\r\\n background: #ffffff;\\n}\\n.withdraw-detail-content .detail-box {\\r\\n margin: 0 0.32rem;\\r\\n border-bottom: 1px solid #f0f0f0;\\n}\\n.withdraw-detail-content .detail-box:last-child {\\r\\n border-bottom: none;\\n}\\n.withdraw-detail-content .detail-content-1 {\\r\\n height: 120px;\\n}\\n.withdraw-detail-content .detail-content-1 .withdraw-img {\\r\\n height: 45px;\\r\\n text-align: center;\\r\\n margin-top: 20px;\\n}\\n.withdraw-detail-content .detail-content-1 span {\\r\\n display: inline-block;\\r\\n width: 45px;\\r\\n height: 45px;\\r\\n border-radius: 22.5px;\\r\\n position: relative;\\r\\n background: #f0f0f0;\\n}\\n.withdraw-detail-content .detail-content-1 span img {\\r\\n width: 23px;\\r\\n height: 25px;\\r\\n position: absolute;\\r\\n top: 0;\\r\\n left: 0;\\r\\n right: 0;\\r\\n bottom: 0;\\r\\n margin: auto;\\n}\\n.withdraw-detail-content .detail-content-1 p {\\r\\n text-align: center;\\n}\\n.withdraw-detail-content .detail-content-1 .withdraw-record {\\r\\n font-size: 14px;\\r\\n line-height: 36px;\\r\\n color: #333;\\n}\\n.withdraw-detail-content .detail-content-1 .withdraw-amount {\\r\\n font-size: 24px;\\r\\n line-height: 36px;\\r\\n color: #333;\\n}\\n.withdraw-detail-content .detail-content-1 .withdraw-status {\\r\\n font-size: 12px;\\r\\n line-height: 36px;\\r\\n color: #999;\\n}\\n.withdraw-detail-content .detail-content-2 p {\\r\\n font-size: 14px;\\r\\n line-height: 36px;\\r\\n color: #666;\\n}\\n.withdraw-detail-content .detail-content-2 p span {\\r\\n float: right;\\r\\n color: #333;\\n}\\n.withdraw-detail-content .detail-content-3 p {\\r\\n font-size: 14px;\\r\\n line-height: 36px;\\r\\n color: #666;\\n}\\n.withdraw-detail-content .detail-content-3 p span {\\r\\n float: right;\\r\\n color: #333;\\n}\\n.withdraw-detail-content .detail-content-3 p a {\\r\\n float: right;\\r\\n color: #1080d0;\\n}\\r\\n\\r\\n/*找回密码*/\\n.retrieve-content .form-wrap {\\r\\n background: #ffffff;\\r\\n padding-bottom: 20px;\\n}\\n.retrieve-content .form-wrap .inp-wrap {\\r\\n height: 2.5rem;\\r\\n border-top: 1px solid #f0f0f0;\\r\\n margin-left: 0.3rem;\\n}\\n.retrieve-content .form-wrap .inp-wrap label {\\r\\n font-size: 18px;\\r\\n line-height: 1.3rem;\\r\\n color: #333333;\\n}\\n.retrieve-content .form-wrap .inp-wrap input {\\r\\n font-size: 16px;\\r\\n line-height: 1.2rem;\\r\\n width: 85%;\\r\\n color: #333333;\\n}\\n.retrieve-content .form-wrap .inp-wrap:nth-child(2) input {\\r\\n width: 65% !important;\\n}\\n.retrieve-content .form-wrap .inp-wrap:nth-child(3) input {\\r\\n width: 65% !important;\\n}\\n.retrieve-content .form-wrap .inp-wrap .send-yzm {\\r\\n display: inline-block;\\r\\n text-align: center;\\r\\n font-size: 16px;\\r\\n width: 3rem;\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n color: #1080d0;\\r\\n border-radius: 20px;\\r\\n border: 1px solid #1080d0;\\n}\\n.retrieve-content .form-wrap .inp-wrap .sending-yzm {\\r\\n display: inline-block;\\r\\n text-align: center;\\r\\n font-size: 16px;\\r\\n width: 3rem;\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n color: #666;\\r\\n border-radius: 20px;\\r\\n background: #f0f0f0;\\n}\\n.retrieve-content .confirm {\\r\\n width: 305px;\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n background: #1080d0;\\r\\n text-align: center;\\r\\n border-radius: 20px;\\r\\n font-size: 16px;\\r\\n color: #fff;\\r\\n display: block;\\r\\n margin: 1.333rem 0.933rem;\\r\\n font-weight: bold;\\n}\\n.retrieve-content .next {\\r\\n width: 305px;\\r\\n height: 40px;\\r\\n line-height: 40px;\\r\\n background: #1080d0;\\r\\n text-align: center;\\r\\n border-radius: 20px;\\r\\n font-size: 16px;\\r\\n color: #fff;\\r\\n display: block;\\r\\n margin: 1.333rem 0.933rem;\\r\\n font-weight: bold;\\n}\\n.retrieve-content .form-wrap .inp-wrap .f-r {\\r\\n float: right;\\r\\n font-size: 22px;\\r\\n margin-right: 0.25rem;\\r\\n margin-top: 0.35rem;\\n}\\n.retrieve-content {\\r\\n position: relative;\\n}\\n.retrieve-content .form-error {\\r\\n position: absolute;\\r\\n left: 0.3rem;\\r\\n bottom: 65px;\\r\\n font-size: 16px;\\r\\n line-height: 16px;\\r\\n color: red;\\n}\\r\\n\\r\\n/*收银台*/\\n.cashier-content .cashier-detail {\\r\\n background: #ffffff;\\r\\n height: 85px;\\r\\n margin-bottom: 10px;\\n}\\n.cashier-content .cashier-detail p {\\r\\n color: #333333;\\r\\n text-align: center;\\n}\\n.cashier-content .cashier-detail .order-num {\\r\\n font-size: 14px;\\r\\n line-height: 36px;\\n}\\n.cashier-content .cashier-detail .order-money {\\r\\n font-size: 24px;\\r\\n line-height: 36px;\\n}\\n.cashier-content .form-wrap {\\r\\n background: #ffffff;\\n}\\n.cashier-content .form-wrap .inp-wrap {\\r\\n height: 60px;\\n}\\n.cashier-content .form-wrap .inp-wrap label {\\r\\n font-size: 16px;\\r\\n line-height: 60px;\\r\\n width: 25%;\\r\\n color: #333333;\\r\\n padding-left: 0.3rem;\\n}\\n.cashier-content .form-wrap .inp-wrap input {\\r\\n font-size: 16px;\\r\\n line-height: 60px;\\r\\n width: 45%;\\r\\n color: #333333;\\n}\\n.cashier-content .form-wrap .inp-wrap .f-r {\\r\\n float: right;\\r\\n font-size: 22px;\\r\\n margin-right: 0.55rem;\\r\\n margin-top: 0.55rem;\\n}\\n.cashier-content .pay {\\r\\n width: 9.2rem;\\r\\n height: 1.33rem;\\r\\n line-height: 1.33rem;\\r\\n background: #1080d0;\\r\\n text-align: center;\\r\\n border-radius: 0.6rem;\\r\\n font-size: 16px;\\r\\n color: #fff;\\r\\n display: block;\\r\\n margin: 1.333rem auto;\\r\\n font-weight: bold;\\n}\\n.cashier-content .forget-password {\\r\\n text-align: right;\\r\\n font-size: 14px;\\r\\n line-height: 36px;\\r\\n padding-right: 0.3rem;\\n}\\n.cashier-content .forget-password a {\\r\\n color: #666666;\\n}\\n.dialog-layer-shade {\\r\\n position: fixed;\\r\\n width: 100%;\\r\\n height: 100%;\\r\\n top: 0;\\r\\n right: 0;\\r\\n left: 0;\\r\\n z-index: 2018;\\r\\n background: rgba(0, 0, 0, 0.4);\\n}\\n.dialog-layer-shade .dialog-layer {\\r\\n width: 100%;\\r\\n position: fixed;\\r\\n bottom: 0;\\r\\n left: 0;\\r\\n right: 0;\\r\\n text-align: center;\\r\\n background-color: #f0f0f0;\\r\\n min-height: 150px;\\r\\n -webkit-animation: fadeInUp 0.3s ease-in-out;\\n}\\n.dialog-layer-shade .dialog-layer .tit {\\r\\n font-size: 16px;\\r\\n color: #333333;\\r\\n height: 48px;\\r\\n line-height: 48px;\\r\\n border-bottom: 1px solid #e5e5e5;\\r\\n font-weight: bold;\\n}\\n.dialog-layer-shade .dialog-layer .tab {\\r\\n display: -webkit-box;\\r\\n display: -ms-flexbox;\\r\\n display: flex;\\r\\n padding: 0.533rem 0.4rem;\\r\\n -ms-flex-pack: distribute;\\r\\n justify-content: space-around;\\r\\n -ms-flex-flow: wrap;\\r\\n flex-flow: wrap;\\n}\\n.dialog-layer-shade .dialog-layer .tab li {\\r\\n -webkit-box-flex: 0;\\r\\n -ms-flex: 0 0 31%;\\r\\n flex: 0 0 31%;\\r\\n height: 55px;\\r\\n line-height: 55px;\\r\\n text-align: center;\\r\\n background-color: #ffffff;\\r\\n font-size: 16px;\\r\\n color: #666666;\\r\\n margin-bottom: 0.16rem;\\r\\n margin-right: 0.16rem;\\n}\\n.dialog-layer-shade .dialog-layer .tab li.curr {\\r\\n background-color: #1080d0;\\r\\n color: #ffffff;\\n}\\n.dialog-layer-shade .dialog-layer .btn {\\r\\n display: block;\\r\\n width: 100%;\\r\\n height: 50px;\\r\\n line-height: 50px;\\r\\n background-color: #ffffff;\\r\\n text-align: center;\\r\\n font-size: 16px;\\r\\n color: #333333;\\r\\n font-weight: bold;\\r\\n border-top: 0.133rem solid rgba(0, 0, 0, 0.4);\\n}\\n@-webkit-keyframes fadeInUp {\\n0% {\\r\\n -webkit-transform: translateY(200px)\\n}\\n100% {\\r\\n -webkit-transform: translateY(0)\\n}\\n}\", \"\"]);\n\n// exports\n\n\n//# sourceURL=webpack:///./src/assets/css/wallet/wallet.css?./node_modules/_css-loader@1.0.1@css-loader??ref--6-oneOf-1-1!./node_modules/_vue-loader@15.6.4@vue-loader/lib/loaders/stylePostLoader.js!./node_modules/_postcss-loader@3.0.0@postcss-loader/src??ref--6-oneOf-1-2");
/***/ }), /***/ }),
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
/***/ (function(module, __webpack_exports__, __webpack_require__) { /***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict"; "use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var core_js_modules_es6_regexp_constructor__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core-js/modules/es6.regexp.constructor */ \"./node_modules/_core-js@2.6.5@core-js/modules/es6.regexp.constructor.js\");\n/* harmony import */ var core_js_modules_es6_regexp_constructor__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es6_regexp_constructor__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var D_svnData_h5_node_modules_babel_runtime_corejs2_helpers_esm_objectSpread__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./node_modules/@babel/runtime-corejs2/helpers/esm/objectSpread */ \"./node_modules/_@babel_runtime-corejs2@7.3.1@@babel/runtime-corejs2/helpers/esm/objectSpread.js\");\n/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! vue */ \"./node_modules/_vue@2.6.6@vue/dist/vue.runtime.esm.js\");\n/* harmony import */ var vuex__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! vuex */ \"./node_modules/_vuex@3.1.0@vuex/dist/vuex.esm.js\");\n/* harmony import */ var _views_common_Header_vue__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @/views/common/Header.vue */ \"./src/views/common/Header.vue\");\n/* harmony import */ var vant__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! vant */ \"./node_modules/_vant@1.6.5@vant/es/index.js\");\n/* harmony import */ var _api_index__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../../api/index */ \"./src/api/index.js\");\n\n\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n\n\n\n\n\nvue__WEBPACK_IMPORTED_MODULE_2__[\"default\"].use(vant__WEBPACK_IMPORTED_MODULE_5__[\"Icon\"]);\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n name: 'WalletRetrieve',\n data: function data() {\n return {\n title: \"找回密码\",\n meaushow: true,\n showPassword: true,\n //是否显示密码\n showPasswordConfirm: true,\n //是否显示密码确认\n yzmSend: true,\n //验证码发送\n countDown: 60,\n countDownText: '发送验证码',\n step1: true,\n step2: false,\n form: {\n verifyCode: '',\n imgCode: '',\n password: '',\n passwordConfirm: ''\n },\n formError: false,\n formMsg: '',\n imgCodeVal: _api_index__WEBPACK_IMPORTED_MODULE_6__[\"productionUrlPc\"] + \"public/verify\"\n };\n },\n computed: Object(D_svnData_h5_node_modules_babel_runtime_corejs2_helpers_esm_objectSpread__WEBPACK_IMPORTED_MODULE_1__[\"default\"])({}, Object(vuex__WEBPACK_IMPORTED_MODULE_3__[\"mapState\"])({\n walletInfoData: function walletInfoData(state) {\n return state.wallet.walletInfoData;\n },\n retieveShowImgCode: function retieveShowImgCode(state) {\n return state.wallet.retieveShowImgCode;\n },\n retieveCountDownFlag: function retieveCountDownFlag(state) {\n return state.wallet.retieveCountDownFlag;\n },\n passwordToken: function passwordToken(state) {\n return state.wallet.passwordToken;\n }\n })),\n watch: {\n retieveCountDownFlag: function retieveCountDownFlag(value) {\n if (value) {\n this.yzmSend = false;\n this.timeNum();\n } else {\n this.yzmSend = true;\n }\n },\n passwordToken: function passwordToken(value) {\n if (value) {\n //返回token则验证成功,下一步\n this.step1 = false;\n this.step2 = true;\n } else {\n this.step1 = true;\n this.step2 = false;\n }\n }\n },\n created: function created() {\n this.$store.dispatch({\n type: 'getWalletInfo'\n });\n },\n methods: {\n changeShow: function changeShow() {\n this.showPassword = !this.showPassword;\n },\n changeShowConfirm: function changeShowConfirm() {\n this.showPasswordConfirm = !this.showPasswordConfirm;\n },\n timeNum: function timeNum() {\n var me = this;\n var clock = setInterval(doLoop, 1000);\n\n function doLoop() {\n me.countDown--;\n\n if (me.countDown <= 0) {\n clearInterval(clock);\n me.countDown = 60;\n me.countDownText = \"再次发送\";\n me.yzmSend = true;\n }\n }\n },\n //获取图片验证码\n changeImgCode: function changeImgCode() {\n this.imgCodeVal = _api_index__WEBPACK_IMPORTED_MODULE_6__[\"productionUrlPc\"] + \"public/verify?\" + new Date().getTime();\n },\n getCode: function getCode() {\n this.$store.dispatch({\n //actions分发\n type: 'smsVerifyRetrieve',\n imgCode: this.form.imgCode\n });\n },\n next: function next() {\n //下一步\n if (!this.form.verifyCode) {\n this.formError = true;\n this.formMsg = '亲,请输入验证码';\n return;\n }\n\n this.formError = false;\n this.$store.dispatch({\n type: 'verifyResetsms',\n verify_code: this.form.verifyCode\n });\n },\n confirm: function confirm() {\n //确认\n var password_reg = new RegExp(/^[a-zA-Z0-9]{8,20}$/); //^表示开始 $表示结束 8~20位字母和数字组合\n\n if (!this.form.password) {\n this.formError = true;\n this.formMsg = '亲,请输入支付密码';\n return;\n }\n\n if (!password_reg.test(this.form.password)) {\n this.formError = true;\n this.formMsg = '亲,密码由8~20位字母、数字组合';\n return;\n }\n\n if (!this.form.passwordConfirm) {\n this.formError = true;\n this.formMsg = '亲,请再次输入支付密码';\n return;\n }\n\n if (this.form.password !== this.form.passwordConfirm) {\n this.formError = true;\n this.formMsg = '亲,两次输入支付密码不一致';\n return;\n }\n\n this.formError = false; //提交\n\n this.$store.dispatch({\n type: 'changeWalletpwd',\n token: this.passwordToken,\n pay_password: this.form.password,\n reconfirm: this.form.passwordConfirm,\n mode: 'forget'\n });\n }\n },\n components: {\n Header: _views_common_Header_vue__WEBPACK_IMPORTED_MODULE_4__[\"default\"]\n }\n});\n\n//# sourceURL=webpack:///./src/views/wallet/Retrieve.vue?./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js??ref--12-0!./node_modules/_babel-loader@8.0.5@babel-loader/lib!./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js??ref--0-0!./node_modules/_vue-loader@15.6.4@vue-loader/lib??vue-loader-options"); eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var core_js_modules_es6_regexp_constructor__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core-js/modules/es6.regexp.constructor */ \"./node_modules/_core-js@2.6.5@core-js/modules/es6.regexp.constructor.js\");\n/* harmony import */ var core_js_modules_es6_regexp_constructor__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es6_regexp_constructor__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var D_svnData_h5_node_modules_babel_runtime_corejs2_helpers_esm_objectSpread__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./node_modules/@babel/runtime-corejs2/helpers/esm/objectSpread */ \"./node_modules/_@babel_runtime-corejs2@7.3.1@@babel/runtime-corejs2/helpers/esm/objectSpread.js\");\n/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! vue */ \"./node_modules/_vue@2.6.6@vue/dist/vue.runtime.esm.js\");\n/* harmony import */ var vuex__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! vuex */ \"./node_modules/_vuex@3.1.0@vuex/dist/vuex.esm.js\");\n/* harmony import */ var _views_common_Header_vue__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @/views/common/Header.vue */ \"./src/views/common/Header.vue\");\n/* harmony import */ var vant__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! vant */ \"./node_modules/_vant@1.6.5@vant/es/index.js\");\n/* harmony import */ var _api_index__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../../api/index */ \"./src/api/index.js\");\n\n\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n\n\n\n\n\nvue__WEBPACK_IMPORTED_MODULE_2__[\"default\"].use(vant__WEBPACK_IMPORTED_MODULE_5__[\"Icon\"]);\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n name: 'walletRetrieve',\n data: function data() {\n return {\n title: \"找回密码\",\n meaushow: true,\n showPassword: true,\n //是否显示密码\n showPasswordConfirm: true,\n //是否显示密码确认\n yzmSend: true,\n //验证码发送\n countDown: 60,\n countDownText: '发送验证码',\n step1: true,\n step2: false,\n form: {\n verifyCode: '',\n imgCode: '',\n password: '',\n passwordConfirm: ''\n },\n formError: false,\n formMsg: '',\n imgCodeVal: _api_index__WEBPACK_IMPORTED_MODULE_6__[\"productionUrlPc\"] + \"public/verify\"\n };\n },\n computed: Object(D_svnData_h5_node_modules_babel_runtime_corejs2_helpers_esm_objectSpread__WEBPACK_IMPORTED_MODULE_1__[\"default\"])({}, Object(vuex__WEBPACK_IMPORTED_MODULE_3__[\"mapState\"])({\n walletInfoData: function walletInfoData(state) {\n return state.wallet.walletInfoData;\n },\n retieveShowImgCode: function retieveShowImgCode(state) {\n return state.wallet.retieveShowImgCode;\n },\n retieveCountDownFlag: function retieveCountDownFlag(state) {\n return state.wallet.retieveCountDownFlag;\n },\n passwordToken: function passwordToken(state) {\n return state.wallet.passwordToken;\n }\n })),\n watch: {\n retieveCountDownFlag: function retieveCountDownFlag(value) {\n if (value) {\n this.yzmSend = false;\n this.timeNum();\n } else {\n this.yzmSend = true;\n }\n },\n passwordToken: function passwordToken(value) {\n if (value) {\n //返回token则验证成功,下一步\n this.step1 = false;\n this.step2 = true;\n } else {\n this.step1 = true;\n this.step2 = false;\n }\n }\n },\n created: function created() {\n this.$store.dispatch({\n type: 'getWalletInfo'\n });\n },\n methods: {\n changeShow: function changeShow() {\n this.showPassword = !this.showPassword;\n },\n changeShowConfirm: function changeShowConfirm() {\n this.showPasswordConfirm = !this.showPasswordConfirm;\n },\n timeNum: function timeNum() {\n var me = this;\n var clock = setInterval(doLoop, 1000);\n\n function doLoop() {\n me.countDown--;\n\n if (me.countDown <= 0) {\n clearInterval(clock);\n me.countDown = 60;\n me.countDownText = \"再次发送\";\n me.yzmSend = true;\n }\n }\n },\n //获取图片验证码\n changeImgCode: function changeImgCode() {\n this.imgCodeVal = _api_index__WEBPACK_IMPORTED_MODULE_6__[\"productionUrlPc\"] + \"public/verify?\" + new Date().getTime();\n },\n getCode: function getCode() {\n this.$store.dispatch({\n //actions分发\n type: 'smsVerifyRetrieve',\n imgCode: this.form.imgCode\n });\n },\n next: function next() {\n //下一步\n if (!this.form.verifyCode) {\n this.formError = true;\n this.formMsg = '亲,请输入验证码';\n return;\n }\n\n this.formError = false;\n this.$store.dispatch({\n type: 'verifyResetsms',\n verify_code: this.form.verifyCode\n });\n },\n confirm: function confirm() {\n //确认\n var password_reg = new RegExp(/^[a-zA-Z0-9]{6,20}$/); //^表示开始 $表示结束 6~20位字母和数字组合\n\n if (!this.form.password) {\n this.formError = true;\n this.formMsg = '亲,请输入支付密码';\n return;\n }\n\n if (!password_reg.test(this.form.password)) {\n this.formError = true;\n this.formMsg = '亲,密码由6~20位字母、数字组合';\n return;\n }\n\n if (!this.form.passwordConfirm) {\n this.formError = true;\n this.formMsg = '亲,请再次输入支付密码';\n return;\n }\n\n if (this.form.password !== this.form.passwordConfirm) {\n this.formError = true;\n this.formMsg = '亲,两次输入支付密码不一致';\n return;\n }\n\n this.formError = false; //提交\n\n this.$store.dispatch({\n type: 'changeWalletpwd',\n token: this.passwordToken,\n pay_password: this.form.password,\n reconfirm: this.form.passwordConfirm,\n mode: 'forget'\n });\n }\n },\n components: {\n Header: _views_common_Header_vue__WEBPACK_IMPORTED_MODULE_4__[\"default\"]\n }\n});\n\n//# sourceURL=webpack:///./src/views/wallet/Retrieve.vue?./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js??ref--12-0!./node_modules/_babel-loader@8.0.5@babel-loader/lib!./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js??ref--0-0!./node_modules/_vue-loader@15.6.4@vue-loader/lib??vue-loader-options");
/***/ }), /***/ }),
...@@ -20,7 +20,7 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var core ...@@ -20,7 +20,7 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var core
/***/ (function(module, __webpack_exports__, __webpack_require__) { /***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict"; "use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"render\", function() { return render; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"staticRenderFns\", function() { return staticRenderFns; });\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\n \"section\",\n { staticClass: \"wallet-retrieve\" },\n [\n _c(\"Header\", { attrs: { title: _vm.title, meaushow: _vm.meaushow } }),\n _c(\n \"div\",\n {\n directives: [\n {\n name: \"show\",\n rawName: \"v-show\",\n value: _vm.step1,\n expression: \"step1\"\n }\n ],\n staticClass: \"retrieve-content\"\n },\n [\n _c(\"ul\", { staticClass: \"form-wrap\" }, [\n _c(\n \"li\",\n { staticClass: \"inp-wrap\", staticStyle: { height: \"1.5rem\" } },\n [\n _c(\"label\", { staticClass: \"va-m\" }, [\n _vm._v(\n \"安全手机号: \" + _vm._s(_vm.walletInfoData.safe_mobile)\n )\n ])\n ]\n ),\n _c(\n \"li\",\n {\n directives: [\n {\n name: \"show\",\n rawName: \"v-show\",\n value: _vm.retieveShowImgCode,\n expression: \"retieveShowImgCode\"\n }\n ],\n staticClass: \"inp-wrap\"\n },\n [\n _c(\"label\", { staticClass: \"va-m\" }, [_vm._v(\"图片验证码\")]),\n _c(\"br\"),\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.form.imgCode,\n expression: \"form.imgCode\"\n }\n ],\n staticClass: \"va-m inp\",\n attrs: { type: \"text\", placeholder: \"请输入验证码\" },\n domProps: { value: _vm.form.imgCode },\n on: {\n input: function($event) {\n if ($event.target.composing) {\n return\n }\n _vm.$set(_vm.form, \"imgCode\", $event.target.value)\n }\n }\n }),\n _c(\"img\", {\n staticClass: \"img-code va-m\",\n attrs: { src: _vm.imgCodeVal, alt: \"图片验证码\" },\n on: { click: _vm.changeImgCode }\n })\n ]\n ),\n _c(\n \"li\",\n {\n staticClass: \"inp-wrap\",\n staticStyle: { \"border-top\": \"none\" }\n },\n [\n _c(\"label\", { staticClass: \"va-m\" }, [_vm._v(\"验证码\")]),\n _c(\"br\"),\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.form.verifyCode,\n expression: \"form.verifyCode\"\n }\n ],\n staticClass: \"va-m inp\",\n attrs: { type: \"text\", placeholder: \"请输入验证码\" },\n domProps: { value: _vm.form.verifyCode },\n on: {\n input: function($event) {\n if ($event.target.composing) {\n return\n }\n _vm.$set(_vm.form, \"verifyCode\", $event.target.value)\n }\n }\n }),\n _vm.yzmSend\n ? _c(\n \"a\",\n {\n staticClass: \"send-yzm va-m\",\n attrs: { href: \"javascript:;\" },\n on: { click: _vm.getCode }\n },\n [_vm._v(_vm._s(_vm.countDownText))]\n )\n : _c(\n \"a\",\n {\n staticClass: \"sending-yzm va-m\",\n attrs: { href: \"javascript:;\" }\n },\n [_vm._v(\"再次发送(\" + _vm._s(_vm.countDown) + \"s)\")]\n )\n ]\n )\n ]),\n _c(\n \"p\",\n {\n directives: [\n {\n name: \"show\",\n rawName: \"v-show\",\n value: _vm.formError,\n expression: \"formError\"\n }\n ],\n staticClass: \"form-error\"\n },\n [_vm._v(_vm._s(_vm.formMsg))]\n ),\n _c(\n \"a\",\n {\n staticClass: \"next\",\n attrs: { href: \"javascript:;\" },\n on: { click: _vm.next }\n },\n [_vm._v(\"下一步\")]\n )\n ]\n ),\n _c(\n \"div\",\n {\n directives: [\n {\n name: \"show\",\n rawName: \"v-show\",\n value: _vm.step2,\n expression: \"step2\"\n }\n ],\n staticClass: \"retrieve-content\"\n },\n [\n _c(\"ul\", { staticClass: \"form-wrap\" }, [\n _c(\n \"li\",\n { staticClass: \"inp-wrap\" },\n [\n _c(\"label\", { staticClass: \"va-m\" }, [_vm._v(\"设置支付密码\")]),\n _c(\"br\"),\n _vm.showPassword\n ? [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.form.password,\n expression: \"form.password\"\n }\n ],\n staticClass: \"va-m inp\",\n attrs: {\n type: \"password\",\n placeholder: \"密码由8~20位字母、数字组合而成\"\n },\n domProps: { value: _vm.form.password },\n on: {\n input: function($event) {\n if ($event.target.composing) {\n return\n }\n _vm.$set(_vm.form, \"password\", $event.target.value)\n }\n }\n })\n ]\n : [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.form.password,\n expression: \"form.password\"\n }\n ],\n staticClass: \"va-m inp\",\n attrs: {\n type: \"text\",\n placeholder: \"密码由8~20位字母、数字组合而成\"\n },\n domProps: { value: _vm.form.password },\n on: {\n input: function($event) {\n if ($event.target.composing) {\n return\n }\n _vm.$set(_vm.form, \"password\", $event.target.value)\n }\n }\n })\n ],\n _vm.showPassword\n ? _c(\"van-icon\", {\n staticClass: \"va-m f-r\",\n attrs: { name: \"closed-eye\" },\n on: { click: _vm.changeShow }\n })\n : _c(\"van-icon\", {\n staticClass: \"va-m f-r\",\n attrs: { name: \"eye-o\" },\n on: { click: _vm.changeShow }\n })\n ],\n 2\n ),\n _c(\n \"li\",\n { staticClass: \"inp-wrap\" },\n [\n _c(\"label\", { staticClass: \"va-m\" }, [_vm._v(\"确认支付密码\")]),\n _c(\"br\"),\n _vm.showPasswordConfirm\n ? [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.form.passwordConfirm,\n expression: \"form.passwordConfirm\"\n }\n ],\n staticClass: \"va-m inp\",\n attrs: {\n type: \"password\",\n placeholder: \"请再次输入上面的密码\"\n },\n domProps: { value: _vm.form.passwordConfirm },\n on: {\n input: function($event) {\n if ($event.target.composing) {\n return\n }\n _vm.$set(\n _vm.form,\n \"passwordConfirm\",\n $event.target.value\n )\n }\n }\n })\n ]\n : [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.form.passwordConfirm,\n expression: \"form.passwordConfirm\"\n }\n ],\n staticClass: \"va-m inp\",\n attrs: {\n type: \"text\",\n placeholder: \"请再次输入上面的密码\"\n },\n domProps: { value: _vm.form.passwordConfirm },\n on: {\n input: function($event) {\n if ($event.target.composing) {\n return\n }\n _vm.$set(\n _vm.form,\n \"passwordConfirm\",\n $event.target.value\n )\n }\n }\n })\n ],\n _vm.showPasswordConfirm\n ? _c(\"van-icon\", {\n staticClass: \"va-m f-r\",\n attrs: { name: \"closed-eye\" },\n on: { click: _vm.changeShowConfirm }\n })\n : _c(\"van-icon\", {\n staticClass: \"va-m f-r\",\n attrs: { name: \"eye-o\" },\n on: { click: _vm.changeShowConfirm }\n })\n ],\n 2\n )\n ]),\n _c(\n \"p\",\n {\n directives: [\n {\n name: \"show\",\n rawName: \"v-show\",\n value: _vm.formError,\n expression: \"formError\"\n }\n ],\n staticClass: \"form-error\"\n },\n [_vm._v(_vm._s(_vm.formMsg))]\n ),\n _c(\n \"a\",\n {\n staticClass: \"confirm\",\n attrs: { href: \"javascript:;\" },\n on: { click: _vm.confirm }\n },\n [_vm._v(\"确认\")]\n )\n ]\n )\n ],\n 1\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\n\n\n//# sourceURL=webpack:///./src/views/wallet/Retrieve.vue?./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js?%7B%22cacheDirectory%22:%22node_modules/.cache/vue-loader%22,%22cacheIdentifier%22:%220ef89de4-vue-loader-template%22%7D!./node_modules/_vue-loader@15.6.4@vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js??ref--0-0!./node_modules/_vue-loader@15.6.4@vue-loader/lib??vue-loader-options"); eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"render\", function() { return render; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"staticRenderFns\", function() { return staticRenderFns; });\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\n \"section\",\n { staticClass: \"wallet-retrieve\" },\n [\n _c(\"Header\", { attrs: { title: _vm.title, meaushow: _vm.meaushow } }),\n _c(\n \"div\",\n {\n directives: [\n {\n name: \"show\",\n rawName: \"v-show\",\n value: _vm.step1,\n expression: \"step1\"\n }\n ],\n staticClass: \"retrieve-content\"\n },\n [\n _c(\"ul\", { staticClass: \"form-wrap\" }, [\n _c(\n \"li\",\n { staticClass: \"inp-wrap\", staticStyle: { height: \"1.5rem\" } },\n [\n _c(\"label\", { staticClass: \"va-m\" }, [\n _vm._v(\n \"安全手机号: \" + _vm._s(_vm.walletInfoData.safe_mobile)\n )\n ])\n ]\n ),\n _c(\n \"li\",\n {\n directives: [\n {\n name: \"show\",\n rawName: \"v-show\",\n value: _vm.retieveShowImgCode,\n expression: \"retieveShowImgCode\"\n }\n ],\n staticClass: \"inp-wrap\"\n },\n [\n _c(\"label\", { staticClass: \"va-m\" }, [_vm._v(\"图片验证码\")]),\n _c(\"br\"),\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.form.imgCode,\n expression: \"form.imgCode\"\n }\n ],\n staticClass: \"va-m inp\",\n attrs: { type: \"text\", placeholder: \"请输入验证码\" },\n domProps: { value: _vm.form.imgCode },\n on: {\n input: function($event) {\n if ($event.target.composing) {\n return\n }\n _vm.$set(_vm.form, \"imgCode\", $event.target.value)\n }\n }\n }),\n _c(\"img\", {\n staticClass: \"img-code va-m\",\n attrs: { src: _vm.imgCodeVal, alt: \"图片验证码\" },\n on: { click: _vm.changeImgCode }\n })\n ]\n ),\n _c(\n \"li\",\n {\n staticClass: \"inp-wrap\",\n staticStyle: { \"border-top\": \"none\" }\n },\n [\n _c(\"label\", { staticClass: \"va-m\" }, [_vm._v(\"验证码\")]),\n _c(\"br\"),\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.form.verifyCode,\n expression: \"form.verifyCode\"\n }\n ],\n staticClass: \"va-m inp\",\n attrs: { type: \"text\", placeholder: \"请输入验证码\" },\n domProps: { value: _vm.form.verifyCode },\n on: {\n input: function($event) {\n if ($event.target.composing) {\n return\n }\n _vm.$set(_vm.form, \"verifyCode\", $event.target.value)\n }\n }\n }),\n _vm.yzmSend\n ? _c(\n \"a\",\n {\n staticClass: \"send-yzm va-m\",\n attrs: { href: \"javascript:;\" },\n on: { click: _vm.getCode }\n },\n [_vm._v(_vm._s(_vm.countDownText))]\n )\n : _c(\n \"a\",\n {\n staticClass: \"sending-yzm va-m\",\n attrs: { href: \"javascript:;\" }\n },\n [_vm._v(\"再次发送(\" + _vm._s(_vm.countDown) + \"s)\")]\n )\n ]\n )\n ]),\n _c(\n \"p\",\n {\n directives: [\n {\n name: \"show\",\n rawName: \"v-show\",\n value: _vm.formError,\n expression: \"formError\"\n }\n ],\n staticClass: \"form-error\"\n },\n [_vm._v(_vm._s(_vm.formMsg))]\n ),\n _c(\n \"a\",\n {\n staticClass: \"next\",\n attrs: { href: \"javascript:;\" },\n on: { click: _vm.next }\n },\n [_vm._v(\"下一步\")]\n )\n ]\n ),\n _c(\n \"div\",\n {\n directives: [\n {\n name: \"show\",\n rawName: \"v-show\",\n value: _vm.step2,\n expression: \"step2\"\n }\n ],\n staticClass: \"retrieve-content\"\n },\n [\n _c(\"ul\", { staticClass: \"form-wrap\" }, [\n _c(\n \"li\",\n { staticClass: \"inp-wrap\" },\n [\n _c(\"label\", { staticClass: \"va-m\" }, [_vm._v(\"设置支付密码\")]),\n _c(\"br\"),\n _vm.showPassword\n ? [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.form.password,\n expression: \"form.password\"\n }\n ],\n staticClass: \"va-m inp\",\n attrs: {\n type: \"password\",\n placeholder: \"密码由6~20位字母、数字组合而成\"\n },\n domProps: { value: _vm.form.password },\n on: {\n input: function($event) {\n if ($event.target.composing) {\n return\n }\n _vm.$set(_vm.form, \"password\", $event.target.value)\n }\n }\n })\n ]\n : [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.form.password,\n expression: \"form.password\"\n }\n ],\n staticClass: \"va-m inp\",\n attrs: {\n type: \"text\",\n placeholder: \"密码由6~20位字母、数字组合而成\"\n },\n domProps: { value: _vm.form.password },\n on: {\n input: function($event) {\n if ($event.target.composing) {\n return\n }\n _vm.$set(_vm.form, \"password\", $event.target.value)\n }\n }\n })\n ],\n _vm.showPassword\n ? _c(\"van-icon\", {\n staticClass: \"va-m f-r\",\n attrs: { name: \"closed-eye\" },\n on: { click: _vm.changeShow }\n })\n : _c(\"van-icon\", {\n staticClass: \"va-m f-r\",\n attrs: { name: \"eye-o\" },\n on: { click: _vm.changeShow }\n })\n ],\n 2\n ),\n _c(\n \"li\",\n { staticClass: \"inp-wrap\" },\n [\n _c(\"label\", { staticClass: \"va-m\" }, [_vm._v(\"确认支付密码\")]),\n _c(\"br\"),\n _vm.showPasswordConfirm\n ? [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.form.passwordConfirm,\n expression: \"form.passwordConfirm\"\n }\n ],\n staticClass: \"va-m inp\",\n attrs: {\n type: \"password\",\n placeholder: \"请再次输入上面的密码\"\n },\n domProps: { value: _vm.form.passwordConfirm },\n on: {\n input: function($event) {\n if ($event.target.composing) {\n return\n }\n _vm.$set(\n _vm.form,\n \"passwordConfirm\",\n $event.target.value\n )\n }\n }\n })\n ]\n : [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.form.passwordConfirm,\n expression: \"form.passwordConfirm\"\n }\n ],\n staticClass: \"va-m inp\",\n attrs: {\n type: \"text\",\n placeholder: \"请再次输入上面的密码\"\n },\n domProps: { value: _vm.form.passwordConfirm },\n on: {\n input: function($event) {\n if ($event.target.composing) {\n return\n }\n _vm.$set(\n _vm.form,\n \"passwordConfirm\",\n $event.target.value\n )\n }\n }\n })\n ],\n _vm.showPasswordConfirm\n ? _c(\"van-icon\", {\n staticClass: \"va-m f-r\",\n attrs: { name: \"closed-eye\" },\n on: { click: _vm.changeShowConfirm }\n })\n : _c(\"van-icon\", {\n staticClass: \"va-m f-r\",\n attrs: { name: \"eye-o\" },\n on: { click: _vm.changeShowConfirm }\n })\n ],\n 2\n )\n ]),\n _c(\n \"p\",\n {\n directives: [\n {\n name: \"show\",\n rawName: \"v-show\",\n value: _vm.formError,\n expression: \"formError\"\n }\n ],\n staticClass: \"form-error\"\n },\n [_vm._v(_vm._s(_vm.formMsg))]\n ),\n _c(\n \"a\",\n {\n staticClass: \"confirm\",\n attrs: { href: \"javascript:;\" },\n on: { click: _vm.confirm }\n },\n [_vm._v(\"确认\")]\n )\n ]\n )\n ],\n 1\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\n\n\n//# sourceURL=webpack:///./src/views/wallet/Retrieve.vue?./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js?%7B%22cacheDirectory%22:%22node_modules/.cache/vue-loader%22,%22cacheIdentifier%22:%220ef89de4-vue-loader-template%22%7D!./node_modules/_vue-loader@15.6.4@vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js??ref--0-0!./node_modules/_vue-loader@15.6.4@vue-loader/lib??vue-loader-options");
/***/ }), /***/ }),
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
/***/ (function(module, __webpack_exports__, __webpack_require__) { /***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict"; "use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var core_js_modules_es6_number_constructor__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core-js/modules/es6.number.constructor */ \"./node_modules/_core-js@2.6.5@core-js/modules/es6.number.constructor.js\");\n/* harmony import */ var core_js_modules_es6_number_constructor__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es6_number_constructor__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var core_js_modules_es6_regexp_replace__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! core-js/modules/es6.regexp.replace */ \"./node_modules/_core-js@2.6.5@core-js/modules/es6.regexp.replace.js\");\n/* harmony import */ var core_js_modules_es6_regexp_replace__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es6_regexp_replace__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var D_svnData_h5_node_modules_babel_runtime_corejs2_helpers_esm_objectSpread__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./node_modules/@babel/runtime-corejs2/helpers/esm/objectSpread */ \"./node_modules/_@babel_runtime-corejs2@7.3.1@@babel/runtime-corejs2/helpers/esm/objectSpread.js\");\n/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! vue */ \"./node_modules/_vue@2.6.6@vue/dist/vue.runtime.esm.js\");\n/* harmony import */ var vuex__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! vuex */ \"./node_modules/_vuex@3.1.0@vuex/dist/vuex.esm.js\");\n/* harmony import */ var _views_common_Header_vue__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @/views/common/Header.vue */ \"./src/views/common/Header.vue\");\n/* harmony import */ var vant__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! vant */ \"./node_modules/_vant@1.6.5@vant/es/index.js\");\n\n\n\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n\n\n\n\nvue__WEBPACK_IMPORTED_MODULE_3__[\"default\"].use(vant__WEBPACK_IMPORTED_MODULE_6__[\"Icon\"]).use(vant__WEBPACK_IMPORTED_MODULE_6__[\"Popup\"]).use(vant__WEBPACK_IMPORTED_MODULE_6__[\"DatetimePicker\"]).use(vant__WEBPACK_IMPORTED_MODULE_6__[\"Picker\"]).use(vant__WEBPACK_IMPORTED_MODULE_6__[\"Toast\"]);\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n name: 'WalletRecord',\n data: function data() {\n return {\n title: \"充值提现记录\",\n text: '全部',\n meaushow: true,\n recordYear: new Date().getFullYear(),\n recordMonth: new Date().getMonth() + 1 < 10 ? \"0\" + (new Date().getMonth() + 1) : new Date().getMonth() + 1,\n updateYear: '',\n updateMonth: '',\n dateShow: false,\n //年月弹出层\n typeShow: false,\n //类型弹出层\n currentDate: new Date(),\n //目前年月\n typeCheckedkeyId: '',\n typeCheckedText: '',\n dialog: false,\n active: 0,\n columns: [{\n \"keyId\": '',\n \"text\": \"全部\"\n }, {\n \"keyId\": 1,\n \"text\": \"钱包充值\"\n }, {\n \"keyId\": 2,\n \"text\": \"钱包提现\"\n }]\n };\n },\n computed: Object(D_svnData_h5_node_modules_babel_runtime_corejs2_helpers_esm_objectSpread__WEBPACK_IMPORTED_MODULE_2__[\"default\"])({}, Object(vuex__WEBPACK_IMPORTED_MODULE_4__[\"mapState\"])({\n walletRecordData: function walletRecordData(state) {\n return state.wallet.walletRecordData;\n }\n })),\n watch: {},\n created: function created() {\n //格式化日期\n function setDate(date) {\n y = date.getFullYear();\n m = date.getMonth() + 1;\n d = date.getDate();\n m = m < 10 ? \"0\" + m : m;\n d = d < 10 ? \"0\" + d : d;\n return y + \"-\" + m + \"-\" + d;\n } //封装时间格式\n\n\n function format(time, format) {\n var t = new Date(time);\n\n var tf = function tf(i) {\n return (i < 10 ? '0' : '') + i;\n };\n\n return format.replace(/yyyy|MM|dd|HH|mm|ss/g, function (a) {\n switch (a) {\n case 'yyyy':\n return tf(t.getFullYear());\n break;\n\n case 'MM':\n return tf(t.getMonth() + 1);\n break;\n\n case 'mm':\n return tf(t.getMinutes());\n break;\n\n case 'dd':\n return tf(t.getDate());\n break;\n\n case 'HH':\n return tf(t.getHours());\n break;\n\n case 'ss':\n return tf(t.getSeconds());\n break;\n }\n });\n } //获取当前月的第一天\n\n\n function getCurrentMonthFirst() {\n var date = new Date();\n date.setDate(1);\n return date;\n } //获取当前月的最后一天\n\n\n function getCurrentMonthLast() {\n var date = new Date();\n var currentMonth = date.getMonth();\n var nextMonth = ++currentMonth;\n var nextMonthFirstDay = new Date(date.getFullYear(), nextMonth, 1);\n var oneDay = 1000 * 60 * 60 * 24;\n return new Date(nextMonthFirstDay - oneDay);\n }\n\n this.$store.dispatch({\n type: 'walletRecordList',\n wallet_type: '',\n stime: format(getCurrentMonthFirst(), 'yyyy-MM-dd'),\n etime: format(getCurrentMonthLast(), 'yyyy-MM-dd')\n });\n },\n methods: {\n showPopDate: function showPopDate() {\n if (!this.dateShow) {\n this.dateShow = true;\n } else {\n this.dateShow = false;\n }\n },\n showPopType: function showPopType() {\n this.dialog = !this.dialog;\n },\n formatter: function formatter(type, value) {\n if (type === 'year') {\n return \"\".concat(value);\n } else if (type === 'month') {\n return \"\".concat(value);\n }\n\n return value;\n },\n dateChange: function dateChange(value) {\n this.updateYear = value.getValues()[0];\n this.updateMonth = value.getValues()[1];\n },\n onDateCancel: function onDateCancel() {\n this.dateShow = false;\n this.recordYear = this.recordYear;\n this.recordMonth = this.recordMonth;\n },\n onDateConfirm: function onDateConfirm() {\n this.dateShow = false;\n this.recordYear = this.updateYear;\n this.recordMonth = this.updateMonth; //获取某年某月的第一天\n\n function getMonthFirstDay(y, m) {\n var date = new Date(y, m - 1, 1);\n var firstDate = new Date(date.getTime());\n return firstDate.getFullYear() + '-' + (Number(firstDate.getMonth()) + 1) + '-' + firstDate.getDate();\n } //获取某年某月的最后一天\n\n\n function getMonthLastDay(y, m) {\n var date = new Date(y, m, 1);\n var lastDate = new Date(date.getTime() - 1000 * 60 * 60 * 24);\n return lastDate.getFullYear() + '-' + (Number(lastDate.getMonth()) + 1) + '-' + lastDate.getDate();\n }\n\n this.$store.dispatch({\n type: 'walletRecordList',\n wallet_type: this.typeCheckedkeyId || '',\n stime: getMonthFirstDay(this.recordYear, this.recordMonth),\n etime: getMonthLastDay(this.recordYear, this.recordMonth)\n });\n },\n onTypeConfirm: function onTypeConfirm(value, index) {\n this.dialog = false;\n this.active = index;\n this.text = this.columns[index].text;\n this.typeCheckedkeyId = value.keyId;\n this.typeCheckedText = value.text;\n this.recordYear = this.updateYear || this.recordYear;\n this.recordMonth = this.updateMonth || this.recordMonth; //获取某年某月的第一天\n\n function getMonthFirstDay(y, m) {\n var date = new Date(y, m - 1, 1);\n var firstDate = new Date(date.getTime());\n return firstDate.getFullYear() + '-' + (Number(firstDate.getMonth()) + 1) + '-' + firstDate.getDate();\n } //获取某年某月的最后一天\n\n\n function getMonthLastDay(y, m) {\n var date = new Date(y, m, 1);\n var lastDate = new Date(date.getTime() - 1000 * 60 * 60 * 24);\n return lastDate.getFullYear() + '-' + (Number(lastDate.getMonth()) + 1) + '-' + lastDate.getDate();\n }\n\n this.$store.dispatch({\n type: 'walletRecordList',\n wallet_type: value,\n stime: getMonthFirstDay(this.recordYear, this.recordMonth),\n etime: getMonthLastDay(this.recordYear, this.recordMonth)\n });\n },\n onTypeCancel: function onTypeCancel() {\n this.typeShow = false;\n },\n detail: function detail(amount) {\n //待支付的钱包充值订单,可跳去查看详情\n //直接调用$router.push实现携带参数的跳转\n this.$router.push({\n path: '/wallet/recharge',\n query: {\n amount: amount\n }\n });\n }\n },\n components: {\n Header: _views_common_Header_vue__WEBPACK_IMPORTED_MODULE_5__[\"default\"]\n }\n});\n\n//# sourceURL=webpack:///./src/views/wallet/Record.vue?./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js??ref--12-0!./node_modules/_babel-loader@8.0.5@babel-loader/lib!./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js??ref--0-0!./node_modules/_vue-loader@15.6.4@vue-loader/lib??vue-loader-options"); eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var core_js_modules_es6_number_constructor__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core-js/modules/es6.number.constructor */ \"./node_modules/_core-js@2.6.5@core-js/modules/es6.number.constructor.js\");\n/* harmony import */ var core_js_modules_es6_number_constructor__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es6_number_constructor__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var core_js_modules_es6_regexp_replace__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! core-js/modules/es6.regexp.replace */ \"./node_modules/_core-js@2.6.5@core-js/modules/es6.regexp.replace.js\");\n/* harmony import */ var core_js_modules_es6_regexp_replace__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es6_regexp_replace__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var D_svnData_h5_node_modules_babel_runtime_corejs2_helpers_esm_objectSpread__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./node_modules/@babel/runtime-corejs2/helpers/esm/objectSpread */ \"./node_modules/_@babel_runtime-corejs2@7.3.1@@babel/runtime-corejs2/helpers/esm/objectSpread.js\");\n/* harmony import */ var core_js_modules_es6_promise__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! core-js/modules/es6.promise */ \"./node_modules/_core-js@2.6.5@core-js/modules/es6.promise.js\");\n/* harmony import */ var core_js_modules_es6_promise__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es6_promise__WEBPACK_IMPORTED_MODULE_3__);\n/* harmony import */ var core_js_modules_es6_symbol__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! core-js/modules/es6.symbol */ \"./node_modules/_core-js@2.6.5@core-js/modules/es6.symbol.js\");\n/* harmony import */ var core_js_modules_es6_symbol__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es6_symbol__WEBPACK_IMPORTED_MODULE_4__);\n/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! vue */ \"./node_modules/_vue@2.6.6@vue/dist/vue.runtime.esm.js\");\n/* harmony import */ var vuex__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! vuex */ \"./node_modules/_vuex@3.1.0@vuex/dist/vuex.esm.js\");\n/* harmony import */ var _views_common_Header_vue__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @/views/common/Header.vue */ \"./src/views/common/Header.vue\");\n/* harmony import */ var vant__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! vant */ \"./node_modules/_vant@1.6.5@vant/es/index.js\");\n\n\n\n\n\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n\n\n\n\nvue__WEBPACK_IMPORTED_MODULE_5__[\"default\"].use(vant__WEBPACK_IMPORTED_MODULE_8__[\"Icon\"]).use(vant__WEBPACK_IMPORTED_MODULE_8__[\"Popup\"]).use(vant__WEBPACK_IMPORTED_MODULE_8__[\"DatetimePicker\"]).use(vant__WEBPACK_IMPORTED_MODULE_8__[\"Picker\"]).use(vant__WEBPACK_IMPORTED_MODULE_8__[\"Toast\"]);\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n name: 'walletRecord',\n data: function data() {\n return {\n title: \"充值提现记录\",\n text: '全部',\n meaushow: true,\n recordYear: new Date().getFullYear(),\n recordMonth: new Date().getMonth() + 1 < 10 ? \"0\" + (new Date().getMonth() + 1) : new Date().getMonth() + 1,\n updateYear: '',\n updateMonth: '',\n dateShow: false,\n //年月弹出层\n typeShow: false,\n //类型弹出层\n currentDate: new Date(),\n //目前年月\n typeCheckedkeyId: '',\n typeCheckedText: '',\n dialog: false,\n active: 0,\n columns: [{\n \"keyId\": '',\n \"text\": \"全部\"\n }, {\n \"keyId\": 1,\n \"text\": \"钱包充值\"\n }, {\n \"keyId\": 2,\n \"text\": \"钱包提现\"\n }]\n };\n },\n computed: Object(D_svnData_h5_node_modules_babel_runtime_corejs2_helpers_esm_objectSpread__WEBPACK_IMPORTED_MODULE_2__[\"default\"])({}, Object(vuex__WEBPACK_IMPORTED_MODULE_6__[\"mapState\"])({\n walletRecordData: function walletRecordData(state) {\n return state.wallet.walletRecordData;\n }\n })),\n watch: {},\n created: function created() {\n //格式化日期\n function setDate(date) {\n y = date.getFullYear();\n m = date.getMonth() + 1;\n d = date.getDate();\n m = m < 10 ? \"0\" + m : m;\n d = d < 10 ? \"0\" + d : d;\n return y + \"-\" + m + \"-\" + d;\n } //封装时间格式\n\n\n function format(time, format) {\n var t = new Date(time);\n\n var tf = function tf(i) {\n return (i < 10 ? '0' : '') + i;\n };\n\n return format.replace(/yyyy|MM|dd|HH|mm|ss/g, function (a) {\n switch (a) {\n case 'yyyy':\n return tf(t.getFullYear());\n break;\n\n case 'MM':\n return tf(t.getMonth() + 1);\n break;\n\n case 'mm':\n return tf(t.getMinutes());\n break;\n\n case 'dd':\n return tf(t.getDate());\n break;\n\n case 'HH':\n return tf(t.getHours());\n break;\n\n case 'ss':\n return tf(t.getSeconds());\n break;\n }\n });\n } //获取当前月的第一天\n\n\n function getCurrentMonthFirst() {\n var date = new Date();\n date.setDate(1);\n return date;\n } //获取当前月的最后一天\n\n\n function getCurrentMonthLast() {\n var date = new Date();\n var currentMonth = date.getMonth();\n var nextMonth = ++currentMonth;\n var nextMonthFirstDay = new Date(date.getFullYear(), nextMonth, 1);\n var oneDay = 1000 * 60 * 60 * 24;\n return new Date(nextMonthFirstDay - oneDay);\n }\n\n this.$store.dispatch({\n type: 'walletRecordList',\n wallet_type: '',\n stime: format(getCurrentMonthFirst(), 'yyyy-MM-dd'),\n etime: format(getCurrentMonthLast(), 'yyyy-MM-dd')\n });\n },\n methods: {\n showPopDate: function showPopDate() {\n if (!this.dateShow) {\n this.dateShow = true;\n } else {\n this.dateShow = false;\n }\n },\n showPopType: function showPopType() {\n this.dialog = !this.dialog;\n },\n formatter: function formatter(type, value) {\n if (type === 'year') {\n return \"\".concat(value);\n } else if (type === 'month') {\n return \"\".concat(value);\n }\n\n return value;\n },\n dateChange: function dateChange(value) {\n this.updateYear = value.getValues()[0];\n this.updateMonth = value.getValues()[1];\n },\n onDateCancel: function onDateCancel() {\n this.dateShow = false;\n this.recordYear = this.recordYear;\n this.recordMonth = this.recordMonth;\n },\n onDateConfirm: function onDateConfirm() {\n this.dateShow = false;\n this.recordYear = this.updateYear;\n this.recordMonth = this.updateMonth; //获取某年某月的第一天\n\n function getMonthFirstDay(y, m) {\n var date = new Date(y, m - 1, 1);\n var firstDate = new Date(date.getTime());\n return firstDate.getFullYear() + '-' + (Number(firstDate.getMonth()) + 1) + '-' + firstDate.getDate();\n } //获取某年某月的最后一天\n\n\n function getMonthLastDay(y, m) {\n var date = new Date(y, m, 1);\n var lastDate = new Date(date.getTime() - 1000 * 60 * 60 * 24);\n return lastDate.getFullYear() + '-' + (Number(lastDate.getMonth()) + 1) + '-' + lastDate.getDate();\n }\n\n this.$store.dispatch({\n type: 'walletRecordList',\n wallet_type: this.typeCheckedkeyId || '',\n stime: getMonthFirstDay(this.recordYear, this.recordMonth),\n etime: getMonthLastDay(this.recordYear, this.recordMonth)\n });\n },\n onTypeConfirm: function onTypeConfirm(value, index) {\n this.dialog = false;\n this.active = index;\n this.text = this.columns[index].text;\n this.typeCheckedkeyId = value.keyId;\n this.typeCheckedText = value.text;\n this.recordYear = this.updateYear || this.recordYear;\n this.recordMonth = this.updateMonth || this.recordMonth; //获取某年某月的第一天\n\n function getMonthFirstDay(y, m) {\n var date = new Date(y, m - 1, 1);\n var firstDate = new Date(date.getTime());\n return firstDate.getFullYear() + '-' + (Number(firstDate.getMonth()) + 1) + '-' + firstDate.getDate();\n } //获取某年某月的最后一天\n\n\n function getMonthLastDay(y, m) {\n var date = new Date(y, m, 1);\n var lastDate = new Date(date.getTime() - 1000 * 60 * 60 * 24);\n return lastDate.getFullYear() + '-' + (Number(lastDate.getMonth()) + 1) + '-' + lastDate.getDate();\n }\n\n this.$store.dispatch({\n type: 'walletRecordList',\n wallet_type: value,\n stime: getMonthFirstDay(this.recordYear, this.recordMonth),\n etime: getMonthLastDay(this.recordYear, this.recordMonth)\n });\n },\n onTypeCancel: function onTypeCancel() {\n this.typeShow = false;\n },\n detail: function detail(amount) {\n //待支付的钱包充值订单,可跳去查看详情\n //直接调用$router.push实现携带参数的跳转\n this.$router.push({\n path: '/wallet/recharge',\n query: {\n amount: amount\n }\n });\n }\n },\n components: {\n Header: _views_common_Header_vue__WEBPACK_IMPORTED_MODULE_7__[\"default\"]\n }\n});\n\n//# sourceURL=webpack:///./src/views/wallet/Record.vue?./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js??ref--12-0!./node_modules/_babel-loader@8.0.5@babel-loader/lib!./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js??ref--0-0!./node_modules/_vue-loader@15.6.4@vue-loader/lib??vue-loader-options");
/***/ }), /***/ }),
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
/***/ (function(module, __webpack_exports__, __webpack_require__) { /***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict"; "use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var D_svnData_h5_node_modules_babel_runtime_corejs2_helpers_esm_objectSpread__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./node_modules/@babel/runtime-corejs2/helpers/esm/objectSpread */ \"./node_modules/_@babel_runtime-corejs2@7.3.1@@babel/runtime-corejs2/helpers/esm/objectSpread.js\");\n/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! vue */ \"./node_modules/_vue@2.6.6@vue/dist/vue.runtime.esm.js\");\n/* harmony import */ var vuex__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! vuex */ \"./node_modules/_vuex@3.1.0@vuex/dist/vuex.esm.js\");\n/* harmony import */ var _views_common_Header_vue__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @/views/common/Header.vue */ \"./src/views/common/Header.vue\");\n/* harmony import */ var vant__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! vant */ \"./node_modules/_vant@1.6.5@vant/es/index.js\");\n\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n\n\n\n\nvue__WEBPACK_IMPORTED_MODULE_1__[\"default\"].use(vant__WEBPACK_IMPORTED_MODULE_4__[\"Icon\"]).use(vant__WEBPACK_IMPORTED_MODULE_4__[\"Dialog\"]);\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n name: 'status',\n data: function data() {\n return {\n title: \"钱包状态\",\n meaushow: true\n };\n },\n computed: Object(D_svnData_h5_node_modules_babel_runtime_corejs2_helpers_esm_objectSpread__WEBPACK_IMPORTED_MODULE_0__[\"default\"])({}, Object(vuex__WEBPACK_IMPORTED_MODULE_2__[\"mapState\"])({\n walletInfoData: function walletInfoData(state) {\n return state.wallet.walletInfoData;\n }\n })),\n watch: {},\n created: function created() {\n this.$store.dispatch({\n type: 'getWalletInfo'\n });\n },\n methods: {\n dialogTips: function dialogTips() {\n vant__WEBPACK_IMPORTED_MODULE_4__[\"Dialog\"].alert({\n message: '<p style=\"font-size:16px;\">您的' + this.walletInfoData.wallet_freeze_format + '元正在提现中,</p><p style=\"font-size:16px;\">预计1个工作日后到账,</p><p style=\"font-size:16px;\">节假日顺延,请耐心等候。</p>'\n }).then(function () {// on close\n });\n },\n submit: function submit() {\n this.$router.push({\n path: '/wallet/activate'\n });\n },\n forgetPassword: function forgetPassword() {\n this.$router.push({\n path: '/wallet/retrieve'\n });\n },\n bindBank: function bindBank() {\n this.$router.push({\n path: '/wallet/verify'\n });\n }\n },\n components: {\n Header: _views_common_Header_vue__WEBPACK_IMPORTED_MODULE_3__[\"default\"]\n }\n});\n\n//# sourceURL=webpack:///./src/views/wallet/Status.vue?./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js??ref--12-0!./node_modules/_babel-loader@8.0.5@babel-loader/lib!./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js??ref--0-0!./node_modules/_vue-loader@15.6.4@vue-loader/lib??vue-loader-options"); eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var D_svnData_h5_node_modules_babel_runtime_corejs2_helpers_esm_objectSpread__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./node_modules/@babel/runtime-corejs2/helpers/esm/objectSpread */ \"./node_modules/_@babel_runtime-corejs2@7.3.1@@babel/runtime-corejs2/helpers/esm/objectSpread.js\");\n/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! vue */ \"./node_modules/_vue@2.6.6@vue/dist/vue.runtime.esm.js\");\n/* harmony import */ var vuex__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! vuex */ \"./node_modules/_vuex@3.1.0@vuex/dist/vuex.esm.js\");\n/* harmony import */ var _views_common_Header_vue__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @/views/common/Header.vue */ \"./src/views/common/Header.vue\");\n/* harmony import */ var vant__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! vant */ \"./node_modules/_vant@1.6.5@vant/es/index.js\");\n\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n\n\n\n\nvue__WEBPACK_IMPORTED_MODULE_1__[\"default\"].use(vant__WEBPACK_IMPORTED_MODULE_4__[\"Icon\"]).use(vant__WEBPACK_IMPORTED_MODULE_4__[\"Dialog\"]);\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n name: 'walletStatus',\n data: function data() {\n return {\n title: \"钱包状态\",\n meaushow: true\n };\n },\n computed: Object(D_svnData_h5_node_modules_babel_runtime_corejs2_helpers_esm_objectSpread__WEBPACK_IMPORTED_MODULE_0__[\"default\"])({}, Object(vuex__WEBPACK_IMPORTED_MODULE_2__[\"mapState\"])({\n walletInfoData: function walletInfoData(state) {\n return state.wallet.walletInfoData;\n }\n })),\n watch: {},\n created: function created() {\n this.$store.dispatch({\n type: 'getWalletInfo'\n });\n },\n methods: {\n dialogTips: function dialogTips() {\n vant__WEBPACK_IMPORTED_MODULE_4__[\"Dialog\"].alert({\n message: '<p style=\"font-size:16px;\">您的' + this.walletInfoData.wallet_freeze_format + '元正在提现中,</p><p style=\"font-size:16px;\">预计1个工作日后到账,</p><p style=\"font-size:16px;\">节假日顺延,请耐心等候。</p>'\n }).then(function () {// on close\n });\n },\n submit: function submit() {\n this.$router.push({\n path: '/wallet/activate'\n });\n },\n forgetPassword: function forgetPassword() {\n this.$router.push({\n path: '/wallet/retrieve'\n });\n },\n bindBank: function bindBank() {\n this.$router.push({\n path: '/wallet/verify'\n });\n }\n },\n components: {\n Header: _views_common_Header_vue__WEBPACK_IMPORTED_MODULE_3__[\"default\"]\n }\n});\n\n//# sourceURL=webpack:///./src/views/wallet/Status.vue?./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js??ref--12-0!./node_modules/_babel-loader@8.0.5@babel-loader/lib!./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js??ref--0-0!./node_modules/_vue-loader@15.6.4@vue-loader/lib??vue-loader-options");
/***/ }), /***/ }),
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
/***/ (function(module, __webpack_exports__, __webpack_require__) { /***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict"; "use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var core_js_modules_es6_number_constructor__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core-js/modules/es6.number.constructor */ \"./node_modules/_core-js@2.6.5@core-js/modules/es6.number.constructor.js\");\n/* harmony import */ var core_js_modules_es6_number_constructor__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es6_number_constructor__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var core_js_modules_es6_regexp_replace__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! core-js/modules/es6.regexp.replace */ \"./node_modules/_core-js@2.6.5@core-js/modules/es6.regexp.replace.js\");\n/* harmony import */ var core_js_modules_es6_regexp_replace__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es6_regexp_replace__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var D_svnData_h5_node_modules_babel_runtime_corejs2_helpers_esm_objectSpread__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./node_modules/@babel/runtime-corejs2/helpers/esm/objectSpread */ \"./node_modules/_@babel_runtime-corejs2@7.3.1@@babel/runtime-corejs2/helpers/esm/objectSpread.js\");\n/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! vue */ \"./node_modules/_vue@2.6.6@vue/dist/vue.runtime.esm.js\");\n/* harmony import */ var vuex__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! vuex */ \"./node_modules/_vuex@3.1.0@vuex/dist/vuex.esm.js\");\n/* harmony import */ var _views_common_Header_vue__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @/views/common/Header.vue */ \"./src/views/common/Header.vue\");\n/* harmony import */ var vant__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! vant */ \"./node_modules/_vant@1.6.5@vant/es/index.js\");\n\n\n\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n\n\n\n\nvue__WEBPACK_IMPORTED_MODULE_3__[\"default\"].use(vant__WEBPACK_IMPORTED_MODULE_6__[\"Icon\"]).use(vant__WEBPACK_IMPORTED_MODULE_6__[\"Popup\"]).use(vant__WEBPACK_IMPORTED_MODULE_6__[\"DatetimePicker\"]).use(vant__WEBPACK_IMPORTED_MODULE_6__[\"Picker\"]).use(vant__WEBPACK_IMPORTED_MODULE_6__[\"Toast\"]);\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n name: 'WalletDetail',\n data: function data() {\n return {\n title: \"钱包明细\",\n meaushow: true,\n dateYear: new Date().getFullYear(),\n //初始化当前年\n dateMonth: new Date().getMonth() + 1 < 10 ? \"0\" + (new Date().getMonth() + 1) : new Date().getMonth() + 1,\n //初始化当前月\n updateYear: '',\n updateMonth: '',\n dateShow: false,\n //年月弹出层\n typeShow: false,\n //类型弹出层\n currentDate: new Date(),\n //目前年月\n typeCheckedkeyId: '',\n typeCheckedText: '',\n text: '全部交易类型',\n dialog: false,\n active: 0,\n columns: [{\n \"keyId\": '',\n \"text\": \"全部交易类型\"\n }, {\n \"keyId\": 21,\n \"text\": \"订单支付\"\n }, {\n \"keyId\": 10,\n \"text\": \"钱包充值\"\n }, {\n \"keyId\": 20,\n \"text\": \"钱包提现\"\n }, {\n \"keyId\": 12,\n \"text\": \"活动返现\"\n }, {\n \"keyId\": 100,\n \"text\": \"余额调整\"\n }]\n };\n },\n computed: Object(D_svnData_h5_node_modules_babel_runtime_corejs2_helpers_esm_objectSpread__WEBPACK_IMPORTED_MODULE_2__[\"default\"])({}, Object(vuex__WEBPACK_IMPORTED_MODULE_4__[\"mapState\"])({\n walletListData: function walletListData(state) {\n return state.wallet.walletListData;\n }\n })),\n watch: {},\n created: function created() {\n //格式化日期\n function setDate(date) {\n y = date.getFullYear();\n m = date.getMonth() + 1;\n d = date.getDate();\n m = m < 10 ? \"0\" + m : m;\n d = d < 10 ? \"0\" + d : d;\n return y + \"-\" + m + \"-\" + d;\n } //封装时间格式\n\n\n function format(time, format) {\n var t = new Date(time);\n\n var tf = function tf(i) {\n return (i < 10 ? '0' : '') + i;\n };\n\n return format.replace(/yyyy|MM|dd|HH|mm|ss/g, function (a) {\n switch (a) {\n case 'yyyy':\n return tf(t.getFullYear());\n break;\n\n case 'MM':\n return tf(t.getMonth() + 1);\n break;\n\n case 'mm':\n return tf(t.getMinutes());\n break;\n\n case 'dd':\n return tf(t.getDate());\n break;\n\n case 'HH':\n return tf(t.getHours());\n break;\n\n case 'ss':\n return tf(t.getSeconds());\n break;\n }\n });\n } //获取当前月的第一天\n\n\n function getCurrentMonthFirst() {\n var date = new Date();\n date.setDate(1);\n return date;\n } //获取当前月的最后一天\n\n\n function getCurrentMonthLast() {\n var date = new Date();\n var currentMonth = date.getMonth();\n var nextMonth = ++currentMonth;\n var nextMonthFirstDay = new Date(date.getFullYear(), nextMonth, 1);\n var oneDay = 1000 * 60 * 60 * 24;\n return new Date(nextMonthFirstDay - oneDay);\n }\n\n this.$store.dispatch({\n type: 'walletListLog',\n log_type: '',\n stime: format(getCurrentMonthFirst(), 'yyyy-MM-dd'),\n etime: format(getCurrentMonthLast(), 'yyyy-MM-dd')\n });\n },\n methods: {\n showPopDate: function showPopDate() {\n if (!this.dateShow) {\n this.dateShow = true;\n } else {\n this.dateShow = false;\n }\n },\n showPopType: function showPopType() {\n this.dialog = !this.dialog;\n },\n formatter: function formatter(type, value) {\n if (type === 'year') {\n return \"\".concat(value);\n } else if (type === 'month') {\n return \"\".concat(value);\n }\n\n return value;\n },\n dateChange: function dateChange(value) {\n this.updateYear = value.getValues()[0];\n this.updateMonth = value.getValues()[1];\n },\n onDateCancel: function onDateCancel() {\n this.dateShow = false;\n this.dateYear = this.dateYear;\n this.dateMonth = this.dateMonth;\n },\n onDateConfirm: function onDateConfirm() {\n this.dateShow = false;\n this.dateYear = this.updateYear;\n this.dateMonth = this.updateMonth; //获取某年某月的第一天\n\n function getMonthFirstDay(y, m) {\n var date = new Date(y, m - 1, 1);\n var firstDate = new Date(date.getTime());\n return firstDate.getFullYear() + '-' + (Number(firstDate.getMonth()) + 1) + '-' + firstDate.getDate();\n } //获取某年某月的最后一天\n\n\n function getMonthLastDay(y, m) {\n var date = new Date(y, m, 1);\n var lastDate = new Date(date.getTime() - 1000 * 60 * 60 * 24);\n return lastDate.getFullYear() + '-' + (Number(lastDate.getMonth()) + 1) + '-' + lastDate.getDate();\n }\n\n this.$store.dispatch({\n type: 'walletListLog',\n log_type: this.typeCheckedkeyId || '',\n stime: getMonthFirstDay(this.dateYear, this.dateMonth),\n etime: getMonthLastDay(this.dateYear, this.dateMonth)\n });\n },\n onTypeConfirm: function onTypeConfirm(value, index) {\n this.dialog = false;\n this.active = index;\n this.text = this.columns[index].text;\n this.typeCheckedkeyId = value.keyId;\n this.typeCheckedText = value.text;\n this.dateYear = this.updateYear || this.dateYear;\n this.dateMonth = this.updateMonth || this.dateMonth; //获取某年某月的第一天\n\n function getMonthFirstDay(y, m) {\n var date = new Date(y, m - 1, 1);\n var firstDate = new Date(date.getTime());\n return firstDate.getFullYear() + '-' + (Number(firstDate.getMonth()) + 1) + '-' + firstDate.getDate();\n } //获取某年某月的最后一天\n\n\n function getMonthLastDay(y, m) {\n var date = new Date(y, m, 1);\n var lastDate = new Date(date.getTime() - 1000 * 60 * 60 * 24);\n return lastDate.getFullYear() + '-' + (Number(lastDate.getMonth()) + 1) + '-' + lastDate.getDate();\n }\n\n this.$store.dispatch({\n type: 'walletListLog',\n log_type: value,\n stime: getMonthFirstDay(this.dateYear, this.dateMonth),\n etime: getMonthLastDay(this.dateYear, this.dateMonth)\n });\n },\n onTypeCancel: function onTypeCancel() {\n this.typeShow = false;\n }\n },\n components: {\n Header: _views_common_Header_vue__WEBPACK_IMPORTED_MODULE_5__[\"default\"]\n }\n});\n\n//# sourceURL=webpack:///./src/views/wallet/WalletDetail.vue?./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js??ref--12-0!./node_modules/_babel-loader@8.0.5@babel-loader/lib!./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js??ref--0-0!./node_modules/_vue-loader@15.6.4@vue-loader/lib??vue-loader-options"); eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var core_js_modules_es6_number_constructor__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core-js/modules/es6.number.constructor */ \"./node_modules/_core-js@2.6.5@core-js/modules/es6.number.constructor.js\");\n/* harmony import */ var core_js_modules_es6_number_constructor__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es6_number_constructor__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var core_js_modules_es6_regexp_replace__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! core-js/modules/es6.regexp.replace */ \"./node_modules/_core-js@2.6.5@core-js/modules/es6.regexp.replace.js\");\n/* harmony import */ var core_js_modules_es6_regexp_replace__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es6_regexp_replace__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var D_svnData_h5_node_modules_babel_runtime_corejs2_helpers_esm_objectSpread__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./node_modules/@babel/runtime-corejs2/helpers/esm/objectSpread */ \"./node_modules/_@babel_runtime-corejs2@7.3.1@@babel/runtime-corejs2/helpers/esm/objectSpread.js\");\n/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! vue */ \"./node_modules/_vue@2.6.6@vue/dist/vue.runtime.esm.js\");\n/* harmony import */ var vuex__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! vuex */ \"./node_modules/_vuex@3.1.0@vuex/dist/vuex.esm.js\");\n/* harmony import */ var _views_common_Header_vue__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @/views/common/Header.vue */ \"./src/views/common/Header.vue\");\n/* harmony import */ var vant__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! vant */ \"./node_modules/_vant@1.6.5@vant/es/index.js\");\n\n\n\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n\n\n\n\nvue__WEBPACK_IMPORTED_MODULE_3__[\"default\"].use(vant__WEBPACK_IMPORTED_MODULE_6__[\"Icon\"]).use(vant__WEBPACK_IMPORTED_MODULE_6__[\"Popup\"]).use(vant__WEBPACK_IMPORTED_MODULE_6__[\"DatetimePicker\"]).use(vant__WEBPACK_IMPORTED_MODULE_6__[\"Picker\"]).use(vant__WEBPACK_IMPORTED_MODULE_6__[\"Toast\"]);\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n name: 'walletDetail',\n data: function data() {\n return {\n title: \"钱包明细\",\n meaushow: true,\n dateYear: new Date().getFullYear(),\n //初始化当前年\n dateMonth: new Date().getMonth() + 1 < 10 ? \"0\" + (new Date().getMonth() + 1) : new Date().getMonth() + 1,\n //初始化当前月\n updateYear: '',\n updateMonth: '',\n dateShow: false,\n //年月弹出层\n typeShow: false,\n //类型弹出层\n currentDate: new Date(),\n //目前年月\n typeCheckedkeyId: '',\n typeCheckedText: '',\n text: '全部交易类型',\n dialog: false,\n active: 0,\n columns: [{\n \"keyId\": '',\n \"text\": \"全部交易类型\"\n }, {\n \"keyId\": 21,\n \"text\": \"订单支付\"\n }, {\n \"keyId\": 10,\n \"text\": \"钱包充值\"\n }, {\n \"keyId\": 20,\n \"text\": \"钱包提现\"\n }, {\n \"keyId\": 12,\n \"text\": \"活动返现\"\n }, {\n \"keyId\": 100,\n \"text\": \"余额调整\"\n }]\n };\n },\n computed: Object(D_svnData_h5_node_modules_babel_runtime_corejs2_helpers_esm_objectSpread__WEBPACK_IMPORTED_MODULE_2__[\"default\"])({}, Object(vuex__WEBPACK_IMPORTED_MODULE_4__[\"mapState\"])({\n walletListData: function walletListData(state) {\n return state.wallet.walletListData;\n }\n })),\n watch: {},\n created: function created() {\n //格式化日期\n function setDate(date) {\n y = date.getFullYear();\n m = date.getMonth() + 1;\n d = date.getDate();\n m = m < 10 ? \"0\" + m : m;\n d = d < 10 ? \"0\" + d : d;\n return y + \"-\" + m + \"-\" + d;\n } //封装时间格式\n\n\n function format(time, format) {\n var t = new Date(time);\n\n var tf = function tf(i) {\n return (i < 10 ? '0' : '') + i;\n };\n\n return format.replace(/yyyy|MM|dd|HH|mm|ss/g, function (a) {\n switch (a) {\n case 'yyyy':\n return tf(t.getFullYear());\n break;\n\n case 'MM':\n return tf(t.getMonth() + 1);\n break;\n\n case 'mm':\n return tf(t.getMinutes());\n break;\n\n case 'dd':\n return tf(t.getDate());\n break;\n\n case 'HH':\n return tf(t.getHours());\n break;\n\n case 'ss':\n return tf(t.getSeconds());\n break;\n }\n });\n } //获取当前月的第一天\n\n\n function getCurrentMonthFirst() {\n var date = new Date();\n date.setDate(1);\n return date;\n } //获取当前月的最后一天\n\n\n function getCurrentMonthLast() {\n var date = new Date();\n var currentMonth = date.getMonth();\n var nextMonth = ++currentMonth;\n var nextMonthFirstDay = new Date(date.getFullYear(), nextMonth, 1);\n var oneDay = 1000 * 60 * 60 * 24;\n return new Date(nextMonthFirstDay - oneDay);\n }\n\n this.$store.dispatch({\n type: 'walletListLog',\n log_type: '',\n stime: format(getCurrentMonthFirst(), 'yyyy-MM-dd'),\n etime: format(getCurrentMonthLast(), 'yyyy-MM-dd')\n });\n },\n methods: {\n showPopDate: function showPopDate() {\n if (!this.dateShow) {\n this.dateShow = true;\n } else {\n this.dateShow = false;\n }\n },\n showPopType: function showPopType() {\n this.dialog = !this.dialog;\n },\n formatter: function formatter(type, value) {\n if (type === 'year') {\n return \"\".concat(value);\n } else if (type === 'month') {\n return \"\".concat(value);\n }\n\n return value;\n },\n dateChange: function dateChange(value) {\n this.updateYear = value.getValues()[0];\n this.updateMonth = value.getValues()[1];\n },\n onDateCancel: function onDateCancel() {\n this.dateShow = false;\n this.dateYear = this.dateYear;\n this.dateMonth = this.dateMonth;\n },\n onDateConfirm: function onDateConfirm() {\n this.dateShow = false;\n this.dateYear = this.updateYear;\n this.dateMonth = this.updateMonth; //获取某年某月的第一天\n\n function getMonthFirstDay(y, m) {\n var date = new Date(y, m - 1, 1);\n var firstDate = new Date(date.getTime());\n return firstDate.getFullYear() + '-' + (Number(firstDate.getMonth()) + 1) + '-' + firstDate.getDate();\n } //获取某年某月的最后一天\n\n\n function getMonthLastDay(y, m) {\n var date = new Date(y, m, 1);\n var lastDate = new Date(date.getTime() - 1000 * 60 * 60 * 24);\n return lastDate.getFullYear() + '-' + (Number(lastDate.getMonth()) + 1) + '-' + lastDate.getDate();\n }\n\n this.$store.dispatch({\n type: 'walletListLog',\n log_type: this.typeCheckedkeyId || '',\n stime: getMonthFirstDay(this.dateYear, this.dateMonth),\n etime: getMonthLastDay(this.dateYear, this.dateMonth)\n });\n },\n onTypeConfirm: function onTypeConfirm(value, index) {\n this.dialog = false;\n this.active = index;\n this.text = this.columns[index].text;\n this.typeCheckedkeyId = value.keyId;\n this.typeCheckedText = value.text;\n this.dateYear = this.updateYear || this.dateYear;\n this.dateMonth = this.updateMonth || this.dateMonth; //获取某年某月的第一天\n\n function getMonthFirstDay(y, m) {\n var date = new Date(y, m - 1, 1);\n var firstDate = new Date(date.getTime());\n return firstDate.getFullYear() + '-' + (Number(firstDate.getMonth()) + 1) + '-' + firstDate.getDate();\n } //获取某年某月的最后一天\n\n\n function getMonthLastDay(y, m) {\n var date = new Date(y, m, 1);\n var lastDate = new Date(date.getTime() - 1000 * 60 * 60 * 24);\n return lastDate.getFullYear() + '-' + (Number(lastDate.getMonth()) + 1) + '-' + lastDate.getDate();\n }\n\n this.$store.dispatch({\n type: 'walletListLog',\n log_type: value,\n stime: getMonthFirstDay(this.dateYear, this.dateMonth),\n etime: getMonthLastDay(this.dateYear, this.dateMonth)\n });\n },\n onTypeCancel: function onTypeCancel() {\n this.typeShow = false;\n }\n },\n components: {\n Header: _views_common_Header_vue__WEBPACK_IMPORTED_MODULE_5__[\"default\"]\n }\n});\n\n//# sourceURL=webpack:///./src/views/wallet/WalletDetail.vue?./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js??ref--12-0!./node_modules/_babel-loader@8.0.5@babel-loader/lib!./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js??ref--0-0!./node_modules/_vue-loader@15.6.4@vue-loader/lib??vue-loader-options");
/***/ }), /***/ }),
......
...@@ -631,7 +631,7 @@ eval("__webpack_require__.r(__webpack_exports__);\n//\n//\n//\n//\n//\n//\n//\n/ ...@@ -631,7 +631,7 @@ eval("__webpack_require__.r(__webpack_exports__);\n//\n//\n//\n//\n//\n//\n//\n/
/***/ (function(module, __webpack_exports__, __webpack_require__) { /***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict"; "use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"render\", function() { return render; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"staticRenderFns\", function() { return staticRenderFns; });\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\n \"div\",\n { attrs: { id: \"app\" } },\n [\n _c(\n \"keep-alive\",\n { attrs: { exclude: \"newsDetail,wallet,status\" } },\n [_c(\"router-view\", { staticClass: \"router-view\" })],\n 1\n )\n ],\n 1\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\n\n\n//# sourceURL=webpack:///./src/App.vue?./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js?%7B%22cacheDirectory%22:%22node_modules/.cache/vue-loader%22,%22cacheIdentifier%22:%220ef89de4-vue-loader-template%22%7D!./node_modules/_vue-loader@15.6.4@vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js??ref--0-0!./node_modules/_vue-loader@15.6.4@vue-loader/lib??vue-loader-options"); eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"render\", function() { return render; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"staticRenderFns\", function() { return staticRenderFns; });\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\n \"div\",\n { attrs: { id: \"app\" } },\n [\n _c(\n \"keep-alive\",\n {\n attrs: {\n exclude:\n \"newsDetail,wallet,walletRetrieve,walletDetail,walletRecord,walletStatus\"\n }\n },\n [_c(\"router-view\", { staticClass: \"router-view\" })],\n 1\n )\n ],\n 1\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\n\n\n//# sourceURL=webpack:///./src/App.vue?./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js?%7B%22cacheDirectory%22:%22node_modules/.cache/vue-loader%22,%22cacheIdentifier%22:%220ef89de4-vue-loader-template%22%7D!./node_modules/_vue-loader@15.6.4@vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/_cache-loader@2.0.1@cache-loader/dist/cjs.js??ref--0-0!./node_modules/_vue-loader@15.6.4@vue-loader/lib??vue-loader-options");
/***/ }), /***/ }),
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment