|
@@ -66,8 +66,8 @@
|
|
|
},
|
|
},
|
|
|
data() {
|
|
data() {
|
|
|
return {
|
|
return {
|
|
|
- form:{
|
|
|
|
|
- reason:''
|
|
|
|
|
|
|
+ form: {
|
|
|
|
|
+ reason: ''
|
|
|
},
|
|
},
|
|
|
loading: false
|
|
loading: false
|
|
|
};
|
|
};
|
|
@@ -96,7 +96,7 @@
|
|
|
if (res.data.code != '-1') {
|
|
if (res.data.code != '-1') {
|
|
|
this.$emit('handleAudit', {
|
|
this.$emit('handleAudit', {
|
|
|
status,
|
|
status,
|
|
|
- title: '驳回'
|
|
|
|
|
|
|
+ title: '通过'
|
|
|
});
|
|
});
|
|
|
}
|
|
}
|
|
|
this.loading = false;
|
|
this.loading = false;
|
|
@@ -114,7 +114,7 @@
|
|
|
if (res.data.code != '-1') {
|
|
if (res.data.code != '-1') {
|
|
|
this.$emit('handleAudit', {
|
|
this.$emit('handleAudit', {
|
|
|
status,
|
|
status,
|
|
|
- title: status === 0 ? '驳回' : ''
|
|
|
|
|
|
|
+ title: '驳回'
|
|
|
});
|
|
});
|
|
|
}
|
|
}
|
|
|
this.loading = false;
|
|
this.loading = false;
|