2025-01-06 17:21:30 +08:00

15 lines
271 B
Vue

<template>
<view @click="goAttendance()">考勤</view>
</template>
<script setup lang="ts">
const goAttendance = () => {
uni.navigateTo({
url: '/pages/attendance/attendance'
})
// todo goAttendance
}
</script>
<style scoped lang="scss"></style>