import OHeader from '@/components/o-header' import OSticky from '@/components/o-sticky' import { useRect } from '@vant/use' import { Collapse, CollapseItem, dividerProps } from 'vant' import { defineComponent, onMounted, reactive, ref, nextTick } from 'vue' import { useRouter } from 'vue-router' import clockIcon from './images/clock-icon.png' import styles from './index.module.less' const activeName = ref('student') export default defineComponent({ name: 'attendance-rule', setup() { const router = useRouter() const state = reactive({ activeNames: ['1'] }) const stickyRef = ref() return () => ( <>
(
签到规则
) }} >

以课程时间12:00:00 ~ 13:00:00为例

可签到时间范围:

课程开始前60分钟至课程结束前

时间段:11:00:00 ~ 13:00

正常签到:

课程开始前60分钟至课程开始前20分钟 签到GPS定位点在教学点1000米内

时间段:11:00:00 ~ 11:40:00

异常签到:

课程开始前20分钟后至课程开始前 签到GPS定位点在教学点1000米外

时间段:11:00:00 ~ 11:40:00

扣除训练补助:-50元

迟到:

课程开始后30分钟内签到

时间段:12:00:00 ~ 12:30:00

扣除训练补助:-100%

旷课:

课程开始后30分钟至课程结束前签到

时间段:11:30:00后签到(含11:30:00)

扣除训练补助:-100%

未签到:

未进行【签到】操作

扣除训练补助:-100%

(
签退规则
) }} >

以课程时间12:00:00 ~ 13:00:00为例

可签退时间范围:

课程开始后至课程当天24点前

时间段:12:00:00 ~ 23:59:59

正常签退:

课程结束后至课程开始后360分钟 签退GPS定位点在教学点1000米内

时间段:13:00:00 ~ 19:00:00

早退:

课程开始后30分钟内签到

时间段:12:00:00 ~ 12:30:00

扣除训练补助:-100%

异常签到:

课程开始前20分钟后至课程开始前 签到GPS定位点在教学点1000米外

时间段:11:00:00 ~ 11:40:00

扣除训练补助:-50元

旷课:

课程开始后30分钟至课程结束前签到

时间段:11:30:00后签到(含11:30:00)

扣除训练补助:-100%

未签到:

未进行【签到】操作

扣除训练补助:-100%

(
签到规则
) }} >
) } })