|
@@ -41,6 +41,37 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column align='center'
|
|
|
+ prop="complaintsContent"
|
|
|
+ width="120"
|
|
|
+ label="申诉内容">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div v-if="scope.row.teacherAttendance">
|
|
|
+ <overflow-text :text="scope.row.teacherAttendance.complaintsContent" width="100%">
|
|
|
+ {{ scope.row.teacherAttendance.complaintsContent}}
|
|
|
+ </overflow-text>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column align='center'
|
|
|
+ prop="complaintsTime"
|
|
|
+ width="160"
|
|
|
+ label="申诉时间">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div>
|
|
|
+ {{ scope.row.teacherAttendance && scope.row.teacherAttendance.complaintsTime}}
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column align='center'
|
|
|
+ prop="complaintsStatus"
|
|
|
+ label="申诉状态">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div v-if="scope.row.teacherAttendance">
|
|
|
+ {{scope.row.teacherAttendance.complaintsStatus | complaintsStatusEnum}}
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column align='center'
|
|
|
prop="teacherPhone"
|
|
|
label="签到状态">
|
|
|
<template slot-scope="scope">
|
|
@@ -56,6 +87,7 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column align='center'
|
|
|
width="200px"
|
|
|
+ fixed="right"
|
|
|
label="操作">
|
|
|
<template slot-scope="scope">
|
|
|
<div>
|