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

流水、提现、结算

parent fcfef7a6
......@@ -176,6 +176,26 @@
"navigationStyle": "custom", // 隐藏系统导航栏
"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",
......
......@@ -100,7 +100,10 @@
'color': '#2272FF',
'margin-bottom': '20rpx'
};
},
},
pages() {
return ['settlement','statement']
}
},
created() {
var item = {
......@@ -116,10 +119,14 @@
methods: {
// 提现
handleClickWithdraw() {
uni.navigateTo({
url: 'pages/mine/wallet/' + 'withdraw'
})
},
handleClick(index) {
console.log(index)
uni.navigateTo({
url: 'pages/mine/wallet/' + this.pages[index]
})
}
}
}
......
<template>
<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>
</template>
......@@ -13,8 +17,8 @@
return {
paymentTime: '预结',
payableRecordStatusText: '已确认',
payableRecordNumber: '订单数',
statementList: []// count是总数
payableRecordNumber: '订单数',
statementList: [] // count是总数
}
}
}
......@@ -32,6 +36,11 @@
<style lang="scss" scoped>
.statement-view {
display: flex;
flex-direction: column;
height: 100vh;
background-color: #F4F5F7;
.statement-content-view {}
}
</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