修改内容

This commit is contained in:
2025-09-23 15:48:38 +08:00
parent cb26ec9abe
commit baa8a81015
10 changed files with 90 additions and 98 deletions

View File

@@ -143,7 +143,7 @@
<!-- 辅导员审核 -->
<el-table-column label="辅导员审批" align="center" prop="status">
<template slot-scope="scope">
<!-- 审批状态0待审批1已通过 -->
<!-- 审批状态(0待审批;1已通过; -->
<el-tag v-if="scope.row.status == 0">待审批</el-tag>
<el-tag type="success" v-else-if="scope.row.status == 1"
>已通过</el-tag
@@ -164,7 +164,7 @@
<!-- <el-table-column label="学工审批状态" align="center" prop="xgstatus" /> -->
<el-table-column label="学工审批状态" align="center" prop="xgstatus">
<template slot-scope="scope">
<!-- 审批状态0待审批1已通过 -->
<!-- 审批状态(0待审批;1已通过; -->
<el-tag v-if="scope.row.xgstatus == 0 || scope.row.xgstatus == null ">待审批</el-tag>
<el-tag type="success" v-else-if="scope.row.xgstatus == 1"
>已通过</el-tag
@@ -257,25 +257,6 @@
/>
</el-form-item>
<!-- 学工姓名 -->
<el-form-item label="学工处" prop="xgname" :rules="rules.reason1">
<el-input
v-model="form.xgname"
placeholder="请输入学工处审批人名字"
/>
</el-form-item>
<el-form-item label="审批时间" prop="xgtime" :rules="rules.reason4">
<el-date-picker
clearable
v-model="form.xgtime"
type="date"
value-format="yyyy-MM-dd"
placeholder="请选择审批时间"
>
</el-date-picker>
</el-form-item>
<el-form-item label="学工意见" prop="xgopinion" :rules="rules.reason2">
<el-input
v-model="form.xgopinion"
@@ -503,7 +484,7 @@ export default {
handleDelete(row) {
const ids = row.id || this.ids;
this.$modal
.confirm('是否确认删除测试编号为"' + ids + '"的数据项')
.confirm('是否确认删除测试编号为"' + ids + '"的数据项?')
.then(function () {
return delSchool(ids);
})