Files
jobslink-user-clent/pageMy/help/help.vue
2024-02-02 10:24:54 +08:00

52 lines
947 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<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>