You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
690 B
34 lines
690 B
2 years ago
|
//单位管理员
|
||
|
<template>
|
||
|
<view style="min-height: 200vh;">
|
||
|
<u-sticky>
|
||
|
<view style="background-color: #3A71FF;height: 90px;">
|
||
|
<image :src="applet+'/close.png'" style="width: 35px;height: 35px;margin-top: 40px;margin-left: 10px;" @tap="close"></image>
|
||
|
<view style="text-align: center;color: #fff;position: absolute;top: 49px;left: 40%;font-size: 17px;" >打卡记录</view>
|
||
|
</view>
|
||
|
</u-sticky>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
applet:this.$url.data.applet,
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
close(){
|
||
|
uni.removeStorageSync("token")
|
||
|
uni.redirectTo({
|
||
|
url:'/pages/login/index'
|
||
|
})
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
|
||
|
</style>
|