|
@@ -129,12 +129,10 @@ export default {
|
|
|
pass: true
|
|
pass: true
|
|
|
|
|
|
|
|
}).then((res) => {
|
|
}).then((res) => {
|
|
|
- if (res.code != '-1') {
|
|
|
|
|
- this.$emit('handleAudit', {
|
|
|
|
|
|
|
+ this.$emit('handleAudit', {
|
|
|
status,
|
|
status,
|
|
|
title: ''
|
|
title: ''
|
|
|
});
|
|
});
|
|
|
- }
|
|
|
|
|
});
|
|
});
|
|
|
} else if (status == 0) {
|
|
} else if (status == 0) {
|
|
|
outsourceNotPass({
|
|
outsourceNotPass({
|
|
@@ -142,12 +140,10 @@ export default {
|
|
|
reason: this.form.reason,
|
|
reason: this.form.reason,
|
|
|
pass: false
|
|
pass: false
|
|
|
}).then((res) => {
|
|
}).then((res) => {
|
|
|
- if (res.code != '-1') {
|
|
|
|
|
- this.$emit('handleAudit', {
|
|
|
|
|
|
|
+ this.$emit('handleAudit', {
|
|
|
status,
|
|
status,
|
|
|
title: '驳回'
|
|
title: '驳回'
|
|
|
});
|
|
});
|
|
|
- }
|
|
|
|
|
});
|
|
});
|
|
|
}
|
|
}
|
|
|
|
|
|