52 lines
896 B
Vue
52 lines
896 B
Vue
<template>
|
||
<view class="body">
|
||
<view class="helpList" @click="go('./passWord')">
|
||
如何修改密码?
|
||
</view>
|
||
<view class="helpList" @click="go('./phone')">
|
||
如何修改手机号?
|
||
</view>
|
||
<view class="helpList" @click="go('./userInfo')">
|
||
个人如何完善信息?
|
||
</view>
|
||
<view class="helpList" @click="go('./authentication')">
|
||
实名认证时提示认证信息不匹配
|
||
</view>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
export default {
|
||
data() {
|
||
return {
|
||
|
||
}
|
||
},
|
||
methods: {
|
||
go(url){
|
||
uni.navigateTo({
|
||
url
|
||
})
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style>
|
||
.helpList{
|
||
padding: 30rpx;
|
||
padding-left: 0;
|
||
border-bottom: 1rpx solid #ddd;
|
||
font-family: PingFangSC-Regular;
|
||
font-size: 30rpx;
|
||
color: #333333;
|
||
padding: 30rpx 0;
|
||
}
|
||
.body{
|
||
background-color: #fefefe;
|
||
margin-top: 20rpx;
|
||
padding-left: 30rpx;
|
||
}
|
||
page{background-color: #f6f6f6;}
|
||
</style>
|