|
@@ -19,7 +19,15 @@ export const TableColumns = [
|
|
|
|
|
|
},
|
|
|
},
|
|
|
-
|
|
|
+ {
|
|
|
+ item: { key: "taxPrice", title: "主含税单价", width: 150 },
|
|
|
+ attr: {
|
|
|
+ is: "el-computed-input-v2",
|
|
|
+ formatter: (prop) => {
|
|
|
+ return (prop * 1);
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
|
|
|
// {
|
|
|
// item: { key: "customerName", title: "客户" },
|
|
@@ -56,15 +64,6 @@ export const TableColumns = [
|
|
|
},
|
|
|
},
|
|
|
{
|
|
|
- item: { key: "taxPrice", title: "主含税单价",width:150 },
|
|
|
- attr: {
|
|
|
- is: "el-computed-input-v2",
|
|
|
- formatter: (prop) => {
|
|
|
- return (prop * 1);
|
|
|
- },
|
|
|
- },
|
|
|
- },
|
|
|
- {
|
|
|
item: { key: "purchaseQuantity", title: "本次采购数量", fixed: true ,width:160},
|
|
|
attr: {
|
|
|
is: "el-input-number",
|