index.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466
  1. <template>
  2. <div class="app-container">
  3. <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch">
  4. <el-form-item label="活动名称" prop="acname">
  5. <el-input v-model="queryParams.acname" placeholder="请输入活动名称"></el-input>
  6. </el-form-item>
  7. <el-form-item label="审核状态" prop="status">
  8. <el-select v-model="queryParams.status" placeholder="请选择审核状态" clearable filterable>
  9. <el-option v-for="dict in statusList" :key="dict.value + 'statusList'" :label="dict.label"
  10. :value="dict.value" />
  11. </el-select>
  12. </el-form-item>
  13. <el-form-item>
  14. <el-button type="primary" icon="el-icon-search" @click="handleQuery">搜索</el-button>
  15. <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
  16. </el-form-item>
  17. </el-form>
  18. <el-table v-hasPermi="['business:INSTACTIONTASK:byUser']" :data="INSTACTIONTASKList" @selection-change="handleSelectionChange">
  19. <!-- <el-table-column type="selection" width="55" align="center" /> -->
  20. <el-table-column label="活动名称" width="180" show-overflow-tooltip align="center" prop="acname">
  21. <template slot-scope="scope">
  22. {{ scope.row.acname }}
  23. </template>
  24. </el-table-column>
  25. <el-table-column label="标题" width="220" show-overflow-tooltip align="center" prop="fromKeyword ">
  26. <template slot-scope="scope">
  27. {{ scope.row.fromKeyword }}
  28. </template>
  29. </el-table-column>
  30. <el-table-column label="流程名称" width="180" show-overflow-tooltip align="center" prop="proname">
  31. <template slot-scope="scope">
  32. {{ scope.row.proname }}
  33. </template>
  34. </el-table-column>
  35. <el-table-column label="递交时间" width="160" show-overflow-tooltip align="center" prop="beginTime">
  36. <template slot-scope="scope">
  37. {{ scope.row.beginTime }}
  38. </template>
  39. </el-table-column>
  40. <el-table-column label="审核状态" align="center" prop="status">
  41. <template slot-scope="scope">
  42. <el-tag v-if="scope.row.status == '1'" type="success">审核通过</el-tag>
  43. <el-tag v-else-if="scope.row.status == '2'" type="danger">驳回</el-tag>
  44. <el-tag v-else-if="scope.row.status == '3'" type="info">退回</el-tag>
  45. <el-tag v-else-if="scope.row.status == '0'">待审核</el-tag>
  46. </template>
  47. </el-table-column>
  48. <el-table-column label="审核意见" width="260" show-overflow-tooltip align="center" prop="comments">
  49. <template slot-scope="scope">
  50. {{ scope.row.comments }}
  51. </template>
  52. </el-table-column>
  53. <el-table-column label="操作" width="80" align="center" class-name="small-padding fixed-width">
  54. <template slot-scope="scope">
  55. <el-button v-if="scope.row.status == '0' && checkPermi(['business:INSTACTIONTASK:query'])" size="mini" type="text" @click="handleExamine(scope.row)"
  56. >审核</el-button>
  57. <!-- <el-button v-if="scope.row.status == '0'" size="mini" type="text" @click="handlePass(scope.row)"
  58. >通过审核</el-button>
  59. <el-button v-if="scope.row.status == '0'" size="mini" type="text" @click="handleReject(scope.row)"
  60. >驳回</el-button> -->
  61. <el-button size="mini" type="text" @click="handleDetail(scope.row)"
  62. v-if="scope.row.status != '0'">审核</el-button>
  63. </template>
  64. </el-table-column>
  65. </el-table>
  66. <el-dialog title="审核" :visible.sync="dialogVisible" width="80%" :close-on-click-modal="false" @close="closeDia">
  67. <component :is="componentUrl" :taskList="taskList" ref="componentSH"></component>
  68. <el-dialog width="60%" :title="subTitle + '审核'" :visible.sync="innerVisible" :close-on-click-modal="false"
  69. append-to-body center @close="qx()">
  70. <el-form :model="subForm" :rules="subFormRules" label-width="100px" ref="extaskform">
  71. <el-form-item label="审核意见">
  72. <el-input type="textarea" v-model="subForm.comments" placeholder="请输入审核意见"></el-input>
  73. </el-form-item>
  74. </el-form>
  75. <div slot="footer" class="dialog-footer">
  76. <el-button @click="qx">取 消</el-button>
  77. <el-button type="primary" @click="extask">确 定</el-button>
  78. </div>
  79. </el-dialog>
  80. <span slot="footer" class="dialog-footer" v-if="taskList.status == 0">
  81. <el-button v-if="checkPermi(['task:instaction:approve'])" type="primary" @click="submitBtn('审核通过')">审核通过</el-button>
  82. <el-button v-if="checkPermi(['task:instaction:reject'])" type="warning" @click="submitBtn('驳回')">驳回</el-button>
  83. <!-- <el-button v-if="checkPermi(['task:instaction:goback'])" type="danger" @click="submitBtn('退回')">退回</el-button> -->
  84. </span>
  85. <span slot="footer" class="dialog-footer" v-else>
  86. <el-button type="primary" @click="backDia">返回</el-button>
  87. </span>
  88. </el-dialog>
  89. <pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize"
  90. @pagination="getList" />
  91. </div>
  92. </template>
  93. <script>
  94. //导入审核页面的组件
  95. import newsTask from "@/views/news/task/index.vue";
  96. import couTask from "@/views/COUNSELINGMESSAGE/task/index.vue";
  97. import ModifyCompanyUserService from "@/views/REGISTERTASK/index.vue";
  98. import CompanyUserService from "@/views/CompanyUserService/index.vue";
  99. import questionService from "@/views/QUESTION/questionService.vue";
  100. import articleTask from "@/views/ARTICLE/task/index.vue";
  101. import dataAcquisition from "@/components/DataAcquisition";
  102. import auxiliaryAudit from "@/components/AuxiliaryAudit";
  103. import { checkPermi } from "@/utils/permission.js";
  104. import {
  105. listINSTACTIONTASK,
  106. getINSTACTIONTASK,
  107. delINSTACTIONTASK,
  108. addINSTACTIONTASK,
  109. updateINSTACTIONTASK,
  110. approve, //通过
  111. reject, //驳回
  112. goback, //退回
  113. downloadpic,
  114. } from "@/api/portal/task/task";
  115. export default {
  116. name: "INSTACTIONTASK",
  117. components: {
  118. newsTask,
  119. couTask,
  120. ModifyCompanyUserService,
  121. questionService,
  122. articleTask,
  123. dataAcquisition,
  124. CompanyUserService,
  125. auxiliaryAudit,
  126. },
  127. data() {
  128. return {
  129. //审核意见对话框的form
  130. subForm: {},
  131. //控制显示审核意见对话框
  132. innerVisible: false,
  133. //点击审核那三个按钮会触发submitBtn函数然后设置这个title
  134. subTitle: "",
  135. //审核页面的
  136. taskList: {
  137. formobj: {
  138. picture: "",
  139. },
  140. },
  141. //动态组件
  142. componentUrl: "",
  143. //审核的dialog
  144. dialogVisible: false,
  145. // 根路径
  146. baseURL: process.env.VUE_APP_BASE_API,
  147. // 遮罩层
  148. loading: true,
  149. // 选中数组
  150. ids: [],
  151. // 非单个禁用
  152. single: true,
  153. // 非多个禁用
  154. multiple: true,
  155. // 显示搜索条件
  156. showSearch: true,
  157. // 总条数
  158. total: 0,
  159. // 审批任务实例表格数据
  160. INSTACTIONTASKList: [],
  161. // 弹出层标题
  162. title: "",
  163. // 是否显示弹出层
  164. open: false,
  165. // 查询参数
  166. queryParams: {
  167. pageNum: 1,
  168. pageSize: 10,
  169. id: null,
  170. createTime: null,
  171. createBy: null,
  172. updateTime: null,
  173. updateBy: null,
  174. delFlag: null,
  175. instAcId: null,
  176. instProId: null,
  177. acname: null,
  178. execId: null,
  179. beginTime: null,
  180. endTime: null,
  181. status: "0",
  182. comments: null,
  183. },
  184. // 表单参数
  185. form: {},
  186. subFormRules: {
  187. comments: [
  188. { required: true, message: "意见不能为空", trigger: "blur" },
  189. ],
  190. },
  191. // 表单校验
  192. rules: {
  193. id: [{ required: true, message: "$comment不能为空", trigger: "blur" }],
  194. delFlag: [
  195. { required: true, message: "删除标识不能为空", trigger: "blur" },
  196. ],
  197. instAcId: [
  198. {
  199. required: true,
  200. message: "活动实例任务ID不能为空",
  201. trigger: "blur",
  202. },
  203. ],
  204. instProId: [
  205. { required: true, message: "活动实例id不能为空", trigger: "blur" },
  206. ],
  207. acname: [
  208. { required: true, message: "活动名称不能为空", trigger: "blur" },
  209. ],
  210. execId: [
  211. { required: true, message: "审核人不能为空", trigger: "blur" },
  212. ],
  213. beginTime: [
  214. { required: true, message: "任务启动时间不能为空", trigger: "blur" },
  215. ],
  216. endTime: [
  217. { required: true, message: "任务结束时间不能为空", trigger: "blur" },
  218. ],
  219. status: [
  220. {
  221. required: true,
  222. message: "审核状态(1=审核通过,2=驳回)不能为空",
  223. trigger: "blur",
  224. },
  225. ],
  226. comments: [
  227. { required: true, message: "审核意见不能为空", trigger: "blur" },
  228. ],
  229. },
  230. statusList: [
  231. { value: null, label: "全部" },
  232. { value: "0", label: "待审核" },
  233. { value: "1", label: "审核通过" },
  234. { value: "2", label: "驳回" },
  235. { value: "3", label: "退回" },
  236. ],
  237. };
  238. },
  239. created() {
  240. this.getList();
  241. },
  242. methods: {
  243. checkPermi,
  244. closeDia() {
  245. },
  246. extask() {
  247. this.$refs["extaskform"].validate((valid) => {
  248. if (valid) {
  249. let data = {
  250. comments: this.subForm.comments,
  251. taskId: this.taskList.id,
  252. };
  253. if (this.subTitle == "审核通过") {
  254. approve(data).then((res) => {
  255. this.dialogVisible = false;
  256. this.qx();
  257. this.getList();
  258. });
  259. } else if (this.subTitle == "驳回") {
  260. reject(data).then((res) => {
  261. this.dialogVisible = false;
  262. this.qx();
  263. this.getList();
  264. });
  265. } else if (this.subTitle == "退回") {
  266. goback(data).then((res) => {
  267. this.dialogVisible = false;
  268. this.qx();
  269. this.getList();
  270. });
  271. }
  272. }
  273. });
  274. },
  275. backDia() {
  276. this.dialogVisible = false;
  277. },
  278. qx() {
  279. //审批意见的取消
  280. this.subForm = {};
  281. this.innerVisible = false;
  282. // this.dialogFormVisible = false;
  283. },
  284. //点击审核那三个按钮会触发submitBtn函数然后设置这个title
  285. submitBtn(type) {
  286. this.subTitle = type;
  287. this.innerVisible = true;
  288. },
  289. // //点击审核
  290. // handleExamine(row) {
  291. // // this.taskList = []
  292. // getINSTACTIONTASK(row.id).then((res) => {
  293. // this.taskList = res.data;
  294. // this.componentUrl = res.data.infoUrl;
  295. // downloadpic(res.data.formobj.picture).then((res) => {
  296. // this.taskList.formobj.picture = window.URL.createObjectURL(res);
  297. // this.dialogVisible = true;
  298. // });
  299. // });
  300. // },
  301. handleReject(data) {
  302. reject({
  303. taskId: data.id,
  304. }).then((res) => {
  305. if (res.code == 200) {
  306. this.$message.success("驳回成功")
  307. this.getList();
  308. }
  309. });
  310. },
  311. handlePass(data) {
  312. approve({
  313. taskId: data.id,
  314. }).then((res) => {
  315. if (res.code == 200) {
  316. this.$message.success("审核通过")
  317. this.getList();
  318. }
  319. });
  320. },
  321. //点击详情
  322. handleExamine(row) {
  323. // this.taskList = []
  324. getINSTACTIONTASK(row.id).then((res) => {
  325. this.taskList = res.data;
  326. this.componentUrl = res.data.infoUrl;
  327. this.dialogVisible = true;
  328. });
  329. },
  330. //点击查看详细
  331. handleDetail(row) {
  332. getINSTACTIONTASK(row.id).then((res) => {
  333. this.taskList = res.data;
  334. this.componentUrl = res.data.infoUrl;
  335. downloadpic(this.taskList.formobj.picture).then((res) => {
  336. this.taskList.formobj.picture = window.URL.createObjectURL(res);
  337. this.dialogVisible = true;
  338. });
  339. });
  340. },
  341. /** 查询审批任务实例列表 */
  342. getList() {
  343. this.loading = true;
  344. listINSTACTIONTASK(this.queryParams).then((response) => {
  345. this.INSTACTIONTASKList = response.rows;
  346. this.total = response.total;
  347. this.loading = false;
  348. });
  349. },
  350. // 取消按钮
  351. cancel() {
  352. this.open = false;
  353. this.reset();
  354. },
  355. // 表单重置
  356. reset() {
  357. this.form = {
  358. id: null,
  359. delFlag: null,
  360. instAcId: null,
  361. instProId: null,
  362. acname: null,
  363. execId: null,
  364. beginTime: null,
  365. endTime: null,
  366. status: "0",
  367. comments: null,
  368. };
  369. this.resetForm("form");
  370. },
  371. /** 搜索按钮操作 */
  372. handleQuery() {
  373. this.queryParams.pageNum = 1;
  374. this.getList();
  375. },
  376. /** 重置按钮操作 */
  377. resetQuery() {
  378. this.resetForm("queryForm");
  379. this.handleQuery();
  380. },
  381. // 多选框选中数据
  382. handleSelectionChange(selection) {
  383. this.ids = selection.map((item) => item.id);
  384. this.single = selection.length !== 1;
  385. this.multiple = !selection.length;
  386. },
  387. /** 新增按钮操作 */
  388. handleAdd() {
  389. this.reset();
  390. this.open = true;
  391. this.title = "添加审批任务实例";
  392. },
  393. /** 修改按钮操作 */
  394. handleUpdate(row) {
  395. this.reset();
  396. const id = row.id || this.ids;
  397. getINSTACTIONTASK(id).then((response) => {
  398. this.form = response.data;
  399. this.open = true;
  400. this.title = "修改审批任务实例";
  401. });
  402. },
  403. /** 提交按钮 */
  404. submitForm() {
  405. this.$refs["form"].validate((valid) => {
  406. if (valid) {
  407. if (this.form.id != null) {
  408. updateINSTACTIONTASK(this.form).then((response) => {
  409. this.$modal.msgSuccess("修改成功");
  410. this.open = false;
  411. this.getList();
  412. });
  413. } else {
  414. addINSTACTIONTASK(this.form).then((response) => {
  415. this.$modal.msgSuccess("新增成功");
  416. this.open = false;
  417. this.getList();
  418. });
  419. }
  420. }
  421. });
  422. },
  423. /** 删除按钮操作 */
  424. handleDelete(row) {
  425. const ids = row.id || this.ids;
  426. this.$modal
  427. .confirm('是否确认删除审批任务实例编号为"' + ids + '"的数据项?')
  428. .then(function () {
  429. return delINSTACTIONTASK(ids);
  430. })
  431. .then(() => {
  432. this.getList();
  433. this.$modal.msgSuccess("删除成功");
  434. })
  435. .catch(() => { });
  436. },
  437. /** 导出按钮操作 */
  438. handleExport() {
  439. this.download(
  440. "business/INSTACTIONTASK/export",
  441. {
  442. ...this.queryParams,
  443. },
  444. `INSTACTIONTASK_${new Date().getTime()}.xlsx`
  445. );
  446. },
  447. },
  448. };
  449. </script>