You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.5 KiB
63 lines
1.5 KiB
<template>
|
|
<view>
|
|
<view style="background-color:#ffffff;height:96vh;width: 96vw;margin:2vh auto;padding:10px 13px;border-radius: 10rpx;">
|
|
|
|
<view class="separate" @click="setup('accountoverview')">
|
|
<p>账户概览</p>
|
|
<img style='width:15rpx;height:25rpx;margin-top:5px;' src="http://image.bjkeyware.com/static/index/xia.png" alt="">
|
|
</view>
|
|
<view class="separate" @click="setup('transaction')">
|
|
<p>交易记录</p>
|
|
<img style='width:15rpx;height:25rpx;margin-top:5px;' src="http://image.bjkeyware.com/static/index/xia.png" alt="">
|
|
</view>
|
|
<view class="separate" @click="setup('tranpassword')">
|
|
<p>交易密码</p>
|
|
<img style='width:15rpx;height:25rpx;margin-top:5px;' src="http://image.bjkeyware.com/static/index/xia.png" alt="">
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
setup(type){
|
|
if(type=='accountoverview'){
|
|
uni.navigateTo({
|
|
url:'/pages/personal/setup/accountoverview'
|
|
})
|
|
}else if(type=='transaction'){
|
|
uni.navigateTo({
|
|
url:'/pages/personal/setup/transaction'
|
|
})
|
|
}else if(type=='tranpassword'){
|
|
uni.navigateTo({
|
|
url:'/pages/personal/setup/tranpassword'
|
|
})
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.separate{
|
|
color: #333333;
|
|
font-weight: bold;
|
|
width:100%;
|
|
height:50px;
|
|
display: flex;
|
|
font-size: 15px;
|
|
justify-content: space-between;
|
|
border-bottom:1px solid rgba(153, 153, 153, 0.15);
|
|
/* opacity: 0.15; */
|
|
align-items: center;
|
|
}
|
|
</style>
|
|
|