Browse Source

调整订单生成表格

002390 1 year ago
parent
commit
1d7973cad6
1 changed files with 11 additions and 10 deletions
  1. 11 10
      src/views/purchase/task/xie-yi-zhi-cai/column.js

+ 11 - 10
src/views/purchase/task/xie-yi-zhi-cai/column.js

@@ -19,29 +19,26 @@ export const TableColumns = [
      
     },
   },
-  {
-    item: { key: "demandDate", title: "需求时间" },
-    attr: {},
-  },
+  
   
   // {
   //   item: { key: "customerName", title: "客户" },
   //   attr: {},
   // },
   {
-    item: { key: "priceType", title: "价格类型" },
+    item: { key: "priceType", title: "价格类型" ,width:145},
     attr: { is: "el-dict-tag", dictName: "sys_price_type" },
   },
   {
-    item: { key: "effectiveDate", title: "价格生效日期" },
+    item: { key: "effectiveDate", title: "价格生效日期",width:160 },
     attr: {},
   },
   {
-    item: { key: "endDate", title: "价格失效日期" },
+    item: { key: "endDate", title: "价格失效日期" ,width:160},
     attr: {},
   },
   {
-    item: { key: "tax", title: "税率 (%)" },
+    item: { key: "tax", title: "税率 (%)" ,width:120},
     attr: {
       is: "el-computed-input-v2",
       formatter: (prop) => {
@@ -50,7 +47,7 @@ export const TableColumns = [
     },
   },
   {
-    item: { key: "taxFreePrice", title: "无税单价" },
+    item: { key: "taxFreePrice", title: "无税单价" ,width:150},
     attr: {
       is: "el-computed-input-v2",
       formatter: (prop) => {
@@ -59,7 +56,7 @@ export const TableColumns = [
     },
   },
   {
-    item: { key: "taxPrice", title: "主含税单价" },
+    item: { key: "taxPrice", title: "主含税单价",width:150 },
     attr: {
       is: "el-computed-input-v2",
       formatter: (prop) => {
@@ -122,5 +119,9 @@ export const BasicColumns = [
     item: { key: "customerName", title: "需求客户" },
     attr: {},
   },
+  {
+    item: { key: "demandDate", title: "需求时间" },
+    attr: {},
+  },
  
 ]