11 changed files with 181 additions and 102 deletions
Unified View
Diff Options
-
28.project
-
7src/api/put-money.js
-
2src/assets/styles/style.css
-
15src/models/put-money-model.js
-
67src/models/utils-model.js
-
2src/view/my-money.vue
-
20src/view/put-money-success.vue
-
64src/view/put-money.vue
-
25src/view/put-moneySuccess.vue
-
12src/view/service-evaluation-status.vue
-
41src/view/service-evaluation.vue
@ -0,0 +1,28 @@ |
|||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||
|
<projectDescription> |
||||
|
<name>1hjz-h5</name> |
||||
|
<comment></comment> |
||||
|
<projects> |
||||
|
</projects> |
||||
|
<buildSpec> |
||||
|
<buildCommand> |
||||
|
<name>com.aptana.ide.core.unifiedBuilder</name> |
||||
|
<arguments> |
||||
|
</arguments> |
||||
|
</buildCommand> |
||||
|
</buildSpec> |
||||
|
<natures> |
||||
|
<nature>com.aptana.projects.webnature</nature> |
||||
|
</natures> |
||||
|
<filteredResources> |
||||
|
<filter> |
||||
|
<id>1531969554902</id> |
||||
|
<name></name> |
||||
|
<type>26</type> |
||||
|
<matcher> |
||||
|
<id>org.eclipse.ui.ide.multiFilter</id> |
||||
|
<arguments>1.0-name-matches-false-false-node_modules</arguments> |
||||
|
</matcher> |
||||
|
</filter> |
||||
|
</filteredResources> |
||||
|
</projectDescription> |
||||
@ -0,0 +1,7 @@ |
|||||
|
export default { |
||||
|
//提现申请
|
||||
|
putMoney: { |
||||
|
method: 'POST', |
||||
|
url: '/mall/web/enchashment/add', |
||||
|
} |
||||
|
} |
||||
@ -0,0 +1,15 @@ |
|||||
|
import utilsModel from './utils-model' |
||||
|
import putMoneyApi from '../api/put-money.js' |
||||
|
|
||||
|
export default { |
||||
|
//提现申请
|
||||
|
putMoney : (params,type) => |
||||
|
utilsModel |
||||
|
.config(putMoneyApi.putMoney) |
||||
|
.request({ |
||||
|
data : params |
||||
|
// headers: {
|
||||
|
// 'Content-Type': 'application/x-www-form-urlencoded'
|
||||
|
// }
|
||||
|
}), |
||||
|
} |
||||
@ -1,25 +0,0 @@ |
|||||
|
|
||||
<template> |
|
||||
<div class="put-money-success"> |
|
||||
<div class="page-top"> |
|
||||
<a><img src="../assets/images/my-money/left.png"/></a> |
|
||||
<span>提现申请</span> |
|
||||
</div> |
|
||||
<div class="page-content"> |
|
||||
<div class="content-box"> |
|
||||
<div class="box-top"> |
|
||||
<img src="../assets/images/put-money/audit.png" alt=""> |
|
||||
<p>提现审核中</p> |
|
||||
<span>1-3个工作日</span> |
|
||||
</div> |
|
||||
<div class="money-news"> |
|
||||
<p>提现金额:¥ <span>800</span></p> |
|
||||
</div> |
|
||||
</div> |
|
||||
<button class="submitBtn">返回首页</button> |
|
||||
</div> |
|
||||
|
|
||||
</div> |
|
||||
</template> |
|
||||
|
|
||||
|
|
||||
Write
Preview
Loading…
Cancel
Save