123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <template>
- <view class="content">
- <view class="cell-group">
- <view class="hflex acenter jbetween cell" @click="toPersonal">
- <view class="left">个人设置</view>
- <u-icon name="arrow-right" color="#000" size="10"></u-icon>
- </view>
- <view class="hflex acenter jbetween cell" @click="toAccount">
- <view class="left">账号信息</view>
- <u-icon name="arrow-right" color="#000" size="10"></u-icon>
- </view>
- </view>
- <view class="cell-group">
- <view class="hflex acenter jbetween cell" @click="about">
- <view class="left">关于我们</view>
- <u-icon name="arrow-right" color="#000" size="10"></u-icon>
- </view>
- <view class="hflex acenter jbetween cell" @click="rules">
- <view class="left">平台规则</view>
- <u-icon name="arrow-right" color="#000" size="10"></u-icon>
- </view>
- </view>
- <view class="cell-group hflex acenter jcenter">
- <view class="button" @click="quit">退出登录</view>
- </view>
- </view>
- </template>
- <script>
- import $api from '@/static/js/api.js'
- var that = ''
- export default {
- data() {
- return {
-
- }
- },
- onLoad() {
- that = this
- },
- methods: {
- // 个人信息
- toPersonal() {
- $api.jump('/page_mine/pages/setting/personal')
- },
- // 账号信息
- toAccount() {
- $api.jump('/page_mine/pages/setting/account_info')
- },
- // 关于我们
- about() {
- $api.jump('/page_mine/pages/setting/about')
- },
- // 平台规则
- rules() {
- $api.jump('/page_mine/pages/setting/rules')
- },
- // 退出登录
- quit() {
- uni.removeStorageSync("token")
- uni.WebIM.conn.close();
- $api.jump('/pages/tabbar/mine/mine',3)
- }
- },
- }
- </script>
- <style lang="scss" scoped>
- .content {
- background-color: #f5f5f5;
- .cell-group {
- width: 100%;
- background-color: #fff;
- margin-top: 20rpx;
- padding: 0 30rpx;
- box-sizing: border-box;
- .cell {
- box-sizing: border-box;
- padding: 36rpx 0;
- border-bottom: 1rpx solid #f5f5f5;
- .left {
- font-size: 30rpx;
- color: #222;
- }
- }
- .button {
- font-size: 36rpx;
- color: #506dff;
- padding: 20rpx 0;
- }
- }
- }
- </style>
|