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.
35 lines
881 B
35 lines
881 B
import type { Priority1DemoInput } from "@/workers/rpa/priority1/demo-input";
|
|
|
|
/** 系统 Priority1 模拟界面初始值 — 不预填邮编/日期/邮箱等,供用户手动测试 */
|
|
export const EMPTY_PRIORITY1_SIMULATOR_FORM: Priority1DemoInput = {
|
|
shipmentType: "ltl",
|
|
originZip: "",
|
|
destinationZip: "",
|
|
shipmentFrequency: "",
|
|
pickupDate: "",
|
|
email: "",
|
|
phone: "",
|
|
phoneCountry: "US",
|
|
lengthIn: "",
|
|
widthIn: "",
|
|
heightIn: "",
|
|
weightLb: "",
|
|
palletCount: "",
|
|
freightClass: "",
|
|
packaging: "",
|
|
pickupLocation: "",
|
|
deliveryLocation: "",
|
|
pickupServices: [],
|
|
deliveryServices: [],
|
|
commodity: "",
|
|
ftlTrailer: "dry_van",
|
|
ftlAdditionalServices: [],
|
|
expeditedTrailer: "sprinter_van",
|
|
openDeckSubtype: "",
|
|
tempMinF: "",
|
|
tempMaxF: "",
|
|
ftlExpeditedTrailer: "sprinter_van",
|
|
expeditedLiftgate: false,
|
|
specialHandlingServices: [],
|
|
};
|