index.vue 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629
  1. <template>
  2. <basic-container>
  3. <avue-crud :option="option" :table-loading="loading" :data="data" :page.sync="page" :search.sync="query"
  4. v-model="form" ref="crud" id="out-table" :header-cell-class-name="headerClassName"
  5. @selection-change="selectionChange" @search-change="searchChange" @search-reset="searchReset"
  6. @current-change="currentChange" @size-change="sizeChange" @refresh-change="refreshChange"
  7. @resetColumn="resetColumnTwo('crud', 'option', 'optionBack', 332)"
  8. @saveColumn="saveColumnTwo('crud', 'option', 'optionBack', 332)" @on-load="onLoad">
  9. <template slot="menuLeft">
  10. <el-button type="success" size="small" plain @click="exportfun">导出</el-button>
  11. <el-button type="primary" size="small" plain>打印报表</el-button>
  12. <el-button type="info" size="small" plain @click="designReportStart">设计报表</el-button>
  13. </template>
  14. <template slot="header">
  15. <el-table :data="commodityData" border size="small" @header-click="cellClick" style="width: 100%">
  16. <el-table-column v-for="(item, index) in commodityLabel" :key="index" :prop="item.prop"
  17. show-overflow-tooltip :label="item.label" />
  18. </el-table>
  19. </template>
  20. <template slot-scope="{disabled,size}" slot="dcSearch">
  21. <el-radio v-model="query.dc" label="D" @input="dcInput">应收</el-radio>
  22. <el-radio v-model="query.dc" label="C" @input="dcInput">应付</el-radio>
  23. </template>
  24. <template slot-scope="{disabled,size}" slot="typeSearch">
  25. <search-query :datalist="typeData" :selectValue="query.type" :buttonIf="false"
  26. @corpChange="corpChange($event, 'type')">
  27. </search-query>
  28. </template>
  29. <template slot-scope="{disabled,size}" slot="businessTypeSearch">
  30. <search-query :datalist="businessTypeData" :selectValue="query.businessType" :clearable="true"
  31. :buttonIf="false" :forParameter="{ key: 'dictKey', label: 'dictValue', value: 'dictKey' }"
  32. @corpFocus="businessTypeFocus" @corpChange="corpChange($event, 'businessType')">
  33. </search-query>
  34. </template>
  35. <template slot-scope="{disabled,size}" slot="clientIdSearch">
  36. <search-query :datalist="clientIdData" :selectValue="query.clientName" :filterable="true" :remote="true"
  37. :clearable="true" :disabled="query.type != 2" :buttonIf="false"
  38. :forParameter="{ key: 'id', label: 'cnName', value: 'cnName' }" @remoteMethod="clientIdListfun"
  39. @corpFocus="clientIdListfun" @corpChange="corpChange($event, 'clientName')">
  40. </search-query>
  41. </template>
  42. <template slot-scope="{disabled,size}" slot="corpIdSearch">
  43. <search-query :datalist="corpIdData" :selectValue="query.corpName" :disabled="query.type != 1"
  44. :filterable="true" :remote="true" :clearable="true" :buttonIf="false"
  45. :forParameter="{ key: 'id', label: 'cnName', value: 'cnName' }" @remoteMethod="getBcorpsListfun"
  46. @corpFocus="getBcorpsListfun" @corpChange="corpChange($event, 'corpName')">
  47. </search-query>
  48. </template>
  49. <template slot-scope="{disabled,size}" slot="srcTypeSearch">
  50. <search-query :datalist="srcTypeData" :selectValue="query.srcType" :disabled="query.type != 3"
  51. :clearable="true" :buttonIf="false"
  52. :forParameter="{ key: 'dictKey', label: 'dictValue', value: 'dictKey' }"
  53. @corpFocus="srcTypeWorkDictsfun" @corpChange="corpChange($event, 'srcType')">
  54. </search-query>
  55. </template>
  56. <template slot-scope="{disabled,size}" slot="srcIdSearch">
  57. <search-query :datalist="srcIdData" :selectValue="query.srcName" :disabled="query.type != 3"
  58. :filterable="true" :remote="true" :clearable="true" :buttonIf="false"
  59. :forParameter="srcforParameter" @remoteMethod="srcCorpFocus" @corpFocus="srcCorpFocus"
  60. @corpChange="corpChange($event, 'srcName')">
  61. </search-query>
  62. </template>
  63. <template slot-scope="{disabled,size}" slot="isBusinessDateSearch">
  64. <el-checkbox v-model="query.isBusinessDate" :true-label="1" :false-label="0"
  65. @change="dateChange('isBusinessDate')">按业务日期</el-checkbox>
  66. <el-checkbox v-model="query.isToExamineDate" :true-label="1" :false-label="0"
  67. @change="dateChange('isToExamineDate')">按审核日期</el-checkbox>
  68. </template>
  69. </avue-crud>
  70. <!--设计报表弹窗-->
  71. <el-dialog append-to-body title="设计报表" class="el-dialogDeep" :visible.sync="DesignreportDialog" width="70%"
  72. :close-on-click-modal="false" :destroy-on-close="true" :close-on-press-escape="false" v-dialog-drag>
  73. <reports :id="form.id" :assemblyForm="form" businessValue="JCFX" classifyCode="SFHZ"></reports>
  74. </el-dialog>
  75. </basic-container>
  76. </template>
  77. <script>
  78. import SearchQuery from "@/components/iosbasic-data/searchquery.vue";
  79. import { startDate, endDate } from "@/util/date";
  80. import { financeStatisticsFeeSummary, financeStatisticsFeeSummarySum } from "@/api/iosBasicData/paymentSummary"
  81. import { getBcorpsList, getBcorpslistByType } from "@/api/iosBasicData/bcorps";
  82. import { getWorkDicts } from "@/api/system/dictbiz";
  83. import { getDeptLazyTree } from "@/api/system/dept";
  84. import { getList as userGetList } from '@/api/system/user'
  85. import { getToken } from "@/util/auth";
  86. import reports from "@/views/iosBasicData/SeafreightExportF/bills/assembly/reports.vue";
  87. export default {
  88. components: { reports, SearchQuery },
  89. data() {
  90. return {
  91. DesignreportDialog: false, // 设计报表弹窗
  92. printingDialog: false, // 打印弹窗
  93. form: {},
  94. loading: true,
  95. page: {
  96. pageSize: 10,
  97. currentPage: 1,
  98. total: 0
  99. },
  100. query: {
  101. dc: 'D',
  102. isBusinessDate: 1,
  103. isToExamineDate: 0,
  104. type: '1',
  105. etdStart: startDate(),
  106. etdEnd: endDate(),
  107. },
  108. option: {},
  109. optionBack: {
  110. height: 'auto',
  111. calcHeight: 30,
  112. tip: false,
  113. searchShow: true,
  114. searchMenuSpan: 12,
  115. border: true,
  116. index: false,
  117. selection: true,
  118. dialogClickModal: false,
  119. menu: false,
  120. addBtn: false,
  121. viewBtn: false,
  122. delBtn: false,
  123. editBtn: false,
  124. searchIcon: true,
  125. searchIndex: 3,
  126. emptyBtnText: '清空所有条件',
  127. column: [
  128. {
  129. label: "结算单位",
  130. prop: "corpName",
  131. overHidden: true,
  132. },
  133. {
  134. label: "查询方式",
  135. prop: "type",
  136. hide: true,
  137. search: true,
  138. type: 'select',
  139. searchslot: true,
  140. },
  141. {
  142. label: "业务类型",
  143. prop: "businessType",
  144. hide: true,
  145. search: true,
  146. searchslot: true,
  147. },
  148. {
  149. label: "统计开始",
  150. prop: "etdStart",
  151. search: true,
  152. overHidden: true,
  153. hide: true,
  154. type: "date",
  155. format: "yyyy-MM-dd",
  156. valueFormat: "yyyy-MM-dd",
  157. },
  158. {
  159. label: "统计结束",
  160. prop: "etdEnd",
  161. search: true,
  162. overHidden: true,
  163. hide: true,
  164. type: "date",
  165. format: "yyyy-MM-dd",
  166. valueFormat: "yyyy-MM-dd",
  167. },
  168. {
  169. label: "应收美金",
  170. prop: "amountUsd",
  171. overHidden: true,
  172. },
  173. {
  174. label: "应收人民币",
  175. prop: "amount",
  176. overHidden: true,
  177. },
  178. {
  179. label: "已收款美金",
  180. prop: "amountUsdAlready",
  181. overHidden: true,
  182. },
  183. {
  184. label: "已收款人民币",
  185. prop: "amountAlready",
  186. overHidden: true,
  187. },
  188. {
  189. label: "未收款美金",
  190. prop: "amountUsdNot",
  191. overHidden: true,
  192. },
  193. {
  194. label: "未收款人民币",
  195. prop: "amountNot",
  196. overHidden: true,
  197. },
  198. {
  199. label: "委托人",
  200. prop: "clientId",
  201. hide: true,
  202. search: true,
  203. searchslot: true,
  204. },
  205. {
  206. label: "结算单位",
  207. prop: "corpId",
  208. hide: true,
  209. search: true,
  210. searchslot: true,
  211. },
  212. {
  213. label: "业务来源",
  214. prop: "srcType",
  215. hide: true,
  216. search: true,
  217. searchslot: true,
  218. },
  219. {
  220. label: "业务员",
  221. prop: "srcId",
  222. hide: true,
  223. search: true,
  224. searchslot: true,
  225. },
  226. {
  227. label: "",
  228. prop: "dc",
  229. hide: true,
  230. search: true,
  231. searchslot: true,
  232. searchLabelWidth: '0'
  233. },
  234. {
  235. label: "",
  236. prop: "isBusinessDate",
  237. hide: true,
  238. search: true,
  239. searchslot: true,
  240. searchLabelWidth: '0'
  241. },
  242. {
  243. label: "",
  244. prop: "isToExamineDate",
  245. hide: true,
  246. searchLabelWidth: '0',
  247. },
  248. ]
  249. },
  250. data: [],
  251. // 查询方式
  252. typeData: [
  253. {
  254. label: '结算单位',
  255. value: '1'
  256. }, {
  257. label: '委托人',
  258. value: '2'
  259. }, {
  260. label: '业务来源',
  261. value: '3'
  262. }
  263. ],
  264. // 业务类型
  265. businessTypeData: [],
  266. clientIdData: [], // 委托人
  267. corpIdData: [], // 结算单位
  268. srcTypeData: [], // 业务来源
  269. srcIdData: [], // 业务员
  270. srcforParameter: { key: 'id', label: 'cnName', value: 'cnName' },
  271. selectionList: [], // 多选数据
  272. commodityData: [], // 合计数据
  273. // 合计的配置项
  274. commodityLabel: [
  275. {
  276. id: 1,
  277. label: '应收美元',
  278. prop: 'amountUsd'
  279. },
  280. {
  281. id: 2,
  282. label: '应收人民币',
  283. prop: 'amount'
  284. },
  285. {
  286. id: 3,
  287. label: "已收款美金",
  288. prop: "amountUsdAlready",
  289. },
  290. {
  291. id: 4,
  292. label: "已收款人民币",
  293. prop: "amountAlready",
  294. },
  295. {
  296. id: 5,
  297. label: "未收款美金",
  298. prop: "amountUsdNot",
  299. },
  300. {
  301. id: 6,
  302. label: "未收款人民币",
  303. prop: "amountNot",
  304. },
  305. ],
  306. }
  307. },
  308. async created() {
  309. this.option = await this.getColumnData(this.getColumnName(332), this.optionBack);
  310. this.query = {
  311. dc: 'D',
  312. isBusinessDate: 1,
  313. isToExamineDate: 0,
  314. type: '1',
  315. etdStart: startDate(),
  316. etdEnd: endDate(),
  317. }
  318. },
  319. methods: {
  320. // 设计报表
  321. designReportStart() {
  322. this.DesignreportDialog = true
  323. // this.selectionList
  324. if (this.selectionList.length == 0) {
  325. return this.$message.warning('请选择一条数据')
  326. } else {
  327. }
  328. },
  329. // 导出
  330. exportfun() {
  331. const routeData = this.$router.resolve({
  332. path: '/api/blade-los/financeStatistics/feeSummaryExport',//跳转目标窗口的地址
  333. query: {
  334. ...this.query
  335. }
  336. })
  337. window.open(routeData.href.slice(1, routeData.href.length) + '&' + `${this.website.tokenHeader}=${getToken()}`);
  338. },
  339. // 下拉监听
  340. corpChange(value, name) {
  341. if (name == 'type') {
  342. if (value == 1) {
  343. this.$set(this.query, 'clientId', null)
  344. this.$set(this.query, 'clientName', null)
  345. this.$set(this.query, 'srcType', null)
  346. this.$set(this.query, 'srcId', null)
  347. this.$set(this.query, 'srcName', null)
  348. this.findObject(this.option.column, "corpName").label = '结算单位'
  349. } else if (value == 2) {
  350. this.$set(this.query, 'corpId', null)
  351. this.$set(this.query, 'corpName', null)
  352. this.$set(this.query, 'srcType', null)
  353. this.$set(this.query, 'srcId', null)
  354. this.$set(this.query, 'srcName', null)
  355. this.findObject(this.option.column, "corpName").label = '委托人'
  356. } else if (value == 3) {
  357. this.$set(this.query, 'corpId', null)
  358. this.$set(this.query, 'corpName', null)
  359. this.$set(this.query, 'clientId', null)
  360. this.$set(this.query, 'clientName', null)
  361. this.findObject(this.option.column, "corpName").label = '业务来源'
  362. }
  363. this.$set(this.query, name, value)
  364. } else if (name == 'corpName') {
  365. for (let item of this.corpIdData) {
  366. if (item.cnName == value) {
  367. this.$set(this.query, 'corpId', item.id)
  368. this.$set(this.query, 'corpName', item.cnName)
  369. }
  370. }
  371. } else if (name == 'clientName') {
  372. for (let item of this.clientIdData) {
  373. if (item.cnName == value) {
  374. this.$set(this.query, 'clientId', item.id)
  375. this.$set(this.query, 'clientName', item.cnName)
  376. }
  377. }
  378. } else if (name == 'srcType') {
  379. if (value == 'OWN') {
  380. // 公司
  381. this.srcforParameter = { key: 'id', label: 'title', value: 'title' }
  382. this.findObject(this.option.column, "srcId").label = '公司'
  383. this.ownDeptLazyTreefun()
  384. } else if (value == 'AGENT') {
  385. // 代理
  386. this.srcforParameter = { key: 'id', label: 'cnName', value: 'cnName' }
  387. this.findObject(this.option.column, "srcId").label = '代理'
  388. this.agentBcorpsListfun()
  389. } else if (value == 'SALES') {
  390. // 业务员
  391. this.srcforParameter = { key: 'id', label: 'name', value: 'name' }
  392. this.findObject(this.option.column, "srcId").label = '业务员'
  393. this.salesUserGetListfun()
  394. } else { }
  395. this.$set(this.query, name, value)
  396. } else if (name == 'srcName') {
  397. for (let item of this.srcIdData) {
  398. if (item[this.srcforParameter.value] == value) {
  399. if (this.query.srcType == 'SALES') {
  400. // 业务员
  401. this.$set(this.query, 'srcId', item.id)
  402. this.$set(this.query, 'srcName', item.name)
  403. } else if (this.form.srcType == 'AGENT') {
  404. // 代理
  405. this.$set(this.query, 'srcId', item.id)
  406. this.$set(this.query, 'srcName', item.cnName)
  407. } else {
  408. this.$set(this.query, 'srcId', item.id)
  409. this.$set(this.query, 'srcName', item.title)
  410. }
  411. }
  412. }
  413. }
  414. this.$set(this.query, name, value)
  415. },
  416. // 业务员下拉
  417. srcCorpFocus(value, name) {
  418. if (this.query.srcType == 'SALES') {
  419. // 业务员
  420. this.srcforParameter = { key: 'id', label: 'name', value: 'name' }
  421. this.salesUserGetListfun(value)
  422. } else if (this.form.srcType == 'AGENT') {
  423. // 代理
  424. this.srcforParameter = { key: 'id', label: 'cnName', value: 'cnName' }
  425. this.agentBcorpsListfun(value)
  426. } else if (this.form.srcType == 'OWN') {
  427. // 公司
  428. this.srcforParameter = { key: 'id', label: 'title', value: 'title' }
  429. this.ownDeptLazyTreefun()
  430. } else { }
  431. },
  432. // 多选切换
  433. dateChange(name) {
  434. if (name == 'isBusinessDate') {
  435. this.$set(this.query, 'isToExamineDate', 0)
  436. this.$set(this.query, 'isBusinessDate', 1)
  437. }
  438. if (name == 'isToExamineDate') {
  439. this.$set(this.query, 'isBusinessDate', 0)
  440. this.$set(this.query, 'isToExamineDate', 1)
  441. }
  442. this.page.currentPage = 1;
  443. this.onLoad(this.page, this.query);
  444. },
  445. // 收付单选
  446. dcInput() {
  447. let dcName = ''
  448. if (this.query.dc == 'D') {
  449. dcName = '收'
  450. } else {
  451. dcName = '付'
  452. }
  453. this.findObject(this.option.column, "amountUsd").label = `应${dcName}美金`
  454. this.findObject(this.option.column, "amount").label = `应${dcName}人民币`
  455. this.findObject(this.option.column, "amountUsdAlready").label = `已${dcName}款美金`
  456. this.findObject(this.option.column, "amountAlready").label = `已${dcName}款人民币`
  457. this.findObject(this.option.column, "amountUsdNot").label = `未${dcName}款美金`
  458. this.findObject(this.option.column, "amountNot").label = `未${dcName}款人民币`
  459. this.findObject(this.commodityLabel, "amountUsd").label = `应${dcName}美金`
  460. this.findObject(this.commodityLabel, "amount").label = `应${dcName}人民币`
  461. this.findObject(this.commodityLabel, "amountUsdAlready").label = `已${dcName}款美金`
  462. this.findObject(this.commodityLabel, "amountAlready").label = `已${dcName}款人民币`
  463. this.findObject(this.commodityLabel, "amountUsdNot").label = `未${dcName}款美金`
  464. this.findObject(this.commodityLabel, "amountNot").label = `未${dcName}款人民币`
  465. this.page.currentPage = 1;
  466. this.onLoad(this.page, this.query);
  467. },
  468. // 接口获取数据
  469. // 结算单位
  470. getBcorpsListfun(cnName) {
  471. getBcorpsList(1, 10, { cnName, status: 0 }).then(res => {
  472. this.corpIdData = res.data.data.records
  473. })
  474. },
  475. // 业务类型
  476. businessTypeFocus() {
  477. getWorkDicts('profit_business_type_los').then(res => {
  478. this.businessTypeData = res.data.data
  479. })
  480. },
  481. // 委托人
  482. clientIdListfun(cnName) {
  483. getBcorpsList(1, 10, { cnName, status: 0 }).then(res => {
  484. this.clientIdData = res.data.data.records
  485. })
  486. },
  487. // 获取业务来源数据
  488. srcTypeWorkDictsfun() {
  489. getWorkDicts('src_type_los').then(res => {
  490. this.srcTypeData = res.data.data
  491. })
  492. },
  493. // 获取公司名称 用户管理左侧
  494. ownDeptLazyTreefun() {
  495. getDeptLazyTree(0).then(res => {
  496. this.srcIdData = res.data.data
  497. })
  498. },
  499. // 获取业务来源代理数据
  500. agentBcorpsListfun(cnName) {
  501. let corpTypeName = '国内直接客户,国内同行及代理,国外直接客户,国外同行及代理'
  502. getBcorpslistByType(1, 10, { cnName, status: 0, corpTypeName }).then(res => {
  503. this.srcIdData = res.data.data.records
  504. })
  505. },
  506. // 获取业务来源业务员数据
  507. salesUserGetListfun(account) {
  508. userGetList(1, 10, { account }).then(res => {
  509. this.srcIdData = res.data.data.records
  510. })
  511. },
  512. // 清空搜索回调方法
  513. searchReset() {
  514. this.query = {
  515. dc: 'D',
  516. isBusinessDate: 1,
  517. isToExamineDate: 0,
  518. type: '1',
  519. etdStart: null,
  520. etdEnd: null,
  521. };
  522. this.onLoad(this.page);
  523. },
  524. // 搜索
  525. searchChange(params, done) {
  526. this.page.currentPage = 1;
  527. this.onLoad(this.page, this.query);
  528. done();
  529. },
  530. currentChange(currentPage) {
  531. this.page.currentPage = currentPage;
  532. },
  533. sizeChange(pageSize) {
  534. this.page.pageSize = pageSize;
  535. },
  536. refreshChange() {
  537. this.onLoad(this.page, this.query);
  538. },
  539. // 多选弹窗
  540. selectionChange(list) {
  541. this.selectionList = list;
  542. },
  543. onLoad(page, params = {}) {
  544. this.loading = true;
  545. financeStatisticsFeeSummary(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
  546. const data = res.data.data;
  547. this.page.total = data.total;
  548. this.data = data.records;
  549. this.loading = false;
  550. financeStatisticsFeeSummarySum(Object.assign(params, this.query)).then(re => {
  551. this.commodityData = [re.data.data]
  552. })
  553. this.selectionClear();
  554. });
  555. },
  556. selectionClear() {
  557. this.$refs.crud.toggleSelection();
  558. },
  559. //自定义列保存
  560. async saveColumnTwo(ref, option, optionBack, code) {
  561. /**
  562. * 已定义全局方法,直接使用,saveColumnData保存列数据方法,参数传值(表格名称,当前表格的option数据)
  563. * 已定义全局方法,直接使用,getColumnName方法用来获取枚举值,参数根据自己定义的code值获取中文名
  564. * 一定要执行异步操作,要等接口成功返回,才能执行下一行代码
  565. */
  566. const inSave = await this.saveColumnData(this.getColumnName(code), this[option]);
  567. if (inSave) {
  568. this.$message.success("保存成功");
  569. //关闭窗口
  570. this.$refs[ref].$refs.dialogColumn.columnBox = false;
  571. }
  572. },
  573. //自定义列重置
  574. async resetColumnTwo(ref, option, optionBack, code) {
  575. this[option] = this[optionBack];
  576. const inSave = await this.delColumnData(this.getColumnName(code), this[optionBack]);
  577. if (inSave) {
  578. this.$message.success("重置成功");
  579. this.$refs[ref].$refs.dialogColumn.columnBox = false;
  580. this.query = {
  581. dc: 'D',
  582. isBusinessDate: 1,
  583. isToExamineDate: 0,
  584. type: '1',
  585. etdStart: startDate(),
  586. etdEnd: endDate(),
  587. }
  588. }
  589. },
  590. // 更改表格颜色
  591. headerClassName(tab) {
  592. //颜色间隔
  593. let back = ""
  594. if (tab.columnIndex >= 0 && tab.column.level === 1) {
  595. if (tab.columnIndex % 2 === 0) {
  596. back = "back-one"
  597. } else if (tab.columnIndex % 2 === 1) {
  598. back = "back-two"
  599. }
  600. }
  601. return back;
  602. },
  603. }
  604. }
  605. </script>
  606. <style scoped>
  607. ::v-deep#out-table .back-one {
  608. background: #ecf5ff !important;
  609. text-align: center;
  610. }
  611. ::v-deep#out-table .back-two {
  612. background: #ecf5ff !important;
  613. text-align: center;
  614. }
  615. ::v-deep .el-col-md-8 {
  616. width: 24.33333%;
  617. }
  618. </style>