|
@@ -1,46 +1,22 @@
|
|
|
<template>
|
|
|
<div class="app-container">
|
|
|
- <el-form
|
|
|
- :model="queryParams"
|
|
|
- ref="queryForm"
|
|
|
- :inline="true"
|
|
|
- v-show="showSearch"
|
|
|
- >
|
|
|
+ <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch">
|
|
|
<el-form-item label="活动名称" prop="acname">
|
|
|
- <el-input
|
|
|
- v-model="queryParams.acname"
|
|
|
- placeholder="请输入活动名称"
|
|
|
- ></el-input>
|
|
|
+ <el-input v-model="queryParams.acname" placeholder="请输入活动名称"></el-input>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="审核状态" prop="status">
|
|
|
- <el-select
|
|
|
- v-model="queryParams.status"
|
|
|
- placeholder="请选择审核状态"
|
|
|
- clearable
|
|
|
- filterable
|
|
|
- >
|
|
|
- <el-option
|
|
|
- v-for="dict in statusList"
|
|
|
- :key="dict.value + 'statusList'"
|
|
|
- :label="dict.label"
|
|
|
- :value="dict.value"
|
|
|
- />
|
|
|
+ <el-select v-model="queryParams.status" placeholder="请选择审核状态" clearable filterable>
|
|
|
+ <el-option v-for="dict in statusList" :key="dict.value + 'statusList'" :label="dict.label"
|
|
|
+ :value="dict.value" />
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
<el-form-item>
|
|
|
- <el-button type="primary" icon="el-icon-search" @click="handleQuery"
|
|
|
- >搜索</el-button
|
|
|
- >
|
|
|
- <el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
|
|
|
- >重置</el-button
|
|
|
- >
|
|
|
+ <el-button type="primary" icon="el-icon-search" @click="handleQuery">搜索</el-button>
|
|
|
+ <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
|
|
|
- <el-table
|
|
|
- :data="INSTACTIONTASKList"
|
|
|
- @selection-change="handleSelectionChange"
|
|
|
- >
|
|
|
+ <el-table :data="INSTACTIONTASKList" @selection-change="handleSelectionChange">
|
|
|
<!-- <el-table-column type="selection" width="55" align="center" /> -->
|
|
|
<el-table-column label="活动名称" align="center" prop="acname">
|
|
|
<template slot-scope="scope">
|
|
@@ -65,9 +41,7 @@
|
|
|
<el-table-column label="审核状态" align="center" prop="status">
|
|
|
<template slot-scope="scope">
|
|
|
<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 == '2'" type="danger">驳回</el-tag>
|
|
|
<el-tag v-else-if="scope.row.status == '3'" type="info">退回</el-tag>
|
|
|
<el-tag v-else-if="scope.row.status == '0'">待审核</el-tag>
|
|
|
</template>
|
|
@@ -77,81 +51,29 @@
|
|
|
{{ scope.row.comments }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column
|
|
|
- label="操作"
|
|
|
- align="center"
|
|
|
- class-name="small-padding fixed-width"
|
|
|
- >
|
|
|
+ <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
<template slot-scope="scope">
|
|
|
- <el-button
|
|
|
- v-if="scope.row.status == '0'"
|
|
|
- size="mini" type="text"
|
|
|
- @click="handleExamine(scope.row)"
|
|
|
- v-hasPermi="['business:INSTACTIONTASK:task']"
|
|
|
- >详情</el-button>
|
|
|
+ <el-button v-if="scope.row.status == '0'" size="mini" type="text" @click="handleExamine(scope.row)"
|
|
|
+ v-hasPermi="['business:INSTACTIONTASK:task']">详情</el-button>
|
|
|
|
|
|
- <el-button
|
|
|
- v-if="scope.row.status == '0'"
|
|
|
- size="mini"
|
|
|
- type="text"
|
|
|
- @click="handlePass(scope.row)"
|
|
|
- v-hasPermi="['business:INSTACTIONTASK:task']"
|
|
|
- >通过审核</el-button
|
|
|
- >
|
|
|
- <el-button
|
|
|
- v-if="scope.row.status == '0'"
|
|
|
- size="mini"
|
|
|
- type="text"
|
|
|
- @click="handleReject(scope.row)"
|
|
|
- v-hasPermi="['business:INSTACTIONTASK:task']"
|
|
|
- >驳回</el-button
|
|
|
- >
|
|
|
+ <el-button v-if="scope.row.status == '0'" size="mini" type="text" @click="handlePass(scope.row)"
|
|
|
+ v-hasPermi="['business:INSTACTIONTASK:task']">通过审核</el-button>
|
|
|
+ <el-button v-if="scope.row.status == '0'" size="mini" type="text" @click="handleReject(scope.row)"
|
|
|
+ v-hasPermi="['business:INSTACTIONTASK:task']">驳回</el-button>
|
|
|
|
|
|
- <el-button
|
|
|
- size="mini"
|
|
|
- type="text"
|
|
|
- @click="handleDetail(scope.row)"
|
|
|
- v-hasPermi="['business:INSTACTIONTASK:detail']"
|
|
|
- v-if="scope.row.status != '0'"
|
|
|
- >详情</el-button
|
|
|
- >
|
|
|
+ <el-button size="mini" type="text" @click="handleDetail(scope.row)"
|
|
|
+ v-hasPermi="['business:INSTACTIONTASK:detail']" v-if="scope.row.status != '0'">详情</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
|
|
|
- <el-dialog
|
|
|
- title="审核"
|
|
|
- :visible.sync="dialogVisible"
|
|
|
- width="80%"
|
|
|
- :close-on-click-modal="false"
|
|
|
- @close="closeDia"
|
|
|
- >
|
|
|
- <component
|
|
|
- :is="componentUrl"
|
|
|
- :taskList="taskList"
|
|
|
- ref="componentSH"
|
|
|
- ></component>
|
|
|
- <el-dialog
|
|
|
- width="60%"
|
|
|
- :title="subTitle + '审核'"
|
|
|
- :visible.sync="innerVisible"
|
|
|
- :close-on-click-modal="false"
|
|
|
- append-to-body
|
|
|
- center
|
|
|
- @close="qx()"
|
|
|
- >
|
|
|
- <el-form
|
|
|
- :model="subForm"
|
|
|
- :rules="subFormRules"
|
|
|
- label-width="100px"
|
|
|
- ref="extaskform"
|
|
|
- >
|
|
|
+ <el-dialog title="审核" :visible.sync="dialogVisible" width="80%" :close-on-click-modal="false" @close="closeDia">
|
|
|
+ <component :is="componentUrl" :taskList="taskList" ref="componentSH"></component>
|
|
|
+ <el-dialog width="60%" :title="subTitle + '审核'" :visible.sync="innerVisible" :close-on-click-modal="false"
|
|
|
+ append-to-body center @close="qx()">
|
|
|
+ <el-form :model="subForm" :rules="subFormRules" label-width="100px" ref="extaskform">
|
|
|
<el-form-item label="审核意见">
|
|
|
- <el-input
|
|
|
- type="textarea"
|
|
|
- v-model="subForm.comments"
|
|
|
- placeholder="请输入审核意见"
|
|
|
- ></el-input>
|
|
|
+ <el-input type="textarea" v-model="subForm.comments" placeholder="请输入审核意见"></el-input>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
<div slot="footer" class="dialog-footer">
|
|
@@ -170,13 +92,8 @@
|
|
|
</span>
|
|
|
</el-dialog>
|
|
|
|
|
|
- <pagination
|
|
|
- v-show="total > 0"
|
|
|
- :total="total"
|
|
|
- :page.sync="queryParams.pageNum"
|
|
|
- :limit.sync="queryParams.pageSize"
|
|
|
- @pagination="getList"
|
|
|
- />
|
|
|
+ <pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize"
|
|
|
+ @pagination="getList" />
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
@@ -185,6 +102,7 @@
|
|
|
import newsTask from "@/views/news/task/index.vue";
|
|
|
import couTask from "@/views/COUNSELINGMESSAGE/task/index.vue";
|
|
|
import ModifyCompanyUserService from "@/views/REGISTERTASK/index.vue";
|
|
|
+import CompanyUserService from "@/views/CompanyUserService/index.vue";
|
|
|
import questionService from "@/views/QUESTION/questionService.vue";
|
|
|
import articleTask from "@/views/ARTICLE/task/index.vue";
|
|
|
import dataAcquisition from "@/components/DataAcquisition";
|
|
@@ -211,6 +129,7 @@ export default {
|
|
|
questionService,
|
|
|
articleTask,
|
|
|
dataAcquisition,
|
|
|
+ CompanyUserService,
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
@@ -414,7 +333,7 @@ export default {
|
|
|
handleExamine(row) {
|
|
|
// this.taskList = []
|
|
|
getINSTACTIONTASK(row.id).then((res) => {
|
|
|
- console.log('111111',res);
|
|
|
+ console.log('111111', res);
|
|
|
this.taskList = res.data;
|
|
|
this.componentUrl = res.data.infoUrl;
|
|
|
this.dialogVisible = true;
|
|
@@ -423,7 +342,7 @@ export default {
|
|
|
//点击查看详细
|
|
|
handleDetail(row) {
|
|
|
getINSTACTIONTASK(row.id).then((res) => {
|
|
|
- console.log('666',res);
|
|
|
+ console.log('666', res);
|
|
|
this.taskList = res.data;
|
|
|
this.componentUrl = res.data.infoUrl;
|
|
|
downloadpic(this.taskList.formobj.picture).then((res) => {
|
|
@@ -526,7 +445,7 @@ export default {
|
|
|
this.getList();
|
|
|
this.$modal.msgSuccess("删除成功");
|
|
|
})
|
|
|
- .catch(() => {});
|
|
|
+ .catch(() => { });
|
|
|
},
|
|
|
/** 导出按钮操作 */
|
|
|
handleExport() {
|