Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
梁建民
/
h5
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
ae8d9f9e
authored
May 13, 2019
by
林翔
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
lx
parent
42d6f5df
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
118 additions
and
21 deletions
src/api/index.js
src/assets/css/wallet/wallet.css
src/store/modules/wallet/wallet.js
src/views/wallet/Cashier.vue
src/views/wallet/Recharge.vue
view/1.js
view/10.js
view/16.js
view/app.js
src/api/index.js
View file @
ae8d9f9e
...
...
@@ -200,6 +200,12 @@ export const apis = {
* *
*/
payTodo
:
productionUrlApi
+
'pay/todo'
,
/**
* *
* 查看订单信息api
* *
*/
orderInfo
:
productionUrlApi
+
'order/info'
,
}
export
const
services
=
{
...
...
@@ -309,4 +315,7 @@ export const services = {
payTodo
(
params
)
{
return
axios
.
post
(
apis
.
payTodo
,
params
)
},
orderInfo
(
params
)
{
return
axios
.
post
(
apis
.
orderInfo
,
params
)
},
}
src/assets/css/wallet/wallet.css
View file @
ae8d9f9e
...
...
@@ -1204,6 +1204,13 @@
color
:
#333333
;
}
.cashier-content
.form-wrap
.inp-wrap
.f-r
{
float
:
right
;
font-size
:
22px
;
margin-right
:
0.55rem
;
margin-top
:
0.55rem
;
}
.cashier-content
.pay
{
width
:
9.2rem
;
height
:
1.33rem
;
...
...
src/store/modules/wallet/wallet.js
View file @
ae8d9f9e
...
...
@@ -34,7 +34,9 @@ const state = {
//提现单ID
amountWithdrawID
:
''
,
//充值提现单据详细
rechargeWithdrawOrderDetail
:
[]
rechargeWithdrawOrderDetail
:
[],
//订单信息
orderInfoData
:
[]
}
const
mutations
=
{
...
...
@@ -82,7 +84,10 @@ const mutations = {
},
payTodo
(
state
,
payload
)
{
state
.
rechargeWithdrawOrderDetail
=
payload
.
data
}
},
orderInfo
(
state
,
payload
)
{
state
.
orderInfoData
=
payload
.
data
},
}
const
actions
=
{
...
...
@@ -576,7 +581,54 @@ const actions = {
}).
catch
(
function
(
err
)
{
});
}
},
orderInfo
({
commit
},
payload
)
{
var
params
=
{
order_id
:
payload
.
order_id
}
Services
.
orderInfo
(
qs
.
stringify
(
params
)).
then
((
res
)
=>
{
let
data
=
res
.
data
;
if
(
data
.
err_code
==
0
)
{
commit
({
type
:
'orderInfo'
,
data
:
data
.
data
});
}
else
{
Toast
({
message
:
data
.
err_msg
,
duration
:
3000
});
}
}).
catch
(
function
(
err
)
{
});
},
walletPayTodo
({
commit
},
payload
)
{
var
params
=
{
pay_code
:
payload
.
pay_code
,
pay_password
:
payload
.
pay_password
,
types
:
payload
.
types
,
order_id
:
payload
.
order_id
,
site_type
:
payload
.
site_type
}
Services
.
payTodo
(
qs
.
stringify
(
params
)).
then
((
res
)
=>
{
let
data
=
res
.
data
;
if
(
data
.
err_code
==
0
)
{
setTimeout
(
function
()
{
window
.
location
.
href
=
"/v3/pay/success?order_id="
+
payload
.
order_id
+
"&types="
+
(
payload
.
types
||
0
);
},
2000
)
}
else
{
Toast
({
message
:
data
.
err_msg
,
duration
:
3000
});
}
}).
catch
(
function
(
err
)
{
});
},
}
const
getters
=
{}
...
...
src/views/wallet/Cashier.vue
View file @
ae8d9f9e
...
...
@@ -3,18 +3,25 @@
<Header
:title=
"title"
:meaushow=
'meaushow'
></Header>
<div
class=
"cashier-content"
>
<div
class=
"cashier-detail"
>
<p
class=
"order-num"
>
订单编号:
{{
order
Num
}}
</p>
<p
class=
"order-money"
>
¥
{{
orderMoney
}}
</p>
<p
class=
"order-num"
>
订单编号:
{{
order
InfoData
.
order_sn
}}
</p>
<p
class=
"order-money"
>
{{
orderInfoData
.
order_amount_format
}}
</p>
</div>
<ul
class=
"form-wrap"
>
<li
class=
"inp-wrap"
>
<label
class=
"lineBlock va-m"
>
交易密码
</label>
<input
type=
"text"
placeholder=
"请输入交易密码"
class=
"va-m inp"
/>
<template
v-if=
"showPassword"
>
<input
type=
"password"
placeholder=
"请输入交易密码"
class=
"va-m inp password"
v-model=
"password"
/>
</
template
>
<
template
v-else
>
<input
type=
"text"
placeholder=
"请输入交易密码"
class=
"va-m inp password"
v-model=
"password"
/>
</
template
>
<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"
/>
</li>
</ul>
<p
class=
"forget-password"
><a
href=
"javascript:;"
>
忘记密码?
</a></p>
<p
class=
"forget-password"
><a
href=
"javascript:;"
@
click=
"forget"
>
忘记密码?
</a></p>
<a
href=
"javascript:;"
class=
"pay"
@
click=
"pay
()
"
>
立即支付
</a>
<a
href=
"javascript:;"
class=
"pay"
@
click=
"pay"
>
立即支付
</a>
</div>
</section>
</template>
...
...
@@ -23,6 +30,9 @@
import
Vue
from
'vue'
;
import
{
mapState
}
from
'vuex'
import
Header
from
'@/views/common/Header.vue'
;
import
{
Icon
}
from
'vant'
;
Vue
.
use
(
Icon
);
export
default
{
name
:
'WalletCashier'
,
...
...
@@ -30,23 +40,42 @@
return
{
title
:
"猎芯网收银台"
,
meaushow
:
true
,
orderNum
:
12019040186325
,
orderMoney
:
523.16
showPassword
:
true
,
//是否显示密码
password
:
''
,
}
},
computed
:
{
...
mapState
({
orderInfoData
:
state
=>
state
.
wallet
.
orderInfoData
})
},
watch
:
{
},
created
()
{
this
.
$store
.
dispatch
({
type
:
'orderInfo'
,
order_id
:
this
.
$route
.
query
.
order_id
||
''
});
},
methods
:
{
changeShow
()
{
this
.
showPassword
=
!
this
.
showPassword
;
},
forget
()
{
this
.
$router
.
push
({
path
:
'/wallet/retrieve'
});
},
pay
()
{
this
.
$store
.
dispatch
({
type
:
'walletPayTodo'
,
pay_code
:
'wallet'
,
pay_password
:
this
.
password
,
//支付密码 pay_code=wallet时传入
rescue
:
1
,
types
:
0
,
site_type
:
2
,
order_id
:
this
.
$route
.
query
.
order_id
||
''
});
},
},
components
:
{
Header
...
...
src/views/wallet/Recharge.vue
View file @
ae8d9f9e
...
...
@@ -65,8 +65,8 @@
this
.
$store
.
dispatch
({
type
:
'payTodo'
,
pay_code
:
'wxpay'
,
rescue
:
'1'
,
types
:
'1'
,
rescue
:
1
,
types
:
1
,
site_type
:
2
,
order_id
:
value
});
...
...
view/1.js
View file @
ae8d9f9e
...
...
@@ -42,7 +42,7 @@ eval("exports = module.exports = __webpack_require__(/*! ../../../node_modules/_
/*! no static exports found */
/***/
(
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;\\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 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: 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 .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 .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;\\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 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: 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 .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"
);
/***/
}),
...
...
view/10.js
View file @
ae8d9f9e
...
...
@@ -8,7 +8,7 @@
/***/
(
function
(
module
,
__webpack_exports__
,
__webpack_require__
)
{
"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/* harmony import */ var _api_index__WEBPACK_IMPORTED_MODULE_5__ = __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\nconsole.log(_api_index__WEBPACK_IMPORTED_MODULE_5__[\"productionUrlApi\"]);\nvue__WEBPACK_IMPORTED_MODULE_1__[\"default\"].use(vant__WEBPACK_IMPORTED_MODULE_4__[\"RadioGroup\"]).use(vant__WEBPACK_IMPORTED_MODULE_4__[\"Radio\"]).use(vant__WEBPACK_IMPORTED_MODULE_4__[\"Cell\"]).use(vant__WEBPACK_IMPORTED_MODULE_4__[\"CellGroup\"]);\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n name: 'WalletRecharge',\n data: function data() {\n return {\n title: \"钱包充值\",\n meaushow: true,\n inputNum: this.$route.query.amount || '',\n radio: '1'\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 amountRechargeID: function amountRechargeID(state) {\n return state.wallet.amountRechargeID;\n }\n })),\n watch: {\n amountRechargeID: function amountRechargeID(value) {\n if (value) {\n if (this.radio == 1) {\n //微信支付\n this.$store.dispatch({\n type: 'payTodo',\n pay_code: 'wxpay',\n rescue:
'1',\n types: '1'
,\n site_type: 2,\n order_id: value\n });\n } else if (this.radio == 2) {\n //支付宝支付\n window.location.href = _api_index__WEBPACK_IMPORTED_MODULE_5__[\"productionUrlApi\"] + \"pay/todo?pay_code=alipay&rescue=1&types=1&site_type=2&order_id=\" + value;\n } else if (this.radio == 3) {\n //中国银联\n window.location.href = _api_index__WEBPACK_IMPORTED_MODULE_5__[\"productionUrlApi\"] + \"pay/todo?pay_code=unionpay&rescue=1&types=1&pay_mode=2&order_id=\" + value;\n }\n }\n }\n },\n created: function created() {\n this.$store.dispatch({\n type: 'getWalletInfo'\n });\n },\n methods: {\n recharge: function recharge() {\n //充值\n if (this.inputNum !== '') {\n console.log(this.radio); //充值申请\n\n this.$store.dispatch({\n type: 'walletRecharge',\n amount: this.inputNum\n });\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/Recharge.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/* harmony import */ var _api_index__WEBPACK_IMPORTED_MODULE_5__ = __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\nconsole.log(_api_index__WEBPACK_IMPORTED_MODULE_5__[\"productionUrlApi\"]);\nvue__WEBPACK_IMPORTED_MODULE_1__[\"default\"].use(vant__WEBPACK_IMPORTED_MODULE_4__[\"RadioGroup\"]).use(vant__WEBPACK_IMPORTED_MODULE_4__[\"Radio\"]).use(vant__WEBPACK_IMPORTED_MODULE_4__[\"Cell\"]).use(vant__WEBPACK_IMPORTED_MODULE_4__[\"CellGroup\"]);\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n name: 'WalletRecharge',\n data: function data() {\n return {\n title: \"钱包充值\",\n meaushow: true,\n inputNum: this.$route.query.amount || '',\n radio: '1'\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 amountRechargeID: function amountRechargeID(state) {\n return state.wallet.amountRechargeID;\n }\n })),\n watch: {\n amountRechargeID: function amountRechargeID(value) {\n if (value) {\n if (this.radio == 1) {\n //微信支付\n this.$store.dispatch({\n type: 'payTodo',\n pay_code: 'wxpay',\n rescue:
1,\n types: 1
,\n site_type: 2,\n order_id: value\n });\n } else if (this.radio == 2) {\n //支付宝支付\n window.location.href = _api_index__WEBPACK_IMPORTED_MODULE_5__[\"productionUrlApi\"] + \"pay/todo?pay_code=alipay&rescue=1&types=1&site_type=2&order_id=\" + value;\n } else if (this.radio == 3) {\n //中国银联\n window.location.href = _api_index__WEBPACK_IMPORTED_MODULE_5__[\"productionUrlApi\"] + \"pay/todo?pay_code=unionpay&rescue=1&types=1&pay_mode=2&order_id=\" + value;\n }\n }\n }\n },\n created: function created() {\n this.$store.dispatch({\n type: 'getWalletInfo'\n });\n },\n methods: {\n recharge: function recharge() {\n //充值\n if (this.inputNum !== '') {\n console.log(this.radio); //充值申请\n\n this.$store.dispatch({\n type: 'walletRecharge',\n amount: this.inputNum\n });\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/Recharge.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"
);
/***/
}),
...
...
view/16.js
View file @
ae8d9f9e
...
...
@@ -8,7 +8,7 @@
/***/
(
function
(
module
,
__webpack_exports__
,
__webpack_require__
)
{
"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
\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/* harmony default export */ __webpack_exports__[\"default\"] = ({\n name: 'WalletCashier',\n data: function data() {\n return {\n title: \"猎芯网收银台\",\n meaushow: true,\n orderNum: 12019040186325,\n orderMoney: 523.16\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 watch: {},\n created: function created() {},\n methods: {
},\n components: {\n Header: _views_common_Header_vue__WEBPACK_IMPORTED_MODULE_3__[\"default\"]\n }\n});\n\n//# sourceURL=webpack:///./src/views/wallet/Cashier.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\nvue__WEBPACK_IMPORTED_MODULE_1__[\"default\"].use(vant__WEBPACK_IMPORTED_MODULE_4__[\"Icon\"]);\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n name: 'WalletCashier',\n data: function data() {\n return {\n title: \"猎芯网收银台\",\n meaushow: true,\n showPassword: true,\n //是否显示密码\n password: ''\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 orderInfoData: function orderInfoData(state) {\n return state.wallet.orderInfoData;\n }\n })),\n watch: {},\n created: function created() {\n this.$store.dispatch({\n type: 'orderInfo',\n order_id: this.$route.query.order_id || ''\n });\n },\n methods: {\n changeShow: function changeShow() {\n this.showPassword = !this.showPassword;\n },\n forget: function forget() {\n this.$router.push({\n path: '/wallet/retrieve'\n });\n },\n pay: function pay() {\n this.$store.dispatch({\n type: 'walletPayTodo',\n pay_code: 'wallet',\n pay_password: this.password,\n //支付密码 pay_code=wallet时传入\n rescue: 1,\n types: 0,\n site_type: 2,\n order_id: this.$route.query.order_id || ''\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/Cashier.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 D_sv
/***/
(
function
(
module
,
__webpack_exports__
,
__webpack_require__
)
{
"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-cashier\" },\n [\n _c(\"Header\", { attrs: { title: _vm.title, meaushow: _vm.meaushow } }),\n _c(\"div\", { staticClass: \"cashier-content\" }, [\n _c(\"div\", { staticClass: \"cashier-detail\" }, [\n _c(\"p\", { staticClass: \"order-num\" }, [\n _vm._v(\"订单编号:\" + _vm._s(_vm.order
Num))\n ]),\n _c(\"p\", { staticClass: \"order-money\" }, [\n _vm._v(\"¥\" + _vm._s(_vm.orderMoney))\n ])\n ]),\n _vm._m(0),\n _vm._m(1),\n _c(\n \"a\",\n {\n staticClass: \"pay\",\n attrs: { href: \"javascript:;\" },\n on: {\n click: function($event) {\n return _vm.pay()\n }\n }\n },\n [_vm._v(\"立即支付\")]\n )\n ])\n ],\n 1\n )\n}\nvar staticRenderFns = [\n function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\"ul\", { staticClass: \"form-wrap\" }, [\n _c(\"li\", { staticClass: \"inp-wrap\" }, [\n _c(\"label\", { staticClass: \"lineBlock va-m\" }, [_vm._v(\"交易密码\")]),\n _c(\"input\", {\n staticClass: \"va-m inp\",\n attrs: { type: \"text\", placeholder: \"请输入交易密码\" }\n })\n ])\n ])\n },\n function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\"p\", { staticClass: \"forget-password\" }, [\n _c(\"a\", { attrs: { href: \"javascript:;\" } }, [_vm._v(\"忘记密码?\")])\n ])\n }\n
]\nrender._withStripped = true\n\n\n\n//# sourceURL=webpack:///./src/views/wallet/Cashier.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-cashier\" },\n [\n _c(\"Header\", { attrs: { title: _vm.title, meaushow: _vm.meaushow } }),\n _c(\"div\", { staticClass: \"cashier-content\" }, [\n _c(\"div\", { staticClass: \"cashier-detail\" }, [\n _c(\"p\", { staticClass: \"order-num\" }, [\n _vm._v(\"订单编号:\" + _vm._s(_vm.order
InfoData.order_sn))\n ]),\n _c(\"p\", { staticClass: \"order-money\" }, [\n _vm._v(_vm._s(_vm.orderInfoData.order_amount_format))\n ])\n ]),\n _c(\"ul\", { staticClass: \"form-wrap\" }, [\n _c(\n \"li\",\n { staticClass: \"inp-wrap\" },\n [\n _c(\"label\", { staticClass: \"lineBlock va-m\" }, [\n _vm._v(\"交易密码\")\n ]),\n _vm.showPassword\n ? [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.password,\n expression: \"password\"\n }\n ],\n staticClass: \"va-m inp password\",\n attrs: {\n type: \"password\",\n placeholder: \"请输入交易密码\"\n },\n domProps: { value: _vm.password },\n on: {\n input: function($event) {\n if ($event.target.composing) {\n return\n }\n _vm.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.password,\n expression: \"password\"\n }\n ],\n staticClass: \"va-m inp password\",\n attrs: { type: \"text\", placeholder: \"请输入交易密码\" },\n domProps: { value: _vm.password },\n on: {\n input: function($event) {\n if ($event.target.composing) {\n return\n }\n _vm.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 ]),\n _c(\"p\", { staticClass: \"forget-password\" }, [\n _c(\n \"a\",\n { attrs: { href: \"javascript:;\" }, on: { click: _vm.forget } },\n [_vm._v(\"忘记密码?\")]\n )\n ]),\n _c(\n \"a\",\n {\n staticClass: \"pay\",\n attrs: { href: \"javascript:;\" },\n on: { click: _vm.pay }\n },\n [_vm._v(\"立即支付\")]\n )\n ])\n ],\n 1\n )\n}\nvar staticRenderFns = [
]\nrender._withStripped = true\n\n\n\n//# sourceURL=webpack:///./src/views/wallet/Cashier.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"
);
/***/
}),
...
...
view/app.js
View file @
ae8d9f9e
...
...
@@ -4493,7 +4493,7 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _cac
/***/
(
function
(
module
,
__webpack_exports__
,
__webpack_require__
)
{
"use strict"
;
eval
(
"__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"productionUrlPc\", function() { return productionUrlPc; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"productionUrl\", function() { return productionUrl; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"productionUrlApi\", function() { return productionUrlApi; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"apis\", function() { return apis; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"services\", function() { return services; });\n/* harmony import */ var
axios__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! axios */ \"./node_modules/_axios@0.18.0@axios/index.js\");\n/* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(axios__WEBPACK_IMPORTED_MODULE_0__);\n\n/**\r\n * www.ichunt.com 正式环境\r\n * sz.ichunt.com 测试环境\r\n * t.ichunt.com 预发布环境\r\n * www.liexin.com 本地环境\r\n * urlApi api环境\r\n * url 3.0环境\r\n * urlMarketing marketing营销系统接口\r\n */\n\nvar urlApi, url, urlPc;\n\nswitch (window.location.hostname) {\n case \"m.ichunt.com\":\n urlPc = 'https://www.ichunt.com/v3/';\n url = 'https://m.ichunt.com/v3/';\n urlApi = 'https://api.ichunt.com/';\n break;\n\n case \"szm.ichunt.com\":\n urlApi = 'https://szapi.ichunt.com/';\n url = 'https://szm.ichunt.com/v3/';\n urlPc = 'https://sz.ichunt.com/v3/';\n break;\n\n case \"tm.ichunt.com\":\n url = 'https://tm.ichunt.com/v3/';\n urlApi = 'https://api.ichunt.com/';\n urlPc = 'https://t.ichunt.com/v3/';\n break;\n\n case \"m.liexin.com\":\n url = 'http://m.liexin.com/v3/';\n urlApi = 'http://api.liexin.com/';\n urlPc = 'http://www.liexin.com/v3/';\n break;\n\n default:\n //本地proxy配置参考vue.config.js\n url = '/m/v3/';\n urlApi = '/apis/';\n}\n\nvar productionUrlPc = urlPc;\nvar productionUrl = url;\nvar productionUrlApi = urlApi;\nvar apis = {\n /**\r\n * 首页\r\n */\n index: productionUrl + 'index',\n\n /**\r\n * 获取登录状态\r\n */\n loginCheck: productionUrlApi + 'login/check',\n\n /**\r\n * 获取购物车数量\r\n */\n cartCount: productionUrlApi + 'cart/count',\n\n /**\r\n * 客服统计处理\r\n */\n customsrService: productionUrlApi + 'public/customsrservice',\n\n /**\r\n * 获取php常量\r\n */\n getCommonParams: productionUrl + 'getcommonparams',\n\n /**\r\n * 微信授权\r\n */\n wxaccess: productionUrl + 'api/wxaccess',\n\n /**\r\n * 验证用户是否存在\r\n */\n checkAccountExists: productionUrlApi + 'public/checkAccountExists',\n\n /**\r\n * 获取sms验证码\r\n */\n customSmsVerify: productionUrlApi + 'public/customSmsVerify',\n\n /**\r\n * 提交报关信息\r\n */\n chainFind: productionUrl + 'Service/chainFind',\n\n /**\r\n *微信菜单文章锦集api\r\n */\n wechatArticle: productionUrlApi + 'Wechat/WechatArticleJinJi/article',\n\n /**\r\n *新闻列表api\r\n */\n newsArticle: productionUrlApi + 'Article/Article/index',\n\n /**\r\n * *\r\n * 新闻详情api\r\n * *\r\n */\n newsArticleDetail: productionUrlApi + 'Article/Article/details',\n\n /**\r\n * *\r\n * 新闻详情api\r\n * *\r\n */\n newsArticleDetailAd: productionUrlApi + 'api/newsdetailad',\n\n /**\r\n * *\r\n * 登录接口api\r\n * *\r\n */\n actionLogin: productionUrlApi + 'login/action',\n\n /**\r\n * *\r\n * 获取短信api\r\n * *\r\n */\n smsVerify: productionUrlApi + 'public/smsVerify',\n\n /**\r\n * *\r\n * 提交反馈api\r\n * *\r\n */\n feedback: productionUrlApi + 'help/help/feedback',\n\n /**\r\n * *\r\n * 获取钱包信息api\r\n * *\r\n */\n getWalletInfo: productionUrlApi + 'wallet/info',\n\n /**\r\n * *\r\n * 激活钱包api\r\n * *\r\n */\n activateWallet: productionUrlApi + 'wallet/activate',\n\n /**\r\n * *\r\n * 发送安全手机验证码api\r\n * *\r\n */\n sendSafesms: productionUrlApi + 'wallet/safesms',\n\n /**\r\n * *\r\n * 重置支付密码验证环节api\r\n * *\r\n */\n verifyResetsms: productionUrlApi + 'wallet/verifyresetsms',\n\n /**\r\n * *\r\n * 修改钱包密码api\r\n * *\r\n */\n changeWalletpwd: productionUrlApi + 'wallet/changepwd',\n\n /**\r\n * *\r\n * 钱包明细列表api\r\n * *\r\n */\n walletListLog: productionUrlApi + 'wallet/log',\n\n /**\r\n * *\r\n * 钱包充值提现列表api\r\n * *\r\n */\n walletRecordList: productionUrlApi + 'wallet/lists',\n\n /**\r\n * *\r\n * 手机安全验证校验api\r\n * *\r\n */\n verifySafeMobile: productionUrlApi + 'wallet/verifysafe',\n\n /**\r\n * *\r\n * 校验银行卡获取短信验证码api\r\n * *\r\n */\n getBindBankmsg: productionUrlApi + 'wallet/getbankmsg',\n\n /**\r\n * *\r\n * 绑定银行卡api\r\n * *\r\n */\n bindBankCard: productionUrlApi + 'wallet/bindbankcard',\n\n /**\r\n * *\r\n * 充值申请api\r\n * *\r\n */\n walletRecharge: productionUrlApi + 'wallet/recharge',\n\n /**\r\n * *\r\n * 提现申请api\r\n * *\r\n */\n walletWithdraw: productionUrlApi + 'wallet/withdraw',\n\n /**\r\n * *\r\n * 充值提现单据详细api\r\n * *\r\n */\n rechargeWithdrawOrderIfo: productionUrlApi + 'wallet/orderinfo',\n\n /**\r\n * *\r\n * 跳转及支付码api\r\n * *\r\n */\n payTodo: productionUrlApi + 'pay/todo'\n};\nvar services = {\n index: function index(params) {\n return axios__WEBPACK_IMPORTED_MODULE_0___default.a.post(apis.index, params);\n },\n loginCheck: function loginCheck(params) {\n return axios__WEBPACK_IMPORTED_MODULE_0___default.a.get(apis.loginCheck, {\n params: {\n data: params\n }\n });\n },\n smsVerify: function smsVerify(params) {\n return axios__WEBPACK_IMPORTED_MODULE_0___default.a.post(apis.smsVerify, params);\n },\n actionLogin: function actionLogin(params) {\n return axios__WEBPACK_IMPORTED_MODULE_0___default.a.post(apis.actionLogin, params);\n },\n feedback: function feedback(params) {\n return axios__WEBPACK_IMPORTED_MODULE_0___default.a.post(apis.feedback, params);\n },\n cartCount: function cartCount(params) {\n return axios__WEBPACK_IMPORTED_MODULE_0___default.a.get(apis.cartCount, {\n params: {\n data: params\n }\n });\n },\n customsrService: function customsrService(params) {\n return axios__WEBPACK_IMPORTED_MODULE_0___default.a.get(apis.customsrService, {\n params: {\n data: params\n }\n });\n },\n getCommonParams: function getCommonParams(params) {\n return axios__WEBPACK_IMPORTED_MODULE_0___default.a.post(apis.getCommonParams, params);\n },\n wxaccess: function wxaccess(params) {\n return axios__WEBPACK_IMPORTED_MODULE_0___default.a.post(apis.wxaccess, params);\n },\n checkAccountExists: function checkAccountExists(params) {\n return axios__WEBPACK_IMPORTED_MODULE_0___default.a.post(apis.checkAccountExists, params);\n },\n customSmsVerify: function customSmsVerify(params) {\n return axios__WEBPACK_IMPORTED_MODULE_0___default.a.post(apis.customSmsVerify, params);\n },\n chainFind: function chainFind(params) {\n return axios__WEBPACK_IMPORTED_MODULE_0___default.a.post(apis.chainFind, params);\n },\n wechatArticle: function wechatArticle(params) {\n return axios__WEBPACK_IMPORTED_MODULE_0___default.a.post(apis.wechatArticle, params);\n },\n newsArticle: function newsArticle(params) {\n return axios__WEBPACK_IMPORTED_MODULE_0___default.a.post(apis.newsArticle, params);\n },\n newsArticleDetail: function newsArticleDetail(params) {\n return axios__WEBPACK_IMPORTED_MODULE_0___default.a.post(apis.newsArticleDetail, params);\n },\n newsArticleDetailAd: function newsArticleDetailAd(params) {\n return axios__WEBPACK_IMPORTED_MODULE_0___default.a.post(apis.newsArticleDetailAd, params);\n },\n getWalletInfo: function getWalletInfo(params) {\n return axios__WEBPACK_IMPORTED_MODULE_0___default.a.get(apis.getWalletInfo, {\n params: {\n data: params\n }\n });\n },\n activateWallet: function activateWallet(params) {\n return axios__WEBPACK_IMPORTED_MODULE_0___default.a.post(apis.activateWallet, params);\n },\n sendSafesms: function sendSafesms(params) {\n return axios__WEBPACK_IMPORTED_MODULE_0___default.a.post(apis.sendSafesms, params);\n },\n verifyResetsms: function verifyResetsms(params) {\n return axios__WEBPACK_IMPORTED_MODULE_0___default.a.post(apis.verifyResetsms, params);\n },\n walletListLog: function walletListLog(params) {\n return axios__WEBPACK_IMPORTED_MODULE_0___default.a.post(apis.walletListLog, params);\n },\n changeWalletpwd: function changeWalletpwd(params) {\n return axios__WEBPACK_IMPORTED_MODULE_0___default.a.post(apis.changeWalletpwd, params);\n },\n walletRecordList: function walletRecordList(params) {\n return axios__WEBPACK_IMPORTED_MODULE_0___default.a.post(apis.walletRecordList, params);\n },\n verifySafeMobile: function verifySafeMobile(params) {\n return axios__WEBPACK_IMPORTED_MODULE_0___default.a.post(apis.verifySafeMobile, params);\n },\n getBindBankmsg: function getBindBankmsg(params) {\n return axios__WEBPACK_IMPORTED_MODULE_0___default.a.post(apis.getBindBankmsg, params);\n },\n bindBankCard: function bindBankCard(params) {\n return axios__WEBPACK_IMPORTED_MODULE_0___default.a.post(apis.bindBankCard, params);\n },\n walletRecharge: function walletRecharge(params) {\n return axios__WEBPACK_IMPORTED_MODULE_0___default.a.post(apis.walletRecharge, params);\n },\n walletWithdraw: function walletWithdraw(params) {\n return axios__WEBPACK_IMPORTED_MODULE_0___default.a.post(apis.walletWithdraw, params);\n },\n rechargeWithdrawOrderIfo: function rechargeWithdrawOrderIfo(params) {\n return axios__WEBPACK_IMPORTED_MODULE_0___default.a.post(apis.rechargeWithdrawOrderIfo, params);\n },\n payTodo: function payTodo(params) {\n return axios__WEBPACK_IMPORTED_MODULE_0___default.a.post(apis.payTod
o, params);\n }\n};\n\n//# sourceURL=webpack:///./src/api/index.js?"
);
eval
(
"__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"productionUrlPc\", function() { return productionUrlPc; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"productionUrl\", function() { return productionUrl; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"productionUrlApi\", function() { return productionUrlApi; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"apis\", function() { return apis; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"services\", function() { return services; });\n/* harmony import */ var
core_js_modules_es6_promise__WEBPACK_IMPORTED_MODULE_0__ = __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_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es6_promise__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var core_js_modules_es6_symbol__WEBPACK_IMPORTED_MODULE_1__ = __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_1___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es6_symbol__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! axios */ \"./node_modules/_axios@0.18.0@axios/index.js\");\n/* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(axios__WEBPACK_IMPORTED_MODULE_2__);\n\n\n\n/**\r\n * www.ichunt.com 正式环境\r\n * sz.ichunt.com 测试环境\r\n * t.ichunt.com 预发布环境\r\n * www.liexin.com 本地环境\r\n * urlApi api环境\r\n * url 3.0环境\r\n * urlMarketing marketing营销系统接口\r\n */\n\nvar urlApi, url, urlPc;\n\nswitch (window.location.hostname) {\n case \"m.ichunt.com\":\n urlPc = 'https://www.ichunt.com/v3/';\n url = 'https://m.ichunt.com/v3/';\n urlApi = 'https://api.ichunt.com/';\n break;\n\n case \"szm.ichunt.com\":\n urlApi = 'https://szapi.ichunt.com/';\n url = 'https://szm.ichunt.com/v3/';\n urlPc = 'https://sz.ichunt.com/v3/';\n break;\n\n case \"tm.ichunt.com\":\n url = 'https://tm.ichunt.com/v3/';\n urlApi = 'https://api.ichunt.com/';\n urlPc = 'https://t.ichunt.com/v3/';\n break;\n\n case \"m.liexin.com\":\n url = 'http://m.liexin.com/v3/';\n urlApi = 'http://api.liexin.com/';\n urlPc = 'http://www.liexin.com/v3/';\n break;\n\n default:\n //本地proxy配置参考vue.config.js\n url = '/m/v3/';\n urlApi = '/apis/';\n}\n\nvar productionUrlPc = urlPc;\nvar productionUrl = url;\nvar productionUrlApi = urlApi;\nvar apis = {\n /**\r\n * 首页\r\n */\n index: productionUrl + 'index',\n\n /**\r\n * 获取登录状态\r\n */\n loginCheck: productionUrlApi + 'login/check',\n\n /**\r\n * 获取购物车数量\r\n */\n cartCount: productionUrlApi + 'cart/count',\n\n /**\r\n * 客服统计处理\r\n */\n customsrService: productionUrlApi + 'public/customsrservice',\n\n /**\r\n * 获取php常量\r\n */\n getCommonParams: productionUrl + 'getcommonparams',\n\n /**\r\n * 微信授权\r\n */\n wxaccess: productionUrl + 'api/wxaccess',\n\n /**\r\n * 验证用户是否存在\r\n */\n checkAccountExists: productionUrlApi + 'public/checkAccountExists',\n\n /**\r\n * 获取sms验证码\r\n */\n customSmsVerify: productionUrlApi + 'public/customSmsVerify',\n\n /**\r\n * 提交报关信息\r\n */\n chainFind: productionUrl + 'Service/chainFind',\n\n /**\r\n *微信菜单文章锦集api\r\n */\n wechatArticle: productionUrlApi + 'Wechat/WechatArticleJinJi/article',\n\n /**\r\n *新闻列表api\r\n */\n newsArticle: productionUrlApi + 'Article/Article/index',\n\n /**\r\n * *\r\n * 新闻详情api\r\n * *\r\n */\n newsArticleDetail: productionUrlApi + 'Article/Article/details',\n\n /**\r\n * *\r\n * 新闻详情api\r\n * *\r\n */\n newsArticleDetailAd: productionUrlApi + 'api/newsdetailad',\n\n /**\r\n * *\r\n * 登录接口api\r\n * *\r\n */\n actionLogin: productionUrlApi + 'login/action',\n\n /**\r\n * *\r\n * 获取短信api\r\n * *\r\n */\n smsVerify: productionUrlApi + 'public/smsVerify',\n\n /**\r\n * *\r\n * 提交反馈api\r\n * *\r\n */\n feedback: productionUrlApi + 'help/help/feedback',\n\n /**\r\n * *\r\n * 获取钱包信息api\r\n * *\r\n */\n getWalletInfo: productionUrlApi + 'wallet/info',\n\n /**\r\n * *\r\n * 激活钱包api\r\n * *\r\n */\n activateWallet: productionUrlApi + 'wallet/activate',\n\n /**\r\n * *\r\n * 发送安全手机验证码api\r\n * *\r\n */\n sendSafesms: productionUrlApi + 'wallet/safesms',\n\n /**\r\n * *\r\n * 重置支付密码验证环节api\r\n * *\r\n */\n verifyResetsms: productionUrlApi + 'wallet/verifyresetsms',\n\n /**\r\n * *\r\n * 修改钱包密码api\r\n * *\r\n */\n changeWalletpwd: productionUrlApi + 'wallet/changepwd',\n\n /**\r\n * *\r\n * 钱包明细列表api\r\n * *\r\n */\n walletListLog: productionUrlApi + 'wallet/log',\n\n /**\r\n * *\r\n * 钱包充值提现列表api\r\n * *\r\n */\n walletRecordList: productionUrlApi + 'wallet/lists',\n\n /**\r\n * *\r\n * 手机安全验证校验api\r\n * *\r\n */\n verifySafeMobile: productionUrlApi + 'wallet/verifysafe',\n\n /**\r\n * *\r\n * 校验银行卡获取短信验证码api\r\n * *\r\n */\n getBindBankmsg: productionUrlApi + 'wallet/getbankmsg',\n\n /**\r\n * *\r\n * 绑定银行卡api\r\n * *\r\n */\n bindBankCard: productionUrlApi + 'wallet/bindbankcard',\n\n /**\r\n * *\r\n * 充值申请api\r\n * *\r\n */\n walletRecharge: productionUrlApi + 'wallet/recharge',\n\n /**\r\n * *\r\n * 提现申请api\r\n * *\r\n */\n walletWithdraw: productionUrlApi + 'wallet/withdraw',\n\n /**\r\n * *\r\n * 充值提现单据详细api\r\n * *\r\n */\n rechargeWithdrawOrderIfo: productionUrlApi + 'wallet/orderinfo',\n\n /**\r\n * *\r\n * 跳转及支付码api\r\n * *\r\n */\n payTodo: productionUrlApi + 'pay/todo',\n\n /**\r\n * *\r\n * 查看订单信息api\r\n * *\r\n */\n orderInfo: productionUrlApi + 'order/info'\n};\nvar services = {\n index: function index(params) {\n return axios__WEBPACK_IMPORTED_MODULE_2___default.a.post(apis.index, params);\n },\n loginCheck: function loginCheck(params) {\n return axios__WEBPACK_IMPORTED_MODULE_2___default.a.get(apis.loginCheck, {\n params: {\n data: params\n }\n });\n },\n smsVerify: function smsVerify(params) {\n return axios__WEBPACK_IMPORTED_MODULE_2___default.a.post(apis.smsVerify, params);\n },\n actionLogin: function actionLogin(params) {\n return axios__WEBPACK_IMPORTED_MODULE_2___default.a.post(apis.actionLogin, params);\n },\n feedback: function feedback(params) {\n return axios__WEBPACK_IMPORTED_MODULE_2___default.a.post(apis.feedback, params);\n },\n cartCount: function cartCount(params) {\n return axios__WEBPACK_IMPORTED_MODULE_2___default.a.get(apis.cartCount, {\n params: {\n data: params\n }\n });\n },\n customsrService: function customsrService(params) {\n return axios__WEBPACK_IMPORTED_MODULE_2___default.a.get(apis.customsrService, {\n params: {\n data: params\n }\n });\n },\n getCommonParams: function getCommonParams(params) {\n return axios__WEBPACK_IMPORTED_MODULE_2___default.a.post(apis.getCommonParams, params);\n },\n wxaccess: function wxaccess(params) {\n return axios__WEBPACK_IMPORTED_MODULE_2___default.a.post(apis.wxaccess, params);\n },\n checkAccountExists: function checkAccountExists(params) {\n return axios__WEBPACK_IMPORTED_MODULE_2___default.a.post(apis.checkAccountExists, params);\n },\n customSmsVerify: function customSmsVerify(params) {\n return axios__WEBPACK_IMPORTED_MODULE_2___default.a.post(apis.customSmsVerify, params);\n },\n chainFind: function chainFind(params) {\n return axios__WEBPACK_IMPORTED_MODULE_2___default.a.post(apis.chainFind, params);\n },\n wechatArticle: function wechatArticle(params) {\n return axios__WEBPACK_IMPORTED_MODULE_2___default.a.post(apis.wechatArticle, params);\n },\n newsArticle: function newsArticle(params) {\n return axios__WEBPACK_IMPORTED_MODULE_2___default.a.post(apis.newsArticle, params);\n },\n newsArticleDetail: function newsArticleDetail(params) {\n return axios__WEBPACK_IMPORTED_MODULE_2___default.a.post(apis.newsArticleDetail, params);\n },\n newsArticleDetailAd: function newsArticleDetailAd(params) {\n return axios__WEBPACK_IMPORTED_MODULE_2___default.a.post(apis.newsArticleDetailAd, params);\n },\n getWalletInfo: function getWalletInfo(params) {\n return axios__WEBPACK_IMPORTED_MODULE_2___default.a.get(apis.getWalletInfo, {\n params: {\n data: params\n }\n });\n },\n activateWallet: function activateWallet(params) {\n return axios__WEBPACK_IMPORTED_MODULE_2___default.a.post(apis.activateWallet, params);\n },\n sendSafesms: function sendSafesms(params) {\n return axios__WEBPACK_IMPORTED_MODULE_2___default.a.post(apis.sendSafesms, params);\n },\n verifyResetsms: function verifyResetsms(params) {\n return axios__WEBPACK_IMPORTED_MODULE_2___default.a.post(apis.verifyResetsms, params);\n },\n walletListLog: function walletListLog(params) {\n return axios__WEBPACK_IMPORTED_MODULE_2___default.a.post(apis.walletListLog, params);\n },\n changeWalletpwd: function changeWalletpwd(params) {\n return axios__WEBPACK_IMPORTED_MODULE_2___default.a.post(apis.changeWalletpwd, params);\n },\n walletRecordList: function walletRecordList(params) {\n return axios__WEBPACK_IMPORTED_MODULE_2___default.a.post(apis.walletRecordList, params);\n },\n verifySafeMobile: function verifySafeMobile(params) {\n return axios__WEBPACK_IMPORTED_MODULE_2___default.a.post(apis.verifySafeMobile, params);\n },\n getBindBankmsg: function getBindBankmsg(params) {\n return axios__WEBPACK_IMPORTED_MODULE_2___default.a.post(apis.getBindBankmsg, params);\n },\n bindBankCard: function bindBankCard(params) {\n return axios__WEBPACK_IMPORTED_MODULE_2___default.a.post(apis.bindBankCard, params);\n },\n walletRecharge: function walletRecharge(params) {\n return axios__WEBPACK_IMPORTED_MODULE_2___default.a.post(apis.walletRecharge, params);\n },\n walletWithdraw: function walletWithdraw(params) {\n return axios__WEBPACK_IMPORTED_MODULE_2___default.a.post(apis.walletWithdraw, params);\n },\n rechargeWithdrawOrderIfo: function rechargeWithdrawOrderIfo(params) {\n return axios__WEBPACK_IMPORTED_MODULE_2___default.a.post(apis.rechargeWithdrawOrderIfo, params);\n },\n payTodo: function payTodo(params) {\n return axios__WEBPACK_IMPORTED_MODULE_2___default.a.post(apis.payTodo, params);\n },\n orderInfo: function orderInfo(params) {\n return axios__WEBPACK_IMPORTED_MODULE_2___default.a.post(apis.orderInf
o, params);\n }\n};\n\n//# sourceURL=webpack:///./src/api/index.js?"
);
/***/
}),
...
...
@@ -4782,7 +4782,7 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var vue_
/***/
(
function
(
module
,
__webpack_exports__
,
__webpack_require__
)
{
"use strict"
;
eval
(
"__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var
core_js_modules_es6_promise__WEBPACK_IMPORTED_MODULE_0__ = __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_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es6_promise__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var core_js_modules_es6_symbol__WEBPACK_IMPORTED_MODULE_1__ = __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_1___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es6_symbol__WEBPACK_IMPORTED_MODULE_1__);\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 vant__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! vant */ \"./node_modules/_vant@1.6.5@vant/es/index.js\");\n/* harmony import */ var _api_index__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../../api/index */ \"./src/api/index.js\");\n/* harmony import */ var _util__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../../util */ \"./src/util/index.js\");\n\n\n\n\n\n\n\nvar qs = __webpack_require__(/*! qs */ \"./node_modules/_qs@6.6.0@qs/lib/index.js\");\n\nvue__WEBPACK_IMPORTED_MODULE_2__[\"default\"].use(vant__WEBPACK_IMPORTED_MODULE_3__[\"Toast\"]);\nvar state = {\n //钱包信息\n walletInfoData: {},\n //验证安全手机——图形验证码和开始倒计时标记\n verifyShowImgCode: false,\n verifyCountDownFlag: false,\n //激活钱包——图形验证码和开始倒计时标记\n activateShowImgCode: false,\n activateCountDownFlag: false,\n //找回密码——图形验证码和开始倒计时标记\n retieveShowImgCode: false,\n retieveCountDownFlag: false,\n passwordToken: '',\n //钱包明细\n walletListData: [],\n //提现充值明细\n walletRecordData: [],\n //绑定银行卡\n bankPasswordToken: '',\n bankCountDownFlag: false,\n bindBankKey: '',\n bindBankData: '',\n //充值单ID\n amountRechargeID: '',\n //提现单ID\n amountWithdrawID: '',\n //充值提现单据详细\n rechargeWithdrawOrderDetail: []\n};\nvar mutations = {\n getWalletInfo: function getWalletInfo(state, payload) {\n state.walletInfoData = payload.data;\n },\n sendSafesms: function sendSafesms(state, payload) {\n state.verifyShowImgCode = !payload.verifyCountDownFlag;\n state.verifyCountDownFlag = payload.verifyCountDownFlag;\n },\n smsVerifyActivate: function smsVerifyActivate(state, payload) {\n state.activateShowImgCode = !payload.activateCountDownFlag;\n state.activateCountDownFlag = payload.activateCountDownFlag;\n },\n smsVerifyRetrieve: function smsVerifyRetrieve(state, payload) {\n state.retieveShowImgCode = !payload.retieveCountDownFlag;\n state.retieveCountDownFlag = payload.retieveCountDownFlag;\n },\n verifyResetsms: function verifyResetsms(state, payload) {\n state.passwordToken = payload.data;\n },\n walletListLog: function walletListLog(state, payload) {\n state.walletListData = payload.data;\n },\n walletRecordList: function walletRecordList(state, payload) {\n state.walletRecordData = payload.data;\n },\n verifySafeMobile: function verifySafeMobile(state, payload) {\n state.bankPasswordToken = payload.data;\n _util__WEBPACK_IMPORTED_MODULE_5__[\"default\"].setCookie(\"bankPasswordToken\", payload.data, 1);\n },\n getBindBankmsg: function getBindBankmsg(state, payload) {\n state.bankCountDownFlag = payload.bankCountDownFlag;\n state.bindBankKey = payload.data.access_key;\n state.bindBankData = payload.data.access_data;\n },\n walletRecharge: function walletRecharge(state, payload) {\n state.amountRechargeID = payload.data;\n },\n walletWithdraw: function walletWithdraw(state, payload) {\n state.amountWithdrawID = payload.data;\n },\n rechargeWithdrawOrderIfo: function rechargeWithdrawOrderIfo(state, payload) {\n state.rechargeWithdrawOrderDetail = payload.data;\n },\n payTodo: function payTodo(state, payload) {\n state.rechargeWithdrawOrderDetail = payload.data;\n }\n};\nvar actions = {\n getWalletInfo: function getWalletInfo(_ref, payload) {\n var commit = _ref.commit;\n var params = {};\n _api_index__WEBPACK_IMPORTED_MODULE_4__[\"services\"].getWalletInfo(qs.stringify(params)).then(function (res) {\n var data = res.data;\n\n if (data.err_code == 0) {\n commit({\n type: 'getWalletInfo',\n data: data.data\n });\n }\n }).catch(function (err) {});\n },\n smsVerifyActivate: function smsVerifyActivate(_ref2, payload) {\n var commit = _ref2.commit;\n vant__WEBPACK_IMPORTED_MODULE_3__[\"Toast\"].loading({\n message: '处理中...'\n });\n var params = {\n mobile: payload.mobile,\n verify: payload.imgCode,\n channel: 3\n };\n _api_index__WEBPACK_IMPORTED_MODULE_4__[\"services\"].smsVerify(qs.stringify(params)).then(function (res) {\n var data = res.data;\n\n if (data.err_code == 0) {\n Object(vant__WEBPACK_IMPORTED_MODULE_3__[\"Toast\"])({\n message: data.err_msg,\n duration: 2000\n });\n commit({\n type: 'smsVerifyActivate',\n activateCountDownFlag: true\n });\n } else if (data.err_code == 23019 || data.err_code == 11008 || data.err_code == 11011) {\n Object(vant__WEBPACK_IMPORTED_MODULE_3__[\"Toast\"])({\n message: data.err_msg,\n duration: 2000\n });\n commit({\n type: 'smsVerifyActivate',\n activateCountDownFlag: false\n });\n } else {\n Object(vant__WEBPACK_IMPORTED_MODULE_3__[\"Toast\"])({\n message: data.err_msg,\n duration: 3000\n });\n }\n }).catch(function (err) {\n vant__WEBPACK_IMPORTED_MODULE_3__[\"Toast\"].clear();\n });\n },\n activateWallet: function activateWallet(_ref3, payload) {\n var commit = _ref3.commit;\n var params = {\n intl_code: '',\n safe_mobile: payload.mobile,\n verify_code: payload.verifyCode,\n pay_password: payload.password,\n reconfirm: payload.passwordConfirm\n };\n _api_index__WEBPACK_IMPORTED_MODULE_4__[\"services\"].activateWallet(qs.stringify(params)).then(function (res) {\n var data = res.data;\n\n if (data.err_code == 0) {\n Object(vant__WEBPACK_IMPORTED_MODULE_3__[\"Toast\"])({\n message: data.err_msg,\n duration: 2000\n });\n setTimeout(function () {\n window.location.href = \"/h5/view/#/wallet\";\n }, 2000);\n } else {\n Object(vant__WEBPACK_IMPORTED_MODULE_3__[\"Toast\"])({\n message: data.err_msg,\n duration: 2000\n });\n setTimeout(function () {\n window.location.href = \"/h5/view/#/wallet/activate\";\n }, 2000);\n }\n }).catch(function (err) {});\n },\n sendSafesms: function sendSafesms(_ref4, payload) {\n var commit = _ref4.commit;\n vant__WEBPACK_IMPORTED_MODULE_3__[\"Toast\"].loading({\n message: '处理中...'\n });\n var params = {\n verify: payload.imgCode,\n channel: 3\n };\n _api_index__WEBPACK_IMPORTED_MODULE_4__[\"services\"].sendSafesms(qs.stringify(params)).then(function (res) {\n var data = res.data;\n\n if (data.err_code == 0) {\n Object(vant__WEBPACK_IMPORTED_MODULE_3__[\"Toast\"])({\n message: data.err_msg,\n duration: 2000\n });\n commit({\n type: 'sendSafesms',\n verifyCountDownFlag: true\n });\n } else if (data.err_code == 23019) {\n //请确认图形验证码\n Object(vant__WEBPACK_IMPORTED_MODULE_3__[\"Toast\"])({\n message: data.err_msg,\n duration: 2000\n });\n commit({\n type: 'sendSafesms',\n verifyCountDownFlag: false\n });\n } else {\n Object(vant__WEBPACK_IMPORTED_MODULE_3__[\"Toast\"])({\n message: data.err_msg,\n duration: 3000\n });\n }\n }).catch(function (err) {\n vant__WEBPACK_IMPORTED_MODULE_3__[\"Toast\"].clear();\n });\n },\n smsVerifyRetrieve: function smsVerifyRetrieve(_ref5, payload) {\n var commit = _ref5.commit;\n vant__WEBPACK_IMPORTED_MODULE_3__[\"Toast\"].loading({\n message: '处理中...'\n });\n var params = {\n verify: payload.imgCode,\n channel: 3\n };\n _api_index__WEBPACK_IMPORTED_MODULE_4__[\"services\"].sendSafesms(qs.stringify(params)).then(function (res) {\n var data = res.data;\n\n if (data.err_code == 0) {\n Object(vant__WEBPACK_IMPORTED_MODULE_3__[\"Toast\"])({\n message: data.err_msg,\n duration: 2000\n });\n commit({\n type: 'smsVerifyRetrieve',\n retieveCountDownFlag: true\n });\n } else if (data.err_code == 23019) {\n //请确认图形验证码\n Object(vant__WEBPACK_IMPORTED_MODULE_3__[\"Toast\"])({\n message: data.err_msg,\n duration: 2000\n });\n commit({\n type: 'smsVerifyRetrieve',\n retieveCountDownFlag: false\n });\n } else {\n Object(vant__WEBPACK_IMPORTED_MODULE_3__[\"Toast\"])({\n message: data.err_msg,\n duration: 3000\n });\n }\n }).catch(function (err) {\n vant__WEBPACK_IMPORTED_MODULE_3__[\"Toast\"].clear();\n });\n },\n verifyResetsms: function verifyResetsms(_ref6, payload) {\n var commit = _ref6.commit;\n var params = {\n verify_code: payload.verify_code\n };\n _api_index__WEBPACK_IMPORTED_MODULE_4__[\"services\"].verifyResetsms(qs.stringify(params)).then(function (res) {\n var data = res.data;\n\n if (data.err_code == 0) {\n Object(vant__WEBPACK_IMPORTED_MODULE_3__[\"Toast\"])({\n message: data.err_msg,\n duration: 2000\n });\n commit({\n type: 'verifyResetsms',\n data: data.data\n });\n } else {\n Object(vant__WEBPACK_IMPORTED_MODULE_3__[\"Toast\"])({\n message: data.err_msg,\n duration: 3000\n });\n }\n }).catch(function (err) {});\n },\n changeWalletpwd: function changeWalletpwd(_ref7, payload) {\n var commit = _ref7.commit;\n var params = {\n token: payload.token,\n pay_password: payload.pay_password,\n reconfirm: payload.reconfirm,\n mode: payload.mode\n };\n _api_index__WEBPACK_IMPORTED_MODULE_4__[\"services\"].changeWalletpwd(qs.stringify(params)).then(function (res) {\n var data = res.data;\n\n if (data.err_code == 0) {\n Object(vant__WEBPACK_IMPORTED_MODULE_3__[\"Toast\"])({\n message: data.err_msg,\n duration: 2000\n });\n setTimeout(function () {\n window.location.href = \"/h5/view/#/wallet\";\n }, 2000);\n } else {\n Object(vant__WEBPACK_IMPORTED_MODULE_3__[\"Toast\"])({\n message: data.err_msg,\n duration: 3000\n });\n }\n }).catch(function (err) {});\n },\n walletListLog: function walletListLog(_ref8, payload) {\n var commit = _ref8.commit;\n vant__WEBPACK_IMPORTED_MODULE_3__[\"Toast\"].loading({\n message: '加载中...'\n });\n var params = {\n log_type: payload.log_type,\n stime: payload.stime,\n etime: payload.etime\n };\n _api_index__WEBPACK_IMPORTED_MODULE_4__[\"services\"].walletListLog(qs.stringify(params)).then(function (res) {\n var data = res.data;\n\n if (data.err_code == 0) {\n commit({\n type: 'walletListLog',\n data: data.data.list\n });\n } else {\n Object(vant__WEBPACK_IMPORTED_MODULE_3__[\"Toast\"])({\n message: data.err_msg,\n duration: 3000\n });\n }\n\n vant__WEBPACK_IMPORTED_MODULE_3__[\"Toast\"].clear();\n }).catch(function (err) {\n vant__WEBPACK_IMPORTED_MODULE_3__[\"Toast\"].clear();\n });\n },\n walletRecordList: function walletRecordList(_ref9, payload) {\n var commit = _ref9.commit;\n vant__WEBPACK_IMPORTED_MODULE_3__[\"Toast\"].loading({\n message: '加载中...'\n });\n var params = {\n wallet_type: payload.wallet_type,\n stime: payload.stime,\n etime: payload.etime\n };\n _api_index__WEBPACK_IMPORTED_MODULE_4__[\"services\"].walletRecordList(qs.stringify(params)).then(function (res) {\n var data = res.data;\n\n if (data.err_code == 0) {\n commit({\n type: 'walletRecordList',\n data: data.data.list\n });\n } else {\n Object(vant__WEBPACK_IMPORTED_MODULE_3__[\"Toast\"])({\n message: data.err_msg,\n duration: 3000\n });\n }\n\n vant__WEBPACK_IMPORTED_MODULE_3__[\"Toast\"].clear();\n }).catch(function (err) {\n vant__WEBPACK_IMPORTED_MODULE_3__[\"Toast\"].clear();\n });\n },\n verifySafeMobile: function verifySafeMobile(_ref10, payload) {\n var commit = _ref10.commit;\n var params = {\n verify_code: payload.verify_code,\n pay_password: payload.pay_password\n };\n _api_index__WEBPACK_IMPORTED_MODULE_4__[\"services\"].verifySafeMobile(qs.stringify(params)).then(function (res) {\n var data = res.data;\n\n if (data.err_code == 0) {\n Object(vant__WEBPACK_IMPORTED_MODULE_3__[\"Toast\"])({\n message: data.err_msg,\n duration: 2000\n });\n commit({\n type: 'verifySafeMobile',\n data: data.data\n });\n setTimeout(function () {\n window.location.href = \"/h5/view/#/wallet/bind\";\n }, 2000);\n } else if (data.err_code == 11030) {\n Object(vant__WEBPACK_IMPORTED_MODULE_3__[\"Toast\"])({\n message: data.err_msg,\n duration: 2000\n });\n setTimeout(function () {\n window.location.href = '/h5/view/#/';\n }, 2000);\n } else {\n Object(vant__WEBPACK_IMPORTED_MODULE_3__[\"Toast\"])({\n message: data.err_msg,\n duration: 200\n });\n }\n }).catch(function (err) {});\n },\n getBindBankmsg: function getBindBankmsg(_ref11, payload) {\n var commit = _ref11.commit;\n var params = {\n bank_user: payload.bank_user,\n bank_id: payload.bank_id,\n bank_account: payload.bank_account,\n id_type: payload.id_type,\n id_number: payload.id_number,\n account_type: payload.account_type,\n mobile: payload.mobile,\n channel: 3\n };\n _api_index__WEBPACK_IMPORTED_MODULE_4__[\"services\"].getBindBankmsg(qs.stringify(params)).then(function (res) {\n var data = res.data;\n\n if (data.err_code == 0) {\n Object(vant__WEBPACK_IMPORTED_MODULE_3__[\"Toast\"])({\n message: data.err_msg,\n duration: 2000\n });\n commit({\n type: 'getBindBankmsg',\n bankCountDownFlag: true,\n data: data.data\n });\n } else {\n Object(vant__WEBPACK_IMPORTED_MODULE_3__[\"Toast\"])({\n message: data.err_msg,\n duration: 3000\n });\n }\n }).catch(function (err) {});\n },\n bindBankCard: function bindBankCard(_ref12, payload) {\n var commit = _ref12.commit;\n vant__WEBPACK_IMPORTED_MODULE_3__[\"Toast\"].loading({\n message: '处理中...'\n });\n var params = {\n token: payload.token,\n wallet_bank_id: payload.wallet_bank_id,\n sms_code: payload.sms_code,\n access_key: payload.access_key,\n access_data: payload.access_data\n };\n _api_index__WEBPACK_IMPORTED_MODULE_4__[\"services\"].bindBankCard(qs.stringify(params)).then(function (res) {\n var data = res.data;\n\n if (data.err_code == 0) {\n Object(vant__WEBPACK_IMPORTED_MODULE_3__[\"Toast\"])({\n message: data.err_msg,\n duration: 2000\n });\n setTimeout(function () {\n window.location.href = \"/h5/view/#/wallet\";\n }, 2000);\n } else {\n Object(vant__WEBPACK_IMPORTED_MODULE_3__[\"Toast\"])({\n message: data.err_msg,\n duration: 3000\n });\n }\n }).catch(function (err) {\n vant__WEBPACK_IMPORTED_MODULE_3__[\"Toast\"].clear();\n });\n },\n walletRecharge: function walletRecharge(_ref13, payload) {\n var commit = _ref13.commit;\n var params = {\n amount: payload.amount\n };\n _api_index__WEBPACK_IMPORTED_MODULE_4__[\"services\"].walletRecharge(qs.stringify(params)).then(function (res) {\n var data = res.data;\n\n if (data.err_code == 0) {\n Object(vant__WEBPACK_IMPORTED_MODULE_3__[\"Toast\"])({\n message: data.err_msg,\n duration: 2000\n });\n commit({\n type: 'walletRecharge',\n data: data.data\n });\n } else {\n Object(vant__WEBPACK_IMPORTED_MODULE_3__[\"Toast\"])({\n message: data.err_msg,\n duration: 3000\n });\n }\n }).catch(function (err) {});\n },\n walletWithdraw: function walletWithdraw(_ref14, payload) {\n var commit = _ref14.commit;\n var params = {\n amount: payload.amount,\n pay_password: payload.pay_password\n };\n _api_index__WEBPACK_IMPORTED_MODULE_4__[\"services\"].walletWithdraw(qs.stringify(params)).then(function (res) {\n var data = res.data;\n\n if (data.err_code == 0) {\n Object(vant__WEBPACK_IMPORTED_MODULE_3__[\"Toast\"])({\n message: '提现申请成功,预计1个工作日后到账,节假日顺延,请耐心等待',\n duration: 2000\n });\n commit({\n type: 'walletWithdraw',\n data: data.data\n });\n setTimeout(function () {\n window.location.href = \"/h5/view/#/wallet/record\";\n }, 2000);\n } else {\n Object(vant__WEBPACK_IMPORTED_MODULE_3__[\"Toast\"])({\n message: data.err_msg,\n duration: 3000\n });\n }\n }).catch(function (err) {});\n },\n rechargeWithdrawOrderIfo: function rechargeWithdrawOrderIfo(_ref15, payload) {\n var commit = _ref15.commit;\n var params = {\n wallet_id: payload.wallet_id\n };\n _api_index__WEBPACK_IMPORTED_MODULE_4__[\"services\"].rechargeWithdrawOrderIfo(qs.stringify(params)).then(function (res) {\n var data = res.data;\n\n if (data.err_code == 0) {\n Object(vant__WEBPACK_IMPORTED_MODULE_3__[\"Toast\"])({\n message: data.err_msg,\n duration: 2000\n });\n commit({\n type: 'rechargeWithdrawOrderIfo',\n data: data.data\n });\n } else {\n Object(vant__WEBPACK_IMPORTED_MODULE_3__[\"Toast\"])({\n message: data.err_msg,\n duration: 3000\n });\n }\n }).catch(function (err) {});\n },\n payTodo: function payTodo(_ref16, payload) {\n var commit = _ref16.commit;\n var params = {\n pay_code: payload.pay_code,\n rescue: payload.rescue,\n types: payload.types,\n site_type: payload.site_type,\n order_id: payload.order_id\n };\n _api_index__WEBPACK_IMPORTED_MODULE_4__[\"services\"].payTodo(qs.stringify(params)).then(function (res) {\n var data = res.data;\n\n if (data.err_code == 0) {\n if (is_miniProgram()) {\n //微信小程序\n wx.requestPayment(data.data);\n } else {\n window.location.href = data.data;\n }\n } else {\n Object(vant__WEBPACK_IMPORTED_MODULE_3
__[\"Toast\"])({\n message: data.err_msg,\n duration: 3000\n });\n }\n }).catch(function (err) {});\n }\n};\nvar getters = {};\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n state: state,\n mutations: mutations,\n actions: actions,\n getters: getters\n});\n\n//# sourceURL=webpack:///./src/store/modules/wallet/wallet.js?"
);
eval
(
"__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var
vue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! vue */ \"./node_modules/_vue@2.6.6@vue/dist/vue.runtime.esm.js\");\n/* harmony import */ var vant__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! vant */ \"./node_modules/_vant@1.6.5@vant/es/index.js\");\n/* harmony import */ var _api_index__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../api/index */ \"./src/api/index.js\");\n/* harmony import */ var _util__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../util */ \"./src/util/index.js\");\n\n\n\n\n\nvar qs = __webpack_require__(/*! qs */ \"./node_modules/_qs@6.6.0@qs/lib/index.js\");\n\nvue__WEBPACK_IMPORTED_MODULE_0__[\"default\"].use(vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"]);\nvar state = {\n //钱包信息\n walletInfoData: {},\n //验证安全手机——图形验证码和开始倒计时标记\n verifyShowImgCode: false,\n verifyCountDownFlag: false,\n //激活钱包——图形验证码和开始倒计时标记\n activateShowImgCode: false,\n activateCountDownFlag: false,\n //找回密码——图形验证码和开始倒计时标记\n retieveShowImgCode: false,\n retieveCountDownFlag: false,\n passwordToken: '',\n //钱包明细\n walletListData: [],\n //提现充值明细\n walletRecordData: [],\n //绑定银行卡\n bankPasswordToken: '',\n bankCountDownFlag: false,\n bindBankKey: '',\n bindBankData: '',\n //充值单ID\n amountRechargeID: '',\n //提现单ID\n amountWithdrawID: '',\n //充值提现单据详细\n rechargeWithdrawOrderDetail: [],\n //订单信息\n orderInfoData: []\n};\nvar mutations = {\n getWalletInfo: function getWalletInfo(state, payload) {\n state.walletInfoData = payload.data;\n },\n sendSafesms: function sendSafesms(state, payload) {\n state.verifyShowImgCode = !payload.verifyCountDownFlag;\n state.verifyCountDownFlag = payload.verifyCountDownFlag;\n },\n smsVerifyActivate: function smsVerifyActivate(state, payload) {\n state.activateShowImgCode = !payload.activateCountDownFlag;\n state.activateCountDownFlag = payload.activateCountDownFlag;\n },\n smsVerifyRetrieve: function smsVerifyRetrieve(state, payload) {\n state.retieveShowImgCode = !payload.retieveCountDownFlag;\n state.retieveCountDownFlag = payload.retieveCountDownFlag;\n },\n verifyResetsms: function verifyResetsms(state, payload) {\n state.passwordToken = payload.data;\n },\n walletListLog: function walletListLog(state, payload) {\n state.walletListData = payload.data;\n },\n walletRecordList: function walletRecordList(state, payload) {\n state.walletRecordData = payload.data;\n },\n verifySafeMobile: function verifySafeMobile(state, payload) {\n state.bankPasswordToken = payload.data;\n _util__WEBPACK_IMPORTED_MODULE_3__[\"default\"].setCookie(\"bankPasswordToken\", payload.data, 1);\n },\n getBindBankmsg: function getBindBankmsg(state, payload) {\n state.bankCountDownFlag = payload.bankCountDownFlag;\n state.bindBankKey = payload.data.access_key;\n state.bindBankData = payload.data.access_data;\n },\n walletRecharge: function walletRecharge(state, payload) {\n state.amountRechargeID = payload.data;\n },\n walletWithdraw: function walletWithdraw(state, payload) {\n state.amountWithdrawID = payload.data;\n },\n rechargeWithdrawOrderIfo: function rechargeWithdrawOrderIfo(state, payload) {\n state.rechargeWithdrawOrderDetail = payload.data;\n },\n payTodo: function payTodo(state, payload) {\n state.rechargeWithdrawOrderDetail = payload.data;\n },\n orderInfo: function orderInfo(state, payload) {\n state.orderInfoData = payload.data;\n }\n};\nvar actions = {\n getWalletInfo: function getWalletInfo(_ref, payload) {\n var commit = _ref.commit;\n var params = {};\n _api_index__WEBPACK_IMPORTED_MODULE_2__[\"services\"].getWalletInfo(qs.stringify(params)).then(function (res) {\n var data = res.data;\n\n if (data.err_code == 0) {\n commit({\n type: 'getWalletInfo',\n data: data.data\n });\n }\n }).catch(function (err) {});\n },\n smsVerifyActivate: function smsVerifyActivate(_ref2, payload) {\n var commit = _ref2.commit;\n vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"].loading({\n message: '处理中...'\n });\n var params = {\n mobile: payload.mobile,\n verify: payload.imgCode,\n channel: 3\n };\n _api_index__WEBPACK_IMPORTED_MODULE_2__[\"services\"].smsVerify(qs.stringify(params)).then(function (res) {\n var data = res.data;\n\n if (data.err_code == 0) {\n Object(vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"])({\n message: data.err_msg,\n duration: 2000\n });\n commit({\n type: 'smsVerifyActivate',\n activateCountDownFlag: true\n });\n } else if (data.err_code == 23019 || data.err_code == 11008 || data.err_code == 11011) {\n Object(vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"])({\n message: data.err_msg,\n duration: 2000\n });\n commit({\n type: 'smsVerifyActivate',\n activateCountDownFlag: false\n });\n } else {\n Object(vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"])({\n message: data.err_msg,\n duration: 3000\n });\n }\n }).catch(function (err) {\n vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"].clear();\n });\n },\n activateWallet: function activateWallet(_ref3, payload) {\n var commit = _ref3.commit;\n var params = {\n intl_code: '',\n safe_mobile: payload.mobile,\n verify_code: payload.verifyCode,\n pay_password: payload.password,\n reconfirm: payload.passwordConfirm\n };\n _api_index__WEBPACK_IMPORTED_MODULE_2__[\"services\"].activateWallet(qs.stringify(params)).then(function (res) {\n var data = res.data;\n\n if (data.err_code == 0) {\n Object(vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"])({\n message: data.err_msg,\n duration: 2000\n });\n setTimeout(function () {\n window.location.href = \"/h5/view/#/wallet\";\n }, 2000);\n } else {\n Object(vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"])({\n message: data.err_msg,\n duration: 2000\n });\n setTimeout(function () {\n window.location.href = \"/h5/view/#/wallet/activate\";\n }, 2000);\n }\n }).catch(function (err) {});\n },\n sendSafesms: function sendSafesms(_ref4, payload) {\n var commit = _ref4.commit;\n vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"].loading({\n message: '处理中...'\n });\n var params = {\n verify: payload.imgCode,\n channel: 3\n };\n _api_index__WEBPACK_IMPORTED_MODULE_2__[\"services\"].sendSafesms(qs.stringify(params)).then(function (res) {\n var data = res.data;\n\n if (data.err_code == 0) {\n Object(vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"])({\n message: data.err_msg,\n duration: 2000\n });\n commit({\n type: 'sendSafesms',\n verifyCountDownFlag: true\n });\n } else if (data.err_code == 23019) {\n //请确认图形验证码\n Object(vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"])({\n message: data.err_msg,\n duration: 2000\n });\n commit({\n type: 'sendSafesms',\n verifyCountDownFlag: false\n });\n } else {\n Object(vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"])({\n message: data.err_msg,\n duration: 3000\n });\n }\n }).catch(function (err) {\n vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"].clear();\n });\n },\n smsVerifyRetrieve: function smsVerifyRetrieve(_ref5, payload) {\n var commit = _ref5.commit;\n vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"].loading({\n message: '处理中...'\n });\n var params = {\n verify: payload.imgCode,\n channel: 3\n };\n _api_index__WEBPACK_IMPORTED_MODULE_2__[\"services\"].sendSafesms(qs.stringify(params)).then(function (res) {\n var data = res.data;\n\n if (data.err_code == 0) {\n Object(vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"])({\n message: data.err_msg,\n duration: 2000\n });\n commit({\n type: 'smsVerifyRetrieve',\n retieveCountDownFlag: true\n });\n } else if (data.err_code == 23019) {\n //请确认图形验证码\n Object(vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"])({\n message: data.err_msg,\n duration: 2000\n });\n commit({\n type: 'smsVerifyRetrieve',\n retieveCountDownFlag: false\n });\n } else {\n Object(vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"])({\n message: data.err_msg,\n duration: 3000\n });\n }\n }).catch(function (err) {\n vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"].clear();\n });\n },\n verifyResetsms: function verifyResetsms(_ref6, payload) {\n var commit = _ref6.commit;\n var params = {\n verify_code: payload.verify_code\n };\n _api_index__WEBPACK_IMPORTED_MODULE_2__[\"services\"].verifyResetsms(qs.stringify(params)).then(function (res) {\n var data = res.data;\n\n if (data.err_code == 0) {\n Object(vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"])({\n message: data.err_msg,\n duration: 2000\n });\n commit({\n type: 'verifyResetsms',\n data: data.data\n });\n } else {\n Object(vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"])({\n message: data.err_msg,\n duration: 3000\n });\n }\n }).catch(function (err) {});\n },\n changeWalletpwd: function changeWalletpwd(_ref7, payload) {\n var commit = _ref7.commit;\n var params = {\n token: payload.token,\n pay_password: payload.pay_password,\n reconfirm: payload.reconfirm,\n mode: payload.mode\n };\n _api_index__WEBPACK_IMPORTED_MODULE_2__[\"services\"].changeWalletpwd(qs.stringify(params)).then(function (res) {\n var data = res.data;\n\n if (data.err_code == 0) {\n Object(vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"])({\n message: data.err_msg,\n duration: 2000\n });\n setTimeout(function () {\n window.location.href = \"/h5/view/#/wallet\";\n }, 2000);\n } else {\n Object(vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"])({\n message: data.err_msg,\n duration: 3000\n });\n }\n }).catch(function (err) {});\n },\n walletListLog: function walletListLog(_ref8, payload) {\n var commit = _ref8.commit;\n vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"].loading({\n message: '加载中...'\n });\n var params = {\n log_type: payload.log_type,\n stime: payload.stime,\n etime: payload.etime\n };\n _api_index__WEBPACK_IMPORTED_MODULE_2__[\"services\"].walletListLog(qs.stringify(params)).then(function (res) {\n var data = res.data;\n\n if (data.err_code == 0) {\n commit({\n type: 'walletListLog',\n data: data.data.list\n });\n } else {\n Object(vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"])({\n message: data.err_msg,\n duration: 3000\n });\n }\n\n vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"].clear();\n }).catch(function (err) {\n vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"].clear();\n });\n },\n walletRecordList: function walletRecordList(_ref9, payload) {\n var commit = _ref9.commit;\n vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"].loading({\n message: '加载中...'\n });\n var params = {\n wallet_type: payload.wallet_type,\n stime: payload.stime,\n etime: payload.etime\n };\n _api_index__WEBPACK_IMPORTED_MODULE_2__[\"services\"].walletRecordList(qs.stringify(params)).then(function (res) {\n var data = res.data;\n\n if (data.err_code == 0) {\n commit({\n type: 'walletRecordList',\n data: data.data.list\n });\n } else {\n Object(vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"])({\n message: data.err_msg,\n duration: 3000\n });\n }\n\n vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"].clear();\n }).catch(function (err) {\n vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"].clear();\n });\n },\n verifySafeMobile: function verifySafeMobile(_ref10, payload) {\n var commit = _ref10.commit;\n var params = {\n verify_code: payload.verify_code,\n pay_password: payload.pay_password\n };\n _api_index__WEBPACK_IMPORTED_MODULE_2__[\"services\"].verifySafeMobile(qs.stringify(params)).then(function (res) {\n var data = res.data;\n\n if (data.err_code == 0) {\n Object(vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"])({\n message: data.err_msg,\n duration: 2000\n });\n commit({\n type: 'verifySafeMobile',\n data: data.data\n });\n setTimeout(function () {\n window.location.href = \"/h5/view/#/wallet/bind\";\n }, 2000);\n } else if (data.err_code == 11030) {\n Object(vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"])({\n message: data.err_msg,\n duration: 2000\n });\n setTimeout(function () {\n window.location.href = '/h5/view/#/';\n }, 2000);\n } else {\n Object(vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"])({\n message: data.err_msg,\n duration: 200\n });\n }\n }).catch(function (err) {});\n },\n getBindBankmsg: function getBindBankmsg(_ref11, payload) {\n var commit = _ref11.commit;\n var params = {\n bank_user: payload.bank_user,\n bank_id: payload.bank_id,\n bank_account: payload.bank_account,\n id_type: payload.id_type,\n id_number: payload.id_number,\n account_type: payload.account_type,\n mobile: payload.mobile,\n channel: 3\n };\n _api_index__WEBPACK_IMPORTED_MODULE_2__[\"services\"].getBindBankmsg(qs.stringify(params)).then(function (res) {\n var data = res.data;\n\n if (data.err_code == 0) {\n Object(vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"])({\n message: data.err_msg,\n duration: 2000\n });\n commit({\n type: 'getBindBankmsg',\n bankCountDownFlag: true,\n data: data.data\n });\n } else {\n Object(vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"])({\n message: data.err_msg,\n duration: 3000\n });\n }\n }).catch(function (err) {});\n },\n bindBankCard: function bindBankCard(_ref12, payload) {\n var commit = _ref12.commit;\n vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"].loading({\n message: '处理中...'\n });\n var params = {\n token: payload.token,\n wallet_bank_id: payload.wallet_bank_id,\n sms_code: payload.sms_code,\n access_key: payload.access_key,\n access_data: payload.access_data\n };\n _api_index__WEBPACK_IMPORTED_MODULE_2__[\"services\"].bindBankCard(qs.stringify(params)).then(function (res) {\n var data = res.data;\n\n if (data.err_code == 0) {\n Object(vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"])({\n message: data.err_msg,\n duration: 2000\n });\n setTimeout(function () {\n window.location.href = \"/h5/view/#/wallet\";\n }, 2000);\n } else {\n Object(vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"])({\n message: data.err_msg,\n duration: 3000\n });\n }\n }).catch(function (err) {\n vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"].clear();\n });\n },\n walletRecharge: function walletRecharge(_ref13, payload) {\n var commit = _ref13.commit;\n var params = {\n amount: payload.amount\n };\n _api_index__WEBPACK_IMPORTED_MODULE_2__[\"services\"].walletRecharge(qs.stringify(params)).then(function (res) {\n var data = res.data;\n\n if (data.err_code == 0) {\n Object(vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"])({\n message: data.err_msg,\n duration: 2000\n });\n commit({\n type: 'walletRecharge',\n data: data.data\n });\n } else {\n Object(vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"])({\n message: data.err_msg,\n duration: 3000\n });\n }\n }).catch(function (err) {});\n },\n walletWithdraw: function walletWithdraw(_ref14, payload) {\n var commit = _ref14.commit;\n var params = {\n amount: payload.amount,\n pay_password: payload.pay_password\n };\n _api_index__WEBPACK_IMPORTED_MODULE_2__[\"services\"].walletWithdraw(qs.stringify(params)).then(function (res) {\n var data = res.data;\n\n if (data.err_code == 0) {\n Object(vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"])({\n message: '提现申请成功,预计1个工作日后到账,节假日顺延,请耐心等待',\n duration: 2000\n });\n commit({\n type: 'walletWithdraw',\n data: data.data\n });\n setTimeout(function () {\n window.location.href = \"/h5/view/#/wallet/record\";\n }, 2000);\n } else {\n Object(vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"])({\n message: data.err_msg,\n duration: 3000\n });\n }\n }).catch(function (err) {});\n },\n rechargeWithdrawOrderIfo: function rechargeWithdrawOrderIfo(_ref15, payload) {\n var commit = _ref15.commit;\n var params = {\n wallet_id: payload.wallet_id\n };\n _api_index__WEBPACK_IMPORTED_MODULE_2__[\"services\"].rechargeWithdrawOrderIfo(qs.stringify(params)).then(function (res) {\n var data = res.data;\n\n if (data.err_code == 0) {\n Object(vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"])({\n message: data.err_msg,\n duration: 2000\n });\n commit({\n type: 'rechargeWithdrawOrderIfo',\n data: data.data\n });\n } else {\n Object(vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"])({\n message: data.err_msg,\n duration: 3000\n });\n }\n }).catch(function (err) {});\n },\n payTodo: function payTodo(_ref16, payload) {\n var commit = _ref16.commit;\n var params = {\n pay_code: payload.pay_code,\n rescue: payload.rescue,\n types: payload.types,\n site_type: payload.site_type,\n order_id: payload.order_id\n };\n _api_index__WEBPACK_IMPORTED_MODULE_2__[\"services\"].payTodo(qs.stringify(params)).then(function (res) {\n var data = res.data;\n\n if (data.err_code == 0) {\n if (is_miniProgram()) {\n //微信小程序\n wx.requestPayment(data.data);\n } else {\n window.location.href = data.data;\n }\n } else {\n Object(vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"])({\n message: data.err_msg,\n duration: 3000\n });\n }\n }).catch(function (err) {});\n },\n orderInfo: function orderInfo(_ref17, payload) {\n var commit = _ref17.commit;\n var params = {\n order_id: payload.order_id\n };\n _api_index__WEBPACK_IMPORTED_MODULE_2__[\"services\"].orderInfo(qs.stringify(params)).then(function (res) {\n var data = res.data;\n\n if (data.err_code == 0) {\n commit({\n type: 'orderInfo',\n data: data.data\n });\n } else {\n Object(vant__WEBPACK_IMPORTED_MODULE_1__[\"Toast\"])({\n message: data.err_msg,\n duration: 3000\n });\n }\n }).catch(function (err) {});\n },\n walletPayTodo: function walletPayTodo(_ref18, payload) {\n var commit = _ref18.commit;\n var params = {\n pay_code: payload.pay_code,\n pay_password: payload.pay_password,\n types: payload.types,\n order_id: payload.order_id,\n site_type: payload.site_type\n };\n _api_index__WEBPACK_IMPORTED_MODULE_2__[\"services\"].payTodo(qs.stringify(params)).then(function (res) {\n var data = res.data;\n\n if (data.err_code == 0) {\n setTimeout(function () {\n window.location.href = \"/v3/pay/success?order_id=\" + payload.order_id + \"&types=\" + (payload.types || 0);\n }, 2000);\n } else {\n Object(vant__WEBPACK_IMPORTED_MODULE_1
__[\"Toast\"])({\n message: data.err_msg,\n duration: 3000\n });\n }\n }).catch(function (err) {});\n }\n};\nvar getters = {};\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n state: state,\n mutations: mutations,\n actions: actions,\n getters: getters\n});\n\n//# sourceURL=webpack:///./src/store/modules/wallet/wallet.js?"
);
/***/
}),
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment