|
@@ -17,15 +17,7 @@
|
|
|
<a-date-picker style="width: 100%" v-model="queryParam.shippingOrderDate" @change="orderDataChange" > </a-date-picker>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
- <a-col :md="6" :sm="8">
|
|
|
- <a-form-item label="账套号">
|
|
|
- <j-search-select-tag
|
|
|
- placeholder="请选择账套号"
|
|
|
- v-model="queryParam.pkOrg"
|
|
|
- dict="view_account,account,account">
|
|
|
- </j-search-select-tag>
|
|
|
- </a-form-item>
|
|
|
- </a-col>
|
|
|
+
|
|
|
<a-col :md="6" :sm="8">
|
|
|
<a-form-item label="客户简称">
|
|
|
<!-- <a-input placeholder="请输入客户简称" v-model="queryParam.clientAbbreviation"></a-input> -->
|
|
@@ -38,6 +30,15 @@
|
|
|
</a-col>
|
|
|
|
|
|
<template v-if="toggleSearchStatus">
|
|
|
+ <a-col :md="6" :sm="8">
|
|
|
+ <a-form-item label="账套号">
|
|
|
+ <j-search-select-tag
|
|
|
+ placeholder="请选择账套号"
|
|
|
+ v-model="queryParam.pkOrg"
|
|
|
+ dict="view_account,account,account">
|
|
|
+ </j-search-select-tag>
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
<!-- <a-col :md="6" :sm="8">
|
|
|
<a-form-item label="箱号">
|
|
|
<a-input placeholder="请输入箱号" v-model="queryParam.containerNumber"></a-input>
|
|
@@ -186,7 +187,7 @@ export default {
|
|
|
return {
|
|
|
// 表头
|
|
|
bookListColumns: [
|
|
|
- { title: '托书号', width: 120, dataIndex: 'shippingOrderNumber', className: 'replacecolor' , ellipsis: true,},
|
|
|
+ { title: '托书号', width: 120, dataIndex: 'shippingOrderNumber', className: 'replacecolor' , ellipsis: true,fixed: 'left'},
|
|
|
{ title: '成衣工厂', width: 140, dataIndex: 'garmentFactory', className: 'replacecolor', ellipsis: true, },
|
|
|
{ title: '外销发票号码', dataIndex: 'exportInvoiceNo', width: 120, className: 'replacecolor', ellipsis: true, },
|
|
|
{ title: '客户简称', dataIndex: 'clientAbbreviation', width: 120, className: 'replacecolor' , ellipsis: true,},
|
|
@@ -585,4 +586,13 @@ padding-bottom: 0px !important;
|
|
|
// /deep/ th.replacecolor {
|
|
|
// background-color: #ccc;
|
|
|
// }
|
|
|
+/deep/ .ant-table-fixed-left table,.ant-table-fixed-right table{
|
|
|
+ width: min-content;
|
|
|
+}
|
|
|
+/deep/ thead.ant-table-thead>tr{
|
|
|
+ height: 0 !important;
|
|
|
+}
|
|
|
+/deep/ .ant-table-thead > tr > th, .ant-table-tbody > tr > td{
|
|
|
+ padding: 9px 16px
|
|
|
+}
|
|
|
</style>
|