setting.vue
1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<template>
<view class="list">
<uni-list>
<uni-list-item title="当前仓库" rightText="长沙仓库" :showArrow="false">1232</uni-list-item>
<uni-list-item title="货主编码" rightText="长沙华恒机器人有限公司" :showArrow="false"></uni-list-item>
<uni-list-item title="操作者" rightText="youjie" :showArrow="false"></uni-list-item>
<uni-list-item title="日志查看" rightText="74条" :showArrow="false" link="navigateTo" to="/pages/log/log" ></uni-list-item>
<uni-list-item title="版本号" :rightText="version" :showArrow="false"></uni-list-item>
</uni-list>
<view class="log-out" @click="logOut">
<view class="btn">
<text>退出登录</text>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
version: this.$conf.version
}
},
methods: {
logOut() {
this.$store.dispatch("logout")
this.$api.user.logout();
this.back();
},
back() {
uni.redirectTo({
url: 'page/login/login'
})
}
},
}
</script>
<style lang="scss" scoped>
.list {
margin-top: 30rpx;
.log-out {
margin-top: 30rpx;
.btn {
height: 86rpx;
line-height: 86rpx;
text-align: center;
background-color: #FFFFFF;
}
}
}
</style>