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.
57 lines
1.4 KiB
57 lines
1.4 KiB
<template>
|
|
<view>
|
|
<view class="width100 backcorfff height100p mart10">
|
|
<view class="width94 fcor333 font16 paddtop10">谷润科技</view>
|
|
<view class="width94 fcor999 font14 paddtop10">1551243232</view>
|
|
<view class="width94 fcor999 font14 paddtop10">名称|超级管理员</view>
|
|
</view>
|
|
<view class="width100 backcorfff mart15">
|
|
<view class="notes">
|
|
<view class="fcor666 width90p">结算银行账户</view>
|
|
<image src="../../../static/img/jtg.png" mode="widthFix" class="iconw"></image>
|
|
</view>
|
|
</view>
|
|
<wButton class="mart60" text="退 出 登 录" bgColor="#089bf5" :rotate="isRotate" @click="exitLogin"></wButton>
|
|
</view>
|
|
</template>
|
|
<script>
|
|
import wButton from '../../../components/watch-login/watch-button.vue' //button
|
|
let app = getApp();
|
|
export default {
|
|
components: {
|
|
wButton
|
|
},
|
|
data() {
|
|
return {
|
|
isRotate: false, //是否加载旋转
|
|
}
|
|
},
|
|
onLoad() {
|
|
|
|
},
|
|
methods: {
|
|
//退出登录
|
|
exitLogin() {
|
|
this.isRotate = true
|
|
setTimeout(function() {
|
|
uni.reLaunch({
|
|
url: '../../login/login'
|
|
})
|
|
this.isRotate = false;
|
|
}, 3000)
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
<style lang="scss">
|
|
page {
|
|
background-color: #f6f6f6;
|
|
}
|
|
.notes {
|
|
width: calc(100% - 40rpx);
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 30rpx 0 30rpx 20rpx;
|
|
border-bottom: 1px solid #f6f6f6;
|
|
}
|
|
</style>
|
|
|