|
@@ -39,6 +39,9 @@
|
|
|
<el-button v-if="[3, 4].includes(formType)" size="mini" @click="quedingshenhe" type="primary"
|
|
|
>确 定</el-button
|
|
|
>
|
|
|
+ <el-button v-if="[3, 4].includes(formType)" size="mini" @click="bohuidaishenshu" type="primary"
|
|
|
+ >驳回待申诉</el-button
|
|
|
+ >
|
|
|
</div>
|
|
|
</zj-page-container>
|
|
|
</el-dialog>
|
|
@@ -56,7 +59,8 @@ import {
|
|
|
appraiseApplyApplySubmit,
|
|
|
appraiseApplyApplyConfirm,
|
|
|
appraiseApplyBatchUpdateEnd,
|
|
|
- appraiseApplyBatchUpdateReset
|
|
|
+ appraiseApplyBatchUpdateReset,
|
|
|
+ appraiseApplyApplyReject
|
|
|
} from '@/api/appraisalStatement'
|
|
|
import operation_mixin from '@/components/template/operation_mixin.js'
|
|
|
import { required, requiredValueMin } from '@/components/template/rules_verify.js'
|
|
@@ -698,6 +702,15 @@ export default {
|
|
|
}
|
|
|
})
|
|
|
},
|
|
|
+ bohuidaishenshu() {
|
|
|
+ appraiseApplyApplyReject({
|
|
|
+ id: this.formData.id
|
|
|
+ }).then(res => {
|
|
|
+ this.$message({ type: 'success', message: '成功!' })
|
|
|
+ this.$refs.pageRef.refreshList()
|
|
|
+ this.handleClose()
|
|
|
+ })
|
|
|
+ },
|
|
|
operation() {
|
|
|
return this.operationBtn({
|
|
|
// 详情
|