Commit 958b2ff9 authored by 刘用法's avatar 刘用法

流水、提现、结算

parent fcfef7a6
...@@ -176,6 +176,26 @@ ...@@ -176,6 +176,26 @@
"navigationStyle": "custom", // 隐藏系统导航栏 "navigationStyle": "custom", // 隐藏系统导航栏
"navigationBarBackgroundColor":"#F4F5F7" "navigationBarBackgroundColor":"#F4F5F7"
} }
},
{
"path": "wallet/statement",
"style": {
"navigationBarTitleText": "收入流水",
"enablePullDownRefresh": false,
"disableScroll": true,
"navigationStyle": "custom", // 隐藏系统导航栏
"navigationBarBackgroundColor":"#F4F5F7"
}
},
{
"path": "wallet/settlement",
"style": {
"navigationBarTitleText": "结算账单",
"enablePullDownRefresh": false,
"disableScroll": true,
"navigationStyle": "custom", // 隐藏系统导航栏
"navigationBarBackgroundColor":"#F4F5F7"
}
}, },
{ {
"path": "cert/index", "path": "cert/index",
......
...@@ -100,7 +100,10 @@ ...@@ -100,7 +100,10 @@
'color': '#2272FF', 'color': '#2272FF',
'margin-bottom': '20rpx' 'margin-bottom': '20rpx'
}; };
}, },
pages() {
return ['settlement','statement']
}
}, },
created() { created() {
var item = { var item = {
...@@ -116,10 +119,14 @@ ...@@ -116,10 +119,14 @@
methods: { methods: {
// 提现 // 提现
handleClickWithdraw() { handleClickWithdraw() {
uni.navigateTo({
url: 'pages/mine/wallet/' + 'withdraw'
})
}, },
handleClick(index) { handleClick(index) {
console.log(index) uni.navigateTo({
url: 'pages/mine/wallet/' + this.pages[index]
})
} }
} }
} }
......
<template> <template>
<view class="statement-view"> <view class="statement-view">
<u-navbar back-icon-color="#333333" background="#F4F5F7" title="我的钱包" titleColor="#333333" :border-bottom="false"></u-navbar> <u-navbar back-icon-color="#333333" background="#F4F5F7" title="收入流水" titleColor="#333333"
:border-bottom="false"></u-navbar>
<view class="statement-content-view">
</view>
</view> </view>
</template> </template>
...@@ -13,8 +17,8 @@ ...@@ -13,8 +17,8 @@
return { return {
paymentTime: '预结', paymentTime: '预结',
payableRecordStatusText: '已确认', payableRecordStatusText: '已确认',
payableRecordNumber: '订单数', payableRecordNumber: '订单数',
statementList: []// count是总数 statementList: [] // count是总数
} }
} }
} }
...@@ -32,6 +36,11 @@ ...@@ -32,6 +36,11 @@
<style lang="scss" scoped> <style lang="scss" scoped>
.statement-view { .statement-view {
display: flex;
flex-direction: column;
height: 100vh;
background-color: #F4F5F7;
.statement-content-view {}
} }
</style> </style>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment