5.6重庆bug修改
This commit is contained in:
parent
b9f7bd4c2e
commit
fe81e77526
|
|
@ -248,7 +248,7 @@ import { basePath } from '../../public'
|
||||||
} else {
|
} else {
|
||||||
that.modalList.directAuditRemark = that.rejectReason
|
that.modalList.directAuditRemark = that.rejectReason
|
||||||
console.log(that.modalList);
|
console.log(that.modalList);
|
||||||
that.rejectExam(that.modalList.id)
|
that.rejectExam(that.modalList.id, that.modalList.directAuditRemark)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
closePopup () {
|
closePopup () {
|
||||||
|
|
@ -257,11 +257,12 @@ import { basePath } from '../../public'
|
||||||
closePopup1 () {
|
closePopup1 () {
|
||||||
this.$refs.popup1.close()
|
this.$refs.popup1.close()
|
||||||
},
|
},
|
||||||
seeExam (id) {
|
seeExam (id, directAuditRemark) {
|
||||||
let that = this
|
let that = this
|
||||||
// 提交单个审核
|
// 提交单个审核
|
||||||
that.$api.exitExam.subExitExam({
|
that.$api.exitExam.subExitExam({
|
||||||
id
|
id,
|
||||||
|
directAuditRemark
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
console.log(res);
|
console.log(res);
|
||||||
if (res.data.code == 200) {
|
if (res.data.code == 200) {
|
||||||
|
|
@ -288,7 +289,7 @@ import { basePath } from '../../public'
|
||||||
console.log(err);
|
console.log(err);
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
rejectExam () {
|
rejectExam (id) {
|
||||||
let that = this
|
let that = this
|
||||||
// 拒绝单个审核
|
// 拒绝单个审核
|
||||||
that.$api.exitExam.rejectExitExam({
|
that.$api.exitExam.rejectExitExam({
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue