huxy 2 дней назад
Родитель
Сommit
dd052045a2
2 измененных файлов с 5 добавлено и 5 удалено
  1. 1 1
      src/views/book/book-list.vue
  2. 4 4
      src/views/shipment-details/shipmentList.vue

+ 1 - 1
src/views/book/book-list.vue

@@ -264,7 +264,7 @@
           </a-dropdown>
         </span>
       </a-table>
-      <span style="position: absolute;bottom: 9%;">共勾选{{selectedNumber}}条数</span>
+      <span style="position: absolute;bottom: 5%;">共勾选{{selectedNumber}}条数</span>
     </a-card>
 
     <!-- 抽屉 -->

+ 4 - 4
src/views/shipment-details/shipmentList.vue

@@ -584,11 +584,11 @@ export default {
       columns: [
           {field: "",key: "ju",type: "checkbox",title: "",width: 50, align: "center",fixed: "left",ellipsis: {showTitle: true,},},
           { field: "account", key: "a", title: "账套", align: "center", width: 85,sortBy: "",ellipsis: {showTitle: true,},},
-          { field: "orderNumber", key: "b", title: "销售订单号", align: "center",width: 180,sortBy: "",ellipsis: {showTitle: true,},
+          { field: "orderNumber", key: "b", title: "销售订单号", align: "center",width: 240,sortBy: "",ellipsis: {showTitle: true,},
             renderBodyCell: ({ row, column, rowIndex }, h) => {
               const text = row[column.field];
-              if (text && text.length>16){
-                return text.substring(0,16)+'...';
+              if (text && text.length>28){
+                return text.substring(0,28)+'...';
               }
               return text;
             },},
@@ -596,7 +596,7 @@ export default {
           { field: "salesman", key: "d", title: "业务员", align: "center", width: 100,sortBy: "", ellipsis: {showTitle: true,},},
           { field: "distributionPoint", key: "e", title: "分销点", align: "center", width: 110,sortBy: "", ellipsis: {showTitle: true,},},
           { field: "smallPo", key: "f", title: "小po", align: "center", width: 200,sortBy: "", ellipsis: {showTitle: true,},},
-          { field: "inventoryName", key: "g", title: "存货名称", align: "center", width: 320,sortBy: "", ellipsis: {showTitle: true},
+          { field: "inventoryName", key: "g", title: "存货名称", align: "center", width: 350,sortBy: "", ellipsis: {showTitle: true},
             renderBodyCell: ({ row, column, rowIndex }, h) => {
               const text = row[column.field];
               if (text && text.length>30){