index.vue 14 KB

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