|
@@ -52,14 +52,35 @@
|
|
|
v-model.trim="searchForm.signInStatus"
|
|
|
filterable
|
|
|
clearable
|
|
|
- placeholder="考勤状态"
|
|
|
+ placeholder="签到状态"
|
|
|
>
|
|
|
- <el-option
|
|
|
+ <el-option :value="1" label="正常签到"></el-option>
|
|
|
+ <el-option :value="0" label="异常签到"></el-option>
|
|
|
+ <el-option :value="3" label="未签到"></el-option>
|
|
|
+ <!-- <el-option
|
|
|
v-for="(item, index) in attendance"
|
|
|
:key="index"
|
|
|
:label="item.label"
|
|
|
:value="item.value"
|
|
|
- ></el-option>
|
|
|
+ ></el-option> -->
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item>
|
|
|
+ <el-select
|
|
|
+ v-model.trim="searchForm.signOutStatus"
|
|
|
+ filterable
|
|
|
+ clearable
|
|
|
+ placeholder="签退状态"
|
|
|
+ >
|
|
|
+ <!-- <el-option
|
|
|
+ v-for="(item, index) in attendance"
|
|
|
+ :key="index"
|
|
|
+ :label="item.label"
|
|
|
+ :value="item.value"
|
|
|
+ ></el-option> -->
|
|
|
+ <el-option :value="1" label="正常签退"></el-option>
|
|
|
+ <el-option :value="0" label="异常签退"></el-option>
|
|
|
+ <el-option :value="3" label="未签退"></el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
<el-form-item>
|
|
@@ -165,6 +186,7 @@ export default {
|
|
|
classGroupName: null,
|
|
|
courseScheduleType: null,
|
|
|
signInStatus: null,
|
|
|
+ signOutStatus: null,
|
|
|
courseDate:[]
|
|
|
},
|
|
|
tableList: [],
|
|
@@ -226,6 +248,7 @@ export default {
|
|
|
classGroupName: null,
|
|
|
courseScheduleType: null,
|
|
|
signInStatus: null,
|
|
|
+ signOutStatus: null
|
|
|
};
|
|
|
this.getList()
|
|
|
},
|