processMange.vue 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699
  1. <template>
  2. <div class="process-mange-wrap">
  3. <!-- <el-card shadow="always" :body-style="{ padding: '20px' }"> -->
  4. <el-row>
  5. <el-col :xs="24" :md="8" :xl="8" class="col" v-show="false">
  6. <div class="statistic-wrap">
  7. <div class="discription">
  8. <span class="title">我的处理</span>
  9. <span class="sub-title">需要我处理的管道</span>
  10. </div>
  11. <span class="data">{{ tableData.length }}</span>
  12. </div>
  13. </el-col>
  14. <el-col :xs="24" :md="8" :xl="8" class="col">
  15. <div class="statistic-wrap">
  16. <div class="discription">
  17. <span class="title">其它处理</span>
  18. <span class="sub-title">需要其他人处理的管道</span>
  19. </div>
  20. <span class="data">0</span>
  21. </div>
  22. </el-col>
  23. <el-col :xs="24" :md="8" :xl="8" class="col">
  24. <div class="statistic-wrap">
  25. <div class="discription">
  26. <span class="title">完成</span>
  27. <span class="sub-title">已经完成的管道</span>
  28. </div>
  29. <span class="data">0</span>
  30. </div>
  31. </el-col>
  32. </el-row>
  33. <!-- </el-card> -->
  34. <div class="main-area">
  35. <div class="show-header">
  36. <h3 class="header">管道列表</h3>
  37. <div class="search-list">
  38. <div class="search-tab">
  39. <el-radio-group v-model="taskType">
  40. <el-radio-button :label="1">我的处理</el-radio-button>
  41. <el-radio-button :label="2">其他处理</el-radio-button>
  42. </el-radio-group>
  43. <el-radio-group
  44. class="btn-list-two"
  45. v-model="queryParams.taskProcessState"
  46. @change="getList"
  47. >
  48. <el-radio-button label="3">已完成</el-radio-button>
  49. <el-radio-button label="0">进行中</el-radio-button>
  50. <!-- <el-radio-button label="">所有</el-radio-button> -->
  51. </el-radio-group>
  52. </div>
  53. <div class="search-input">
  54. <el-input placeholder="请输入..." v-model="queryString">
  55. <el-button
  56. slot="append"
  57. icon="el-icon-search"
  58. @click="getList"
  59. ></el-button>
  60. </el-input>
  61. </div>
  62. </div>
  63. </div>
  64. <div class="show-body">
  65. <!-- 流程任务列表 -->
  66. <el-table :data="tableData" border stripe>
  67. <el-table-column type="selection" width="55" align="center" />
  68. <el-table-column type="index" width="50" align="center" />
  69. <el-table-column
  70. v-for="col in columns"
  71. :prop="col.prop"
  72. :key="col.prop"
  73. :label="col.label"
  74. align="center"
  75. >
  76. <template slot-scope="scope">
  77. <span v-if="col.prop == 'benCreateTime'">{{
  78. scope.row.benCreateTime.replace("T", " ")
  79. }}</span>
  80. <span v-else-if="col.prop == 'bepTaskProcessType'">{{
  81. getDictLabel(scope.row.bepTaskProcessType, dict.type.bpm_type)
  82. }}</span>
  83. <span v-else-if="col.prop == 'benTaskNodeState'">{{
  84. scope.row.benTaskNodeState == "0" ? "未执行" : "已执行"
  85. }}</span>
  86. <span v-else-if="col.prop == 'bepTaskProcessState'">{{
  87. getDictLabel(
  88. scope.row.bepTaskProcessState,
  89. dict.type.task_process_state
  90. )
  91. }}</span>
  92. <span v-else>{{ scope.row[col.prop] }}</span>
  93. </template>
  94. </el-table-column>
  95. <el-table-column label="操作" align="center">
  96. <template slot-scope="scope">
  97. <div class="excute-wrap">
  98. <el-button
  99. type="warning"
  100. plain
  101. size="small"
  102. class="mr10 mb5"
  103. v-show="scope.row.bepTaskProcessState == '0'"
  104. @click="opneExecuteNode(scope.row)"
  105. >
  106. 运行
  107. </el-button>
  108. <el-dropdown>
  109. <el-button type="warning" plain size="small">
  110. 处理<i class="el-icon-arrow-down el-icon--right"></i>
  111. </el-button>
  112. <el-dropdown-menu slot="dropdown">
  113. <!-- <el-dropdown-item>
  114. <el-button
  115. size="mini"
  116. type="text"
  117. icon="el-icon-edit"
  118. @click="excuteHandler(scope.row)"
  119. v-hasPermi="['system:user:edit']"
  120. >处理
  121. </el-button>
  122. </el-dropdown-item> -->
  123. <el-dropdown-item>
  124. <el-dropdown size="mini">
  125. <el-button
  126. size="mini"
  127. type="text"
  128. icon="el-icon-d-arrow-right"
  129. >触发异常
  130. </el-button>
  131. <el-dropdown-menu slot="dropdown">
  132. <el-dropdown-item
  133. v-for="item in scope.row.exceptionScriptList"
  134. :key="item.id"
  135. >
  136. <el-button
  137. @click="exceptionTrigger(scope.row, item)"
  138. size="mini"
  139. type="text"
  140. >{{ item.scriptName }}
  141. </el-button>
  142. </el-dropdown-item>
  143. </el-dropdown-menu>
  144. </el-dropdown>
  145. </el-dropdown-item>
  146. </el-dropdown-menu>
  147. </el-dropdown>
  148. </div>
  149. </template>
  150. </el-table-column>
  151. </el-table>
  152. <!-- 分页 -->
  153. <pagination
  154. v-show="total > 0"
  155. :total="total"
  156. :page.sync="queryParams.pageNum"
  157. :limit.sync="queryParams.pageSize"
  158. @pagination="getList"
  159. />
  160. </div>
  161. <div class="show-window">
  162. <!-- 运行节点弹窗 -->
  163. <el-dialog :title="nodeTitle" :visible.sync="open">
  164. <!-- <el-form label-width="100px" :model="commonData">
  165. <h1>这里会引入当前节点需要处理的表单</h1>
  166. </el-form> -->
  167. <!-- <k-form-build
  168. v-if="formType == 'dragForm'"
  169. class="formBuild"
  170. ref="addFromRef"
  171. :dynamicData="dynamicData"
  172. :defaultValue="defaultValue"
  173. :value="jsonData"
  174. /> -->
  175. <!-- <DialogTemplate
  176. v-else-if="formType == 'composeForm'"
  177. ref="dialogRef"
  178. :groupKey="groupKey"
  179. :rowobj="row"
  180. :subCount="subCount"
  181. :tableCount="tableCount"
  182. :subTableName="subTableName"
  183. @addList="() => {}"
  184. ></DialogTemplate> -->
  185. <!-- ></DialogTemplate> -->
  186. <component
  187. :is="myForm"
  188. :formData="formData"
  189. :row="row"
  190. ref="myFormRef"
  191. v-if="myForm"
  192. ></component>
  193. <!-- <AssignEmployees :formData="formData"
  194. :row="row"></AssignEmployees> -->
  195. <!-- <NodeShow ref="myFormRef" :formData="formData" :row="row"></NodeShow>
  196. -->
  197. <!-- <SC01 :formData="formData"
  198. :row="row"></SC01> -->
  199. <!-- <AssignEmployees></AssignEmployees> -->
  200. <!-- <CG1 ref="myFormRef"></CG1>
  201. <KC1 ref="myFormRef"></KC1> -->
  202. <!-- <GY06 ref="myFormRef" :formData="formData" :row="row"></GY06> -->
  203. <span slot="footer" class="dialog-footer">
  204. <el-button @click="closeExecuteNode">取消</el-button>
  205. <el-button type="primary" @click="executeNode">运行</el-button>
  206. </span>
  207. </el-dialog>
  208. </div>
  209. </div>
  210. </div>
  211. </template>
  212. <script>
  213. import {
  214. processList,
  215. runProcessNodeExecution,
  216. getProcessNodeFormTemplate,
  217. getProcessNodeFormInfoData,
  218. } from "@/api/bpmprocess/run/executeProcess";
  219. import { triggerExceptionNode } from "@/api/bpmprocess/process";
  220. import getNodeSequence from "@/utils/bpmn/getNodeSequence";
  221. import GY02 from "./dialogCompments/GongYi/GY02.vue";
  222. import ZL01 from "./dialogCompments/ZhiLiang/ZL1.vue";
  223. import { getForm } from "@/api/dragform/form";
  224. import DialogTemplate from "@/views/dialogTemplate/components/index.vue";
  225. // 弹窗表单组件
  226. import GY01 from "./dialogCompments/GongYi/GY01.vue";
  227. import GY03 from "./dialogCompments/GongYi/GY03.vue";
  228. import CG1 from "./dialogCompments/test-component/CaiGou/CG1.vue";
  229. import CG02 from "./dialogCompments/test-component/CaiGou/CG02.vue";
  230. import KC01 from "./dialogCompments/test-component/KuCun/KC1.vue";
  231. import KC02 from "./dialogCompments/test-component/KuCun/KC02.vue";
  232. import GY06 from "./dialogCompments/GongYi/GY06.vue";
  233. import KB01 from "./dialogCompments/KongBai/KB01.vue"; //空白提示组件
  234. import SC01 from "./dialogCompments/ShengChan/SC01.vue";
  235. //Mec组件
  236. import AssignEmployees from "./dialogCompments/Mec/AssignEmployees.vue";
  237. import Notes from "./dialogCompments/Mec/Notes.vue";
  238. import Print from "./dialogCompments/Mec/Print.vue";
  239. import NodeShow from "./dialogCompments/Mec/NodeShow.vue";
  240. import RecordQuality from "./dialogCompments/Mec/RecordQuality.vue";
  241. import ProductionProcesses from "./dialogCompments/Mec/ProductionProcesses.vue";
  242. import PersonalDistribution from "./dialogCompments/Mec/PersonalDistribution.vue";
  243. export default {
  244. name: "processMange",
  245. props: [],
  246. components: {
  247. GY01,
  248. DialogTemplate,
  249. CG1,
  250. CG02,
  251. KC01,
  252. GY06,
  253. GY03,
  254. KC02,
  255. GY02,
  256. KB01,
  257. SC01,
  258. ZL01,
  259. NodeShow,
  260. AssignEmployees,
  261. Notes,
  262. Print,
  263. RecordQuality,
  264. ProductionProcesses,
  265. PersonalDistribution,
  266. },
  267. dicts: ["bpm_type", "task_process_state"],
  268. data() {
  269. return {
  270. row: {}, //当前操作行数据
  271. myForm: "", //自定义表单组件名
  272. // 节点弹窗title
  273. nodeTitle: "节点弹窗",
  274. open: false,
  275. // 节点弹窗对应的formData
  276. commonData: {},
  277. taskType: 1,
  278. queryString: "",
  279. taskStatus: "",
  280. tableData: [], //表格数据
  281. // 查询参数
  282. queryParams: {
  283. pageNum: 1,
  284. pageSize: 10,
  285. taskProcessState: "0",
  286. },
  287. total: 0,
  288. columns: [
  289. {
  290. prop: "bepTaskKey",
  291. label: "任务编号",
  292. },
  293. {
  294. prop: "bepTaskName",
  295. label: "任务名称",
  296. },
  297. {
  298. prop: "bepTaskProcessType",
  299. label: "任务流程类型",
  300. },
  301. {
  302. prop: "bepTaskProcessState",
  303. label: "任务流程状态",
  304. },
  305. {
  306. prop: "benTaskNodeName",
  307. label: "节点名称",
  308. },
  309. {
  310. prop: "benTaskNodeType",
  311. label: "节点类型",
  312. },
  313. {
  314. prop: "benTaskNodeState",
  315. label: "节点状态",
  316. },
  317. {
  318. prop: "benCreateBy",
  319. label: "创建人",
  320. },
  321. {
  322. prop: "benCreateTime",
  323. label: "创建时间",
  324. },
  325. ],
  326. formType: "", //表单类型 dragForm:拖拽表单 composeForm:工艺组合表单 designForm:定制表单
  327. // k-form-build 数据
  328. dynamicData: {},
  329. tableName: "",
  330. defaultValue: {},
  331. jsonData: {},
  332. // 拖拽数据
  333. taskInfo: {},
  334. groupKey: "",
  335. subCount: {},
  336. tableCount: {},
  337. subTableName: "",
  338. // 弹窗表单渲染数据
  339. formData: {},
  340. backExceptionTaskList: ["GY06"], //特殊回退表单组件列表
  341. };
  342. },
  343. computed: {},
  344. mounted() {
  345. this.getList();
  346. },
  347. methods: {
  348. // 获取列表数据
  349. getList() {
  350. processList(this.queryParams).then((res) => {
  351. if (res.code == 200) {
  352. this.tableData = res.rows.map((item) => item.resultMap);
  353. this.total = res.total;
  354. console.log(this.tableData);
  355. } else {
  356. this.$message.error("网络异常,请稍后再试");
  357. }
  358. });
  359. },
  360. // 获取表单数据
  361. async getFormData() {
  362. let formData = {};
  363. // switch (this.formType) {
  364. // case "dragForm":
  365. // try {
  366. // formData = await this.$refs.addFromRef.getData();
  367. // } catch (error) {
  368. // console.log(error);
  369. // this.$message.error("表单校验异常,请稍后重试");
  370. // return {};
  371. // }
  372. // break;
  373. // case "designForm":
  374. // let temp = await this.$refs.myFormRef.getFormData();
  375. // if (!temp.flag) {
  376. // this.$message.error(temp.msg);
  377. // return {};
  378. // } else {
  379. // formData = temp.data;
  380. // }
  381. // break;
  382. // default:
  383. // break;
  384. // }
  385. console.log(this.$refs.myFormRef);
  386. let temp = await this.$refs.myFormRef?.getFormData();
  387. console.log("temp", temp);
  388. if (!temp?.flag) {
  389. this.$message.error(temp.msg);
  390. return false;
  391. } else {
  392. formData = temp.data;
  393. }
  394. return formData;
  395. },
  396. // 重置弹窗数据
  397. resetDialogForm() {
  398. this.formType = ""; //表单类型 dragForm:拖拽表单 composeForm:工艺组合表单 designForm:定制表单
  399. // k-form-build 数据
  400. this.dynamicData = {};
  401. this.defaultValue = {};
  402. this.jsonData = {};
  403. },
  404. // 打开运行节点弹窗
  405. async opneExecuteNode(row) {
  406. this.resetDialogForm();
  407. console.log(row);
  408. this.nodeTitle = row.benTaskNodeName;
  409. // let preFix = row.benTaskNodeName.split("-")[0];
  410. let preFix = row.benTaskNodeFormKey;
  411. let {
  412. benTaskNodeFormKey,
  413. benTaskNodeFormType,
  414. bepTaskPlanKey,
  415. bepTaskKey,
  416. bepTaskNodeKey,
  417. benTaskProcessKey,
  418. benmTaskAutomaticScriptTriggerType,
  419. bepTaskNodeNextKey,
  420. } = row;
  421. // 新的运行逻辑
  422. let payLoad = {
  423. taskNodeKey: bepTaskNodeNextKey,
  424. taskProcessKey: benTaskProcessKey,
  425. taskAutomaticScriptTriggerType: benmTaskAutomaticScriptTriggerType,
  426. taskPlanKey: bepTaskPlanKey,
  427. };
  428. // let formData = await getProcessNodeFormTemplate(payLoad);
  429. // console.log(formData);
  430. // if (benTaskNodeFormKey) {
  431. // if (benTaskNodeFormType == "dragForm") {
  432. // let templateInfo = formData.data[0]?.template;
  433. // //拖拽表单
  434. // this.formType = "dragForm";
  435. // this.jsonData = JSON.parse(templateInfo.dfVueTemplate);
  436. // this.tableName = templateInfo.dfTableName;
  437. // if (Object.keys(JSON.parse(templateInfo.dfFormSql)).length) {
  438. // this.dynamicData = JSON.parse(templateInfo.dfFormSql);
  439. // }
  440. // // await this.getDragFormInfo(benTaskNodeFormKey);
  441. // } else if (benTaskNodeFormType == "composeForm") {
  442. // //工艺组合表单
  443. // this.formType = "composeForm";
  444. // this.groupKey = benTaskNodeFormKey;
  445. // let queryPayload = {
  446. // row,
  447. // groupKey: benTaskNodeFormKey,
  448. // };
  449. // this.$nextTick(() => {
  450. // this.$refs.dialogRef.getLists(queryPayload);
  451. // });
  452. // }
  453. // } else if (preFix) {
  454. // //定制表单
  455. // this.formType = "designForm";
  456. // this.myForm = preFix;
  457. // }
  458. //定制表单
  459. this.formType = "designForm";
  460. this.myForm = preFix;
  461. let res = await getProcessNodeFormInfoData(payLoad);
  462. if (res.code == 200) {
  463. this.formData = res.data;
  464. } else {
  465. this.$message.error("网络异常,请稍后再试");
  466. }
  467. this.row = row; //记录当前行数据
  468. // if (!this.formType) return; //没有表单,直接掉运行逻辑
  469. this.open = true; // 打开弹窗
  470. this.$nextTick(() => {
  471. this.$refs.myFormRef?.resetForm();
  472. });
  473. // 根据当前节点绑定的表单信息查询对应的表单进行展示
  474. },
  475. // 运行节点按钮 确认运行回调
  476. async executeNode() {
  477. let { benTaskNodeKey, bepTaskProcessXmlContent, implementationName } =
  478. this.row;
  479. let { nodeId, nextNodeId } = this.getNextNodeKey(
  480. benTaskNodeKey,
  481. bepTaskProcessXmlContent
  482. );
  483. // 只有完成状态的可以运行
  484. if (this.formType == "composeForm") {
  485. let res = this.$refs.dialogRef.getComposeFormData();
  486. if (!res.isSuccess) {
  487. this.$message.warning("非完成状态节点不能运行!");
  488. return;
  489. }
  490. }
  491. // return;
  492. let formData = await this.getFormData();
  493. if (!formData) return;
  494. formData.taskPlanKey = this.row.bepTaskPlanKey;
  495. let payLoad = {
  496. taskProcessKey: this.row.bepTaskKey, //当前任务流程编码
  497. taskNodeKey: nodeId, //当前执行节点唯一编码
  498. nextNodeKey: nextNodeId, //下一节点编码
  499. implementationName: this.row.benmTaskAutomaticScriptTriggerType, //当前节点绑定的脚本名
  500. // taskProcessXmlContent: this.row.bepTaskProcessXmlContent, //当前流程xml
  501. tableName: this.tableName,
  502. formDataMap: JSON.stringify(formData), //自定义表单组件收集的表单数据
  503. taskNodeType: this.backExceptionTaskList.includes(
  504. this.row.benTaskNodeFormKey
  505. )
  506. ? "backExceptionTask"
  507. : this.row.benTaskNodeType,
  508. };
  509. let fileXML = new File(
  510. [this.row.bepTaskProcessXmlContent],
  511. this.row.bepTaskKey + ".bpmn",
  512. {
  513. type: "text/bpmn",
  514. }
  515. );
  516. const subformData = new FormData();
  517. subformData.append("fileXML", fileXML);
  518. for (let key in payLoad) {
  519. subformData.append(key, payLoad[key] == null ? "" : payLoad[key]);
  520. }
  521. runProcessNodeExecution(subformData).then((res) => {
  522. if (res.code == 200) {
  523. this.$message.success("运行成功!");
  524. this.getList();
  525. this.open = false;
  526. }
  527. });
  528. },
  529. // 获取拖拽表单数据
  530. async getDragFormInfo(fid) {
  531. try {
  532. let res = await getForm(fid);
  533. console.log(res);
  534. if (res.code == 200) {
  535. this.jsonData = JSON.parse(res.data.dfVueTemplate);
  536. this.tableName = res.data.dfTableName;
  537. if (res.data.dfFormSql) {
  538. this.dynamicData = JSON.parse(res.data.dfFormSql);
  539. console.log(this.dynamicData);
  540. }
  541. } else {
  542. console.log(res);
  543. throw new Error(res);
  544. }
  545. } catch (error) {
  546. console.log(error);
  547. this.$message.error("网络异常,请稍后再试");
  548. }
  549. },
  550. // 关闭运行节点弹窗
  551. closeExecuteNode(row) {
  552. this.open = false;
  553. },
  554. // 获取下一个节点的nodekey
  555. getNextNodeKey(nodeKey, xmlStr) {
  556. let xmlObj = this.xmlStr2XmlObj(xmlStr);
  557. let nodeSequence = getNodeSequence(xmlObj);
  558. return nodeSequence.find((item) => item.nodeId == nodeKey) || {};
  559. },
  560. // xml字符串转xml对象
  561. xmlStr2XmlObj(xmlStr) {
  562. var xmlObj = {};
  563. if (document.all) {
  564. var xmlDom = new ActiveXObject("Microsoft.XMLDOM");
  565. xmlDom.loadXML(xmlStr);
  566. xmlObj = xmlDom;
  567. } else {
  568. xmlObj = new DOMParser().parseFromString(xmlStr, "text/xml");
  569. }
  570. return xmlObj;
  571. },
  572. // 触发异常回调
  573. exceptionTrigger(row, scriptData) {
  574. let _this = this;
  575. this.$modal
  576. .confirm("是否确认触发<" + scriptData.scriptName + ">异常?")
  577. .then(function (val) {
  578. console.log(val);
  579. // 发送触发异常节点的请求
  580. let payLoad = {
  581. taskProcessKey: row.bepTaskKey,
  582. taskNodeKey: row.benTaskNodeKey,
  583. sysBpmNodeScriptVO: scriptData,
  584. };
  585. triggerExceptionNode(payLoad).then((res) => {
  586. console.log(res);
  587. if (res.code == 200) {
  588. _this.$message.success("触发成功");
  589. _this.open = false;
  590. _this.getList();
  591. } else {
  592. _this.$message.error("触发失败请稍后再试");
  593. }
  594. });
  595. })
  596. .catch(() => {
  597. _this.open = false;
  598. _this.$message.info("取消成功");
  599. });
  600. },
  601. // 获取字典对应label
  602. getDictLabel(value, dictLsit = []) {
  603. return dictLsit.find((item) => {
  604. return item.value == value;
  605. })?.label;
  606. },
  607. },
  608. };
  609. </script>
  610. <style scoped lang="scss">
  611. .process-mange-wrap {
  612. background-color: #f2f3f8;
  613. padding: 20px;
  614. .col {
  615. background-color: #fff;
  616. border-right: 1px solid #ebedf2;
  617. /* margin-right: 3px; */
  618. .statistic-wrap {
  619. /* // height: 70px; */
  620. box-sizing: border-box;
  621. display: flex;
  622. align-items: center;
  623. padding: 10px 17px;
  624. justify-content: space-between;
  625. .discription {
  626. display: flex;
  627. flex-direction: column;
  628. .title {
  629. line-height: 20px;
  630. font-size: 18px;
  631. font-weight: 700;
  632. margin-bottom: 5px;
  633. }
  634. .sub-title {
  635. font-size: 14px;
  636. }
  637. }
  638. .data {
  639. font-size: 20px;
  640. font-weight: 700;
  641. }
  642. }
  643. }
  644. .main-area {
  645. margin-top: 30px;
  646. box-shadow: 0 1px 15px 1px rgb(69 65 78 / 8%);
  647. background-color: #fff;
  648. .show-header {
  649. border-bottom: 1px solid #ebedf2;
  650. display: flex;
  651. align-items: center;
  652. justify-content: space-between;
  653. padding: 0px 20px 0px 20px;
  654. height: 70px;
  655. /* .header {
  656. } */
  657. .search-list {
  658. display: flex;
  659. .search-tab {
  660. margin-right: 20px;
  661. .btn-list-two {
  662. margin-left: 10px;
  663. }
  664. }
  665. }
  666. }
  667. .show-body {
  668. padding: 25px;
  669. }
  670. }
  671. }
  672. </style>