| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- <template>
- <el-col :span="16" :offset="6">
- <el-form label-width="100px" ref="formRef" :model="form">
- <el-form-item
- label="审批建议"
- style="margin-bottom: 20px"
- :rules="{
- required: true,
- message: '请选择',
- trigger: 'change'
- }"
- >
- <el-input
- type="textarea"
- v-model="form.reason"
- placeholder="请输入审批建议"
- />
- </el-form-item>
- </el-form>
- <div style="margin-left: 10%; margin-bottom: 20px; font-size: 14px">
- <el-button
- icon="el-icon-edit-outline"
- type="success"
- size="mini"
- :loading="isLoading"
- @click="handleAudit(1)"
- >通过
- </el-button>
- <el-button
- icon="el-icon-circle-close"
- type="danger"
- size="mini"
- :loading="isLoading"
- @click="handleAudit(0)"
- >驳回
- </el-button>
- </div>
- </el-col>
- </template>
- <script>
- import {
- approveTaskWithVariables,
- outinApproveNotPass
- } from '@/api/bpm/task';
- export default {
- data() {
- return {
- form: {},
- isLoading: false
- };
- },
- props: {
- businessId: {
- default: ''
- },
- taskId: {
- default: ''
- },
- id: {
- default: ''
- },
- taskDefinitionKey: {
- default: ''
- }
- },
- methods: {
- handleAudit(status) {
- if (!this.form.reason && status == 1) {
- this.$message.warning(`请填写审批意见!`);
- return;
- }
- this._approveTaskWithVariables(status);
- },
- async _approveTaskWithVariables(status) {
- console.log(status);
- if (status == 1) {
- const params = {
- id: this.taskId,
- reason: this.form.reason,
- variables: { pass: true }
- };
- // await this.$parent.$parent.$parent.$refs.bziRef.handleSave();
- try {
- this.isLoading = true;
- const data = await approveTaskWithVariables(params);
- if (data.data.code != '-1') {
- this.$emit('handleAudit', {
- status,
- title: '通过'
- });
- this.isLoading = false;
- }
- } catch (error) {
- this.isLoading = false;
- }
- } else {
- const params = {
- id: this.taskId,
- reason: this.form.reason,
- outInId: this.businessId
- };
- try {
- this.isLoading = true;
- const data = await outinApproveNotPass(params);
- if (data.data.code != '-1') {
- this.$emit('handleAudit', {
- status,
- title: '驳回'
- });
- }
- this.isLoading = false;
- } catch (error) {
- this.isLoading = false;
- }
- }
- }
- }
- };
- </script>
|