|
@@ -91,8 +91,18 @@
|
|
|
<!-- <el-table-column prop="userPhone" label="本人手机号码" width="" /> -->
|
|
|
<!-- <el-table-column prop="monitorName" label="班长姓名" width="" />
|
|
|
<el-table-column prop="dormitory" label="宿舍" width="" /> -->
|
|
|
- <el-table-column prop="reason" label="请假原因" :show-overflow-tooltip='true' width="" />
|
|
|
- <el-table-column prop="destination" label="出行目的地" :show-overflow-tooltip='true' width="" />
|
|
|
+ <el-table-column
|
|
|
+ prop="reason"
|
|
|
+ label="请假原因"
|
|
|
+ :show-overflow-tooltip="true"
|
|
|
+ width=""
|
|
|
+ />
|
|
|
+ <el-table-column
|
|
|
+ prop="destination"
|
|
|
+ label="出行目的地"
|
|
|
+ :show-overflow-tooltip="true"
|
|
|
+ width=""
|
|
|
+ />
|
|
|
<!-- <el-table-column
|
|
|
prop="isKnow"
|
|
|
label="父母是否知情"
|
|
@@ -103,24 +113,52 @@
|
|
|
<el-table-column prop="motherPhone" label="母亲电话" width="" />
|
|
|
<el-table-column prop="fatherPhone" label="父亲电话" width="" /> -->
|
|
|
<!-- <el-table-column prop="travelMode" label="出行方式" width="" /> -->
|
|
|
- <el-table-column prop="startTime" label="请假时间" :show-overflow-tooltip='true' width="" />
|
|
|
- <el-table-column prop="endTime" label="返校时间" :show-overflow-tooltip='true' width="" />
|
|
|
+ <el-table-column
|
|
|
+ prop="startTime"
|
|
|
+ label="请假时间"
|
|
|
+ :show-overflow-tooltip="true"
|
|
|
+ width=""
|
|
|
+ />
|
|
|
+
|
|
|
+ <el-table-column
|
|
|
+ prop="endTime"
|
|
|
+ label="返校时间"
|
|
|
+ :show-overflow-tooltip="true"
|
|
|
+ width=""
|
|
|
+ />
|
|
|
<!-- <el-table-column prop="auditSuggest" label="审核建议" width="" /> -->
|
|
|
<el-table-column
|
|
|
-
|
|
|
prop="auditStatus"
|
|
|
label="审核状态"
|
|
|
width=""
|
|
|
:formatter="auditStatusFormatter"
|
|
|
/>
|
|
|
- <el-table-column
|
|
|
+ <!-- <el-table-column
|
|
|
|
|
|
prop="auditResult"
|
|
|
label="审核结果"
|
|
|
width="100"
|
|
|
:formatter="auditResultFormatter"
|
|
|
- />
|
|
|
- <el-table-column label="操作" width="150" align="center">
|
|
|
+ /> -->
|
|
|
+ <el-table-column prop="auditResult" label="审核结果" width="100" align="center">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div
|
|
|
+ style="display: flex; justify-content: center; align-items: center"
|
|
|
+ v-show="scope.row.auditResult == '1'"
|
|
|
+ >
|
|
|
+ <img style="width: 14px" src="../../assets/img/table/dui.png" alt="" />
|
|
|
+ <div>通过</div>
|
|
|
+ </div>
|
|
|
+ <div
|
|
|
+ style="display: flex; justify-content: center; align-items: center"
|
|
|
+ v-show="scope.row.auditResult == '0'"
|
|
|
+ >
|
|
|
+ <img style="width: 14px" src="../../assets/img/table/cuo.png" alt="" />
|
|
|
+ <div>驳回</div>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="操作" width="150" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
<div class="detail_button_out">
|
|
|
<div
|
|
@@ -288,7 +326,7 @@
|
|
|
|
|
|
<div class="user_out">
|
|
|
<div class="user_out_sub">审核结果</div>
|
|
|
- <div class="user_out_subNext" >
|
|
|
+ <div class="user_out_subNext">
|
|
|
<div style="display: flex; align-items: center">
|
|
|
<img
|
|
|
src="../../assets/img/table/dui.png"
|
|
@@ -296,16 +334,24 @@
|
|
|
alt=""
|
|
|
v-show="view.auditResult == '1'"
|
|
|
/>
|
|
|
- <div v-show="view.auditResult == '1'" style="color: #12bb65;font-weight: 700;">
|
|
|
- 已同意
|
|
|
+ <div
|
|
|
+ v-show="view.auditResult == '1'"
|
|
|
+ style="color: #12bb65; font-weight: 700"
|
|
|
+ >
|
|
|
+ 已同意
|
|
|
</div>
|
|
|
<img
|
|
|
src="../../assets/img/table/cuo.png"
|
|
|
alt=""
|
|
|
- style="width: 20px; height: 20px"
|
|
|
+ style="width: 20px; height: 20px"
|
|
|
v-show="view.auditResult == '0'"
|
|
|
/>
|
|
|
- <div v-show="view.auditResult == '0'" style="color: #FF9000;font-weight: 700;"> 已驳回</div>
|
|
|
+ <div
|
|
|
+ v-show="view.auditResult == '0'"
|
|
|
+ style="color: #ff9000; font-weight: 700"
|
|
|
+ >
|
|
|
+ 已驳回
|
|
|
+ </div>
|
|
|
|
|
|
</div>
|
|
|
<!-- {{
|
|
@@ -336,12 +382,25 @@
|
|
|
>
|
|
|
<el-input v-model="record" placeholder="请输入审核建议" />
|
|
|
</div>
|
|
|
-
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="user_button_detail" v-show="view.auditStatus == '0'">
|
|
|
- <el-button type="success" round @click="submitCom(true)" style="padding:10px 40px" > 通过 </el-button>
|
|
|
- <el-button type="info" round @click="submitCom(false)" style="padding:10px 40px"> 驳回 </el-button>
|
|
|
+ <el-button
|
|
|
+ type="success"
|
|
|
+ round
|
|
|
+ @click="submitCom(true)"
|
|
|
+ style="padding: 10px 40px"
|
|
|
+ >
|
|
|
+ 通过
|
|
|
+ </el-button>
|
|
|
+ <el-button
|
|
|
+ type="info"
|
|
|
+ round
|
|
|
+ @click="submitCom(false)"
|
|
|
+ style="padding: 10px 40px"
|
|
|
+ >
|
|
|
+ 驳回
|
|
|
+ </el-button>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -925,7 +984,7 @@ export default {
|
|
|
}
|
|
|
.user_button_detail {
|
|
|
width: 60%;
|
|
|
- margin-left:20%;
|
|
|
+ margin-left: 20%;
|
|
|
display: flex;
|
|
|
justify-content: space-around;
|
|
|
margin-top: 40px;
|
|
@@ -998,7 +1057,7 @@ export default {
|
|
|
|
|
|
.user_out_sub {
|
|
|
// flex: 1;
|
|
|
- width:95px;
|
|
|
+ width: 95px;
|
|
|
// background-color: #fafafa;
|
|
|
text-align: center;
|
|
|
height: 100%;
|