Przeglądaj źródła

成本分配表-发运明细-添加字段

jbb 2 lat temu
rodzic
commit
bd19c66d49
1 zmienionych plików z 22 dodań i 14 usunięć
  1. 22 14
      src/views/reportForms/cost-allocation-table/tabs.vue

+ 22 - 14
src/views/reportForms/cost-allocation-table/tabs.vue

@@ -72,7 +72,7 @@
             :data-source="shipData"
             bordered
             :pagination="false"
-            :scroll="{ x: 1000 }"
+            :scroll="{ x: 1500 }"
           >
           </a-table>
         </div>
@@ -353,68 +353,76 @@ export default {
       shipColumns: [
         {
           title: '序号',
-          width: 90,
+          width: 80,
           dataIndex: 'index',
           key: 'index',
           fixed: 'left',
           customRender: (text, record, index) => `${index + 1}`,
           className: 'replacecolor'
         },
-        { title: '发票号码', width: 180, dataIndex: 'invoiceNum', fixed: 'left', className: 'replacecolor' },
+        { title: '发票号码', width: 150, dataIndex: 'invoiceNum', fixed: 'left', className: 'replacecolor' },
         {
           title: '出运日期',
           dataIndex: 'outdata',
-          width: 130,
+          width: 120,
+          fixed: 'left',
+          className: 'replacecolor'
+        },
+        {
+          title: '小po',
+          width: 90,
+          dataIndex: 'smallPo',
+          fixed: 'left',
           className: 'replacecolor'
         },
         {
           title: '汇率',
           dataIndex: 'exchangeRate',
-          width: 120,
+          width: 90,
           className: 'replacecolor'
         },
 
-        { title: '订单号', dataIndex: 'orderNum', width: 160, className: 'replacecolor' },
+        { title: '订单号', dataIndex: 'orderNum', width: 180, className: 'replacecolor' },
         {
           title: '产品款号',
           dataIndex: 'poStyleNum',
-          width: 120,
+          width: 100,
           className: 'replacecolor'
         },
         {
           title: '出货数量',
           dataIndex: 'shipQuantity',
-          width: 120,
+          width: 100,
           className: 'replacecolor'
         },
         {
           title: '外销单价',
           dataIndex: 'exportUnitPrice',
-          width: 120,
+          width: 100,
           className: 'replacecolor'
         },
         {
           title: '外销总价',
           dataIndex: 'exportPrice',
-          width: 160,
+          width: 100,
           className: 'replacecolor'
         },
         {
           title: '人民币金额',
           dataIndex: 'rmbAmount',
-          width: 160,
+          width: 120,
           className: 'replacecolor'
         },
         {
           title: '加工单价(人民币)',
           dataIndex: 'procesUnitPricermb',
-          width: 160,
+          width: 150,
           className: 'replacecolor'
         },
         {
           title: '加工单价(美元)',
           dataIndex: 'procesUnitPriceusd',
-          width: 160,
+          width: 150,
           className: 'replacecolor',
           customRender: (text, record, index) => {
             if (record.procesUnitPricermb == record.procesUnitPriceusd)
@@ -426,7 +434,7 @@ export default {
         {
           title: '加工费',
           dataIndex: 'processCost',
-          width: 160,
+          width: 100,
           className: 'replacecolor'
         }
       ],