book-list.vue 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612
  1. <template>
  2. <!-- 预托书列表 -->
  3. <div id="preBookList">
  4. <!-- 查询区域 -->
  5. <a-card :bordered="false">
  6. <div class="table-page-search-wrapper">
  7. <a-form layout="inline" @keyup.enter.native="searchQuery">
  8. <a-row :gutter="24">
  9. <a-col :md="5" :sm="8">
  10. <a-form-item label="订单号">
  11. <a-input placeholder="请输入订单号" v-model="queryParam.orderNumber"></a-input>
  12. </a-form-item>
  13. </a-col>
  14. <a-col :md="5" :sm="8">
  15. <a-form-item label="托书号">
  16. <a-input placeholder="请输入托书号" v-model="queryParam.shippingOrderNumber"></a-input>
  17. </a-form-item>
  18. </a-col>
  19. <a-col :md="5" :sm="8">
  20. <a-form-item label="客户简称">
  21. <!-- <a-input placeholder="请输入客户简称" v-model="queryParam.clientAbbreviation"></a-input> -->
  22. <j-search-select-tag
  23. placeholder="请选择客户简称"
  24. v-model="queryParam.clientAbbreviation"
  25. dict="view_customer,customername,customername">
  26. </j-search-select-tag>
  27. </a-form-item>
  28. </a-col>
  29. <a-col :md="5" :sm="8">
  30. <a-form-model-item label="类型">
  31. <a-select v-model="queryParam.type">
  32. <a-select-option value="成衣">成衣</a-select-option>
  33. <a-select-option value="面辅料">面辅料</a-select-option>
  34. </a-select>
  35. </a-form-model-item>
  36. </a-col>
  37. <template v-if="toggleSearchStatus">
  38. <a-col :md="4" :sm="8">
  39. <a-form-item label="账套号">
  40. <j-search-select-tag
  41. placeholder="请选择账套号"
  42. v-model="queryParam.pkOrg"
  43. dict="view_account,account,account">
  44. </j-search-select-tag>
  45. </a-form-item>
  46. </a-col>
  47. <!-- <a-col :md="6" :sm="8">
  48. <a-form-item label="箱号">
  49. <a-input placeholder="请输入箱号" v-model="queryParam.containerNumber"></a-input>
  50. </a-form-item>
  51. </a-col> -->
  52. <a-col :md="5" :sm="8">
  53. <a-form-item label="小po号">
  54. <a-input placeholder="请输入小po号" v-model="queryParam.smailPo"></a-input>
  55. </a-form-item>
  56. </a-col>
  57. <a-col :md="5" :sm="8">
  58. <a-form-item label="单据日期" has-feedback>
  59. <a-date-picker style="width: 100%" v-model="queryParam.shippingOrderDate" @change="orderDataChange" > </a-date-picker>
  60. </a-form-item>
  61. </a-col>
  62. <a-col :md="5" :sm="8">
  63. <a-form-item label="外销发票">
  64. <a-input placeholder="请输入外销发票" v-model="queryParam.exportInvoiceNo"></a-input>
  65. </a-form-item>
  66. </a-col>
  67. </template>
  68. <a-col :md="4" :sm="8">
  69. <span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
  70. <a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
  71. <a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button>
  72. <a @click="handleToggleSearch" style="margin-left: 8px">
  73. {{ toggleSearchStatus ? '收起' : '展开' }}
  74. <a-icon :type="toggleSearchStatus ? 'up' : 'down'" />
  75. </a>
  76. </span>
  77. </a-col>
  78. </a-row>
  79. </a-form>
  80. </div>
  81. </a-card>
  82. <!-- 操作按钮区域 新增-->
  83. <a-card :bordered="false" style="marginTop:10px;">
  84. <div class="table-operator">
  85. <a-button type="primary" @click="addBookDrawer" icon="plus">新增</a-button>
  86. <a-button type="primary" @click="batchSubmit()" icon="plus">批量提交</a-button>
  87. <a-button type="primary" @click="batchCanaleSubmit()" icon="plus">批量取消提交</a-button>
  88. </div>
  89. <!-- 子表 -->
  90. <a-table
  91. bordered
  92. :columns="bookListColumns"
  93. :data-source="bookListData"
  94. :loading="loading"
  95. :scroll="{x: 1200 , y: 600 }"
  96. :pagination="pagination"
  97. :row-key="record => record.id"
  98. :rowSelection="{ selectedRowKeys: selectedRowKeys, onChange: onSelectChange }"
  99. @change="handleTableChange"
  100. >
  101. <!-- 金额 输入框
  102. <template slot="money" slot-scope="text, record, index">
  103. <a-form-model-item prop="money" :rules="rules.money" required>
  104. <a-input style="width:100%" type="text" v-model="record.money" />
  105. </a-form-model-item>
  106. </template> -->
  107. <!-- 单据状态 -->
  108. <span slot="documentStateSlot" slot-scope="text, record">
  109. <a-tag color="orange" v-if="record.theDocumentsState == '0'">未提交</a-tag>
  110. <a-tag color="green" v-if="record.theDocumentsState == '1'">提交</a-tag>
  111. </span>
  112. <!-- 推送状态 -->
  113. <span slot="syStuta" slot-scope="text, record">
  114. <a-tag color="orange" v-if="record.syStuta == '0'">未推送</a-tag>
  115. <a-tag color="green" v-if="record.syStuta == '1'">已推送</a-tag>
  116. </span>
  117. <!-- if 已提交 -->
  118. <!-- <span slot="documentStateSlot">
  119. <a-tag color="#2db7f5">已提交</a-tag>
  120. </span> -->
  121. <!-- 操作 -->
  122. <span slot="operationSlot" slot-scope="text, record">
  123. <a @click="handleExportXls(record)" style="color:green;">{{record.isAhaa}}-结汇发票打印</a>
  124. <a-divider type="vertical" />
  125. <a-dropdown>
  126. <a class="ant-dropdown-link">更多 <a-icon type="down"/></a>
  127. <a-menu slot="overlay" v-if="record.theDocumentsState == '0'">
  128. <!-- <a-menu-item><a @click="submit(record)">提交</a></a-menu-item> -->
  129. <a-menu-item><a @click="edit(record,'2')">详情</a></a-menu-item>
  130. <a-menu-item><a @click="edit(record,'1')">编辑</a></a-menu-item>
  131. <!-- <a-menu-item ><a @click="pushU8(record)">推送u8</a></a-menu-item> -->
  132. <!-- <a-menu-item><a @click="print(record)">打印</a></a-menu-item> -->
  133. <a-menu-item>
  134. <a-popconfirm title="确定删除吗?" ok-text="是" cancel-text="否" @confirm="handleDelete(record.id)">
  135. <a href="javascript:void(0);" style="color:red;">删除</a>
  136. </a-popconfirm></a-menu-item
  137. >
  138. </a-menu>
  139. <a-menu slot="overlay" v-if="record.theDocumentsState == '1'">
  140. <!-- <a-menu-item><a @click="canaleSubmit(record)">取消提交</a></a-menu-item> -->
  141. <a-menu-item><a @click="edit(record,'2')">详情</a></a-menu-item>
  142. <a-menu-item ><a @click="pushU8(record)" >推送u8</a></a-menu-item>
  143. </a-menu>
  144. </a-dropdown>
  145. </span>
  146. </a-table>
  147. <span style="position: absolute;bottom: 9%;">共勾选{{selectedNumber}}条数</span>
  148. </a-card>
  149. <!-- 抽屉 -->
  150. <addBook-drawer ref="addBookDrawer" @ok="modalFormOk" @back="getBookList"></addBook-drawer>
  151. <detailsBook-drawer ref="detailsBookDrawer" @ok="modalFormOk"></detailsBook-drawer>
  152. <!-- <editBook-drawer ref="editBookDrawer" :father="cc" @ok="modalFormOk"></editBook-drawer> -->
  153. </div>
  154. </template>
  155. <script>
  156. import { JeecgListMixin } from '@/mixins/JeecgListMixin'
  157. import JEllipsis from '@/components/jeecg/JEllipsis'
  158. import moment from 'moment'
  159. import { downFile } from '@/api/manage'
  160. import addBookDrawer from '@views/book/addBookDrawer.vue'
  161. import detailsBookDrawer from '@views/book/detailsBookDrawer.vue'
  162. import editBookDrawer from '@views/book/editBookDrawer.vue'
  163. import {bookList,bookListId,submitPackingList,deletePackingList,settlement,pushU8} from '@api/document/book.js'
  164. export default {
  165. name: 'BookList', // 托书列表
  166. mixins: [JeecgListMixin],
  167. components: { JEllipsis, moment, addBookDrawer, detailsBookDrawer, editBookDrawer },
  168. data() {
  169. let ellipsis = (v, l = 20) => <j-ellipsis value={v} length={l} />
  170. return {
  171. // 表头
  172. bookListColumns: [
  173. { title: '托书号', width: 150, dataIndex: 'shippingOrderNumber', className: 'replacecolor' , ellipsis: true,fixed: 'left'},
  174. { title: '成衣工厂', width: 150, dataIndex: 'garmentFactory', className: 'replacecolor', ellipsis: true, },
  175. { title: '客户简称', dataIndex: 'clientAbbreviation', width: 120, className: 'replacecolor' , ellipsis: true,},
  176. {
  177. title: '分销点',
  178. dataIndex: 'distributionPoint',
  179. width: 120,
  180. ellipsis: true,
  181. className: 'replacecolor'
  182. },
  183. {
  184. title: '经营单位',
  185. dataIndex: 'unitInOperation',
  186. width: 160,
  187. ellipsis: true,
  188. className: 'replacecolor'
  189. },
  190. { title: '总箱数', dataIndex: 'boxNumber', width: 80, className: 'replacecolor', ellipsis: true, },
  191. { title: '总毛重', dataIndex: 'totalGrossWeight', width: 80, className: 'replacecolor', ellipsis: true, },
  192. { title: '总体积', dataIndex: 'totalVolume', width: 80, className: 'replacecolor', ellipsis: true, },
  193. {
  194. title: '金额',
  195. dataIndex: 'money',
  196. // scopedSlots: { customRender: 'money' },
  197. width: 100,
  198. ellipsis: true,
  199. className: 'replacecolor'
  200. },
  201. {
  202. title: '实际船期',
  203. dataIndex: 'theFinalShippingDate',
  204. ellipsis: true,
  205. width: 110,
  206. // customRender: text => { 有问题 显示当日日期
  207. // return moment(text).format('YYYY-MM-DD')
  208. // },
  209. className: 'replacecolor'
  210. },
  211. { title: '外销发票号码', dataIndex: 'exportInvoiceNo', width: 120, className: 'replacecolor', ellipsis: true, },
  212. {
  213. title: '状态',
  214. dataIndex: 'theDocumentsState',
  215. scopedSlots: { customRender: 'documentStateSlot' },
  216. width: 95,
  217. ellipsis: true,
  218. fixed: 'right',
  219. className: 'replacecolor'
  220. },
  221. // { title: '收汇方式', dataIndex: 'exchangeEarningsValue', width: 120, className: 'replacecolor' },
  222. // {
  223. // title: '收货人',
  224. // dataIndex: 'consignee',
  225. // width: 100,
  226. // customRender: t => ellipsis(t),
  227. // className: 'replacecolor'
  228. // },
  229. // {
  230. // title: '提单或承运收据',
  231. // dataIndex: 'billOfLadingOrCarriageReceipt',
  232. // width: 140,
  233. // customRender: t => ellipsis(t),
  234. // className: 'replacecolor'
  235. // },
  236. // {
  237. // title: '抬头人',
  238. // dataIndex: 'addressee',
  239. // width: 120,
  240. // customRender: t => ellipsis(t),
  241. // className: 'replacecolor'
  242. // },
  243. // { title: '贸易国别', dataIndex: 'tradeCountry', width: 100, className: 'replacecolor' },
  244. // { title: '运抵国别', dataIndex: 'arriveInCountry', width: 100, className: 'replacecolor' },
  245. // { title: '出口口岸', dataIndex: 'exportPort', width: 100, className: 'replacecolor' },
  246. // {
  247. // title: '通知人',
  248. // dataIndex: 'notifier',
  249. // width: 100,
  250. // customRender: t => ellipsis(t),
  251. // className: 'replacecolor'
  252. // },
  253. // { title: 'NOTIFY', dataIndex: 'nottfy', width: 150, className: 'replacecolor' },
  254. // { title: '目的港', dataIndex: 'destinationPort', width: 100, className: 'replacecolor' },
  255. // { title: '装运期限', dataIndex: 'latestDateOfShipment', width: 100, className: 'replacecolor' },
  256. {
  257. title: '推送状态',
  258. dataIndex: 'syStuta',
  259. width: 90,
  260. scopedSlots: { customRender: 'syStuta' },
  261. fixed: 'right',
  262. className: 'replacecolor'
  263. },
  264. {
  265. title: '操作',
  266. dataIndex: 'operation',
  267. scopedSlots: { customRender: 'operationSlot' },
  268. width: 220,
  269. fixed: 'right',
  270. className: 'replacecolor'
  271. }
  272. ],
  273. bookListData: [],
  274. id: '',
  275. selectedRowKeys:[],//选中行id
  276. loading: false, // 表格加载
  277. pagination:{
  278. pageSizeOptions: ["50", "100", "150"],
  279. showSizeChanger: true,
  280. },
  281. selectedNumber:0,//已选择条数
  282. // 查询条件
  283. queryParam: {
  284. pageNo:'',
  285. pageSize:'50',
  286. type:'成衣'
  287. }
  288. }
  289. },
  290. created() {
  291. this.getBookList( )
  292. },
  293. watch:{
  294. selectedRowKeys(newVal){
  295. this.selectedNumber =newVal.length
  296. }
  297. },
  298. methods: {
  299. moment,
  300. //获取表格数据
  301. getBookList(){
  302. this.$nextTick(() => {
  303. // this.queryParam.pageSize = 50
  304. bookList(this.queryParam).then(res => {
  305. if (res.success) {
  306. this.bookListData = res.result.records
  307. this.selectedRowKeys = []
  308. this.pagination = {
  309. total: res.result.total,
  310. current: res.result.current,
  311. pageSize: res.result.size
  312. }
  313. }else {
  314. this.$message.error(res.message);
  315. }
  316. })
  317. })
  318. },
  319. // 查询按钮
  320. searchQuery() {
  321. this.toggleSearchStatus = false
  322. this.queryParam.pageNo = ''
  323. if(this.queryParam.type==''||!this.queryParam.type){
  324. this.$message.error('请选择类型');
  325. }else{
  326. this.getBookList()
  327. }
  328. // this.getpreBookList() // 渲染渲染预托书
  329. },
  330. // 重置
  331. searchReset() {
  332. this.queryParam = {
  333. pageNo:'',
  334. pageSize:this.pagination.pageSize
  335. }
  336. this.getBookList()
  337. // this.getpreBookList()
  338. },
  339. // 新增
  340. addBookDrawer() {
  341. console.log('新增托书')
  342. this.$refs.addBookDrawer.visible = true
  343. this.$refs.addBookDrawer.query ='1'
  344. },
  345. // -----------------------------------
  346. // 结汇发票打印
  347. handleExportXls(record) {
  348. if(record.isAhaa == '国内'){
  349. if(record.readyFabric=='成衣'){
  350. var exinvoiceArr = ["-报关资料","-结汇发票"]
  351. }else{
  352. var exinvoiceArr = ["-报关资料"]
  353. }
  354. }else{//
  355. var exinvoiceArr = ["国外-报关信息-装箱单","国外-报关信息-发票","国外-报关信息-托书"]
  356. }
  357. exinvoiceArr.map(item =>{
  358. downFile('/syShippingOrder/syShippingOrder/syShippingOrderPrint',{id:record.id,testName:item,isAhaa:record.isAhaa}).then(data => {
  359. if (!data) {
  360. this.$message.warning('文件下载失败')
  361. return
  362. }
  363. if (typeof window.navigator.msSaveBlob !== 'undefined') {
  364. window.navigator.msSaveBlob(new Blob([data], { type: 'application/vnd.ms-excel' }), item + '.xlsx')
  365. } else {
  366. let url = window.URL.createObjectURL(new Blob([data], { type: 'application/vnd.ms-excel' }))
  367. let link = document.createElement('a')
  368. link.style.display = 'none'
  369. link.href = url
  370. link.setAttribute('download', record.shippingOrderNumber+item + '.xlsx')
  371. document.body.appendChild(link)
  372. link.click()
  373. document.body.removeChild(link) // 下载完成移除元素
  374. window.URL.revokeObjectURL(url) // 释放掉blob对象
  375. }
  376. })
  377. })
  378. },
  379. // 上传附件
  380. accessoryUpload() {},
  381. // 操作 提交
  382. submit(record) {
  383. this.$nextTick(() => {
  384. submitPackingList({ id: record.id, type: '1' }).then(res => {
  385. if (res.success) {
  386. // record.theDocumentsState = '1'
  387. this.getBookList()
  388. this.$message.success('提交成功')
  389. }else {
  390. this.$message.error(res.message);
  391. }
  392. })
  393. })
  394. },
  395. // //批量提交
  396. batchSubmit(){
  397. this.$nextTick(() => {
  398. submitPackingList({ ids: this.selectedRowKeys, type: '1'}).then(res => {
  399. if (res.success) {
  400. // record.theDocumentsState = '1'
  401. this.getBookList()
  402. this.$message.success('提交成功')
  403. this.selectedRowKeys = []
  404. }else {
  405. this.$message.error(res.message);
  406. }
  407. })
  408. })
  409. },
  410. //取消提交
  411. canaleSubmit(record) {
  412. this.$nextTick(() => {
  413. submitPackingList({ id: record.id, type: '2' }).then(res => {
  414. if (res.success) {
  415. this.$message.success('取消提交成功')
  416. record.theDocumentsState = '0'
  417. this.getBookList()
  418. }else {
  419. this.$message.error(res.message);
  420. }
  421. })
  422. })
  423. },
  424. batchCanaleSubmit(){
  425. this.$nextTick(() => {
  426. submitPackingList({ ids: this.selectedRowKeys, type: '2' }).then(res => {
  427. if (res.success) {
  428. this.$message.success('取消提交成功')
  429. // record.theDocumentsState = '0'
  430. this.getBookList()
  431. this.selectedRowKeys = []
  432. }else {
  433. this.$message.error(res.message);
  434. }
  435. })
  436. })
  437. },
  438. //推送U8
  439. pushU8(record){
  440. pushU8({ id: record.id}).then(res => {
  441. if (res.success) {
  442. this.$message.success('推送U8成功')
  443. // record.theDocumentsState = '0'
  444. this.getBookList()
  445. }else {
  446. this.$message.error(res.message);
  447. }
  448. })
  449. },
  450. // 操作 详情
  451. details(record) {
  452. this.$refs.detailsBookDrawer.visible = true
  453. },
  454. // 操作 编辑
  455. edit(record,pattern) {
  456. this.$nextTick(() => {
  457. bookListId({id:record.id,type:this.queryParam.type}).then(res => {
  458. if (res.success) {
  459. var data =res.result
  460. if(pattern == '1'){
  461. this.$refs.addBookDrawer.visible = true
  462. this.$refs.addBookDrawer.defaultMethod = 'edit'
  463. if(data.latestDateOfShipment!==''&&data.latestDateOfShipment){
  464. data.latestDateOfShipment = (moment(data.latestDateOfShipment)).format('YYYY-MM-DD')
  465. }
  466. this.$refs.addBookDrawer.getFreightForwarder(data.syShippingOrderItemList[0].pkOrg)
  467. this.$refs.addBookDrawer.addBook = data
  468. this.$refs.addBookDrawer.addBookData = data.syShippingOrderItemList
  469. this.$refs.addBookDrawer.addBookData.map(item =>{
  470. item.smallPo = item.smailPo
  471. item.itemNumber = item.styleNumber
  472. // item.volume = item.volume
  473. item.price = item.unitPrice
  474. item.englishProductName = item.englishName
  475. })
  476. if(data.rmbList.length == 0){
  477. data.rmbList = [{}]
  478. }
  479. if(data.usdList.length == 0){
  480. data.usdList = [{}]
  481. }
  482. this.$refs.addBookDrawer.rmbList = data.rmbList
  483. this.$refs.addBookDrawer.usdList = data.usdList
  484. }else {
  485. this.$refs.detailsBookDrawer.visible = true
  486. if(data.latestDateOfShipment!==''&&data.latestDateOfShipment){
  487. data.latestDateOfShipment = (moment(data.latestDateOfShipment)).format('YYYY-MM-DD')
  488. }
  489. this.$refs.detailsBookDrawer.addBook = data
  490. this.$refs.detailsBookDrawer.addBookData = data.syShippingOrderItemList
  491. this.$refs.detailsBookDrawer.rmbList = data.rmbList
  492. this.$refs.detailsBookDrawer.usdList = data.usdList
  493. if(data.syStuta == 0){
  494. this.$refs.detailsBookDrawer.disabled = false
  495. }
  496. }
  497. this.$refs.addBookDrawer.query = '1'
  498. }else {
  499. this.$message.error(res.message);
  500. }
  501. })
  502. })
  503. },
  504. // 操作 打印
  505. print(record) {},
  506. // 操作 删除
  507. handleDelete(id) {
  508. this.$nextTick(() => {
  509. if(this.queryParam.pageNo > 1 && this.bookListData.length === 1){
  510. this.queryParam.pageNo = this.queryParam.pageNo -1
  511. }
  512. this.loading = true
  513. deletePackingList({id:id}).then(res => {
  514. this.loading = false
  515. if (res.success) {
  516. this.getBookList()
  517. }else {
  518. this.$message.error(res.message);
  519. }
  520. })
  521. })
  522. },
  523. // 单据日期发生改变时
  524. orderDataChange(){
  525. this.queryParam.shippingOrderDate = (moment( this.queryParam.shippingOrderDate)).format('YYYY-MM-DD')
  526. },
  527. // // 分页、排序、筛选变化时触发
  528. handleTableChange(pagination, filters, sorter) {
  529. // console.log('当前页信息>>>>',pagination)
  530. this.queryParam.pageNo = pagination.current
  531. this.queryParam.pageSize = pagination.pageSize
  532. this.getBookList()
  533. },
  534. // 选中行
  535. onSelectChange(keys) {
  536. this.selectedRowKeys = keys
  537. }
  538. },
  539. computed: {},
  540. mounted() {}
  541. }
  542. </script>
  543. <style lang="less" scoped>
  544. @import '~@assets/less/common.less';
  545. @import '~@assets/less/overwriter.less';
  546. /deep/ .ant-table-thead > tr > th {
  547. text-align: center;
  548. // font-weight: 700;
  549. }
  550. /deep/ .ant-table-tbody {
  551. text-align: center;
  552. }
  553. /deep/ .ant-table-tbody .ant-table-row td{
  554. padding-top: 8px;
  555. padding-bottom: 8px;
  556. }
  557. /deep/.ant-card-body{
  558. padding-top: 10px !important;
  559. padding-bottom: 0px !important;
  560. }
  561. /deep/.table-operator .ant-btn{
  562. margin: 0 8px 3px 0;
  563. }
  564. /deep/.table-page-search-wrapper .ant-form-inline .ant-form-item{
  565. margin-bottom: 10px;
  566. }
  567. /deep/.table-page-search-wrapper .table-page-search-submitButtons{
  568. margin-bottom: 10px;
  569. }
  570. // /deep/ th.replacecolor {
  571. // background-color: #ccc;
  572. // }
  573. /deep/ .ant-table-fixed-left table,.ant-table-fixed-right table{
  574. width: min-content;
  575. }
  576. /deep/ thead.ant-table-thead>tr{
  577. height: 0 !important;
  578. }
  579. /deep/ .ant-table-thead > tr > th, .ant-table-tbody > tr > td{
  580. padding: 9px 16px
  581. }
  582. </style>