Files
ss-crm-manage-web/src/views/Home/SignReport.vue

14 lines
267 B
Vue
Raw Normal View History

2024-04-28 16:20:45 +08:00
<template>
2024-10-09 16:38:49 +08:00
<div>
<SignTotalCard />
<SignListCard />
</div>
2024-04-28 16:20:45 +08:00
</template>
2024-10-09 16:38:49 +08:00
<script setup name="SignReport">
import SignTotalCard from './Comp/SignTotalCard.vue'
import SignListCard from './Comp/SignListCard.vue'
</script>
2024-04-28 16:20:45 +08:00
<style lang="scss" scoped></style>