index.vue 20 KB

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