tableConfig.js
545 Bytes
export const tableAttr = {
border: true,
loadingTable: false,
isDragSort: false, // 拖拽tableData数据一定要加id字段
maxHeight: 300,
btnCofig: {
isBtn: false,
btnGroup: [],
},
};
export const columnHeader = () => [
{
type: "index",
label: "序号",
prop: "id",
align: "center",
width: "70",
},
{
label: "运单号",
prop: "waybillNo",
align: "center",
width: 150,
},
{
label: "错误信息",
prop: "errorMessage",
align: "center",
minWidth: 150,
},
];