list.vue 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519
  1. <template>
  2. <a-card size="small" :bordered="false" class="financialCollectionList-wrap">
  3. <a-spin :spinning="spinning" tip="Loading...">
  4. <!-- 标签页 -->
  5. <a-tabs type="card" v-model="queryParam.bizType" @change="handleTabChange" class="financialCollectionList-tabs ">
  6. <a-tab-pane v-for="item in tabPaneData" :key="item.bizType">
  7. <span slot="tab">{{ item.bizName }}({{ item.countNum }})</span>
  8. </a-tab-pane>
  9. </a-tabs>
  10. <!-- 搜索条件 -->
  11. <div ref="tableSearch" class="table-page-search-wrapper">
  12. <a-form layout="inline" @keyup.enter.native="searchForm">
  13. <a-row :gutter="15">
  14. <a-col :md="6" :sm="24">
  15. <a-form-item label="收款单号"><a-input id="financialCollectionList-settleNo" v-model.trim="queryParam.settleNo" allowClear placeholder="请输入收款单号" /></a-form-item>
  16. </a-col>
  17. <a-col :md="6" :sm="24">
  18. <a-form-item label="关联单号"><a-input id="financialCollectionList-bizNo" v-model.trim="queryParam.bizNo" allowClear placeholder="请输入关联单号" /></a-form-item>
  19. </a-col>
  20. <a-col :md="6" :sm="24">
  21. <a-form-item label="商户名称">
  22. <a-input id="financialCollectionList-settleClientName" v-model.trim="queryParam.settleClientName" allowClear placeholder="请输入商户名称" />
  23. </a-form-item>
  24. </a-col>
  25. <template v-if="advanced">
  26. <a-col :md="6" :sm="24">
  27. <a-form-item label="单据状态">
  28. <v-select
  29. v-model="queryParam.billState"
  30. ref="settleState"
  31. id="financialCollectionList-settleState"
  32. code="SETTLE_RECEIVE_STATUS"
  33. placeholder="请选择单据状态"
  34. allowClear
  35. ></v-select>
  36. </a-form-item>
  37. </a-col>
  38. <a-col :md="6" :sm="24">
  39. <a-form-item label="创建时间">
  40. <rangeDate ref="createDate" @change="createDateChange" />
  41. </a-form-item>
  42. </a-col>
  43. <a-col :md="6" :sm="24">
  44. <a-form-item label="审核时间">
  45. <rangeDate ref="rangeDate" @change="dateChange" />
  46. </a-form-item>
  47. </a-col>
  48. <a-col :md="6" :sm="24">
  49. <a-form-item label="收款时间">
  50. <rangeDate ref="settleDate" @change="settleChange" />
  51. </a-form-item>
  52. </a-col>
  53. </template>
  54. <a-col :md="6" :sm="24">
  55. <span class="table-page-search-submitButtons">
  56. <a-button type="primary" @click="searchForm()" :disabled="disabled" id="financialCollectionList-refresh">查询</a-button>
  57. <a-button style="margin-left: 5px" @click="resetSearchForm()" :disabled="disabled" id="financialCollectionList-reset">重置</a-button>
  58. <a @click="advanced = !advanced" style="margin-left: 5px">
  59. {{ advanced ? '收起' : '展开' }}
  60. <a-icon :type="advanced ? 'up' : 'down'" />
  61. </a>
  62. </span>
  63. </a-col>
  64. </a-row>
  65. </a-form>
  66. </div>
  67. <!-- alert -->
  68. <a-alert type="info" style="margin-bottom:10px">
  69. <div slot="message">
  70. <strong>{{ totalData&&(totalData.count || totalData.count==0) ? totalData.count : '--' }}</strong>
  71. 条记录,应收金额合计
  72. <strong>{{ totalData&&(totalData.totalAmount || totalData.totalAmount==0) ? toThousands(totalData.totalAmount) : '--' }}</strong>
  73. ,其中已收金额
  74. <strong>{{ totalData&&(totalData.settledAmount || totalData.settledAmount==0) ? toThousands(totalData.settledAmount) : '--' }}</strong>
  75. ,待收金额
  76. <strong>{{ totalData&&(totalData.unsettleAmount || totalData.unsettleAmount==0) ? toThousands(totalData.unsettleAmount) : '--' }}</strong>
  77. </div>
  78. </a-alert>
  79. <div v-if="$hasPermissions('B_financialCollectionPl')" style="margin-bottom: 10px">
  80. <a-button type="primary" id="financialCollectionList-export" :loading="loading" @click="enableFundAccount ? handleSettleAcountPay(null,1) : handleCollection()">批量收款</a-button>
  81. <span style="margin-left: 8px" v-if="$hasPermissions('B_financialCollectionPl')">
  82. <template v-if="rowSelectionInfo&&rowSelectionInfo.selectedRowKeys.length>0">{{ `已选 ${rowSelectionInfo.selectedRowKeys.length} 项` }}</template>
  83. <template v-if="selectTotalAmount">,合计{{ toThousands(selectTotalAmount) }}</template>
  84. </span>
  85. </div>
  86. <!-- 列表 -->
  87. <s-table
  88. class="sTable fixPagination"
  89. ref="table"
  90. :style="{ height: tableHeight+84.5+'px' }"
  91. size="small"
  92. :rowKey="record => record.id"
  93. :row-selection="$hasPermissions('B_financialCollectionPl') ? { columnWidth: 40, getCheckboxProps: record => ({ props: { disabled: record.settleState == 'SETTLED' } }) } : null"
  94. @rowSelection="rowSelectionFun"
  95. :columns="columns"
  96. :data="loadData"
  97. :scroll="{ y: tableHeight }"
  98. :defaultLoadData="false"
  99. bordered
  100. >
  101. <!-- 关联单号 -->
  102. <template slot="bizNo" slot-scope="text, record">
  103. <span class="table-td-link" @click="handleDetail(record)">{{ record.bizNo }}</span>
  104. </template>
  105. <!-- 操作 -->
  106. <template slot="action" slot-scope="text, record">
  107. <a-button
  108. size="small"
  109. type="link"
  110. class="button-primary"
  111. v-if="record.settleState == 'SETTLED' && $hasPermissions('B_financialCollectionDetail')"
  112. @click="handleVoucher(record)"
  113. id="financialCollectionList-voucher-btn">凭证</a-button>
  114. <a-button
  115. size="small"
  116. type="link"
  117. :loading="loading"
  118. class="button-error"
  119. v-if="(record.settleState == 'UNSETTLE' || record.settleState == 'PART_SETTLED')&&record.satelliteFlag!=1 && $hasPermissions('B_financialCollectionSing')"
  120. @click="enableFundAccount ? handleSettleAcountPay(record,0) : handleCollectionSing(record)"
  121. id="financialCollectionList-pay-btn">收款</a-button>
  122. <span v-if="!(record.settleState == 'SETTLED' && $hasPermissions('B_financialCollectionDetail')) && !((record.settleState == 'UNSETTLE' || record.settleState == 'PART_SETTLED')&&record.satelliteFlag!=1 && $hasPermissions('B_financialCollectionSing'))">--</span>
  123. <!-- satelliteFlag为1,是卫星仓 -->
  124. </template>
  125. </s-table>
  126. </a-spin>
  127. <!-- 详情 -->
  128. <detail-modal :openModal="openModal" ref="detailModal" @close="openModal = false" />
  129. <!-- 关联单号详情 -->
  130. <a-modal
  131. centered
  132. class="outboundOrderDetail-modal"
  133. :footer="null"
  134. :maskClosable="false"
  135. :bodyStyle="{padding:'12px'}"
  136. :title="curBizTitle"
  137. v-model="openDetailModal"
  138. v-if="openDetailModal&&fcBizType!='SPARE_PARTS_RETURN'"
  139. @cancel="handleDetailClose"
  140. width="80%">
  141. <div style="max-height: 700px;overflow-y: auto;">
  142. <!-- 销售单 -->
  143. <salesDetailModal v-if="fcBizType=='SELL'" :outBizSn="orderSn" />
  144. <!-- 采购退货 -->
  145. <pushOrderDetailModal v-if="fcBizType=='PURCHASE_RETURN'&&!$hasPermissions('M_purchaseReturn_outSnycList')" :outBizSn="orderSn" />
  146. <pushOrderOutSyncDetailModal v-if="fcBizType=='PURCHASE_RETURN'&&$hasPermissions('M_purchaseReturn_outSnycList')" :outBizSn="orderSn"></pushOrderOutSyncDetailModal>
  147. <!-- 店内调出 -->
  148. <storeTransferOutDetailModal v-if="fcBizType=='STORE_CALL_OUT'" :outBizSn="orderSn"></storeTransferOutDetailModal>
  149. <!-- 连锁调出 -->
  150. <chainTransferOutDetailModal v-if="fcBizType=='LINKAGE_CALL_OUT'" :outBizSn="orderSn" />
  151. </div>
  152. </a-modal>
  153. <!-- 散件退货 -->
  154. <bulkReturnGoods-detail-modal :openModal="openBulkReturnDetailModal" :itemSn="orderSn" @close="handleDetailClose" />
  155. <!-- 收付款弹框 -->
  156. <settleModal ref="settleModal" @ok="settleAcountPay" :openModal="openSettleModal" @close="openSettleModal=false"></settleModal>
  157. </a-card>
  158. </template>
  159. <script>
  160. import { commonMixin } from '@/utils/mixin'
  161. import { mapActions } from 'vuex'
  162. import { STable, VSelect } from '@/components'
  163. import detailModal from './detailModal.vue'
  164. import settleModal from '../settleModal/settleModal.vue'
  165. import rangeDate from '@/views/common/rangeDate.vue'
  166. import salesDetailModal from '@/views/salesManagement/salesQuery/detail.vue'
  167. // 同步采购退货单详情
  168. import pushOrderDetailModal from '@/views/purchasingManagement/purchaseReturn/detail.vue'
  169. // 不同步采购退货单
  170. import pushOrderOutSyncDetailModal from '@/views/purchasingManagement/purchaseReturnOutSync/detail.vue'
  171. import chainTransferOutDetailModal from '@/views/allocationManagement/chainTransferOut/detail.vue'
  172. import storeTransferOutDetailModal from '@/views/allocationManagement/storeTransferOut/detail.vue'
  173. import bulkReturnGoodsDetailModal from '@/views/bulkManagement/bulkReturnGoods/detailModal.vue'
  174. import { settleReceiptQuery, queryByTypeSum, settleReceiptMoney, settleReceiptQuerySum } from '@/api/settleReceipt'
  175. export default {
  176. name: 'FinancialCollectionList',
  177. components: { STable, VSelect, detailModal, rangeDate, settleModal, pushOrderDetailModal, pushOrderOutSyncDetailModal, salesDetailModal, chainTransferOutDetailModal, bulkReturnGoodsDetailModal, storeTransferOutDetailModal },
  178. mixins: [commonMixin],
  179. data () {
  180. const _this = this
  181. return {
  182. spinning: false,
  183. advanced: true, // 高级搜索 展开/关闭
  184. disabled: false, // 查询、重置按钮是否可操作
  185. openModal: false, // 详情弹框
  186. openDetailModal: false,
  187. openSettleModal: false, // 打开收款弹框
  188. openBulkReturnDetailModal: false,
  189. enableFundAccount: false, // 是否开启资金账户管理
  190. tableHeight: 0,
  191. curBizType: 'ALL',
  192. curBizTitle: '',
  193. fcBizType: '',
  194. orderSn: null,
  195. // 查询参数
  196. queryParam: {
  197. bizType: 'ALL',
  198. settleNo: '',
  199. bizNo: '',
  200. settleClientName: '',
  201. billState: '',
  202. auditBeginDate: '',
  203. auditEndDate: '',
  204. settleBeginDate: '',
  205. settleEndDate: ''
  206. },
  207. // 总计
  208. totalData: {
  209. settledAmount: 0,
  210. totalAmount: 0,
  211. unsettleAmount: 0,
  212. count: 0
  213. },
  214. // 表头
  215. columns: [
  216. { title: '序号', dataIndex: 'no', width: '4%', align: 'center' },
  217. { title: '收款单号', dataIndex: 'settleNo', width: '16%', align: 'center', customRender: function (text) { return text || '--' } },
  218. { title: '关联单号', dataIndex: 'bizNo', scopedSlots: { customRender: 'bizNo' }, width: '16%', align: 'center' },
  219. { title: '商户名称', dataIndex: 'settleClientName', width: '15%', align: 'center', customRender: function (text) { return text || '--' } },
  220. { title: '应收金额', dataIndex: 'totalAmount', width: '6%', align: 'right', customRender: function (text) { return ((text || text == 0) ? _this.toThousands(text) : '--') } },
  221. { title: '已收金额', dataIndex: 'settledAmount', width: '6%', align: 'right', customRender: function (text) { return ((text || text == 0) ? _this.toThousands(text) : '--') } },
  222. { title: '待收金额', dataIndex: 'unsettleAmount', width: '6%', align: 'right', customRender: function (text) { return ((text || text == 0) ? _this.toThousands(text) : '--') } },
  223. { title: '收款类型', dataIndex: 'bizName', width: '6%', align: 'center', customRender: function (text) { return text || '--' } },
  224. { title: '收款方式', dataIndex: 'settleStyleSnDictValue', width: '6%', align: 'center', customRender: function (text) { return text || '--' } },
  225. { title: '创建时间', dataIndex: 'createDate', width: '10%', align: 'center', customRender: function (text) { return text || '--' } },
  226. { title: '审核时间', dataIndex: 'auditTime', width: '10%', align: 'center', customRender: function (text) { return text || '--' } },
  227. { title: '收款时间', dataIndex: 'settleTime', width: '10%', align: 'center', customRender: function (text) { return text || '--' } },
  228. { title: '操作', scopedSlots: { customRender: 'action' }, width: '5%', align: 'center' }
  229. ],
  230. loading: false,
  231. // 加载数据方法 必须为 Promise 对象
  232. loadData: parameter => {
  233. this.disabled = true
  234. this.spinning = true
  235. return settleReceiptQuery(Object.assign(parameter, this.queryParam)).then(res => {
  236. let data
  237. if (res.status == 200) {
  238. data = res.data
  239. const no = (data.pageNo - 1) * data.pageSize
  240. for (var i = 0; i < data.list.length; i++) {
  241. data.list[i].no = no + i + 1
  242. }
  243. this.disabled = false
  244. this.totalData.count = data.count || 0
  245. // 查询总计
  246. this.settleReceiptQuerySum(Object.assign(parameter, this.queryParam))
  247. }
  248. this.spinning = false
  249. return data
  250. })
  251. },
  252. tabPaneData: [],
  253. rowSelectionInfo: null
  254. }
  255. },
  256. computed: {
  257. selectTotalAmount () {
  258. let ret = 0
  259. if (this.rowSelectionInfo && this.rowSelectionInfo.selectedRows) {
  260. this.rowSelectionInfo.selectedRows.map(item => {
  261. ret = ret + item.unsettleAmount
  262. })
  263. }
  264. return ret ? Number(ret).toFixed(2) : 0
  265. }
  266. },
  267. methods: {
  268. ...mapActions(['GetSettleAccountState']),
  269. handleDetailClose () {
  270. this.openDetailModal = false
  271. this.openBulkReturnDetailModal = false
  272. this.orderSn = null
  273. },
  274. // 查看关联单号
  275. handleDetail (row) {
  276. console.log(row)
  277. this.orderSn = row.bizSn
  278. this.fcBizType = row.bizType
  279. this.curBizTitle = row.bizTypeDictValue + '详情'
  280. if (row.bizType == 'SPARE_PARTS_RETURN') {
  281. this.openBulkReturnDetailModal = true
  282. } else {
  283. this.openDetailModal = true
  284. }
  285. },
  286. // 表格选中项
  287. rowSelectionFun (obj) {
  288. this.rowSelectionInfo = obj || null
  289. },
  290. // 时间 change
  291. dateChange (date) {
  292. this.queryParam.auditBeginDate = date[0]
  293. this.queryParam.auditEndDate = date[1]
  294. },
  295. createDateChange (date) {
  296. this.queryParam.beginDate = date[0]
  297. this.queryParam.endDate = date[1]
  298. },
  299. settleChange (date) {
  300. this.queryParam.settleBeginDate = date[0]
  301. this.queryParam.settleEndDate = date[1]
  302. },
  303. // 总计
  304. settleReceiptQuerySum (params) {
  305. settleReceiptQuerySum(params).then(res => {
  306. if (res.status == 200) {
  307. this.totalData = Object.assign(this.totalData, res.data)
  308. const tab = this.tabPaneData.find(item => item.bizType == this.queryParam.bizType)
  309. tab.countNum = this.totalData.count || 0
  310. }
  311. })
  312. },
  313. // 获取类型
  314. queryByTypeSum () {
  315. queryByTypeSum({}).then(res => {
  316. if (res.data && res.status == 200) {
  317. this.tabPaneData = res.data
  318. if (this.curBizType == 'ALL') {
  319. this.queryParam.bizType = res.data[0].bizType
  320. }
  321. this.$refs.table.refresh(true)
  322. }
  323. })
  324. },
  325. // 凭证弹框
  326. handleVoucher (row) {
  327. this.$refs.detailModal.getDetail(row.id)
  328. this.openModal = true
  329. },
  330. // 开启结算账户功能收款, type:0 单条收款,1 批量收款
  331. handleSettleAcountPay (row, type) {
  332. this.openSettleModal = true
  333. const data = {
  334. totalAmount: type ? this.selectTotalAmount : row && row.unsettleAmount || 0,
  335. settleClientName: type ? '' : row && row.settleClientName || '',
  336. title: '收款',
  337. type,
  338. row
  339. }
  340. this.$nextTick(() => {
  341. this.$refs.settleModal.setData(data)
  342. })
  343. },
  344. // 去收款
  345. settleAcountPay (form, data) {
  346. const _this = this
  347. const params =
  348. {
  349. 'settleIds': data.type ? _this.rowSelectionInfo && _this.rowSelectionInfo.selectedRowKeys : [data.row.id]
  350. }
  351. // 资金管理开启
  352. if (this.enableFundAccount) {
  353. params.settleStyleSn = form.settleStyleSn
  354. params.settleAccountSn = form.settleAccountSn
  355. }
  356. _this.loading = true
  357. _this.spinning = true
  358. settleReceiptMoney(params).then(res => {
  359. _this.loading = false
  360. if (res.status == 200) {
  361. _this.$message.success(res.message)
  362. _this.$refs.table.refresh()
  363. _this.$refs.table.clearSelected() // 清空表格选中项
  364. _this.spinning = false
  365. } else {
  366. _this.spinning = false
  367. }
  368. })
  369. },
  370. // 收款
  371. handleCollectionSing (row) {
  372. const _this = this
  373. this.$confirm({
  374. title: '提示',
  375. content: <div style="text-align:center"><p style="margin-top:20px;">{row.settleClientName}</p><p>收款单号:{row.settleNo},合计{ this.toThousands(row.unsettleAmount) }</p><p>确认收款吗?</p></div>,
  376. centered: true,
  377. closable: true,
  378. class: 'confirm-center',
  379. onOk () {
  380. _this.settleAcountPay(null, { type: 0, row: row })
  381. }
  382. })
  383. },
  384. // 选择类型
  385. handleTabChange (key) {
  386. this.queryParam.bizType = key
  387. this.$refs.table.refresh(true)
  388. this.curBizType = key
  389. },
  390. // 批量收款
  391. handleCollection () {
  392. if (!this.rowSelectionInfo || (this.rowSelectionInfo && this.rowSelectionInfo.selectedRowKeys.length < 1)) {
  393. this.$message.warning('请在列表勾选后再进行批量操作!')
  394. return
  395. }
  396. const _this = this
  397. this.$confirm({
  398. title: '提示',
  399. content: <div style="text-align:center"><p style="margin-top:20px;">共计{this.rowSelectionInfo.selectedRowKeys.length}单,合计金额{ this.toThousands(this.selectTotalAmount) } </p><p>确认批量收款吗?</p></div>,
  400. centered: true,
  401. closable: true,
  402. class: 'confirm-center',
  403. onOk () {
  404. _this.settleAcountPay(null, { type: 1, row: null })
  405. }
  406. })
  407. },
  408. // 重置
  409. resetSearchForm () {
  410. this.resetData()
  411. this.$refs.table.refresh(true)
  412. },
  413. // 查询
  414. searchForm () {
  415. this.$refs.table.clearSelected() // 清空表格选中项
  416. this.$refs.table.refresh(true)
  417. },
  418. // 重置查询条件数据
  419. resetData () {
  420. if (this.advanced) {
  421. this.$refs.rangeDate.resetDate()
  422. this.$refs.createDate.resetDate()
  423. this.$refs.settleDate.resetDate()
  424. }
  425. this.$refs.table.clearSelected() // 清空表格选中项
  426. this.queryParam = {
  427. bizType: this.curBizType,
  428. settleNo: '',
  429. bizNo: '',
  430. settleClientName: '',
  431. billState: '',
  432. beginDate: '',
  433. endDate: '',
  434. auditBeginDate: '',
  435. auditEndDate: '',
  436. settleBeginDate: '',
  437. settleEndDate: ''
  438. }
  439. },
  440. pageInit () {
  441. const _this = this
  442. this.$nextTick(() => { // 页面渲染完成后的回调
  443. _this.setTableH()
  444. })
  445. this.queryByTypeSum()
  446. },
  447. setTableH () {
  448. const tableSearchH = this.$refs.tableSearch.offsetHeight
  449. this.tableHeight = window.innerHeight - tableSearchH - 330
  450. }
  451. },
  452. watch: {
  453. advanced (newValue, oldValue) {
  454. const _this = this
  455. this.$nextTick(() => { // 页面渲染完成后的回调
  456. _this.setTableH()
  457. })
  458. },
  459. '$store.state.app.winHeight' (newValue, oldValue) { // 窗口变更时,需同时更改表格高度
  460. this.setTableH()
  461. }
  462. },
  463. mounted () {
  464. if (!this.$store.state.app.isNewTab) { // 页签刷新时调用
  465. this.resetData()
  466. this.pageInit()
  467. }
  468. },
  469. activated () {
  470. // 是否从首页点击进入
  471. const isHomeNav = this.getIsHomeNav()[this.$route.name]
  472. console.log(this.getIsHomeNav(), isHomeNav, this.$route.name)
  473. // 待办查询
  474. if (isHomeNav && isHomeNav.type == 'todo') {
  475. this.curBizType = isHomeNav.pageParams.bizType
  476. this.resetData()
  477. this.queryParam = Object.assign(this.queryParam, isHomeNav.pageParams)
  478. this.$refs.createDate.resetDate([this.queryParam.beginDate, this.queryParam.endDate])
  479. this.pageInit()
  480. } else {
  481. // 如果是新页签打开,则重置当前页面
  482. if (this.$store.state.app.isNewTab) {
  483. this.curBizType = 'ALL'
  484. this.resetData()
  485. this.pageInit()
  486. }
  487. }
  488. // 结算账户状态查询
  489. if (this.$hasPermissions('M_fundAccountList') && this.$hasPermissions('B_fundAccountEnable')) {
  490. this.GetSettleAccountState().then(res => {
  491. if (res.status == 200) {
  492. this.enableFundAccount = res.data.functionEnableFlag == 1
  493. }
  494. })
  495. }
  496. },
  497. beforeRouteEnter (to, from, next) {
  498. next(vm => {})
  499. }
  500. }
  501. </script>
  502. <style lang="less">
  503. .financialCollectionList-wrap{
  504. .financialCollectionList-tabs.ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-nav-container{
  505. height: 30px!important;
  506. }
  507. .financialCollectionList-tabs.ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-tab-active{
  508. height: 30px!important;
  509. }
  510. .financialCollectionList-tabs.ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-tab{
  511. line-height: 26px!important;
  512. height: 30px!important;
  513. }
  514. }
  515. </style>