67 lines
1.4 KiB
Vue
Raw Normal View History

2025-10-15 14:07:39 +08:00
<template>
<div class="home">
2025-10-16 15:04:54 +08:00
<van-nav-bar title="愉快政" fixed left-arrow />
<van-cell-group>
<van-cell title="当前站点" value="李家坝仓库" />
</van-cell-group>
2025-10-15 14:07:39 +08:00
<div class="content">
2025-10-16 15:04:54 +08:00
<van-grid :gutter="10" :column-num="3" class="grid">
<van-grid-item icon="setting-o" text="设备管理" to="/EquipManage" />
<van-grid-item
icon="setting-o"
text="物资管理"
2025-10-16 16:44:08 +08:00
to="/MaterialManage"
2025-10-16 15:04:54 +08:00
/>
<van-grid-item
icon="setting-o"
text="人员管理"
@click="showToast('人员管理')"
/>
<van-grid-item
icon="setting-o"
text="冰雪灾害"
@click="showToast('冰雪灾害')"
/>
2025-10-15 14:07:39 +08:00
</van-grid>
</div>
2025-10-16 15:04:54 +08:00
<!-- <van-tabbar v-model="active" route>
2025-10-15 14:07:39 +08:00
<van-tabbar-item icon="home-o" to="/">首页</van-tabbar-item>
<van-tabbar-item icon="user-o" to="/user">我的</van-tabbar-item>
2025-10-16 15:04:54 +08:00
</van-tabbar> -->
2025-10-15 14:07:39 +08:00
</div>
</template>
<script setup>
2025-10-16 15:04:54 +08:00
import { ref } from "vue";
import { useRouter } from "vue-router";
import { showToast } from "vant";
2025-10-15 14:07:39 +08:00
2025-10-16 15:04:54 +08:00
const router = useRouter();
const active = ref(0);
2025-10-15 14:07:39 +08:00
const goToUser = () => {
2025-10-16 15:04:54 +08:00
router.push("/user");
};
2025-10-15 14:07:39 +08:00
</script>
<style scoped>
.home {
2025-10-16 15:04:54 +08:00
padding-top: var(--van-nav-bar-height); /* 自动匹配导航栏高度 */
2025-10-15 14:07:39 +08:00
}
.content {
padding: 16px;
}
.grid {
margin-top: 16px;
}
.btn {
margin-top: 24px;
}
</style>