| | |
| | | <view>编辑资料</view> |
| | | </view> |
| | | </view> |
| | | <view class="list-cell list-cell-arrow" @click="handleUserAgreement"> |
| | | <view class="menu-item-box"> |
| | | <view class="iconfont icon-text menu-icon"></view> |
| | | <view>用户服务协议</view> |
| | | </view> |
| | | </view> |
| | | <view class="list-cell list-cell-arrow" @click="handlePrivacyPolicy"> |
| | | <view class="menu-item-box"> |
| | | <view class="iconfont icon-safe menu-icon"></view> |
| | | <view>隐私政策</view> |
| | | </view> |
| | | </view> |
| | | <view class="list-cell list-cell-arrow" @click="handleHelp"> |
| | | <view class="menu-item-box"> |
| | | <view class="iconfont icon-help menu-icon"></view> |
| | |
| | | export default { |
| | | data() { |
| | | return { |
| | | name: this.$store.state.user.name, |
| | | name: this.$store.state.user.nickName, |
| | | phonenumber: '', |
| | | boundVehicle: '', // 绑定的车辆信息 |
| | | boundVehicleId: null, // 绑定的车辆ID |
| | |
| | | this.phonenumber = user.phonenumber |
| | | }).catch(() => { |
| | | // 获取用户信息失败时使用默认值 |
| | | this.name = this.$store.state.user.name || '未登录' |
| | | this.name = this.$store.state.user.nickName || '未登录' |
| | | this.phonenumber = '未绑定' |
| | | }) |
| | | |
| | |
| | | handleAbout() { |
| | | this.$tab.navigateTo('/pages/mine/about/index') |
| | | }, |
| | | handleUserAgreement() { |
| | | this.$tab.navigateTo('/pages/mine/user-agreement/index') |
| | | }, |
| | | handlePrivacyPolicy() { |
| | | this.$tab.navigateTo('/pages/mine/privacy-policy/index') |
| | | }, |
| | | handleJiaoLiuQun() { |
| | | this.$modal.showToast('QQ群:①133713780(满)、②146013835(满)、③189091635') |
| | | }, |