|
|
@@ -32,6 +32,8 @@
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="150">
|
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="150">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
|
|
<!-- <el-button v-if="scope.row.auditStatus == '6'" size="mini" type="text" icon="el-icon-close"
|
|
|
|
|
|
|
|
@click="processRClick(scope.row)">撤销</el-button> -->
|
|
|
|
<el-button size="mini" type="text" icon="el-icon-folder" @click="processVClick(scope.row)">查看详情</el-button>
|
|
|
|
<el-button size="mini" type="text" icon="el-icon-folder" @click="processVClick(scope.row)">查看详情</el-button>
|
|
|
|
<!-- <el-button v-if="scope.row.auditStatus == '6'" size="mini" type="text" icon="el-icon-circle-close"
|
|
|
|
<!-- <el-button v-if="scope.row.auditStatus == '6'" size="mini" type="text" icon="el-icon-circle-close"
|
|
|
|
@click="cancelVClick(scope.row)">取消加/扣分</el-button> -->
|
|
|
|
@click="cancelVClick(scope.row)">取消加/扣分</el-button> -->
|
|
|
@@ -131,9 +133,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
<script>
|
|
|
|
import { myProcessed, getAuditDetails, delAuditDetails, addAuditDetails, updateAuditDetails, listOwnProcessed, cancelProcess } from "@/api/stuCQS/process-center/auditDetails";
|
|
|
|
import { myProcessed, getAuditDetails, delAuditDetails, addAuditDetails, updateAuditDetails, listOwnProcessed, cancelProcess, cancelAudit } from "@/api/stuCQS/process-center/auditDetails";
|
|
|
|
import { isEmpty } from "@/api/helpFunc";
|
|
|
|
import { isEmpty } from "@/api/helpFunc";
|
|
|
|
import lodash from "lodash";
|
|
|
|
import lodash from "lodash";
|
|
|
|
|
|
|
|
|
|
|
@@ -176,8 +178,8 @@ export default {
|
|
|
|
queryParams: {
|
|
|
|
queryParams: {
|
|
|
|
pageNum: 1,
|
|
|
|
pageNum: 1,
|
|
|
|
pageSize: 10,
|
|
|
|
pageSize: 10,
|
|
|
|
stuName:"",
|
|
|
|
stuName: "",
|
|
|
|
stuNo:""
|
|
|
|
stuNo: ""
|
|
|
|
},
|
|
|
|
},
|
|
|
|
// 表单参数
|
|
|
|
// 表单参数
|
|
|
|
form: {},
|
|
|
|
form: {},
|
|
|
@@ -231,6 +233,15 @@ export default {
|
|
|
|
this.processForm = val;
|
|
|
|
this.processForm = val;
|
|
|
|
this.processV = true;
|
|
|
|
this.processV = true;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
//撤销
|
|
|
|
|
|
|
|
async processRClick(row) {
|
|
|
|
|
|
|
|
const id = row.id;
|
|
|
|
|
|
|
|
cancelAudit(id).then(res => {
|
|
|
|
|
|
|
|
if (res.code == 200) {
|
|
|
|
|
|
|
|
this.getList();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
},
|
|
|
|
/** 查询审核明细列表 */
|
|
|
|
/** 查询审核明细列表 */
|
|
|
|
getList() {
|
|
|
|
getList() {
|
|
|
|
this.loading = true;
|
|
|
|
this.loading = true;
|
|
|
@@ -331,5 +342,4 @@ export default {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|