|
@@ -10,14 +10,14 @@ export function useColumns() {
|
|
|
{
|
|
|
label: "业务订单编号",
|
|
|
prop: "sequenceNo",
|
|
|
- minWidth: 160,
|
|
|
+ width: 150,
|
|
|
showOverflowTooltip: true,
|
|
|
fixed: "left"
|
|
|
},
|
|
|
{
|
|
|
label: "销售订单主编号",
|
|
|
prop: "cxCode",
|
|
|
- minWidth: 160,
|
|
|
+ width: 150,
|
|
|
showOverflowTooltip: true
|
|
|
},
|
|
|
// {
|
|
@@ -29,12 +29,17 @@ export function useColumns() {
|
|
|
{
|
|
|
label: "po编号",
|
|
|
prop: "poCode",
|
|
|
- minWidth: 190
|
|
|
+ width: 190
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: "其他编号",
|
|
|
+ prop: "workCode",
|
|
|
+ width: 190
|
|
|
},
|
|
|
{
|
|
|
label: "商品编码",
|
|
|
prop: "goodNo",
|
|
|
- minWidth: 160,
|
|
|
+ width: 150,
|
|
|
showOverflowTooltip: true
|
|
|
},
|
|
|
{
|
|
@@ -46,7 +51,7 @@ export function useColumns() {
|
|
|
{
|
|
|
label: "客户编号",
|
|
|
prop: "customerNo",
|
|
|
- minWidth: 160,
|
|
|
+ width: 150,
|
|
|
showOverflowTooltip: true
|
|
|
},
|
|
|
{
|
|
@@ -58,41 +63,42 @@ export function useColumns() {
|
|
|
{
|
|
|
label: "订单总金额",
|
|
|
prop: "totalPrice",
|
|
|
- minWidth: 110,
|
|
|
+ width: 110,
|
|
|
showOverflowTooltip: true
|
|
|
},
|
|
|
{
|
|
|
label: "商品数量",
|
|
|
prop: "goodNum",
|
|
|
- minWidth: 160,
|
|
|
+ width: 110,
|
|
|
showOverflowTooltip: true
|
|
|
},
|
|
|
{
|
|
|
label: "未开票数量",
|
|
|
- prop: "winv_num"
|
|
|
+ prop: "winv_num",
|
|
|
+ width: 110
|
|
|
},
|
|
|
{
|
|
|
label: "已开票金额",
|
|
|
prop: "ainv_fee",
|
|
|
- minWidth: 110,
|
|
|
+ width: 110,
|
|
|
showOverflowTooltip: true
|
|
|
},
|
|
|
{
|
|
|
label: "开票中金额",
|
|
|
prop: "inv_fee",
|
|
|
- minWidth: 110,
|
|
|
+ width: 110,
|
|
|
showOverflowTooltip: true
|
|
|
},
|
|
|
{
|
|
|
label: "未开票金额",
|
|
|
prop: "winv_fee",
|
|
|
- minWidth: 110,
|
|
|
+ width: 110,
|
|
|
showOverflowTooltip: true
|
|
|
},
|
|
|
{
|
|
|
label: "发货状态",
|
|
|
prop: "sendStatus",
|
|
|
- minWidth: 110,
|
|
|
+ width: 110,
|
|
|
showOverflowTooltip: true,
|
|
|
cellRenderer: ({ row, props }) => (
|
|
|
<el-tag
|
|
@@ -116,12 +122,12 @@ export function useColumns() {
|
|
|
{
|
|
|
label: "业务员",
|
|
|
prop: "ownerName",
|
|
|
- minWidth: 80,
|
|
|
+ width: 80,
|
|
|
showOverflowTooltip: true
|
|
|
},
|
|
|
{
|
|
|
label: "创建时间",
|
|
|
- minWidth: 145,
|
|
|
+ width: 130,
|
|
|
prop: "createTime",
|
|
|
showOverflowTooltip: true,
|
|
|
formatter: ({ addtime }) => dayjs(addtime).format("YYYY-MM-DD HH:mm:ss")
|