- 多联总单详情 | {{ master.masterNo }}
{{ statusName(master.businessStatus) }}{{ transportFlowLabel }}
+
+
+
多联总单详情 | {{ master.masterNo }}
+ {{
+ statusName(master.businessStatus)
+ }}
+ {{
+ transportFlowLabel
+ }}
+
+
- 客户
@@ -132,6 +142,7 @@ export default {
dateRange() { return this.master?.planStartTime && this.master?.planEndTime ? `${String(this.master.planStartTime).slice(0, 10)} ~ ${String(this.master.planEndTime).slice(0, 10)}` : '-'; },
},
async mounted() {
+ if (!this.id) return;
this.loading = true;
try {
const res = await api.getDetail(this.id);
@@ -282,8 +293,36 @@ export default {