cxc-szcx-uniapp/pages/views/renliziyuan/renyuanxinxi/index.vue
2025-01-13 16:03:24 +08:00

41 lines
792 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view>
<uni-card :is-shadow="false">
<uni-section title="台账信息" type="line">
<uni-card :is-shadow="false">
<button type="primary" @click="getTaizhang">人员台账</button>
</uni-card>
</uni-section>
<uni-section title="统计信息" type="line">
<uni-card :is-shadow="false">
<text class="uni-body">这是一个基础卡片示例内容较少此示例展示了一个没有任何属性不带阴影的卡片</text>
</uni-card>
</uni-section>
</uni-card>
</view>
</template>
<script>
export default {
components: {
},
data() {
return {
}
},
methods: {
getTaizhang() {
uni.navigateTo({
url:"/pages/views/renliziyuan/renyuanxinxi/taizhang"
})
}
},
}
</script>
<style>
</style>