book-list.vue 22 KB

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