index.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636
  1. <template>
  2. <div class="app-container">
  3. <el-form
  4. :model="queryParams"
  5. ref="queryForm"
  6. size="small"
  7. :inline="true"
  8. v-show="showSearch"
  9. label-width="68px"
  10. >
  11. <el-col :span="8">
  12. <el-form-item label="流程名称" prop="proname">
  13. <el-input v-model="queryParams.proname" />
  14. </el-form-item>
  15. </el-col>
  16. <el-form-item>
  17. <el-button
  18. type="primary"
  19. icon="el-icon-search"
  20. size="mini"
  21. @click="handleQuery"
  22. >搜索</el-button
  23. >
  24. <el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
  25. >重置</el-button
  26. >
  27. </el-form-item>
  28. </el-form>
  29. <el-row :gutter="10" class="mb8">
  30. <el-col :span="1.5">
  31. <el-button
  32. type="primary"
  33. plain
  34. icon="el-icon-plus"
  35. size="mini"
  36. @click="handleAdd"
  37. v-hasPermi="['business:PROTEMPLATE:add']"
  38. >新增</el-button
  39. >
  40. </el-col>
  41. <el-col :span="1.5">
  42. <el-button
  43. type="success"
  44. plain
  45. icon="el-icon-edit"
  46. size="mini"
  47. :disabled="single"
  48. @click="handleUpdate"
  49. v-hasPermi="['business:PROTEMPLATE:edit']"
  50. >修改</el-button
  51. >
  52. </el-col>
  53. <el-col :span="1.5">
  54. <el-button
  55. type="danger"
  56. plain
  57. icon="el-icon-delete"
  58. size="mini"
  59. :disabled="multiple"
  60. @click="handleDelete"
  61. v-hasPermi="['business:PROTEMPLATE:remove']"
  62. >删除</el-button
  63. >
  64. </el-col>
  65. <right-toolbar
  66. :showSearch.sync="showSearch"
  67. @queryTable="getList"
  68. ></right-toolbar>
  69. </el-row>
  70. <el-table
  71. v-loading="loading"
  72. :data="PROTEMPLATEList"
  73. @selection-change="handleSelectionChange"
  74. >
  75. <el-table-column type="selection" width="55" align="center" />
  76. <el-table-column label="流程编码" align="center" prop="procode" />
  77. <el-table-column label="流程名称" align="center" prop="proname">
  78. <template slot-scope="scope">
  79. <el-button
  80. size="mini"
  81. type="text"
  82. @click="showProname(scope.row.id)"
  83. v-hasPermi="['business:PROTEMPLATE:remove']"
  84. >{{ scope.row.proname }}</el-button
  85. >
  86. </template>
  87. </el-table-column>
  88. <el-table-column label="版本" align="center" prop="version" />
  89. <el-table-column label="关键字" align="center" prop="keyword" />
  90. <el-table-column label="排序" align="center" prop="seqno" />
  91. <el-table-column label="流程说明" align="center" prop="pronotes" />
  92. <el-table-column label="服务层地址" align="center" prop="serviceUrl" />
  93. <el-table-column label="前端查看页面地址" align="center" prop="infoUrl" />
  94. <el-table-column
  95. label="操作"
  96. align="center"
  97. class-name="small-padding fixed-width"
  98. >
  99. <template slot-scope="scope">
  100. <el-button
  101. size="mini"
  102. type="text"
  103. icon="el-icon-edit"
  104. @click="handleUpdate(scope.row)"
  105. v-hasPermi="['business:PROTEMPLATE:edit']"
  106. >修改</el-button
  107. >
  108. <el-button
  109. size="mini"
  110. type="text"
  111. icon="el-icon-delete"
  112. @click="handleDelete(scope.row)"
  113. v-hasPermi="['business:PROTEMPLATE:remove']"
  114. >删除</el-button
  115. >
  116. </template>
  117. </el-table-column>
  118. </el-table>
  119. <pagination
  120. v-show="total > 0"
  121. :total="total"
  122. :page.sync="queryParams.pageNum"
  123. :limit.sync="queryParams.pageSize"
  124. @pagination="getList"
  125. />
  126. <!-- 添加或修改流程模板对话框 -->
  127. <el-dialog :title="title" :visible.sync="open" width="60%" append-to-body>
  128. <el-form ref="form" :model="form" :rules="rules" label-width="140px">
  129. <el-form-item label="流程编码" prop="procode">
  130. <el-input
  131. v-model="form.procode"
  132. placeholder="请输入流程编码"
  133. type="text"
  134. />
  135. </el-form-item>
  136. <el-form-item label="流程名称" prop="proname">
  137. <el-input
  138. v-model="form.proname"
  139. placeholder="请输入流程名称"
  140. type="text"
  141. />
  142. </el-form-item>
  143. <el-form-item label="关键字" prop="keyword">
  144. <el-input
  145. v-model="form.keyword"
  146. placeholder="请输入关键字"
  147. type="text"
  148. />
  149. </el-form-item>
  150. <el-form-item label="排序" prop="seqno">
  151. <el-input v-model="form.seqno" placeholder="排序" type="number" />
  152. </el-form-item>
  153. <el-form-item label="流程说明" prop="pronotes">
  154. <el-input
  155. v-model="form.pronotes"
  156. placeholder="请输入流程说明"
  157. type="text"
  158. />
  159. </el-form-item>
  160. <el-form-item label="服务层地址" prop="serviceUrl">
  161. <el-input
  162. v-model="form.serviceUrl"
  163. placeholder="请输入服务层地址"
  164. type="text"
  165. />
  166. </el-form-item>
  167. <el-form-item label="前端页面地址" prop="infoUrl">
  168. <el-input
  169. v-model="form.infoUrl"
  170. placeholder="请输入前端页面地址"
  171. type="text"
  172. />
  173. </el-form-item>
  174. </el-form>
  175. <div slot="footer" class="dialog-footer">
  176. <el-button type="primary" @click="submitForm">确 定</el-button>
  177. <el-button @click="cancel">取 消</el-button>
  178. </div>
  179. </el-dialog>
  180. <!-- 列出流程节点对话框 -->
  181. <el-dialog
  182. title="流程节点"
  183. :visible.sync="openProname"
  184. width="90%"
  185. append-to-body
  186. >
  187. <el-row :gutter="10" class="mb8">
  188. <el-col :span="1.5">
  189. <el-button
  190. type="primary"
  191. plain
  192. icon="el-icon-plus"
  193. size="mini"
  194. @click="handleProAdd"
  195. v-hasPermi="['business:PRODEFACTION:add']"
  196. >新增</el-button
  197. >
  198. </el-col>
  199. </el-row>
  200. <el-table :data="pronameform" style="width: 100%">
  201. <el-table-column prop="acname" label="节点名称"></el-table-column>
  202. <el-table-column
  203. prop="approvaltype"
  204. label="活动审批类型"
  205. ></el-table-column>
  206. <el-table-column
  207. prop="dealhours"
  208. label="办理期限 小时"
  209. ></el-table-column>
  210. <el-table-column prop="exelIds" label="审核人">
  211. <template slot-scope="scope">
  212. {{ searchUserName(scope.row.exelIds) }}
  213. </template>
  214. </el-table-column>
  215. <el-table-column prop="parentnr" label="父级活动"></el-table-column>
  216. <el-table-column prop="proId" label="流程模板ID"></el-table-column>
  217. <el-table-column prop="reemail" label="邮件提醒">
  218. <template slot-scope="scope">
  219. <span v-if="scope.row.reemail == 1">提醒</span>
  220. <span v-else-if="scope.row.reemail == 2">不提醒</span>
  221. <span v-else>未知</span>
  222. </template>
  223. </el-table-column>
  224. <el-table-column prop="remessage" label="消息提醒">
  225. <template slot-scope="scope">
  226. <span v-if="scope.row.remessage == 1">提醒</span>
  227. <span v-else-if="scope.row.remessage == 2">不提醒</span>
  228. <span v-else>未知</span>
  229. </template>
  230. </el-table-column>
  231. <el-table-column prop="seqno" label="活动顺序"></el-table-column>
  232. <el-table-column
  233. label="操作"
  234. align="center"
  235. class-name="small-padding fixed-width"
  236. >
  237. <template slot-scope="scope">
  238. <el-button
  239. size="mini"
  240. type="text"
  241. icon="el-icon-edit"
  242. @click="handleProUpdate(scope.row)"
  243. v-hasPermi="['business:PRODEFACTION:edit']"
  244. >修改</el-button
  245. >
  246. <el-popconfirm
  247. title="确定删除吗?"
  248. @confirm="handleProDelete(scope.row)"
  249. v-hasPermi="['business:PRODEFACTION:remove']"
  250. >
  251. <el-button
  252. slot="reference"
  253. size="mini"
  254. type="text"
  255. icon="el-icon-delete"
  256. >删除</el-button
  257. >
  258. </el-popconfirm>
  259. </template>
  260. </el-table-column>
  261. </el-table>
  262. </el-dialog>
  263. <!-- 添加或修改流程节点对话框 -->
  264. <el-dialog
  265. :title="Protitle"
  266. :visible.sync="openProAddOrEdit"
  267. width="60%"
  268. append-to-body
  269. >
  270. <el-form ref="form2" :model="Proform" label-width="140px">
  271. <el-form-item label="节点名称" prop="acname">
  272. <el-input
  273. v-model="Proform.acname"
  274. placeholder="请输入节点名称"
  275. type="text"
  276. />
  277. </el-form-item>
  278. <el-form-item label="活动审批类型" prop="approvaltype">
  279. <el-input
  280. v-model="Proform.approvaltype"
  281. placeholder="请输入活动审批类型"
  282. type="text"
  283. />
  284. </el-form-item>
  285. <el-form-item label="办理期限 小时" prop="dealhours">
  286. <el-input
  287. v-model="Proform.keyword"
  288. placeholder="请输入办理期限 小时"
  289. type="text"
  290. />
  291. </el-form-item>
  292. <el-form-item label="排序" prop="seqno">
  293. <el-input v-model="Proform.seqno" placeholder="排序" type="number" />
  294. </el-form-item>
  295. <el-form-item label="流程说明" prop="pronotes">
  296. <el-input
  297. v-model="Proform.pronotes"
  298. placeholder="请输入流程说明"
  299. type="text"
  300. />
  301. </el-form-item>
  302. <el-form-item label="审核人" prop="exelIds">
  303. <el-select v-model="selectValue" placeholder="请选择">
  304. <el-option
  305. v-for="item in this.user"
  306. :key="item.value + 'exelIds'"
  307. :label="item.label"
  308. :value="item.value"
  309. >
  310. </el-option>
  311. </el-select>
  312. </el-form-item>
  313. <el-form-item label="邮件提醒" prop="reemail">
  314. <el-radio v-model="Proform.reemail" label="1">提醒</el-radio>
  315. <el-radio v-model="Proform.reemail" label="2">不提醒</el-radio>
  316. </el-form-item>
  317. <el-form-item label="消息提醒" prop="remessage">
  318. <el-radio v-model="Proform.remessage" label="1">提醒</el-radio>
  319. <el-radio v-model="Proform.remessage" label="2">不提醒</el-radio>
  320. </el-form-item>
  321. <el-form-item label="活动顺序" prop="seqno">
  322. <el-input
  323. v-model="Proform.seqno"
  324. placeholder="请输入活动顺序"
  325. type="text"
  326. />
  327. </el-form-item>
  328. </el-form>
  329. <div slot="footer" class="dialog-footer">
  330. <el-button type="primary" @click="submitForm2">确 定</el-button>
  331. <el-button @click="cancel">取 消</el-button>
  332. </div>
  333. </el-dialog>
  334. </div>
  335. </template>
  336. <script>
  337. import {
  338. listPROTEMPLATE,
  339. getPROTEMPLATE,
  340. delPROTEMPLATE,
  341. addPROTEMPLATE,
  342. updatePROTEMPLATE,
  343. getProcode,
  344. delPro,
  345. getProInfo,
  346. addPro,
  347. updatePro,
  348. getUser,
  349. } from "@/api/wf/PROTEMPLATE";
  350. export default {
  351. name: "PROTEMPLATE",
  352. data() {
  353. return {
  354. selectValue: "",
  355. //用户列表
  356. user: [],
  357. pronameform: [],
  358. // 根路径
  359. baseURL: process.env.VUE_APP_BASE_API,
  360. // 遮罩层
  361. loading: true,
  362. // 选中数组
  363. ids: [],
  364. // 非单个禁用
  365. single: true,
  366. // 非多个禁用
  367. multiple: true,
  368. // 显示搜索条件
  369. showSearch: true,
  370. // 总条数
  371. total: 0,
  372. // 流程模板表格数据
  373. PROTEMPLATEList: [],
  374. // 弹出层标题
  375. title: "",
  376. Protitle: "",
  377. // 是否显示弹出层
  378. open: false,
  379. openProname: false,
  380. openProAddOrEdit: false,
  381. // 查询参数
  382. queryParams: {
  383. pageNum: 1,
  384. pageSize: 10,
  385. id: null,
  386. createTime: null,
  387. createBy: null,
  388. updateTime: null,
  389. updateBy: null,
  390. delFlag: null,
  391. procode: null,
  392. proname: null,
  393. version: null,
  394. keyword: null,
  395. seqno: null,
  396. pronotes: null,
  397. linkurl: null,
  398. serviceUrl: null,
  399. infoUrl: null,
  400. },
  401. // 表单参数
  402. form: {},
  403. Proform: {},
  404. // 表单校验
  405. rules: {
  406. id: [{ required: true, message: "$comment不能为空", trigger: "blur" }],
  407. delFlag: [
  408. { required: true, message: "删除标识不能为空", trigger: "blur" },
  409. ],
  410. procode: [
  411. { required: true, message: "流程编码不能为空", trigger: "blur" },
  412. ],
  413. proname: [
  414. { required: true, message: "流程名称不能为空", trigger: "blur" },
  415. ],
  416. version: [{ required: true, message: "版本不能为空", trigger: "blur" }],
  417. keyword: [
  418. { required: true, message: "关键字不能为空", trigger: "blur" },
  419. ],
  420. seqno: [{ required: true, message: "排序不能为空", trigger: "blur" }],
  421. pronotes: [
  422. { required: true, message: "流程说明不能为空", trigger: "blur" },
  423. ],
  424. serviceUrl: [
  425. { required: true, message: "服务层地址不能为空", trigger: "blur" },
  426. ],
  427. infoUrl: [
  428. {
  429. required: true,
  430. message: "前端查看页面地址不能为空",
  431. trigger: "blur",
  432. },
  433. ],
  434. },
  435. };
  436. },
  437. created() {
  438. this.getList();
  439. },
  440. methods: {
  441. searchUserName(id) {
  442. let fined = this.user.find((item) => item.value == id);
  443. return fined.label
  444. },
  445. handleProAdd() {
  446. //节点的新增
  447. this.reset();
  448. this.openProAddOrEdit = true;
  449. this.Protitle = "新增节点";
  450. this.Proform.proId = this.PROTEMPLATEID;
  451. },
  452. handleProUpdate(r) {
  453. //节点的修改
  454. this.reset();
  455. this.openProAddOrEdit = true;
  456. getProInfo(r.id).then((res) => {
  457. this.Protitle = "修改节点";
  458. this.Proform = res.data;
  459. this.Proform.proId = this.PROTEMPLATEID;
  460. this.selectValue = Number(this.Proform.exelIds);
  461. });
  462. },
  463. handleProDelete(r) {
  464. delPro(r.id).then((res) => {
  465. this.showProname(r.proId);
  466. });
  467. },
  468. /** 查询流程模板列表 */
  469. getList() {
  470. this.loading = true;
  471. listPROTEMPLATE(this.queryParams).then((response) => {
  472. this.PROTEMPLATEList = response.rows;
  473. this.total = response.total;
  474. this.loading = false;
  475. });
  476. },
  477. //展示节点列表
  478. showProname(id) {
  479. this.openProname = true;
  480. this.PROTEMPLATEID = id;
  481. //获取流程节点列表
  482. getProcode(id).then((res) => {
  483. this.pronameform = res.rows;
  484. });
  485. this.user = []; //获取并清空用户列表
  486. getUser().then((res) => {
  487. for (const i in res.data) {
  488. this.user.push({
  489. value: res.data[i].userId,
  490. label: res.data[i].username,
  491. });
  492. }
  493. });
  494. },
  495. // 取消按钮
  496. cancel() {
  497. this.open = false;
  498. this.openProAddOrEdit = false;
  499. this.reset();
  500. },
  501. // 表单重置
  502. reset() {
  503. this.form = {
  504. id: null,
  505. delFlag: null,
  506. procode: null,
  507. proname: null,
  508. version: null,
  509. keyword: null,
  510. seqno: null,
  511. pronotes: null,
  512. linkurl: null,
  513. serviceUrl: null,
  514. infoUrl: null,
  515. };
  516. this.Proform = {
  517. acname: null,
  518. approvaltype: null,
  519. keyword: null,
  520. seqno: null,
  521. pronotes: null,
  522. exelIds: null,
  523. parentnr: null,
  524. proId: null,
  525. reemail: null,
  526. remessage: null,
  527. seqno: null,
  528. };
  529. this.resetForm("form");
  530. this.resetForm("form2");
  531. this.selectValue = "";
  532. },
  533. /** 搜索按钮操作 */
  534. handleQuery() {
  535. this.queryParams.pageNum = 1;
  536. this.getList();
  537. },
  538. /** 重置按钮操作 */
  539. resetQuery() {
  540. this.resetForm("queryForm");
  541. this.handleQuery();
  542. },
  543. // 多选框选中数据
  544. handleSelectionChange(selection) {
  545. this.ids = selection.map((item) => item.id);
  546. this.single = selection.length !== 1;
  547. this.multiple = !selection.length;
  548. },
  549. /** 新增按钮操作 */
  550. handleAdd() {
  551. this.reset();
  552. this.open = true;
  553. this.title = "添加流程模板";
  554. },
  555. /** 修改按钮操作 */
  556. handleUpdate(row) {
  557. this.reset();
  558. const id = row.id || this.ids;
  559. getPROTEMPLATE(id).then((response) => {
  560. this.form = response.data;
  561. this.open = true;
  562. this.title = "修改流程模板";
  563. });
  564. },
  565. /** 提交按钮 */
  566. submitForm() {
  567. this.$refs["form"].validate((valid) => {
  568. if (valid) {
  569. if (this.form.id != null) {
  570. updatePROTEMPLATE(this.form).then((response) => {
  571. this.$modal.msgSuccess("修改成功");
  572. this.open = false;
  573. this.getList();
  574. });
  575. } else {
  576. addPROTEMPLATE(this.form).then((response) => {
  577. this.$modal.msgSuccess("新增成功");
  578. this.open = false;
  579. this.getList();
  580. });
  581. }
  582. }
  583. });
  584. },
  585. /** 提交按钮 流程节点*/
  586. submitForm2() {
  587. this.$refs["form2"].validate((valid) => {
  588. this.Proform.exelIds = this.selectValue; //审核人
  589. if (valid) {
  590. if (this.Proform.id != null) {
  591. updatePro(this.Proform).then((response) => {
  592. this.$modal.msgSuccess("修改成功");
  593. this.openProAddOrEdit = false;
  594. this.showProname(this.PROTEMPLATEID);
  595. });
  596. } else {
  597. addPro(this.Proform).then((response) => {
  598. this.$modal.msgSuccess("新增成功");
  599. this.openProAddOrEdit = false;
  600. this.open = false;
  601. this.showProname(this.PROTEMPLATEID);
  602. });
  603. }
  604. }
  605. });
  606. },
  607. /** 删除按钮操作 */
  608. handleDelete(row) {
  609. const ids = row.id || this.ids;
  610. this.$modal
  611. .confirm('是否确认删除已选择的流程模板?')
  612. .then(function () {
  613. return delPROTEMPLATE(ids);
  614. })
  615. .then(() => {
  616. this.getList();
  617. this.$modal.msgSuccess("删除成功");
  618. })
  619. .catch(() => {});
  620. },
  621. },
  622. };
  623. </script>