|
@@ -8,6 +8,12 @@
|
|
|
v-show="showSearch"
|
|
|
label-width="68px"
|
|
|
>
|
|
|
+ <el-form-item label="活动名称" prop="acname">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.acname"
|
|
|
+ placeholder="请输入活动名称"
|
|
|
+ ></el-input>
|
|
|
+ </el-form-item>
|
|
|
<el-form-item label="审核状态" prop="status">
|
|
|
<el-select
|
|
|
v-model="queryParams.status"
|
|
@@ -36,141 +42,36 @@
|
|
|
>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
- <!--
|
|
|
- <el-row :gutter="10" class="mb8">
|
|
|
- <el-col :span="1.5">
|
|
|
- <el-button
|
|
|
- type="warning"
|
|
|
- plain
|
|
|
- icon="el-icon-download"
|
|
|
- size="mini"
|
|
|
- @click="handleExport"
|
|
|
- v-hasPermi="['business:INSTACTIONTASK:export']"
|
|
|
- >导出</el-button>
|
|
|
- </el-col>
|
|
|
- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
- </el-row> -->
|
|
|
|
|
|
- <!-- <el-table
|
|
|
+ <el-table
|
|
|
v-loading="loading"
|
|
|
:data="INSTACTIONTASKList"
|
|
|
@selection-change="handleSelectionChange"
|
|
|
>
|
|
|
- <el-table-column type="selection" width="55" align="center" />
|
|
|
- <el-table-column label="${comment}" align="center" prop="id">
|
|
|
- <template slot-scope="scope">
|
|
|
- <dict-tag
|
|
|
- :options="dict.type.${column.dictType}"
|
|
|
- :value="scope.row.id"
|
|
|
- />
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column label="创建时间" align="center" prop="createTime">
|
|
|
- <template slot-scope="scope">
|
|
|
- <dict-tag
|
|
|
- :options="dict.type.${column.dictType}"
|
|
|
- :value="scope.row.createTime"
|
|
|
- />
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column label="创建人" align="center" prop="createBy">
|
|
|
- <template slot-scope="scope">
|
|
|
- <dict-tag
|
|
|
- :options="dict.type.${column.dictType}"
|
|
|
- :value="scope.row.createBy"
|
|
|
- />
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column label="修改时间" align="center" prop="updateTime">
|
|
|
- <template slot-scope="scope">
|
|
|
- <dict-tag
|
|
|
- :options="dict.type.${column.dictType}"
|
|
|
- :value="scope.row.updateTime"
|
|
|
- />
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column label="修改人" align="center" prop="updateBy">
|
|
|
- <template slot-scope="scope">
|
|
|
- <dict-tag
|
|
|
- :options="dict.type.${column.dictType}"
|
|
|
- :value="scope.row.updateBy"
|
|
|
- />
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column label="删除标识" align="center" prop="delFlag">
|
|
|
- <template slot-scope="scope">
|
|
|
- <dict-tag
|
|
|
- :options="dict.type.${column.dictType}"
|
|
|
- :value="scope.row.delFlag"
|
|
|
- />
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column label="活动实例任务ID" align="center" prop="instAcId">
|
|
|
- <template slot-scope="scope">
|
|
|
- <dict-tag
|
|
|
- :options="dict.type.${column.dictType}"
|
|
|
- :value="scope.row.instAcId"
|
|
|
- />
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column label="活动实例id" align="center" prop="instProId">
|
|
|
- <template slot-scope="scope">
|
|
|
- <dict-tag
|
|
|
- :options="dict.type.${column.dictType}"
|
|
|
- :value="scope.row.instProId"
|
|
|
- />
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
+ <!-- <el-table-column type="selection" width="55" align="center" /> -->
|
|
|
<el-table-column label="活动名称" align="center" prop="acname">
|
|
|
<template slot-scope="scope">
|
|
|
- <dict-tag
|
|
|
- :options="dict.type.${column.dictType}"
|
|
|
- :value="scope.row.acname"
|
|
|
- />
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column label="审核人" align="center" prop="execId">
|
|
|
- <template slot-scope="scope">
|
|
|
- <dict-tag
|
|
|
- :options="dict.type.${column.dictType}"
|
|
|
- :value="scope.row.execId"
|
|
|
- />
|
|
|
+ {{ scope.row.acname }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="任务启动时间" align="center" prop="beginTime">
|
|
|
<template slot-scope="scope">
|
|
|
- <dict-tag
|
|
|
- :options="dict.type.${column.dictType}"
|
|
|
- :value="scope.row.beginTime"
|
|
|
- />
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column label="任务结束时间" align="center" prop="endTime">
|
|
|
- <template slot-scope="scope">
|
|
|
- <dict-tag
|
|
|
- :options="dict.type.${column.dictType}"
|
|
|
- :value="scope.row.endTime"
|
|
|
- />
|
|
|
+ {{ scope.row.beginTime ? scope.row.beginTime.substr(0, 10) : "无" }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column
|
|
|
- label="审核状态(1=同意,2=驳回)"
|
|
|
- align="center"
|
|
|
- prop="status"
|
|
|
- >
|
|
|
+ <el-table-column label="审核状态" align="center" prop="status">
|
|
|
<template slot-scope="scope">
|
|
|
- <dict-tag
|
|
|
- :options="dict.type.${column.dictType}"
|
|
|
- :value="scope.row.status"
|
|
|
- />
|
|
|
+ <el-tag v-if="scope.row.status == '1'" type="success">同意</el-tag>
|
|
|
+ <el-tag v-else-if="scope.row.status == '2'" type="danger"
|
|
|
+ >驳回</el-tag
|
|
|
+ >
|
|
|
+ <el-tag v-else-if="scope.row.status == '3'" type="info">退回</el-tag>
|
|
|
+ <el-tag v-else>审核中</el-tag>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="审核意见" align="center" prop="comments">
|
|
|
<template slot-scope="scope">
|
|
|
- <dict-tag
|
|
|
- :options="dict.type.${column.dictType}"
|
|
|
- :value="scope.row.comments"
|
|
|
- />
|
|
|
+ {{ scope.row.comments }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
@@ -180,24 +81,62 @@
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
|
<el-button
|
|
|
+ v-if="scope.row.status == null"
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
- icon="el-icon-edit"
|
|
|
- @click="handleUpdate(scope.row)"
|
|
|
- v-hasPermi="['business:INSTACTIONTASK:edit']"
|
|
|
- >修改</el-button
|
|
|
+ @click="handleExamine(scope.row)"
|
|
|
+ v-hasPermi="['business:INSTACTIONTASK:task']"
|
|
|
+ >审核</el-button
|
|
|
>
|
|
|
+
|
|
|
<el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
- icon="el-icon-delete"
|
|
|
- @click="handleDelete(scope.row)"
|
|
|
- v-hasPermi="['business:INSTACTIONTASK:remove']"
|
|
|
- >删除</el-button
|
|
|
+ @click="handleDetail(scope.row)"
|
|
|
+ v-hasPermi="['business:INSTACTIONTASK:detail']"
|
|
|
+ >详情</el-button
|
|
|
>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- </el-table> -->
|
|
|
+ </el-table>
|
|
|
+
|
|
|
+ <el-dialog :visible.sync="dialogVisible" width="80%" center>
|
|
|
+ <component :is="componentUrl" :taskList="taskList"></component>
|
|
|
+
|
|
|
+ <el-dialog
|
|
|
+ width="60%"
|
|
|
+ :title="subTitle + '审核'"
|
|
|
+ :visible.sync="innerVisible"
|
|
|
+ append-to-body
|
|
|
+ center
|
|
|
+ @close="qx()"
|
|
|
+ >
|
|
|
+ <el-form
|
|
|
+ :model="subForm"
|
|
|
+ :rules="subFormRules"
|
|
|
+ label-width="100px"
|
|
|
+ ref="extaskform"
|
|
|
+ >
|
|
|
+ <el-form-item label="审核意见" prop="comments">
|
|
|
+ <el-input
|
|
|
+ type="textarea"
|
|
|
+ v-model="subForm.comments"
|
|
|
+ placeholder="请输入审核意见"
|
|
|
+ ></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ <div slot="footer" class="dialog-footer">
|
|
|
+ <el-button @click="qx">取 消</el-button>
|
|
|
+ <el-button type="primary" @click="extask">确 定</el-button>
|
|
|
+ </div>
|
|
|
+ </el-dialog>
|
|
|
+
|
|
|
+ <span slot="footer" class="dialog-footer">
|
|
|
+ <el-button type="primary" @click="submitBtn('同意')">同意</el-button>
|
|
|
+ <el-button type="warning" @click="submitBtn('驳回')">驳回</el-button>
|
|
|
+ <el-button type="danger" @click="submitBtn('退回')">退回</el-button>
|
|
|
+ </span>
|
|
|
+ </el-dialog>
|
|
|
|
|
|
<pagination
|
|
|
v-show="total > 0"
|
|
@@ -206,23 +145,40 @@
|
|
|
:limit.sync="queryParams.pageSize"
|
|
|
@pagination="getList"
|
|
|
/>
|
|
|
-
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
+//导入审核页面的组件
|
|
|
+import newsTask from "@/views/news/task/index.vue";
|
|
|
+
|
|
|
import {
|
|
|
listINSTACTIONTASK,
|
|
|
getINSTACTIONTASK,
|
|
|
delINSTACTIONTASK,
|
|
|
addINSTACTIONTASK,
|
|
|
updateINSTACTIONTASK,
|
|
|
+ approve, //通过
|
|
|
+ reject, //驳回
|
|
|
+ goback, //退回
|
|
|
} from "@/api/portal/task/task";
|
|
|
|
|
|
export default {
|
|
|
name: "INSTACTIONTASK",
|
|
|
data() {
|
|
|
return {
|
|
|
+ //审核意见对话框的form
|
|
|
+ subForm: {},
|
|
|
+ //控制显示审核意见对话框
|
|
|
+ innerVisible: false,
|
|
|
+ //点击审核那三个按钮会触发submitBtn函数然后设置这个title
|
|
|
+ subTitle: "",
|
|
|
+ //审核页面的
|
|
|
+ taskList: [],
|
|
|
+ //动态组件
|
|
|
+ componentUrl: newsTask,
|
|
|
+ //审核的dialog
|
|
|
+ dialogVisible: false,
|
|
|
// 根路径
|
|
|
baseURL: process.env.VUE_APP_BASE_API,
|
|
|
// 遮罩层
|
|
@@ -264,6 +220,11 @@ export default {
|
|
|
},
|
|
|
// 表单参数
|
|
|
form: {},
|
|
|
+ subFormRules: {
|
|
|
+ comments: [
|
|
|
+ { required: true, message: "意见不能为空", trigger: "blur" },
|
|
|
+ ],
|
|
|
+ },
|
|
|
// 表单校验
|
|
|
rules: {
|
|
|
id: [{ required: true, message: "$comment不能为空", trigger: "blur" }],
|
|
@@ -314,6 +275,59 @@ export default {
|
|
|
this.getList();
|
|
|
},
|
|
|
methods: {
|
|
|
+ extask() {
|
|
|
+ this.$refs["extaskform"].validate((valid) => {
|
|
|
+ if (valid) {
|
|
|
+ let data = {
|
|
|
+ comments: this.subForm.comments,
|
|
|
+ taskId: this.taskList.id,
|
|
|
+ };
|
|
|
+ if (this.subTitle == "同意") {
|
|
|
+ approve(data).then((res) => {
|
|
|
+ this.dialogVisible = false;
|
|
|
+ this.qx();
|
|
|
+ this.getList();
|
|
|
+ });
|
|
|
+ } else if (this.subTitle == "驳回") {
|
|
|
+ reject(data).then((res) => {
|
|
|
+ this.dialogVisible = false;
|
|
|
+ this.qx();
|
|
|
+ this.getList();
|
|
|
+ });
|
|
|
+ } else if (this.subTitle == "退回") {
|
|
|
+ goback(data).then((res) => {
|
|
|
+ this.dialogVisible = false;
|
|
|
+ this.qx();
|
|
|
+ this.getList();
|
|
|
+ });
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ qx() {
|
|
|
+ //审批意见的取消
|
|
|
+ this.subForm = {};
|
|
|
+ this.innerVisible = false;
|
|
|
+ // this.dialogFormVisible = false;
|
|
|
+ },
|
|
|
+ submitBtn(type) {
|
|
|
+ this.subTitle = type;
|
|
|
+ this.innerVisible = true;
|
|
|
+ },
|
|
|
+ //点击审核
|
|
|
+ handleExamine(row) {
|
|
|
+ getINSTACTIONTASK(row.id).then((res) => {
|
|
|
+ this.taskList = res.data;
|
|
|
+ this.dialogVisible = true;
|
|
|
+ });
|
|
|
+ },
|
|
|
+ //点击查看详细
|
|
|
+ handleDetail(row) {
|
|
|
+ getINSTACTIONTASK(row.id).then((res) => {
|
|
|
+ this.dialogVisible = true;
|
|
|
+ console.log(res);
|
|
|
+ });
|
|
|
+ },
|
|
|
/** 查询审批任务实例列表 */
|
|
|
getList() {
|
|
|
this.loading = true;
|