58 lines
1.1 KiB
Vue
58 lines
1.1 KiB
Vue
<template>
|
|
<!-- 个人中心 页面 -->
|
|
<view class="content">
|
|
<HeaderTop page_title='个人中心'></HeaderTop>
|
|
<view class="padding-30">
|
|
<view class="padding-zy30 d-flex j-sb a-center border-bottom list" @click="to_bind_phone()">
|
|
<view class="">手机号</view>
|
|
<image src="../../static/my/right.png" mode="" class="p_right"></image>
|
|
</view>
|
|
<view class="padding-zy30 d-flex j-sb a-center border-bottom list" @click="to_change_pass()">
|
|
<view class="">修改密码</view>
|
|
<image src="../../static/my/right.png" mode="" class="p_right"></image>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import HeaderTop from '../../components/HeaderTop/HeaderTop.vue'
|
|
export default{
|
|
data(){
|
|
return {
|
|
|
|
}
|
|
},
|
|
comments: {
|
|
HeaderTop
|
|
},
|
|
methods:{
|
|
to_bind_phone(){
|
|
uni.navigateTo({
|
|
url:'bind_phone'
|
|
})
|
|
},
|
|
to_change_pass(){
|
|
uni.navigateTo({
|
|
url:'change_password'
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.content {
|
|
position: relative;
|
|
.list{
|
|
height: 83upx;
|
|
}
|
|
.esc_login{
|
|
line-height: 82upx;
|
|
position: absolute;
|
|
bottom:100upx;
|
|
left: 34upx;
|
|
}
|
|
}
|
|
</style>
|