You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
839 B
51 lines
839 B
2 years ago
|
export default {
|
||
|
expand: false,
|
||
|
index: true,
|
||
|
border: true,
|
||
|
selection: true,
|
||
|
column: [
|
||
|
{
|
||
|
label: "主键",
|
||
|
prop: "id",
|
||
|
},
|
||
|
{
|
||
|
label: "线路编号",
|
||
|
prop: "logisticsLineNumber",
|
||
|
search: true,
|
||
|
},
|
||
|
{
|
||
|
label: "线路名称",
|
||
|
prop: "logisticsLineName",
|
||
|
search: true,
|
||
|
},
|
||
|
{
|
||
|
label: "创建人",
|
||
|
prop: "createdUser",
|
||
|
},
|
||
|
{
|
||
|
label: "创建时间",
|
||
|
prop: "createdTime",
|
||
|
},
|
||
|
// {
|
||
|
// label: "更新人",
|
||
|
// prop: "updatedUser",
|
||
|
// },
|
||
|
// {
|
||
|
// label: "更新时间",
|
||
|
// prop: "updatedTime",
|
||
|
// },
|
||
|
{
|
||
|
label: "状态",
|
||
|
prop: "status",
|
||
|
},
|
||
|
{
|
||
|
label: "是否已删除",
|
||
|
prop: "isDeleted",
|
||
|
},
|
||
|
{
|
||
|
label: "创建部门",
|
||
|
prop: "createdDept",
|
||
|
},
|
||
|
]
|
||
|
}
|