Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
lumastoreapp
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
xieyishang
lumastoreapp
Commits
fe04a24c
Commit
fe04a24c
authored
Oct 31, 2024
by
xieyishang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
~~
parent
6abaf387
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
37 additions
and
5 deletions
+37
-5
pages/yjWithdraw/yjWithdraw.vue
pages/yjWithdraw/yjWithdraw.vue
+23
-4
utils/api/api.js
utils/api/api.js
+14
-1
No files found.
pages/yjWithdraw/yjWithdraw.vue
View file @
fe04a24c
...
...
@@ -71,7 +71,10 @@
</view>
<view
class=
"psmsgs"
>
温馨提示:单笔最少提现1000元,单笔最多提现5000 元;到账时间为T+1
<!-- 温馨提示:单笔最少提现1000元,单笔最多提现5000 元;到账时间为T+1 -->
<view
class=
""
v-for=
"(item,index) in withdrawRuleTxt"
:key=
"index"
>
{{
item
}}
</view>
</view>
<!-- 提交按钮 -->
...
...
@@ -129,7 +132,10 @@
</view>
<view
class=
"psmsgs"
>
温馨提示:提现到微信零钱预计两小时内到达,提现到银行卡正常到账时间为T+1,节假日顺延;提现时间为:8:00-21:00
<!-- 温馨提示:提现到微信零钱预计两小时内到达,提现到银行卡正常到账时间为T+1,节假日顺延;提现时间为:8:00-21:00 -->
<view
class=
""
v-for=
"(item,index) in withdrawRuleTxt"
:key=
"index"
>
{{
item
}}
</view>
</view>
<!-- 提交按钮 -->
...
...
@@ -205,7 +211,7 @@
//userTransferMoney 佣金 资金 转余额
//cashUserFund 提现
import
{
cashUserFund
,
storeIndex
,
storeSendSms
}
from
"
@/utils/api/api.js
"
;
import
{
cashUserFund
,
storeIndex
,
storeSendSms
,
withdrawRule
}
from
"
@/utils/api/api.js
"
;
import
VerifyIdentity
from
"
@/components/VerifyIdentity/VerifyIdentity.vue
"
;
import
eModal
from
"
@/components/e-modal/e-modal.vue
"
;
...
...
@@ -246,6 +252,8 @@
mobile
:
""
,
//手机号码 用户的
params
:{},
withdrawRuleTxt
:[],
//提现规则
};
},
computed
:
{
...
...
@@ -301,7 +309,7 @@
// this.$refs.VerifyIdentity.show();
// },1000)
this
.
withdrawRule
();
},
...
...
@@ -320,6 +328,17 @@
}
},
methods
:{
//获取商家提现规则
withdrawRule
(){
withdrawRule
({
}).
then
(
res
=>
{
console
.
info
(
res
);
if
(
res
.
code
==
0
){
this
.
withdrawRuleTxt
=
res
.
data
.
withdrawRule
;
}
})
},
//发送验证码 忘记支付密码
async
sendSmsfun
(){
...
...
utils/api/api.js
View file @
fe04a24c
...
...
@@ -98,6 +98,19 @@ export function bankList(data)
return
request
.
post
(
"
StroeCapital/bankList
"
,
data
,{
noAuth
:
true
});
}
//商家提现规则
export
function
withdrawRule
(
data
)
{
return
request
.
post
(
"
StroeCapital/withdrawRule
"
,
data
,{
noAuth
:
true
});
}
//解绑银行卡 删除银行卡
export
function
deleteBank
(
data
)
{
...
...
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