更改宽度

This commit is contained in:
2025-10-08 16:13:50 +08:00
parent e692536e4c
commit 727077db47

View File

@@ -34,7 +34,7 @@
<el-table-column label="主题" align="center" prop="surveyName" /> <el-table-column label="主题" align="center" prop="surveyName" />
<el-table-column label="学号" align="center" prop="stuNo" width="120" /> <el-table-column label="学号" align="center" prop="stuNo" width="120" />
<el-table-column label="姓名" align="center" prop="name" /> <el-table-column label="姓名" align="center" prop="name" />
<el-table-column label="班级" align="center" prop="className" width="300" /> <el-table-column label="班级" align="center" prop="className" width="220" />
<el-table-column label="联系电话" align="center" prop="phone" width="140" /> <el-table-column label="联系电话" align="center" prop="phone" width="140" />
<el-table-column label="是否离校" align="center"> <el-table-column label="是否离校" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
@@ -43,6 +43,10 @@
"未到家" }}</div> "未到家" }}</div>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="预计离校时间" align="center" prop="willLeaveTime" width="140" />
<el-table-column label="预计返校时间" align="center" prop="scheduledReturnTime" width="140" />
<el-table-column label="预计留校时间" align="center" prop="willStayTime" width="140" />
<el-table-column label="去向地" align="center" prop="willAddr" width="140" />
<el-table-column label="审核状态" align="center" prop="configType"> <el-table-column label="审核状态" align="center" prop="configType">
<template slot-scope="scope"> <template slot-scope="scope">
<dict-tag :options="dict.type.sur_status" :value="scope.row.leaveStatus" /> <dict-tag :options="dict.type.sur_status" :value="scope.row.leaveStatus" />
@@ -152,7 +156,7 @@
</template> </template>
<script> <script>
import { isEmpty, fullLoading } from "@/api/helpFunc"; import { fullLoading, isEmpty } from "@/api/helpFunc";
import { listFdyAll as listView, updateStuHomeGpsAddr } from "@/api/survey/itinerary"; import { listFdyAll as listView, updateStuHomeGpsAddr } from "@/api/survey/itinerary";
import { listAllSurvey } from "@/api/survey/survey"; import { listAllSurvey } from "@/api/survey/survey";