end.vue 2.69 KB
<template>
  <div class="app-container">

    <taskCard :task="task"  v-for="task in taskList" @sendToParent="showTask"/>

    <pagination :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize" @pagination="getList" />

    <el-dialog :title="title" :visible.sync="open2" width="800px" append-to-body>
      <threestepInfo :businessKey="businessKey"  v-if="open2"/>

      </el-dialog>

  </div>
</template>


<style>
  @import '../../../assets/css/task.css'
</style>

<script>
  import {
    listEndTask,
    formDataShow
  } from "@/api/activiti/taskhistory";

  import taskCard from "@/views/activiti/task/taskCard";
  import earthSitesForm from "@/views/workflow/earthSitesForm";
  import threestepInfo from "@/views/business/threestep/threestepInfo";

  export default {
    name: "taskHistory",
    components: {
      taskCard,
      threestepInfo,
      earthSitesForm
    },
    data() {
      return {
        id: '',
        definitionKey: '',
        businessKey: '',
        // 遮罩层
        loading: true,
        // 选中数组
        ids: [],
        // 非单个禁用
        single: true,
        // 非多个禁用
        multiple: true,
        // 显示搜索条件
        showSearch: true,
        // 总条数
        total: 0,
        // 请假表格数据
        taskList: [],
        // 弹出层标题
        title: "",
        // 是否显示弹出层
        open: false,
        // 查询参数
        queryParams: {
          pageNum: 1,
          pageSize: 10,
        },

        open2:false,
        // 表单参数
        form: {
          formData: []
        },
        needShow:false,
        // 表单校验
        rules: {}
      };
    },
    created() {
      this.getList();
    },
    methods: {
      /** 查询请假列表 */
      getList() {
        this.loading = true;
        listEndTask(this.queryParams).then(response => {
          this.taskList = response.rows;
          this.total = response.total;
          this.loading = false;
        });
      },

      // 取消按钮
      cancel() {
        this.open = false;
        this.reset();
      },
      // 表单重置
      reset() {
        this.definitionKey = '',
          this.businessKey = '',
          this.form = {
            formData: [],
          };
        this.resetForm("form");
      },
      showTask(row) {
        this.needShow = false;
        this.reset();
        this.definitionKey = row.definitionKey;
        this.businessKey = row.businessKey;
        this.id = row.id;

        this.title = "详情";

        if(this.definitionKey == "workflow_threestep"){
          this.open2 = true;
          return;
        }

        this.open = true;
      },
    }
  };
</script>