index.vue 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843
  1. <!-- 采购订单修订—— 列表 -->
  2. <script>
  3. import { TableColumns, SearchColumns, TabColumns, SelectColumns } from "./column";
  4. import orderApi from "@/api/business/purchase/purchase-order";
  5. import {saveAs} from "file-saver";
  6. import { blobValidate } from "@/utils/ruoyi";
  7. import {
  8. initPage,
  9. initParams,
  10. // initDicts,
  11. } from "@/utils/init/index.js";
  12. import { initDicts } from "@/utils/init.js";
  13. const allColumns = [...TableColumns, ...SearchColumns];
  14. TabColumns.forEach(column =>{
  15. allColumns.push(...column.tableColumns)
  16. })
  17. export default {
  18. name: "PuchaseOrder",
  19. // dicts: initDicts(SelectColumns),
  20. dicts: [...initDicts(allColumns)],
  21. components: {
  22. AddDrawer: () => import('./add/index.vue'),
  23. SeeDrawer: () => import('./see/index.vue'),
  24. EditDrawer: () => import('./edit/index.vue'),
  25. PurchaseReturnDrawer: () => import('./purchaseReturn/index.vue'),
  26. ElSuperTable: () => import("@/components/super-table/index.vue"),
  27. ElSuperSearch: () => import("@/components/super-search/index.vue"),
  28. Retrieve: () => import("@/components/Retrieve/index.vue"),
  29. },
  30. data() {
  31. const initTabColumns = () => TabColumns;
  32. return {
  33. loading: false,
  34. tabLoading:false,
  35. page: { pageNum: 1, pageSize: 10, total: 0 },
  36. searchColumns: SearchColumns,
  37. params: initParams(SearchColumns),
  38. tableColumns: TableColumns,
  39. tableData: [],
  40. tabColumns: initTabColumns(),
  41. tabName: "puOrderItemList",
  42. tabTableDatas: {
  43. puOrderItemList: [],
  44. puOrderExecuteList: [],
  45. },
  46. checkedList: [],
  47. // 子表Select
  48. checkedTabList: [],
  49. // 主表点击信息
  50. primaryResource:{},
  51. timer:300,
  52. timeOut:null,
  53. };
  54. },
  55. computed: {
  56. $dicts: {
  57. get: function () {
  58. return this.dict.type;
  59. },
  60. },
  61. tabHeight:{
  62. get(){
  63. return `${this.tabTableDatas['puOrderItemList'].length ?
  64. (this.tabTableDatas['puOrderItemList'].length > 8 ? 500 :
  65. (this.tabTableDatas['puOrderItemList'].length *50) +100)
  66. : 120}px`
  67. },
  68. set(){}
  69. }
  70. },
  71. created() {
  72. if(this.$route.query.billCode) this.params.orderCode = this.$route.query.billCode
  73. this.fetchList(this.params, this.page);
  74. // this.handleRefreshList();
  75. },
  76. methods: {
  77. async fetchList(data, params) {
  78. try {
  79. this.loading = true;
  80. params['isAsc'] = 'desc';
  81. params['orderByColumn'] = 'updateTime';
  82. const { code, msg, rows, total } = await orderApi.list(data, params);
  83. if (code === 200) {
  84. this.page.total = total;
  85. this.tableData = rows;
  86. }
  87. } catch (err) {
  88. //
  89. } finally {
  90. this.loading = false;
  91. for (const key in this.tabTableDatas) {
  92. this.tabTableDatas[key] = [];
  93. }
  94. }
  95. },
  96. async handleDownload(){
  97. console.log(this.params,'条件');
  98. this.download('/pu/order/export', {...this.params}, `采购订单维护${new Date().getTime()}.xlsx`);
  99. // try {
  100. // this.loading = true;
  101. // orderApi.orderExport({...this.params}).then(res=>{
  102. // const isBlob = blobValidate(res);
  103. // if (isBlob) {
  104. // const blob = new Blob([res]);
  105. // saveAs(blob, `采购订单维护${new Date().getTime()}.xlsx`);
  106. // }
  107. // })
  108. // } catch (error) {
  109. // }finally{
  110. // this.loading = false;
  111. // }
  112. },
  113. async jumpFlow(row){
  114. const {name} = this.$store.state.user;
  115. try {
  116. let {code,msg,oaUrl} = await orderApi.toOA(name,row.flowId);
  117. if(code == 200){
  118. window.open(oaUrl)
  119. }
  120. } catch (error) {
  121. }finally{
  122. }
  123. },
  124. setSelectable(){
  125. return true
  126. },
  127. setTabSelectable(){
  128. if(this.tabName === 'puOrderItemList'){
  129. return true
  130. }
  131. return false
  132. },
  133. // 刷新操作
  134. handleRefreshList() {
  135. this.page.pageNum = 1;
  136. this.page.pageSize = 10;
  137. this.$refs.purchaseTable.$refs.superTable.clearSelection();
  138. for (const key in this.tabTableDatas) {
  139. this.tabTableDatas[key] = []
  140. }
  141. this.$refs.puOrderItemList[0].$refs.superTable.clearSelection();
  142. // this.checkedList = [];
  143. // this.checkedTabList = [];
  144. this.primaryResource = {};
  145. this.fetchList(this.params, this.page);
  146. },
  147. // 查询操作
  148. handleQueryList() {
  149. let {date} = this.params;
  150. this.params.startDate = date ? date[0] :'';
  151. this.params.endDate = date ? date[1] : '';
  152. this.fetchList(this.params, this.page);
  153. },
  154. // 重置操作
  155. handleResetList() {
  156. this.page.pageNum = 1;
  157. this.page.pageSize = 10;
  158. this.params = initParams(SearchColumns);
  159. this.fetchList(this.params, this.page);
  160. },
  161. handleTabClick() { },
  162. // 新增
  163. handleOpenAddDrawer(copyVal) {
  164. const { setVisible, setCopyParams } = this.$refs.addDrawerFef;
  165. setVisible(true,(copyVal.id && copyVal.id != '') ? true :false);
  166. copyVal.id && copyVal.id != '' && setCopyParams(copyVal.id);
  167. },
  168. // 复制
  169. handleCopy() {
  170. this.handleOpenAddDrawer(this.checkedList[0]);
  171. },
  172. // 查看
  173. async handleOpenSeeDrawer(row) {
  174. window.clearInterval(this.timeOut);
  175. const { id } = row;
  176. const { setVisible, fetchItem } = this.$refs.seeDrawerRef;
  177. await setVisible(true);
  178. await fetchItem(id);
  179. },
  180. // 编辑、修订
  181. async handleOpenEditDrawer(row) {
  182. const { id } = row;
  183. const { setVisible, fetchItem } = this.$refs.editDrawerRef;
  184. await setVisible(true);
  185. await fetchItem(id);
  186. },
  187. // 获取子表信息
  188. handleDetailsData(row) {
  189. window.clearTimeout(this.timeOut);
  190. this.timeOut = setTimeout(async () =>{
  191. try {
  192. this.tabLoading = true;
  193. this.primaryResource = row;
  194. this.checkedTabList = [];
  195. const { code, msg, data } = await orderApi.details(row.id);
  196. if (code === 200) {
  197. // 物料信息:puOrderItemList 执行结果:puOrderExecuteList
  198. for (const key in this.tabTableDatas) {
  199. this.tabTableDatas[key] = data[key];
  200. }
  201. }
  202. } catch (err) {}
  203. finally{
  204. this.tabLoading = false;
  205. }
  206. },this.timer)
  207. },
  208. // 操作提示弹窗
  209. handleConfirmTips(success){
  210. this.$confirm('是否继续此操作?', '提示', {
  211. confirmButtonText: '确定',
  212. cancelButtonText: '取消',
  213. type: 'warning'
  214. }).then(() => {
  215. success();
  216. }).catch(() => {
  217. });
  218. },
  219. // 删除操作
  220. handleDeleteList(row) {
  221. try {
  222. this.loading = true;
  223. this.handleConfirmTips(async()=>{
  224. const { id } = row;
  225. const { code } = await orderApi.remove(id);
  226. if (code === 200) {
  227. this.handleRefreshList();
  228. }
  229. })
  230. } catch (err) {
  231. //
  232. } finally {
  233. this.loading = false;
  234. }
  235. },
  236. // 批量提交
  237. handleBatchSubmit(){
  238. let inconformity = this.checkedList.filter(row => !((row.status == '0' || row.status == '3' || row.status == '9') && row.isEnd === 'N'));
  239. if(!inconformity.length && this.checkedList.length){
  240. let puOrderIds = this.checkedList.map( item => Number(item.id));
  241. this.fetchSubmit(puOrderIds);
  242. }else{
  243. this.$notify({
  244. title: '警告',
  245. message: '当前选中存在不满足提交条件的数据!',
  246. type: 'warning'
  247. });
  248. }
  249. },
  250. // 提交
  251. handleSubmit(row) {
  252. let puOrderIds = [Number(row.id)];
  253. this.fetchSubmit(puOrderIds);
  254. },
  255. fetchSubmit(puOrderIds){
  256. let _this = this;
  257. this.handleConfirmTips(async()=>{
  258. try {
  259. _this.loading = true;
  260. let { code,msg } = await orderApi.submit({ puOrderIds,checkAmount:true});
  261. console.log(code,'code');
  262. if (code == 200) {
  263. _this.handleRefreshList();
  264. }else if(code == 10000){
  265. _this.$alert(msg, '提示', {
  266. showCancelButton: true,
  267. confirmButtonText: '继续提交',
  268. cancelButtonText: '取消',
  269. beforeClose: async(action, instance, done) => {
  270. if (action === 'confirm') {
  271. instance.confirmButtonLoading = true;
  272. instance.confirmButtonText = '执行中...';
  273. try {
  274. let { code,msg } = await orderApi.submit({ puOrderIds,checkAmount:false});
  275. if(code == 200){
  276. done();
  277. _this.handleRefreshList();
  278. }
  279. } catch (error) {
  280. instance.confirmButtonText = "确认";
  281. }finally{
  282. instance.confirmButtonLoading = false;
  283. }
  284. } else {
  285. done();
  286. }
  287. }
  288. });
  289. }
  290. } catch (error) {}
  291. finally{
  292. this.loading = false;
  293. }
  294. })
  295. },
  296. //流程收回
  297. async handleBack(row){
  298. try {
  299. const { msg, code } = await orderApi.oaBack({
  300. fdTemplateId: '1880447a834addc648b3763477a9b09f',
  301. fdId: row.flowId,
  302. billCode: row.code,
  303. billMaker: row.createBy
  304. });
  305. if (code === 200) {
  306. this.$emit("success");
  307. this.$notify.success(msg);
  308. }
  309. } catch (err) {
  310. console.error(err);
  311. } finally {
  312. this.fetchList(this.params, this.page);
  313. }
  314. },
  315. // 判断“整单退回”按钮
  316. judgeIsAllReturn() {
  317. if (this.checkedList.length == 1) {
  318. // 非手工、状态:自由/驳回
  319. if (this.judgeIsOption('return',this.checkedList[0])) {
  320. // if (this.checkedList[0].source != 3 &&
  321. // (this.checkedList[0].status == 0 || this.checkedList[0].status == 3)
  322. // ) {
  323. return false
  324. }
  325. }
  326. return true;
  327. },
  328. // 整单退回
  329. handleAllReturn() {
  330. this.handleReturn(this.checkedList[0].id,[]);
  331. },
  332. // 判断“行退回”按钮
  333. judgeIsLineReturn() {
  334. if (this.checkedTabList.length == 1) {
  335. // 主信息:非手工、状态:自由/驳回
  336. if(this.judgeIsOption('return',this.primaryResource)){
  337. // if(this.primaryResource.source != 3 &&
  338. // (this.primaryResource.status == 0 || this.primaryResource.status == 3) ){
  339. return false
  340. }
  341. }
  342. return true;
  343. },
  344. // 行退回
  345. handleLineReturn(){
  346. let ids = this.checkedTabList.map(checked => checked.id);
  347. console.log(ids,'行退回ids');
  348. this.handleReturn(this.primaryResource.id,ids);
  349. },
  350. // 退回接口
  351. handleReturn(id,documentIds){
  352. this.$prompt('请输入退回原因', '提示', {
  353. confirmButtonText: '确定',
  354. cancelButtonText: '取消',
  355. inputPattern: /\s*\S+?/,
  356. inputErrorMessage: '退回原因不能为空'
  357. }).then(async ({ value }) => {
  358. let data = {
  359. id:Number(id),
  360. documentIds:documentIds.map(ids =>Number(ids)),
  361. baskCause: value,
  362. };
  363. console.log(data);
  364. try {
  365. let { code, msg } = await orderApi.documentsReturn(data);
  366. if (code === 200) {
  367. this.handleRefreshList();
  368. }
  369. } catch (error) {
  370. console.log(error,'error------------');
  371. }
  372. }).catch(() => { });
  373. },
  374. // 判断是否满足整单关闭
  375. judgeIsAllClose() {
  376. if (this.checkedList.length == 1) {
  377. // if (this.checkedList[0].status == 0) {
  378. if (this.judgeIsOption('allClose',this.checkedList[0])) {
  379. // 未审批状态下整单关闭
  380. return false
  381. }
  382. }
  383. return true;
  384. },
  385. // 整单关闭
  386. handleAllClose() {
  387. // 未审批状态下整单关闭
  388. try {
  389. this.handleConfirmTips(async() =>{
  390. let puOrderIds = this.checkedList.map(order => Number(order.id));
  391. let { code } = await orderApi.close({ puOrderIds });
  392. if (code === 200) {
  393. this.handleRefreshList();
  394. }
  395. })
  396. } catch (error) { }
  397. },
  398. // 付款协议
  399. async handlePaymentRequest(){
  400. // name:工号
  401. try {
  402. let {code,msg} = await orderApi.payRequest();
  403. if(code == 200){
  404. msg.replace(/\/n/g,'');
  405. let url = `uclient://start/http://172.16.100.2:8081?ssoKey=${msg}&uiloader=nc.uap.lfw.applet.PortalUILoader&nodeId=40040407`
  406. window.location.href = url;
  407. }
  408. } catch (error) {}
  409. },
  410. // 退货
  411. async handlePurchaseReturn(){
  412. const { id } = this.checkedList[0];
  413. const { setVisible, fetchStorage } = this.$refs.PurchaseReturnDrawerRef;
  414. await setVisible(true);
  415. await fetchStorage(id);
  416. },
  417. // 主表Select框
  418. handleSelect(selection, row) {
  419. this.checkedList = selection;
  420. console.log(this.checkedList, 'this.checkedList');
  421. },
  422. handleSelectionChange(selection){
  423. this.checkedList = selection;
  424. },
  425. // 子表Select框
  426. handleTabSelect(selection, row){
  427. this.checkedTabList = selection;
  428. console.log(this.checkedTabList, 'this.checkedTabList');
  429. },
  430. handleTabSelectionChange(selection){
  431. this.checkedTabList = selection;
  432. },
  433. // 保留两位小数,补位
  434. keepTwoDecimalStr(num) {
  435. if(num){
  436. const result = Number(num.toString().match(/^\d+(?:\.\d{0,2})?/));
  437. let s = result.toString();
  438. let rs = s.indexOf('.');
  439. if (rs < 0) {
  440. rs = s.length;
  441. s += '.';
  442. }
  443. while (s.length <= rs + 2) {
  444. s += '0';
  445. }
  446. return s;
  447. }else{
  448. return '';
  449. }
  450. },
  451. judgeIsOption(type,source){
  452. // status: 0=自由态,1=审批中,2=已审核,3=已驳回 4=提交中 9=已回退
  453. // source: 1=自动协议直采,2=协议直采,3=手工
  454. // isEnd:整单关闭标识
  455. switch(type){
  456. case 'edit':
  457. return (source.status == '0' || source.status == '3' || source.status == '9') && source.isEnd === 'N';
  458. case 'revise':
  459. return source.status == '2' && source.isEnd === 'N';
  460. case 'del':
  461. return (source.status == '0' || source.status == '3' || source.status == '9') && source.source == '3' && source.isEnd === 'N';
  462. case 'submit':
  463. return (source.status == '0' || source.status == '3' || source.status == '9') && source.isEnd === 'N';
  464. case 'allClose':
  465. return source.status == 0 && source.isEnd === 'N';
  466. case 'return':
  467. return source.source != 3 && source.isEnd === 'N' &&
  468. (source.status == 0 || source.status == 3 || source.status == '9');
  469. default:
  470. return false;
  471. }
  472. },
  473. handelRetrieve(row){
  474. let { status, flowId, code,createBy } = row;
  475. return {
  476. status,
  477. fdId:flowId,
  478. fdTemplateId:'1880447a834addc648b3763477a9b09f',
  479. billCode:code,
  480. billMaker:createBy,
  481. }
  482. },
  483. }
  484. };
  485. </script>
  486. <template>
  487. <el-card
  488. v-loading="loading"
  489. style="width: calc(100% - 24px); height: 100%; margin: 10px;padding: 10px;"
  490. :body-style="{ padding: 0 }"
  491. >
  492. <SeeDrawer ref="seeDrawerRef"></SeeDrawer>
  493. <AddDrawer ref="addDrawerFef" @close="handleRefreshList"></AddDrawer>
  494. <EditDrawer ref="editDrawerRef" @close="handleRefreshList"></EditDrawer>
  495. <PurchaseReturnDrawer ref="PurchaseReturnDrawerRef" @close="handleRefreshList"></PurchaseReturnDrawer>
  496. <el-super-search
  497. v-model="params"
  498. :size="'mini'"
  499. :dict="dict"
  500. :columns="searchColumns"
  501. @reset="handleResetList"
  502. @submit="handleQueryList"
  503. ></el-super-search>
  504. <!-- 操作 -->
  505. <el-row :gutter="24" type="flex" justify="end" style="margin: 20px 0;">
  506. <el-col :span="24" style="text-align: right;">
  507. <el-button size="mini" type="primary" @click="handleOpenAddDrawer"
  508. v-hasPermi="['material:order:add']">新增</el-button>
  509. <el-button-group style="margin-left: 10px">
  510. <el-button type="primary" size="mini" :disabled="checkedList.length != 1" @click="handleCopy">复制</el-button>
  511. <el-button type="primary" size="mini" @click="handleBatchSubmit">批量提交</el-button>
  512. </el-button-group>
  513. <el-button-group style="margin-left: 10px" :key="checkedList.length + 1">
  514. <el-button type="primary" size="mini" @click="handleAllReturn" :disabled="judgeIsAllReturn()">整单退回</el-button>
  515. <el-button type="primary" size="mini" @click="handleAllClose" :disabled="judgeIsAllClose()">整单关闭</el-button>
  516. </el-button-group>
  517. <el-button-group style="margin:0 10px">
  518. <!-- <el-button size="mini"
  519. :disabled="!(checkedList.length == 1 && checkedList[0].deliveryStatus == '0')"
  520. :key="checkedList.length"
  521. @click="handlePurchaseReturn"
  522. >采购退货</el-button> -->
  523. <el-button type="primary" size="mini" @click="handlePaymentRequest">付款申请</el-button>
  524. <el-button
  525. type="primary"
  526. size="mini"
  527. @click="handleDownload"
  528. >批量导出</el-button>
  529. </el-button-group>
  530. </el-col>
  531. </el-row>
  532. <div style="display: flex;height:420px;">
  533. <el-super-table
  534. class="purchaseTable"
  535. v-model="tableData"
  536. ref="purchaseTable"
  537. :dict="dict"
  538. :columns="tableColumns"
  539. :selectable="setSelectable"
  540. index
  541. checkbox
  542. pagination
  543. :page="page"
  544. convenitentOperation
  545. @pagination="fetchList(params, page)"
  546. @row-dblclick="handleOpenSeeDrawer"
  547. @row-click="handleDetailsData"
  548. @selection-change="handleSelectionChange"
  549. @select="handleSelect"
  550. >
  551. <el-table-column fixed="right" label="操作" width="120">
  552. <template slot-scope="scope">
  553. <el-button
  554. v-if="judgeIsOption('revise',scope.row)"
  555. type="text"
  556. size="small"
  557. @click.stop="handleOpenEditDrawer(scope.row)"
  558. v-hasPermi="['material:order:edit']">
  559. 修订
  560. </el-button>
  561. <el-button
  562. v-if="judgeIsOption('edit',scope.row)"
  563. type="text"
  564. size="small"
  565. @click.stop="handleOpenEditDrawer(scope.row)"
  566. v-hasPermi="['material:order:edit']">
  567. 编辑
  568. </el-button>
  569. <!-- 0=自由态,1=审批中,2=已审核,3=已驳回 4=提交中-->
  570. <el-button
  571. v-if="judgeIsOption('del',scope.row)"
  572. type="text"
  573. size="small"
  574. @click.stop="handleDeleteList(scope.row)"
  575. v-hasPermi="['material:order:remove']"
  576. >删除</el-button>
  577. <el-button
  578. v-if="judgeIsOption('submit',scope.row)"
  579. type="text"
  580. size="mini"
  581. v-hasPermi="['material:order:toOa']"
  582. @click.stop="handleSubmit(scope.row)"
  583. >提交</el-button>
  584. <el-button
  585. v-if="scope.row.status == '1'"
  586. type="text"
  587. size="mini"
  588. @click.stop="handleBack(scope.row)"
  589. >流程收回</el-button>
  590. <el-button
  591. v-if="scope.row.flowId && scope.row.flowId !== '' && scope.row.status !== '9'"
  592. type="text"
  593. size="mini"
  594. @click.stop="jumpFlow(scope.row)"
  595. >流程跳转</el-button>
  596. <!-- <Retrieve :data="handelRetrieve(scope.row)" @success="handleQueryList"></Retrieve> -->
  597. </template>
  598. </el-table-column>
  599. </el-super-table>
  600. </div>
  601. <div style="position: relative; padding-top: 10px;" v-loading="tabLoading">
  602. <el-row style="position: absolute; top: 30px; right: 20px;z-index: 10;">
  603. <el-button
  604. size="mini"
  605. @click="handleLineReturn"
  606. :disabled="judgeIsLineReturn()"
  607. >行退回</el-button>
  608. </el-row>
  609. <el-tabs
  610. v-model="tabName"
  611. @tab-click="handleTabClick"
  612. style="width: 100%;padding: 20px 10px;">
  613. <el-tab-pane
  614. v-for="(column, index) in tabColumns"
  615. :key="index"
  616. :label="column.title"
  617. :name="column.key"
  618. >
  619. <div
  620. :style="{
  621. height:tabHeight,
  622. display:'flex'
  623. }"
  624. >
  625. <el-super-table
  626. v-model="tabTableDatas[column.key]"
  627. :ref="column.key"
  628. :dict="dict"
  629. :columns="column.tableColumns"
  630. :selectable="setTabSelectable"
  631. :checkbox="setTabSelectable()"
  632. convenitentOperation
  633. @select="handleTabSelect"
  634. @selection-change="handleTabSelectionChange"
  635. >
  636. </el-super-table>
  637. </div>
  638. </el-tab-pane>
  639. </el-tabs>
  640. </div>
  641. </el-card>
  642. </template>
  643. <style lang="scss">
  644. </style>