queueFStart.vue 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722
  1. // 排队开始
  2. <template>
  3. <div class="sale">
  4. <div class="top">
  5. <el-form :inline="true" style="margin-top: 1rem;">
  6. <el-form-item>
  7. <el-input
  8. v-model.trim="capacityNo"
  9. style="width:250px"
  10. placeholder="输入车牌号查询"
  11. clearable
  12. >
  13. </el-input>
  14. <el-button
  15. type="primary"
  16. class="btn"
  17. @click="onclick"
  18. style="margin-left: 4px;"
  19. clearable
  20. ><i class="el-icon-search"></i>查询车辆</el-button
  21. >
  22. </el-form-item>
  23. <el-form-item>
  24. <el-button
  25. type="primary"
  26. class="btn"
  27. @click="onclickMaterial"
  28. style="margin-left: 4px;"
  29. clearable
  30. ><i class="el-icon-search"></i>查询物资</el-button
  31. >
  32. </el-form-item>
  33. <el-form-item>
  34. <el-badge :value="redDotNum" class="item">
  35. <el-button type="primary" class="btn" @click="refresh">
  36. <i class="el-icon-refresh"></i>刷新
  37. </el-button>
  38. </el-badge>
  39. </el-form-item>
  40. <el-form-item
  41. ><el-button type="primary" class="btn" @click="allow">
  42. <i class="el-icon-d-arrow-right"></i>放行
  43. </el-button></el-form-item
  44. >
  45. <el-form-item
  46. ><el-button type="primary" class="btn" disabled>
  47. 厂内钢材车辆总数
  48. </el-button>
  49. <el-input disabled style="width:100px" v-model="steelOrderNum">
  50. </el-input>
  51. </el-form-item>
  52. </el-form>
  53. </div>
  54. <!-- 物资选择模态框 -->
  55. <el-drawer
  56. title="选择物资信息"
  57. :visible.sync="table1"
  58. direction="rtl"
  59. size="90%"
  60. :show-close="true"
  61. >
  62. <el-form :inline="true" style="margin-top: 0.5rem;">
  63. <el-form-item>
  64. <label class="el-form-item__label" style="width: auto;"
  65. >物资名称</label
  66. >
  67. </el-form-item>
  68. <el-form-item>
  69. <el-input
  70. placeholder="请输入内容"
  71. v-model="materialNameText"
  72. clearable
  73. ></el-input>
  74. </el-form-item>
  75. <el-form-item>
  76. <label class="el-form-item__label" style="width: auto;">规格</label>
  77. </el-form-item>
  78. <el-form-item>
  79. <el-input
  80. placeholder="请输入内容"
  81. v-model="materialSpecificationText"
  82. clearable
  83. ><template slot="prepend">Φ</template></el-input
  84. >
  85. </el-form-item>
  86. <el-button
  87. type="primary"
  88. class="btn"
  89. @click="onclickMaterial1"
  90. style="margin-left: 4px;"
  91. ><i class="el-icon-search"></i>查询</el-button
  92. >
  93. <el-button type="primary" @click="makeSureMaterial"
  94. ><i class="el-icon-check"></i>确定</el-button
  95. >
  96. </el-form>
  97. <div class="tablecls">
  98. <!-- 查询所有的物资 -->
  99. <dilTable
  100. v-bind.sync="optionMa"
  101. @selection-change="selectionChange2"
  102. @rowDbClick="rowDbClick"
  103. >
  104. </dilTable>
  105. </div>
  106. </el-drawer>
  107. <div class="tabs">
  108. <el-tabs v-model="activeName" type="card" @tab-click="handleClick">
  109. <el-tab-pane label="单拼车辆排队链表" name="first">
  110. <el-table
  111. ref="mutiData"
  112. :data="tableData1"
  113. border
  114. :row-key="getRowKey"
  115. style="width: 100%; margin-top: 20px"
  116. @selection-change="handleSelectionChange"
  117. max-height="600px"
  118. >
  119. <!-- 是否可以勾选:selectable="selectInit" -->
  120. <el-table-column
  121. type="selection"
  122. width="55"
  123. reserve-selection
  124. ></el-table-column>
  125. <el-table-column type="index" width="50"> </el-table-column>
  126. <el-table-column prop="capacityNumber" label="车牌号" fit>
  127. </el-table-column>
  128. <el-table-column prop="resultStartTime" label="排队开始时间">
  129. </el-table-column>
  130. <el-table-column prop="consigneeName" label="客户" fit>
  131. </el-table-column>
  132. <el-table-column prop="materialName" label="物资名称">
  133. </el-table-column>
  134. <el-table-column prop="steelMeter" label="钢材长度">
  135. </el-table-column>
  136. <el-table-column prop="materialSpecification" label="规格型号">
  137. </el-table-column>
  138. <el-table-column prop="materialNumber" label="物资件数">
  139. </el-table-column>
  140. <el-table-column label="装货点" width="100">
  141. <template slot-scope="scope">
  142. <el-select size="mini" v-model="scope.row.id"
  143. @change="changePriority(scope.row)">
  144. <el-option
  145. v-for="item in option"
  146. :key="item.id"
  147. :label="item.value"
  148. :value="item.id"
  149. >
  150. </el-option>
  151. </el-select>
  152. </template>
  153. </el-table-column>
  154. <el-table-column prop="driverTel" label="司机电话号码">
  155. </el-table-column>
  156. <el-table-column prop="sureTime" label="可进厂确认时间">
  157. </el-table-column>
  158. <el-table-column prop="gatepostName" label="进厂门岗">
  159. </el-table-column>
  160. <el-table-column
  161. prop="listNodeOrder"
  162. label="序号"
  163. ></el-table-column>
  164. <el-table-column fixed="right" label="操作" width="180">
  165. <template slot-scope="scope">
  166. <el-button
  167. type="text"
  168. size="mini"
  169. @click="ctrlZQueueAllow(scope)"
  170. >
  171. 撤销放行
  172. </el-button>
  173. <el-button type="text" size="mini" @click="updateBill(scope)">
  174. 修改提货单
  175. </el-button>
  176. </template>
  177. </el-table-column>
  178. </el-table>
  179. </el-tab-pane>
  180. <el-tab-pane label="多拼车辆排队链表" name="second">
  181. <el-table
  182. :data="tableData"
  183. :span-method="objectSpanMethod"
  184. border
  185. style="width: 100%; margin-top: 20px"
  186. @selection-change="handleSelectionChange"
  187. max-height="500px"
  188. >
  189. <el-table-column type="selection" width="55"></el-table-column>
  190. <el-table-column prop="capacityNumber" label="车牌号" fit>
  191. </el-table-column>
  192. <el-table-column prop="consigneeName" label="客户" fit>
  193. </el-table-column>
  194. <el-table-column prop="materialName" label="物资名称">
  195. </el-table-column>
  196. <el-table-column prop="steelMeter" label="钢材长度">
  197. </el-table-column>
  198. <el-table-column prop="materialSpecification" label="规格型号">
  199. </el-table-column>
  200. <el-table-column prop="materialNumber" label="物资件数">
  201. </el-table-column>
  202. <el-table-column label="装货点" width="100">
  203. <template slot-scope="scope">
  204. <el-select size="mini" v-model="scope.row.id"
  205. @change="changePriority(scope.row)">
  206. <el-option
  207. v-for="item in option"
  208. :key="item.id"
  209. :label="item.value"
  210. :value="item.id"
  211. >
  212. </el-option>
  213. </el-select>
  214. </template>
  215. </el-table-column>
  216. <el-table-column prop="grid" label="拼数" fit> </el-table-column>
  217. <el-table-column prop="resultStartTime" label="排队开始时间">
  218. </el-table-column>
  219. <el-table-column
  220. prop="listNodeOrder"
  221. label="序号"
  222. ></el-table-column>
  223. <el-table-column prop="driverTel" label="司机电话号码">
  224. </el-table-column>
  225. <el-table-column prop="gatepostName" label="进厂门岗">
  226. </el-table-column>
  227. <el-table-column prop="sureTime" label="可进厂确认时间">
  228. </el-table-column>
  229. <el-table-column fixed="right" label="操作" width="180">
  230. <template slot-scope="scope">
  231. <el-button
  232. type="text"
  233. size="mini"
  234. @click="ctrlZQueueAllow(scope)"
  235. >
  236. 撤销放行
  237. </el-button>
  238. <el-button type="text" size="mini" @click="updateBill(scope)">
  239. 修改提货单
  240. </el-button>
  241. </template>
  242. </el-table-column>
  243. </el-table>
  244. </el-tab-pane>
  245. <el-tab-pane label="仓库排队列表" name="third">
  246. <el-table
  247. :data="tableData3"
  248. border
  249. style="width: 100%; margin-top: 20px"
  250. max-height="500px"
  251. >
  252. <el-table-column prop="warehouseName" label="仓库" fit></el-table-column>
  253. <el-table-column prop="carQueue" label="排队车辆"></el-table-column>
  254. </el-table>
  255. </el-tab-pane>
  256. </el-tabs>
  257. </div>
  258. </div>
  259. </template>
  260. <script>
  261. import { getCookie } from "@/utils/util.js";
  262. export default {
  263. data() {
  264. return {
  265. capacityNo: "",
  266. inputText: "",
  267. option1: {
  268. // 表格请求数据的地址
  269. requestUrl: "",
  270. selectionType: "select"
  271. },
  272. optionMa: {
  273. // 表格请求数据的地址
  274. requestUrl: "",
  275. // 控制显示多选列
  276. selectionType: "select"
  277. },
  278. activeName: "first",
  279. tableData: [],
  280. tableData1: [],
  281. tableData3: [],
  282. //存放每一行记录的合并数
  283. spanArr: [],
  284. maplist: [],
  285. id: null,
  286. option: [],
  287. filterArr1: [],
  288. table1: false,
  289. //物资选中表格
  290. materialList: [],
  291. //物资选中暂存
  292. materialList1: [],
  293. //物资信息查询内容
  294. materialNameText: null,
  295. materialSpecificationText: null,
  296. materialModelText: null,
  297. timer: null,
  298. totalQueueNum: null,
  299. redDotNum: null,
  300. i: 0,
  301. totalQueueNumFirst: null,
  302. //厂内钢材车辆总数
  303. steelOrderNum: 0
  304. };
  305. },
  306. mounted() {
  307. this.i = 0;
  308. this.infomation();
  309. this.getSpellingArray();
  310. this.getNoSpellingArray();
  311. this.getStoreArray();
  312. this.getSteelOrderNum();
  313. this.wantEnfactory();
  314. this.start();
  315. },
  316. computed: {
  317. wantS() {
  318. return this.totalQueueNum;
  319. }
  320. },
  321. beforeDestroy() {
  322. this.timer;
  323. },
  324. watch: {
  325. wantS() {
  326. if (this.totalQueueNum - this.totalQueueNumFirst > 0) {
  327. this.redDotNum = this.totalQueueNum - this.totalQueueNumFirst;
  328. }
  329. }
  330. },
  331. methods: {
  332. ctrlZQueueAllow(scope) {
  333. let map = {
  334. listId: scope.row.listId,
  335. resultTotalId: scope.row.resultTotalId
  336. };
  337. console.log(map);
  338. this.axios.post("/api/v1/qms/ctrlZQueueAllow", map).then(res => {
  339. if (res.data.code == 200) {
  340. this.$message.success("撤销成功");
  341. this.getNoSpellingArray();
  342. this.getSpellingArray();
  343. } else {
  344. this.$message.error("撤单失败");
  345. }
  346. });
  347. },
  348. wantEnfactory() {
  349. this.axios.get("/api/v1/uc/getQueueCount").then(res => {
  350. this.totalQueueNum = res.data.data;
  351. console.log(this.totalQueueNum, "totalQueueNum");
  352. if (this.i == 0) {
  353. this.totalQueueNumFirst = this.totalQueueNum;
  354. }
  355. this.i++;
  356. });
  357. },
  358. start() {
  359. this.timer = setInterval(this.wantEnfactory, 60000);
  360. },
  361. refresh() {
  362. this.getSpellingArray();
  363. this.getNoSpellingArray();
  364. this.getSteelOrderNum();
  365. this.getStoreArray();
  366. this.redDotNum = null;
  367. this.totalQueueNum = null;
  368. this.totalQueueNumFirst = null;
  369. this.i = 0;
  370. clearInterval(this.timer);
  371. this.start();
  372. },
  373. getSteelOrderNum() {
  374. this.axios.get("/api/v1/uc/getSteelOrderNum").then(res => {
  375. this.steelOrderNum = res.data.data;
  376. });
  377. },
  378. getRowKey(row) {
  379. return row.ROW_ID;
  380. },
  381. selectInit(row) {
  382. if (this.maplist.length == 0) {
  383. if (row.ROW_ID == 1) {
  384. return true;
  385. } else {
  386. return false;
  387. }
  388. } else {
  389. if (
  390. this.maplist.some(e => {
  391. return e.ROW_ID == row.ROW_ID || e.ROW_ID + 1 == row.ROW_ID;
  392. })
  393. ) {
  394. return true;
  395. } else {
  396. return false;
  397. }
  398. }
  399. },
  400. rowDbClick(row) {
  401. this.materialList = [];
  402. this.materialList.push(row);
  403. this.makeSureMaterial();
  404. },
  405. //物资模态框查询
  406. onclickMaterial1() {
  407. this.optionMa.requestUrl =
  408. "/api/v1/uc/getSteelMaterial?apiId=244&materialNameText=" +
  409. this.materialNameText +
  410. "&materialSpecificationText=" +
  411. this.materialSpecificationText;
  412. },
  413. onclickMaterial() {
  414. this.table1 = true;
  415. this.optionMa.requestUrl =
  416. "/api/v1/uc/getSteelMaterial?apiId=244&i=" + new Date();
  417. },
  418. //返回选中的物资信息
  419. selectionChange2(selection) {
  420. this.materialList1 = [];
  421. this.materialList1 = selection;
  422. this.materialList = this.materialList.concat(this.materialList1);
  423. },
  424. makeSureMaterial() {
  425. console.log(this.materialList);
  426. var materialIdList = [];
  427. this.materialList.forEach(e => {
  428. if (materialIdList.indexOf(e.materialId) == -1) {
  429. materialIdList.push(e.materialId);
  430. }
  431. });
  432. let map = {
  433. materialList: materialIdList
  434. };
  435. this.materialList = [];
  436. this.materialList1 = [];
  437. if (this.activeName == "first") {
  438. this.axios
  439. .post("/api/v1/qms/getQueueListByQueueUp?isSpelling=0", map)
  440. .then(res => {
  441. this.tableData1 = res.data.data;
  442. });
  443. } else {
  444. this.axios
  445. .post("/api/v1/qms/getQueueListByQueueUp?apiId=473&isSpelling=1", map)
  446. .then(res => {
  447. this.tableData = res.data.data;
  448. this.getSpanArr(this.tableData);
  449. });
  450. }
  451. this.table1 = false;
  452. },
  453. infomation() {
  454. this.axios.get("/api/v1/uc/getSteelWarehouse").then(res => {
  455. console.log(res.data);
  456. this.option = res.data;
  457. });
  458. },
  459. //记录每一行的合并数
  460. getSpanArr(data) {
  461. //每次调用方法初始化
  462. this.spanArr = [];
  463. for (var i = 0; i < data.length; i++) {
  464. if (i === 0) {
  465. this.spanArr.push(1);
  466. this.pos = 0;
  467. } else {
  468. // 判断当前元素与上一个元素是否相同
  469. if (data[i].resultTotalId === data[i - 1].resultTotalId) {
  470. this.spanArr[this.pos] += 1;
  471. this.spanArr.push(0);
  472. } else {
  473. this.spanArr.push(1);
  474. this.pos = i;
  475. }
  476. }
  477. }
  478. },
  479. objectSpanMethod({ row, column, rowIndex, columnIndex }) {
  480. if (
  481. columnIndex === 0 ||
  482. columnIndex === 1 ||
  483. columnIndex === 2 ||
  484. columnIndex === 8 ||
  485. columnIndex === 9 ||
  486. columnIndex === 10 ||
  487. columnIndex === 11 ||
  488. columnIndex === 12 ||
  489. columnIndex === 13 ||
  490. columnIndex === 14
  491. ) {
  492. const _row = this.spanArr[rowIndex];
  493. const _col = _row > 0 ? 1 : 0;
  494. return {
  495. rowspan: _row,
  496. colspan: _col
  497. };
  498. }
  499. },
  500. handleClick() {
  501. this.redDotNum = null;
  502. this.totalQueueNum = null;
  503. this.totalQueueNumFirst = null;
  504. this.i = 0;
  505. if (this.activeName == "first") {
  506. this.getNoSpellingArray();
  507. } else if(this.activeName == "second") {
  508. this.getSpellingArray();
  509. } else {
  510. this.getStoreArray();
  511. }
  512. },
  513. getNoSpellingArray() {
  514. this.axios
  515. .post("/api/v1/qms/getQueueListByQueueUp?isSpelling=0&i=" + new Date())
  516. .then(res => {
  517. this.tableData1 = res.data.data;
  518. console.log(this.tableData1);
  519. });
  520. },
  521. getSpellingArray() {
  522. this.axios
  523. .post(
  524. "/api/v1/qms/getQueueListByQueueUp?apiId=473&isSpelling=1&i=" +
  525. new Date()
  526. )
  527. .then(res => {
  528. this.tableData = res.data.data;
  529. console.log(this.tableData);
  530. this.getSpanArr(this.tableData);
  531. });
  532. },
  533. getStoreArray() {
  534. this.axios
  535. .post(
  536. "/api/v1/qms/getStoreQueueList"
  537. )
  538. .then(res => {
  539. this.tableData3 = res.data.data;
  540. console.log("getStoreArray "+JSON.stringify(this.tableData3));
  541. });
  542. },
  543. onclick() {
  544. if (this.activeName == "first") {
  545. this.axios
  546. .post(
  547. "/api/v1/qms/getQueueListByQueueUp?isSpelling=0&i=" +
  548. new Date() +
  549. "&capacityNumber=" +
  550. this.capacityNo
  551. )
  552. .then(res => {
  553. this.tableData1 = res.data.data;
  554. });
  555. console.log("wzxxx");
  556. } else {
  557. this.axios
  558. .post(
  559. "/api/v1/qms/getQueueListByQueueUp?apiId=473&isSpelling=1&i=" +
  560. new Date() +
  561. "&capacityNumber=" +
  562. this.capacityNo
  563. )
  564. .then(res => {
  565. this.tableData = res.data.data;
  566. this.getSpanArr(this.tableData);
  567. });
  568. }
  569. },
  570. handleSelectionChange(selection) {
  571. this.maplist = [];
  572. this.maplist = selection;
  573. for (let i = 0; i < this.maplist.length; i++) {
  574. if (i + 1 < this.maplist.length) {
  575. if (this.maplist[i].ROW_ID + 1 != this.maplist[i + 1].ROW_ID) {
  576. this.$refs.mutiData.clearSelection();
  577. }
  578. }
  579. }
  580. //限制只取第一个去掉
  581. // if (
  582. // !this.maplist.some(e => {
  583. // return e.ROW_ID == 1;
  584. // })
  585. // ) {
  586. // this.$refs.mutiData.clearSelection();
  587. // }
  588. },
  589. updateBill(scope) {
  590. console.log(scope.row.capacityId);
  591. this.$router.push(
  592. `/editBill/${scope.row.capacityId}/${scope.row.capacityNumber}`
  593. );
  594. },
  595. filterArr(resultId) {
  596. console.log("fdhjsaj");
  597. this.filterArr1 = this.filterArr1.concat(
  598. this.tableData.filter(ele => ele.resultId == resultId)
  599. );
  600. },
  601. allow() {
  602. if (this.maplist.length == 0) {
  603. this.$message.error("请选择需要放行的车辆");
  604. return;
  605. }
  606. for (let i = 0; i < this.maplist.length; i++) {
  607. console.log(typeof this.maplist[i].id);
  608. if (
  609. typeof this.maplist[i].id == "undefined" ||
  610. this.maplist[i].id == null ||
  611. this.maplist[i].id == "null"
  612. ) {
  613. this.$message.error("请选择装货点");
  614. return;
  615. }
  616. let warehouse=this.tableData3.find(value=>value.materialPriority===this.maplist[i].id);
  617. console.log("warehouse",warehouse);
  618. if(warehouse && warehouse.carQueue >= 10){
  619. this.$message.error("该仓库已经有10辆车在排队,不允许放行!");
  620. return;
  621. }
  622. this.filterArr(this.maplist[i].resultId);
  623. }
  624. var filterArr2 = [];
  625. this.filterArr1.forEach(e => {
  626. if (filterArr2.indexOf(e) === -1) {
  627. filterArr2.push(e);
  628. }
  629. });
  630. let map = {
  631. ssoId: getCookie("userId"),
  632. mapList: filterArr2
  633. };
  634. if (this.activeName == "first") {
  635. map.mapList = this.maplist;
  636. }
  637. this.axios.post("/api/v1/qms/allowEnFactory", map).then(res => {
  638. if (res.data.code == "200") {
  639. this.$message.success("放行成功,等待进厂");
  640. this.maplist = [];
  641. this.$refs.mutiData.clearSelection();
  642. this.getNoSpellingArray();
  643. this.getSpellingArray();
  644. this.getStoreArray();
  645. this.redDotNum = null;
  646. this.totalQueueNum = null;
  647. this.totalQueueNumFirst = null;
  648. this.i = 0;
  649. clearInterval(this.timer);
  650. this.start();
  651. } else {
  652. this.$message.error("请按顺序勾选");
  653. this.maplist = [];
  654. this.$refs.mutiData.clearSelection();
  655. this.getNoSpellingArray();
  656. this.getSpellingArray();
  657. this.getStoreArray();
  658. this.redDotNum = null;
  659. this.totalQueueNum = null;
  660. this.totalQueueNumFirst = null;
  661. this.i = 0;
  662. clearInterval(this.timer);
  663. this.start();
  664. }
  665. });
  666. },
  667. changePriority(row){
  668. console.log("装货点:"+row.id);
  669. console.log("订单id"+row.orderId);
  670. console.log("物资ID"+row.materialId);
  671. let map = {
  672. id: row.id,
  673. orderId: row.orderId,
  674. materialId: row.materialId
  675. };
  676. this.axios.post("/api/v1/qms/modifyLoadWarehouse",map)
  677. .then((res)=>{
  678. console.log(res)
  679. if (res.data.code=="200"){
  680. this.$message.success("更新装货点成功")
  681. }else {
  682. this.$message.error("更新装货点失败")
  683. }
  684. })
  685. //this.axios.post("")
  686. }
  687. }
  688. };
  689. </script>
  690. <style lang="scss" scoped>
  691. .sale {
  692. .top {
  693. width: 100%;
  694. height: 80px;
  695. display: flex;
  696. align-items: center;
  697. padding-left: 40px;
  698. .el-form {
  699. display: flex;
  700. justify-content: center;
  701. align-items: center;
  702. .el-form-item__label {
  703. align-items: center;
  704. line-height: 80px;
  705. }
  706. }
  707. }
  708. .input {
  709. width: 250px;
  710. margin-right: 20px;
  711. }
  712. .tabs {
  713. margin-left: 20px;
  714. margin-top: 10px;
  715. .tabs /deep/ .el-tabs__nav {
  716. font-size: 40px;
  717. }
  718. }
  719. }
  720. </style>