2025-01-13 02:49:20 +00:00
|
|
|
<template>
|
|
|
|
<view>
|
|
|
|
<uni-card :is-shadow="false">
|
|
|
|
<uni-section title="台账信息" type="line">
|
|
|
|
<uni-card :is-shadow="false">
|
|
|
|
<button type="primary" @click="toTaizhang">人员台账</button>
|
|
|
|
</uni-card>
|
|
|
|
</uni-section>
|
|
|
|
<uni-section title="统计信息" type="line">
|
|
|
|
<uni-card :is-shadow="false">
|
2025-02-11 01:34:29 +00:00
|
|
|
<button type="primary" @click="toTongji">年龄段统计</button>
|
2025-01-13 02:49:20 +00:00
|
|
|
</uni-card>
|
|
|
|
|
2025-02-11 01:34:29 +00:00
|
|
|
<uni-card :is-shadow="false">
|
|
|
|
<button type="primary" @click="toQtTongji">其他统计</button>
|
|
|
|
</uni-card>
|
|
|
|
</uni-section>
|
2025-02-11 01:34:29 +00:00
|
|
|
<uni-section title="人员统计" type="line">
|
|
|
|
<uni-card :is-shadow="false">
|
|
|
|
<button type="primary">人员统计</button>
|
|
|
|
</uni-card>
|
|
|
|
</uni-section>
|
2025-01-13 02:49:20 +00:00
|
|
|
</uni-card>
|
|
|
|
|
|
|
|
</view>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
function toTaizhang() {
|
|
|
|
uni.navigateTo({
|
|
|
|
url: "/pages/views/renliziyuan/renyuanxinxi/taizhang"
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function toTongji() {
|
|
|
|
uni.navigateTo({
|
|
|
|
url: "/pages/views/renliziyuan/renyuanxinxi/tongji"
|
|
|
|
})
|
|
|
|
}
|
2025-02-11 01:34:29 +00:00
|
|
|
|
|
|
|
function toQtTongji() {
|
|
|
|
uni.navigateTo({
|
|
|
|
url: "/pages/views/renliziyuan/renyuanxinxi/qttongji"
|
|
|
|
})
|
|
|
|
}
|
2025-01-13 02:49:20 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
</style>
|