| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205 |
- <template>
- <el-col :span="16" :offset="6">
- <el-form label-width="100px" ref="formRef" :model="form">
- <!-- <el-form-item label="完成时间:" prop="finishTime">
- <el-date-picker
- v-model="form.finishTime"
- type="date"
- value-format="yyyy-MM-dd"
- ></el-date-picker>
- </el-form-item> -->
- <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"
- @click="handleAudit(1)"
- >通过
- </el-button>
- <!-- <el-button
- icon="el-icon-edit-outline"
- type="warning"
- size="mini"
- @click="edit"
- >修改完成时间
- </el-button> -->
- <el-button
- icon="el-icon-circle-close"
- type="danger"
- size="mini"
- @click="handleAudit(0)"
- v-if="taskDefinitionKey != 'starter'"
- >驳回
- </el-button>
- <!-- <el-dropdown
- @command="(command) => handleCommand(command)"
- style="margin-left: 30px"
- >
- <span class="el-dropdown-link">
- 更多<i class="el-icon-arrow-down el-icon--right"></i>
- </span>
- <el-dropdown-menu slot="dropdown">
- <el-dropdown-item command="cancel">作废</el-dropdown-item>
- </el-dropdown-menu>
- </el-dropdown> -->
- </div>
- <ele-modal
- :visible.sync="visible"
- title="修改完成时间"
- width="20vw"
- append-to-body
- @close="cancel"
- >
- <el-form label-width="100px" ref="formRef1" :model="formData">
- <el-form-item
- label="完成时间:"
- prop="finishTime"
- :rules="{
- required: true,
- message: '请输入',
- trigger: 'change'
- }"
- >
- <el-date-picker
- v-model="formData.finishTime"
- type="date"
- value-format="yyyy-MM-dd"
- style="width: 100%"
- ></el-date-picker>
- </el-form-item>
- <el-form-item
- label="审批建议"
- style="margin-bottom: 20px"
- :rules="{
- required: true,
- message: '请选择',
- trigger: 'change'
- }"
- >
- <el-input
- type="textarea"
- v-model="formData.reason"
- placeholder="请输入审批建议"
- />
- </el-form-item>
- </el-form>
- <template v-slot:footer>
- <el-button @click="visible = false">取消</el-button>
- <el-button type="primary" @click="save"> 确定 </el-button>
- </template>
- </ele-modal>
- </el-col>
- </template>
- <script>
- import { approveTaskWithVariables, rejectTask } from '@/api/bpm/task';
- import dictMixins from '@/mixins/dictMixins';
- import { save } from '@/api/bpm/components/entrust';
- // import {
- // assign,
- // cancel
- // } from '@/api/bpm/components/purchasingManage/purchasePlanManage';
- // 流程实例的详情页,可用于审批
- export default {
- mixins: [dictMixins],
- name: '',
- components: {
- // Parser
- },
- props: {
- businessId: {
- default: ''
- },
- taskId: {
- default: ''
- },
- id: {
- default: ''
- },
- taskDefinitionKey: {
- default: ''
- }
- },
- data() {
- return {
- visible: false,
- form: {
- reason: '同意'
- },
- formData: {
- finishTime: ''
- }
- };
- },
- created() {},
- methods: {
- async edit() {
- this.visible = true;
- this.formData = await this.getTableValue();
- },
- async handleAudit(status) {
- //申请人申请
- if (this.taskDefinitionKey === 'starter') {
- const data = await this.getTableValue();
- // return
- if (data) {
- await save(data);
- }
- }
- await this._approveTaskWithVariables(status);
- },
- async save() {
- await save(this.formData);
- },
- async _approveTaskWithVariables(status) {
- let variables = {
- pass: !!status
- };
- let API = !!status ? approveTaskWithVariables : rejectTask;
- API({
- id: this.taskId,
- reason: this.form.reason,
- variables
- }).then((res) => {
- if (res.data.code != '-1') {
- this.$emit('handleAudit', {
- status,
- title: status === 0 ? '驳回' : ''
- });
- }
- });
- },
- getTableValue() {
- return new Promise((resolve, reject) => {
- this.$emit('getTableValue', async (data) => {
- resolve(await data);
- });
- });
- },
- cancel() {}
- }
- };
- </script>
- <style lang="scss"></style>
|