list.vue 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542
  1. <template>
  2. <a-card size="small" :bordered="false" class="replenishmentManagementList-wrap">
  3. <a-spin :spinning="spinning" tip="Loading...">
  4. <!-- 搜索条件 -->
  5. <div ref="tableSearch" class="table-page-search-wrapper">
  6. <!-- 标签页 -->
  7. <a-tabs type="card" v-model="queryParam.bizType" @change="handleTabChange" class="replenishmentManagementList-tabs">
  8. <a-tab-pane v-for="item in tabPaneData" :key="item.bizType">
  9. <p slot="tab">{{ item.bizName }}<span v-if="item.countNum && item.bizName!='全部'&&item.bizName!='已完成'&&item.bizName!='已取消'" style="color: red;">({{ item.countNum }})</span></p>
  10. </a-tab-pane>
  11. </a-tabs>
  12. <a-form layout="inline" @keyup.enter.native="$refs.table.refresh(true)">
  13. <a-row :gutter="15">
  14. <a-col :md="6" :sm="24" v-if="queryParam.bizType=='WAIT_CHECK'">
  15. <a-form-item label="出库时间">
  16. <rangeDate ref="rangeDate" :value="time" @change="dateChange" />
  17. </a-form-item>
  18. </a-col>
  19. <a-col :md="6" :sm="24" v-else-if="queryParam.bizType=='FINISH'">
  20. <a-form-item label="签收时间">
  21. <rangeDate ref="rangeDate" :value="time" @change="dateChange" />
  22. </a-form-item>
  23. </a-col>
  24. <a-col :md="6" :sm="24" v-else>
  25. <a-form-item label="创建时间">
  26. <rangeDate ref="rangeDate" :value="time" @change="dateChange" />
  27. </a-form-item>
  28. </a-col>
  29. <a-col :md="6" :sm="24">
  30. <a-form-item label="补货单号"><a-input id="replenishmentManagementList-replenishBillNo" v-model.trim="queryParam.replenishBillNo" allowClear placeholder="请输入补货单号" /></a-form-item>
  31. </a-col>
  32. <a-col :md="6" :sm="24">
  33. <a-form-item label="货架名称">
  34. <shelfSList v-model="queryParam.shelfSn"></shelfSList>
  35. </a-form-item>
  36. </a-col>
  37. <template v-if="advanced">
  38. <a-col :md="6" :sm="24">
  39. <a-form-item label="产品编码"><a-input id="replenishmentManagementList-productCode" v-model.trim="queryParam.productCode" allowClear placeholder="请输入产品编码" /></a-form-item>
  40. </a-col>
  41. <a-col :md="6" :sm="24">
  42. <a-form-item label="产品名称">
  43. <a-input id="replenishmentManagementList-productName" v-model.trim="queryParam.productName" allowClear placeholder="请输入产品名称" />
  44. </a-form-item>
  45. </a-col>
  46. </template>
  47. <a-col :md="6" :sm="24">
  48. <span class="table-page-search-submitButtons">
  49. <a-button type="primary" style="margin-left: 5px" @click="queryByTypeSum" :disabled="disabled" id="replenishmentManagementList-refresh">查询</a-button>
  50. <a-button style="margin-left: 5px" @click="resetSearchForm()" :disabled="disabled" id="replenishmentManagementList-reset">重置</a-button>
  51. <a @click="advanced = !advanced" style="margin-left: 5px">
  52. {{ advanced ? '收起' : '展开' }}
  53. <a-icon :type="advanced ? 'up' : 'down'" />
  54. </a>
  55. </span>
  56. </a-col>
  57. </a-row>
  58. </a-form>
  59. <!-- 操作按钮 -->
  60. <div class="table-operator">
  61. <a-button type="primary" class="button-error" @click="openSlodOut=true">待补货产品</a-button>
  62. <span style="margin-left:10px;color:#999;">请点击此按钮,选择需要补货的产品创建补货单</span>
  63. </div>
  64. </div>
  65. <s-table
  66. class="sTable fixPagination"
  67. ref="table"
  68. :style="{ height: tableHeight+84.5+'px' }"
  69. size="small"
  70. :rowKey="(record) => record.id"
  71. :columns="columns"
  72. :data="loadData"
  73. :expandedRowKeys="expandedRowKeys"
  74. @expand="expandFun"
  75. :expandRowByClick="true"
  76. :scroll="{ y: tableHeight }"
  77. :defaultLoadData="false"
  78. bordered>
  79. <a-table
  80. v-if="listData&&listData[index]"
  81. slot="expandedRowRender"
  82. slot-scope="record, index"
  83. size="small"
  84. :rowKey="(record) => record.id"
  85. :columns="subColumns"
  86. :data-source="listData[index].subList"
  87. :pagination="false"
  88. :bordered="false"
  89. style="margin: 15px 10px;">
  90. </a-table>
  91. <!-- 操作 -->
  92. <template slot="action" slot-scope="text, record">
  93. <!-- <a-button v-if="record.billState=='WAIT_CONFIRM'" size="small" type="link" class="button-primary" @click.stop="handleConfirm(record)">确认</a-button> -->
  94. <a-button v-if="record.billState=='WAIT_OUT_STOCK'" size="small" type="link" class="button-primary" @click.stop="handleOutWarehousing(record)">出库</a-button>
  95. <a-button v-if="record.billState=='WAIT_CHECK'" size="small" type="link" class="button-primary" @click.stop="handlePutWarehousing(record)">签收</a-button>
  96. <a-button v-if="record.billState=='WAIT_CONFIRM' || record.billState=='WAIT_OUT_STOCK'" size="small" type="link" class="button-primary" @click.stop="handleCancelOrder(record)">取消补货单</a-button>
  97. <a-button v-if="record.billState=='CANCEL'" size="small" type="link" class="button-error" @click.stop="handleDelete(record)">删除</a-button>
  98. <a-button v-if="record.billState!='CANCEL'&&record.billState!='WAIT_CONFIRM'" size="small" type="link" class="button-primary" @click.stop="handlePrintSticker(record)">打印贴签</a-button>
  99. </template>
  100. <!-- 补货单号 -->
  101. <template slot="replenishBillNo" slot-scope="text, record">
  102. <span class="table-td-link" @click.stop="handleDetail(record)">{{ record.replenishBillNo }}</span>
  103. </template>
  104. </s-table>
  105. <!-- 确认 -->
  106. <confirm-modal :openModal="openConfirmModal" :nowData="nowData" @ok="handleValidate" @close="handleCancel" />
  107. <!-- 库存不足,确认弹框 -->
  108. <stock-modal
  109. :openModal="openStockModal"
  110. :type="validateType"
  111. :params="paramsData"
  112. :listData="stockList"
  113. @ok="handleStockOk"
  114. @close="handleStockCancel" />
  115. <!-- 打印贴签 -->
  116. <print-sticker-modal :openModal="openPrintStickerModal" :nowData="nowData" @ok="handlePrintStickerOk" @close="handleCancel" />
  117. <!-- 出库 -->
  118. <out-warehousing-modal :openModal="openOutWarehousingModal" :nowData="nowData" @ok="handleOutWarehousingOk" @close="handleCancel" />
  119. <!-- 签收 -->
  120. <put-warehousing-modal :openModal="openPutWarehousingModal" :nowData="nowData" @ok="handlePutWarehousingOk" @close="handleCancel" />
  121. <!-- 详情 -->
  122. <detailModal :openModal="openDetailModal" :nowData="nowData" @close="handleCancel" />
  123. <!-- 待补货产品 -->
  124. <slodOutModal :openModal="openSlodOut" @close="openSlodOut=false" />
  125. </a-spin>
  126. </a-card>
  127. </template>
  128. <script>
  129. import { commonMixin } from '@/utils/mixin'
  130. import { STable, VSelect } from '@/components'
  131. import getDate from '@/libs/getDate.js'
  132. import rangeDate from '@/views/common/rangeDate.vue'
  133. import shelfSList from '@/views/common/shelfList'
  134. import confirmModal from './confirmModal.vue'
  135. import stockModal from './stockModal.vue'
  136. import printStickerModal from './printStickerModal.vue'
  137. import outWarehousingModal from './outWarehousingModal.vue'
  138. import putWarehousingModal from './putWarehousingModal.vue'
  139. import detailModal from './detailModal.vue'
  140. import slodOutModal from './slodOutModal.vue'
  141. import { shelfReplenishList, shelfReplenishDetailList, shelfReplenishCancel, shelfReplenishStateCount, shelfReplenishDetailStock, shelfReplenishConfirm, shelfReplenishDelete } from '@/api/shelfReplenish'
  142. export default {
  143. components: { STable, VSelect, rangeDate, shelfSList, confirmModal, stockModal, printStickerModal, outWarehousingModal, putWarehousingModal, detailModal, slodOutModal },
  144. mixins: [commonMixin],
  145. data () {
  146. return {
  147. isNotProd: false,
  148. spinning: false,
  149. advanced: true, // 高级搜索 展开/关闭
  150. tableHeight: 0,
  151. disabled: false, // 查询、重置按钮是否可操作
  152. curBizType: 'ALL',
  153. time: [
  154. getDate.getCurrMonthDays().starttime,
  155. getDate.getCurrMonthDays().endtime
  156. ],
  157. // 查询参数
  158. queryParam: {
  159. bDate: getDate.getCurrMonthDays().starttime,
  160. eDate: getDate.getCurrMonthDays().endtime,
  161. bizType: 'ALL',
  162. replenishBillNo: '',
  163. shelfSn: undefined,
  164. productCode: '',
  165. productName: ''
  166. },
  167. expandedRowKeys: [],
  168. // 加载数据方法 必须为 Promise 对象
  169. loadData: parameter => {
  170. this.disabled = true
  171. this.spinning = true
  172. this.expandedRowKeys = []
  173. parameter.billState = this.queryParam.bizType == 'ALL' ? '' : this.queryParam.bizType
  174. const params = Object.assign(parameter, this.queryParam)
  175. if (params.billState == 'WAIT_CHECK') {
  176. params.outStockTimeBegin = this.queryParam.bDate
  177. params.outStockTimeEnd = this.queryParam.eDate
  178. } else if (params.billState == 'FINISH') {
  179. params.putStockTimeBegin = this.queryParam.bDate
  180. params.putStockTimeEnd = this.queryParam.eDate
  181. } else {
  182. params.beginDate = this.queryParam.bDate
  183. params.endDate = this.queryParam.eDate
  184. }
  185. delete params.index
  186. delete params.tableId
  187. delete params.bizType
  188. return shelfReplenishList(params).then(res => {
  189. let data
  190. if (res.status == 200) {
  191. data = res.data
  192. const no = (data.pageNo - 1) * data.pageSize
  193. for (var i = 0; i < data.list.length; i++) {
  194. data.list[i].no = no + i + 1
  195. data.list[i].subList = []
  196. }
  197. this.listData = data.list || []
  198. this.disabled = false
  199. }
  200. this.spinning = false
  201. return data
  202. })
  203. },
  204. subColumns: [
  205. { title: '序号', dataIndex: 'no', width: '4%', align: 'center' },
  206. { title: '货位号', dataIndex: 'shelfPlaceCode', width: '12%', align: 'center', customRender: function (text) { return text || '--' } },
  207. { title: '产品编码', dataIndex: 'product.code', width: '20%', align: 'center', customRender: function (text) { return text || '--' } },
  208. { title: '产品名称', dataIndex: 'product.name', width: '32%', align: 'left', customRender: function (text) { return text || '--' }, ellipsis: true },
  209. { title: '补货数量', dataIndex: 'qty', width: '12%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
  210. { title: '签收数量', dataIndex: 'putQty', width: '12%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
  211. { title: '单位', dataIndex: 'product.unit', width: '8%', align: 'center', customRender: function (text) { return text || '--' } }
  212. ],
  213. listData: [],
  214. tabPaneData: [
  215. { bizName: '全部', bizType: 'ALL', countNum: 0 },
  216. // { bizName: '待确认', bizType: 'WAIT_CONFIRM', countNum: 0 },
  217. { bizName: '待出库', bizType: 'WAIT_OUT_STOCK', countNum: 0 },
  218. { bizName: '待签收', bizType: 'WAIT_CHECK', countNum: 0 },
  219. { bizName: '已完成', bizType: 'FINISH', countNum: 0 },
  220. { bizName: '已取消', bizType: 'CANCEL', countNum: 0 }
  221. ],
  222. nowData: null,
  223. openConfirmModal: false,
  224. openStockModal: false,
  225. openPrintStickerModal: false,
  226. openOutWarehousingModal: false,
  227. openPutWarehousingModal: false,
  228. openDetailModal: false,
  229. openSlodOut: false,
  230. validateType: 'confirm',
  231. stockList: [],
  232. paramsData: null
  233. }
  234. },
  235. computed: {
  236. columns () {
  237. const ret = [
  238. { title: '序号', dataIndex: 'no', width: '4%', align: 'center' },
  239. { title: '创建时间', dataIndex: 'createDate', width: '11%', align: 'center', customRender: function (text) { return text || '--' } },
  240. { title: '补货单号', dataIndex: 'replenishBillNo', scopedSlots: { customRender: 'replenishBillNo' }, width: '15%', align: 'center' },
  241. { title: '货架名称', dataIndex: 'shelfInfo.shelfName', width: '25%', align: 'left', customRender: function (text) { return text || '--' }, ellipsis: true },
  242. { title: '状态', dataIndex: 'billStateDictValue', width: '8%', align: 'center', customRender: function (text) { return text || '--' } },
  243. { title: '补货总量', dataIndex: 'totalQty', width: '8%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
  244. { title: '签收总量', dataIndex: 'totalPutQty', width: '8%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
  245. { title: '操作', scopedSlots: { customRender: 'action' }, width: '16%', align: 'left' }
  246. ]
  247. if (this.queryParam.bizType == 'WAIT_CHECK') {
  248. ret.splice(1, 1, { title: '出库时间', dataIndex: 'outStockTime', width: '11%', align: 'center', customRender: function (text) { return text || '--' } })
  249. } else if (this.queryParam.bizType == 'FINISH') {
  250. ret.splice(1, 1, { title: '签收时间', dataIndex: 'putStockTime', width: '11%', align: 'center', customRender: function (text) { return text || '--' } })
  251. }
  252. return ret
  253. }
  254. },
  255. methods: {
  256. // 确认
  257. handleConfirm (row) {
  258. this.nowData = row
  259. this.openConfirmModal = true
  260. },
  261. // 补货详情
  262. handleDetail (row) {
  263. this.nowData = row
  264. this.openDetailModal = true
  265. },
  266. // 库存不足 确认 ok
  267. handleStockOk (type, params) {
  268. this.openStockModal = false
  269. this.openConfirmModal = false
  270. this.openOutWarehousingModal = false
  271. if (type == 'confirm') { // 确认
  272. this.confirmFun(params)
  273. }
  274. },
  275. // 库存不足 确认 cancel
  276. handleStockCancel () {
  277. this.stockList = []
  278. this.validateType = 'confirm'
  279. this.openStockModal = false
  280. },
  281. // 打印贴签
  282. handlePrintSticker (row) {
  283. this.nowData = row
  284. this.openPrintStickerModal = true
  285. },
  286. // 打印贴签 ok
  287. handlePrintStickerOk () {},
  288. // 出库
  289. handleOutWarehousing (row) {
  290. this.nowData = row
  291. this.openOutWarehousingModal = true
  292. },
  293. // 出库 ok
  294. handleOutWarehousingOk () {
  295. this.nowData = null
  296. this.openOutWarehousingModal = false
  297. this.queryByTypeSum(true)
  298. },
  299. // cancel
  300. handleCancel () {
  301. this.nowData = null
  302. this.openConfirmModal = false
  303. this.openStockModal = false
  304. this.openPrintStickerModal = false
  305. this.openOutWarehousingModal = false
  306. this.openPutWarehousingModal = false
  307. this.openDetailModal = false
  308. },
  309. handleValidate (type, params) {
  310. if (type == 'confirm') { // 确认
  311. this.confirmFun(params)
  312. }
  313. // this.spinning = true
  314. // 校验产品库存是否足够
  315. // shelfReplenishDetailStock(params).then(res => {
  316. // if (res.status == 200) {
  317. // if (res.data && res.data.length > 0) {
  318. // this.stockList = res.data
  319. // this.validateType = 'confirm'
  320. // this.paramsData = params
  321. // this.openStockModal = true
  322. // } else {
  323. // if (type == 'confirm') { // 确认
  324. // this.confirmFun(params)
  325. // }
  326. // }
  327. // }
  328. // })
  329. },
  330. // 提交确认
  331. confirmFun (params) {
  332. shelfReplenishConfirm(params).then(res => {
  333. if (res.status == 200) {
  334. this.$message.success('确认补货成功')
  335. this.$refs.table.refresh()
  336. this.handleCancel()
  337. }
  338. this.spinning = false
  339. })
  340. },
  341. // 签收
  342. handlePutWarehousing (row) {
  343. this.nowData = row
  344. this.openPutWarehousingModal = true
  345. },
  346. // 签收 ok
  347. handlePutWarehousingOk () {
  348. this.nowData = null
  349. this.openPutWarehousingModal = false
  350. this.queryByTypeSum(true)
  351. },
  352. // 取消补货单
  353. handleCancelOrder (row) {
  354. const _this = this
  355. this.$confirm({
  356. title: '提示',
  357. content: '确认取消补货单吗?',
  358. centered: true,
  359. onOk () {
  360. _this.spinning = true
  361. shelfReplenishCancel({ replenishBillSn: row.replenishBillSn }).then(res => {
  362. if (res.status == 200) {
  363. _this.$message.success(res.message)
  364. _this.$refs.table.refresh()
  365. _this.spinning = false
  366. } else {
  367. _this.spinning = false
  368. }
  369. })
  370. }
  371. })
  372. },
  373. // 删除
  374. handleDelete (row) {
  375. const _this = this
  376. this.$confirm({
  377. title: '提示',
  378. content: '确认删除补货单吗?',
  379. centered: true,
  380. onOk () {
  381. _this.spinning = true
  382. shelfReplenishDelete({ replenishBillSn: row.replenishBillSn }).then(res => {
  383. if (res.status == 200) {
  384. _this.$message.success(res.message)
  385. _this.$refs.table.refresh()
  386. _this.spinning = false
  387. } else {
  388. _this.spinning = false
  389. }
  390. })
  391. }
  392. })
  393. },
  394. expandFun (expanded, record) {
  395. if (expanded) {
  396. this.expandedRowKeys.push(record.id)
  397. this.getSubItem(record) // 获取表格内部数据
  398. } else {
  399. const i = this.expandedRowKeys.findIndex(item => item == record.id)
  400. this.expandedRowKeys.splice(i, 1)
  401. }
  402. },
  403. // 获取子节点数据
  404. getSubItem (record) {
  405. this.spinning = true
  406. shelfReplenishDetailList({ replenishBillSn: record.replenishBillSn }).then(res => {
  407. const ind = this.listData.findIndex(item => item.id == record.id)
  408. if (ind >= 0) {
  409. if (res.status == 200 && res.data && res.data.length) {
  410. res.data.map((item, index) => {
  411. item.no = index + 1
  412. })
  413. this.listData[ind].subList = res.data
  414. } else {
  415. this.listData[ind].subList = []
  416. }
  417. }
  418. this.spinning = false
  419. })
  420. },
  421. // 重置
  422. resetSearchForm () {
  423. this.resetData()
  424. this.queryByTypeSum()
  425. },
  426. // 重置数据
  427. resetData () {
  428. this.$refs.rangeDate.resetDate(this.time)
  429. this.queryParam.bDate = getDate.getCurrMonthDays().starttime
  430. this.queryParam.eDate = getDate.getCurrMonthDays().endtime
  431. this.queryParam.bizType = this.curBizType
  432. this.queryParam.replenishBillNo = ''
  433. this.queryParam.shelfSn = undefined
  434. this.queryParam.productCode = ''
  435. this.queryParam.productName = ''
  436. },
  437. // 时间 change
  438. dateChange (date) {
  439. this.queryParam.bDate = date[0] || null
  440. this.queryParam.eDate = date[1] || null
  441. },
  442. // 选择类型
  443. handleTabChange (key) {
  444. this.expandedRowKeys = []
  445. this.queryParam.bizType = key
  446. this.curBizType = key
  447. this.resetSearchForm()
  448. },
  449. // 客户 change
  450. custChange (obj) {
  451. this.queryParam.customerSn = obj.key || undefined
  452. },
  453. // 获取类型
  454. queryByTypeSum (flag) {
  455. const params = JSON.parse(JSON.stringify(this.queryParam))
  456. if (params.bizType == 'WAIT_CHECK') {
  457. params.outStockTimeBegin = this.queryParam.bDate
  458. params.outStockTimeEnd = this.queryParam.eDate
  459. } else if (params.bizType == 'FINISH') {
  460. params.putStockTimeBegin = this.queryParam.bDate
  461. params.putStockTimeEnd = this.queryParam.eDate
  462. } else {
  463. params.beginDate = this.queryParam.bDate
  464. params.endDate = this.queryParam.eDate
  465. }
  466. delete params.bizType
  467. this.spinning = true
  468. shelfReplenishStateCount(params).then(res => {
  469. if (res.data && res.status == 200) {
  470. // this.tabPaneData[1].countNum = res.data.WAIT_CONFIRM || 0
  471. this.tabPaneData[1].countNum = res.data.WAIT_OUT_STOCK || 0
  472. this.tabPaneData[2].countNum = res.data.WAIT_CHECK || 0
  473. this.tabPaneData[3].countNum = res.data.FINISH || 0
  474. this.tabPaneData[4].countNum = res.data.CANCEL || 0
  475. this.queryParam.bizType = this.curBizType
  476. this.$refs.table.refresh(!flag)
  477. }
  478. this.spinning = false
  479. })
  480. },
  481. setTableH () {
  482. const tableSearchH = this.$refs.tableSearch.offsetHeight
  483. this.tableHeight = window.innerHeight - tableSearchH - 200
  484. },
  485. pageInit () {
  486. const _this = this
  487. this.isNotProd = !!process.env.VUE_APP_ENVTIPS
  488. this.$nextTick(() => { // 页面渲染完成后的回调
  489. _this.setTableH()
  490. })
  491. this.curBizType = this.$route.query && this.$route.query.bizType || this.curBizType
  492. this.queryByTypeSum()
  493. if (this.$route.query && this.$route.query.bizType == 'ALL') {
  494. this.openSlodOut = true
  495. }
  496. }
  497. },
  498. watch: {
  499. advanced (newValue, oldValue) {
  500. const _this = this
  501. this.$nextTick(() => { // 页面渲染完成后的回调
  502. _this.setTableH()
  503. })
  504. },
  505. '$store.state.app.winHeight' (newValue, oldValue) { // 窗口变更时,需同时更改表格高度
  506. this.setTableH()
  507. }
  508. },
  509. mounted () {
  510. if (!this.$store.state.app.isNewTab) { // 页签刷新时调用
  511. this.resetData()
  512. this.pageInit()
  513. }
  514. },
  515. activated () {
  516. // 如果是新页签打开,则重置当前页面
  517. if (this.$store.state.app.isNewTab) {
  518. this.resetData()
  519. this.pageInit()
  520. }
  521. }
  522. }
  523. </script>
  524. <style lang="less">
  525. .replenishmentManagementList-wrap{
  526. .replenishmentManagementList-tabs.ant-tabs.ant-tabs-card .ant-tabs-bar{
  527. margin: 0 0 10px 0!important;
  528. }
  529. .replenishmentManagementList-tabs.ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-nav-container{
  530. height: 30px!important;
  531. }
  532. .replenishmentManagementList-tabs.ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-tab-active{
  533. height: 30px!important;
  534. }
  535. .replenishmentManagementList-tabs.ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-tab{
  536. line-height: 26px!important;
  537. height: 30px!important;
  538. }
  539. }
  540. </style>