31 lines
567 B
Vue
31 lines
567 B
Vue
|
<template>
|
||
|
<view class="content">
|
||
|
<view>管理员--NFC</view>
|
||
|
<u-tabbar :list="vuex_tabbar"></u-tabbar>
|
||
|
</view>
|
||
|
</template>
|
||
|
<script>
|
||
|
import { loginApi } from "@/api/apiList";
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
phone: "13800451500",
|
||
|
pwd: "123456",
|
||
|
};
|
||
|
},
|
||
|
mounted() {
|
||
|
uni.hideLoading(); // 关闭 Loading
|
||
|
},
|
||
|
onLoad() {},
|
||
|
methods: {},
|
||
|
};
|
||
|
</script>
|
||
|
<style lang="scss" scoped>
|
||
|
.content {
|
||
|
height: 100vh; // 确保容器有明确高度
|
||
|
// background-color: skyblue;
|
||
|
overflow: hidden;
|
||
|
padding-bottom: 100rpx;
|
||
|
}
|
||
|
</style>
|