123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- <template>
- <view class="setting">
- <!-- 占位元素 -->
- <view style="height: 24rpx;"></view>
- <!-- 列表 -->
- <view class="cell">
- <view class="cell_item" @click="goPrivacy">
- <text>隐私政策</text>
- <image src="/static/icon/right.png"></image>
- </view>
- <view class="cell_item" @click="goUser">
- <text>用户协议</text>
- <image src="/static/icon/right.png"></image>
- </view>
- <view class="cell_item" @click="goVerfication" v-if="staff !=null">
- <text>核销中心</text>
- <image src="/static/icon/right.png"></image>
- </view>
- </view>
- <!-- 按钮 -->
- <view class="btn" @click="loginOut">
- <text>退出登录</text>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- staff:'',
- }
- },
- onLoad() {
- this.staff = this.$store.getters.staff
- },
- methods: {
- // 跳转隐私政策
- goPrivacy() {
- uni.navigateTo({
- url: '/pages/my/protocol/PrivacyPolicy'
- })
- },
- // 跳转用户协议
- goUser() {
- uni.navigateTo({
- url: '/pages/my/protocol/UserAgreement'
- })
- },
- // 跳转核销中心
- goVerfication() {
- uni.navigateTo({
- url: '/pages/my/verification/verification'
- })
- },
- // 退出登录
- loginOut() {
- if (this.$store.getters.token) {
- //记录用户曾经登录过
- this.$store.getters.userInfo.isLoginOff = true
- this.$store.dispatch("user/info", this.$store.getters.userInfo)
- // this.$store.dispatch("user/token", null)
- // uni.removeStorageSync('auth_token')
- // uni.removeStorageSync('userInfo')
- uni.reLaunch({
- url:'/pages/login/login'
- })
- } else {
- uni.showToast({
- title: '请先登录!',
- icon: 'error'
- })
- }
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- $pageColor:#F9F9F9;
- $bgColor:#FFFFFF;
- @mixin flexlayout {
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .setting {
- height: 100%;
- background: $pageColor;
- }
- .cell {
- width: 100%;
- border-radius: 16rpx;
- padding: 0 30rpx;
- background: $bgColor;
- margin-bottom: 48rpx;
- .cell_item {
- box-sizing: border-box;
- height: 110rpx;
- width: 690rpx;
- border-bottom: solid 2rpx #F0F0F0;
- display: flex;
- align-items: center;
- position: relative;
- text {
- font-size: 30rpx;
- font-family: PingFang-SC-Medium, PingFang-SC;
- font-weight: 500;
- color: #000000;
- }
- image {
- width: 12rpx;
- height: 20rpx;
- position: absolute;
- right: 0rpx;
- top: 46rpx;
- }
- }
- .cell_item:nth-last-child(1) {
- box-sizing: border-box;
- height: 110rpx;
- width: 690rpx;
- border-bottom: solid 0rpx #F0F0F0;
- display: flex;
- align-items: center;
- position: relative;
- text {
- font-size: 30rpx;
- font-family: PingFang-SC-Medium, PingFang-SC;
- font-weight: 500;
- color: #000000;
- }
- image {
- width: 12rpx;
- height: 20rpx;
- position: absolute;
- right: 0rpx;
- top: 46rpx;
- }
- }
- }
- .btn {
- width: 690rpx;
- height: 92rpx;
- background: $bgColor;
- border-radius: 16rpx;
- margin-left: 30rpx;
- @include flexlayout() text {
- font-size: 28rpx;
- font-family: PingFang-SC-Medium, PingFang-SC;
- font-weight: 500;
- color: #333333;
- }
- }
- </style>
|