15 lines
271 B
Vue
Raw Normal View History

2024-12-31 10:58:07 +08:00
<template>
2025-01-06 17:21:30 +08:00
<view @click="goAttendance()">考勤</view>
2024-12-31 10:58:07 +08:00
</template>
2025-01-06 17:21:30 +08:00
<script setup lang="ts">
const goAttendance = () => {
uni.navigateTo({
url: '/pages/attendance/attendance'
})
// todo goAttendance
}
</script>
2024-12-31 10:58:07 +08:00
<style scoped lang="scss"></style>