first commit

This commit is contained in:
编码猿
2024-09-27 01:32:49 +08:00
commit 28ebe05a64
7399 changed files with 1174529 additions and 0 deletions

View File

@@ -0,0 +1,57 @@
<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>