This commit is contained in:
18500206848
2024-02-02 14:40:26 +08:00
parent 21a84c3035
commit 8964c6983f
253 changed files with 0 additions and 25212 deletions

View File

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