index.vue 22 KB

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