15 lines
271 B
Vue
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>
|