个人中心跳转
收入支出,立即体现,用户列表3个界面
This commit is contained in:
parent
101a08dde2
commit
55ba294a71
|
|
@ -30,10 +30,10 @@
|
||||||
<text class="amount-label">可提现(元)</text>
|
<text class="amount-label">可提现(元)</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="action-buttons">
|
<view class="action-buttons">
|
||||||
<view class="action-btn income-expense-btn">
|
<view class="action-btn income-expense-btn" @click="goToIncomeExpense">
|
||||||
<text class="btn-text">收支明细 ></text>
|
<text class="btn-text">收支明细 ></text>
|
||||||
</view>
|
</view>
|
||||||
<view class="action-btn withdraw-btn">
|
<view class="action-btn withdraw-btn" @click="goToWithdraw">
|
||||||
<text class="btn-text">立即提现 ></text>
|
<text class="btn-text">立即提现 ></text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
@ -57,7 +57,7 @@
|
||||||
<view class="my-users-section">
|
<view class="my-users-section">
|
||||||
<view class="section-header">
|
<view class="section-header">
|
||||||
<text class="section-title">我的用户</text>
|
<text class="section-title">我的用户</text>
|
||||||
<view class="view-details">
|
<view class="view-details" @click="goToUserList">
|
||||||
<text class="details-text">查看详情 ></text>
|
<text class="details-text">查看详情 ></text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
@ -157,6 +157,21 @@ export default {
|
||||||
icon: 'none',
|
icon: 'none',
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
goToIncomeExpense() {
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/pages/cashFlow/cashFlow',
|
||||||
|
})
|
||||||
|
},
|
||||||
|
goToWithdraw() {
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/pages/requestWithdrawal/requestWithdrawal',
|
||||||
|
})
|
||||||
|
},
|
||||||
|
goToUserList() {
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/pages/useList/useList',
|
||||||
|
})
|
||||||
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user