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.
205 lines
3.5 KiB
205 lines
3.5 KiB
2 years ago
|
export default {
|
||
|
expand: false,
|
||
|
index: true,
|
||
|
border: true,
|
||
|
selection: true,
|
||
|
column: [
|
||
|
{
|
||
|
label: "主键",
|
||
|
prop: "id",
|
||
|
display: false,
|
||
|
hide: true,
|
||
|
},
|
||
|
{
|
||
|
label: "租户号",
|
||
|
prop: "tenantId",
|
||
|
display: false,
|
||
|
hide: true,
|
||
|
},
|
||
|
{
|
||
|
label: "创建人",
|
||
|
prop: "createUser",
|
||
|
display: false,
|
||
|
hide: true,
|
||
|
},
|
||
|
{
|
||
|
label: "创建时间",
|
||
|
prop: "createTime",
|
||
|
display: false,
|
||
|
hide: true,
|
||
|
},
|
||
|
{
|
||
|
label: "更新人",
|
||
|
prop: "updateUser",
|
||
|
display: false,
|
||
|
hide: true,
|
||
|
},
|
||
|
{
|
||
|
label: "更新时间",
|
||
|
prop: "updateTime",
|
||
|
display: false,
|
||
|
hide: true,
|
||
|
},
|
||
|
{
|
||
|
label: "状态",
|
||
|
prop: "status",
|
||
|
display: false,
|
||
|
hide: true,
|
||
|
},
|
||
|
{
|
||
|
label: "是否已删除;1-未删除,2-已删除",
|
||
|
prop: "isDeleted",
|
||
|
display: false,
|
||
|
hide: true,
|
||
|
},
|
||
|
{
|
||
|
label: "创建部门",
|
||
|
prop: "createDept",
|
||
|
display: false,
|
||
|
hide: true,
|
||
|
},
|
||
|
{
|
||
|
label: "类型;1-平台运营商,2-外部运营商",
|
||
|
prop: "type",
|
||
|
search: true,
|
||
|
},
|
||
|
{
|
||
|
label: "承运商编号",
|
||
|
prop: "number",
|
||
|
search: true,
|
||
|
},
|
||
|
{
|
||
|
label: "集团ID",
|
||
|
prop: "groupId",
|
||
|
search: true,
|
||
|
},
|
||
|
{
|
||
|
label: "承运商电话",
|
||
|
prop: "carrierPhone",
|
||
|
},
|
||
|
{
|
||
|
label: "绑定仓库Id",
|
||
|
prop: "warehouseId",
|
||
|
},
|
||
|
{
|
||
|
label: "负责人",
|
||
|
prop: "head",
|
||
|
search: true,
|
||
|
},
|
||
|
{
|
||
|
label: "手机号",
|
||
|
prop: "headPhone",
|
||
|
},
|
||
|
{
|
||
|
label: "营业执照注册号",
|
||
|
prop: "licenseNub",
|
||
|
},
|
||
|
{
|
||
|
label: "法人",
|
||
|
prop: "legalPerson",
|
||
|
},
|
||
|
{
|
||
|
label: "法人电话",
|
||
|
prop: "legalPersonPhone",
|
||
|
},
|
||
|
{
|
||
|
label: "法人身份证",
|
||
|
prop: "legalPersonId",
|
||
|
},
|
||
|
{
|
||
|
label: "邮箱",
|
||
|
prop: "mailbox",
|
||
|
},
|
||
|
{
|
||
|
label: "客服电话",
|
||
|
prop: "customerServicePhone",
|
||
|
},
|
||
|
{
|
||
|
label: "合同起始时间",
|
||
|
prop: "contractStartTime",
|
||
|
},
|
||
|
{
|
||
|
label: "合同起始时间",
|
||
|
prop: "contractEndTime",
|
||
|
},
|
||
|
{
|
||
|
label: "合同附件",
|
||
|
prop: "contractAppendices",
|
||
|
},
|
||
|
{
|
||
|
label: "道路运输许可证图片",
|
||
|
prop: "roadTransportPhoto",
|
||
|
},
|
||
|
{
|
||
|
label: "道路运输许可证编号",
|
||
|
prop: "roadTransportNub",
|
||
|
},
|
||
|
{
|
||
|
label: "物流园",
|
||
|
prop: "logisticsPark",
|
||
|
},
|
||
|
{
|
||
|
label: "自由车辆数",
|
||
|
prop: "freeVehiclesNub",
|
||
|
},
|
||
|
{
|
||
|
label: "外部车辆数",
|
||
|
prop: "externalVehiclesNub",
|
||
|
},
|
||
|
{
|
||
|
label: "星级",
|
||
|
prop: "starRating",
|
||
|
},
|
||
|
{
|
||
|
label: "定位地址;(用于获取经纬度)",
|
||
|
prop: "locationAddress",
|
||
|
},
|
||
|
{
|
||
|
label: "经度",
|
||
|
prop: "longitude",
|
||
|
},
|
||
|
{
|
||
|
label: "纬度",
|
||
|
prop: "latitude",
|
||
|
},
|
||
|
{
|
||
|
label: "备注",
|
||
|
prop: "notes",
|
||
|
},
|
||
|
{
|
||
|
label: "照片信息",
|
||
|
prop: "photo",
|
||
|
},
|
||
|
{
|
||
|
label: "预留1",
|
||
|
prop: "reserve1",
|
||
|
display: false,
|
||
|
hide: true,
|
||
|
},
|
||
|
{
|
||
|
label: "预留2",
|
||
|
prop: "reserve2",
|
||
|
display: false,
|
||
|
hide: true,
|
||
|
},
|
||
|
{
|
||
|
label: "预留3",
|
||
|
prop: "reserve3",
|
||
|
display: false,
|
||
|
hide: true,
|
||
|
},
|
||
|
{
|
||
|
label: "预留4",
|
||
|
prop: "reserve4",
|
||
|
display: false,
|
||
|
hide: true,
|
||
|
},
|
||
|
{
|
||
|
label: "预留5",
|
||
|
prop: "reserve5",
|
||
|
display: false,
|
||
|
hide: true,
|
||
|
},
|
||
|
]
|
||
|
}
|