agvouterror

This commit is contained in:
2023-03-22 17:30:09 +08:00
parent be329a3dad
commit 923e46421d
3 changed files with 164 additions and 38 deletions

View File

@@ -1,4 +1,4 @@
<template>
<template>
<view class="content">
<view class="header">
<view class="header-item">
@@ -33,21 +33,21 @@
<view class="nav-item">
<text class="nav-text" @click="toJump('/pages/equipStatus/equipStatus')">缓存线异常处理</text>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
userName: this.$store.getters.userInfo ? JSON.parse(this.$store.getters.userInfo).id : ''
}
},
onLoad() {
},
methods: {
</view>
</view>
</template>
<script>
export default {
data() {
return {
userName: this.$store.getters.userInfo ? JSON.parse(this.$store.getters.userInfo).id : ''
}
},
onLoad() {
},
methods: {
toJump(path) {
uni.navigateTo({
url: path
@@ -58,16 +58,16 @@
uni.redirectTo({
url: '/pages/login/login'
})
}
}
}
</script>
}
}
}
</script>
<style lang="stylus" scoped>
@import '../../common/style/mixin.styl';
@import '../../common/style/mixin.styl';
.content
_fj()
_wh(100%, 100%)
_wh(100%, 100%)
flex-direction column
background-color: #fff
.header
@@ -103,5 +103,5 @@
margin-right 0
.nav-text
_font(40rpx, 60rpx, #333,,)
letter-spacing: 4rpx
letter-spacing: 4rpx
</style>