|
@@ -750,6 +750,21 @@ const clearData = (val: any) => {
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+// 删除Oceam shipments
|
|
|
|
|
+const MilOceanref = ref()
|
|
|
|
|
+const MilAirref = ref()
|
|
|
|
|
+const ContainerOcean = ref()
|
|
|
|
|
+const handleCloseMilestoneOcean = (val:any) => {
|
|
|
|
|
+ MilOceanref.value.hadleclose(val)
|
|
|
|
|
+}
|
|
|
|
|
+const handleCloseMilestoneAir = (val:any) => {
|
|
|
|
|
+ MilAirref.value.hadleclose(val)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+const handleCloseContainer = (val:any) => {
|
|
|
|
|
+ ContainerOcean.value.hadleclose(val)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
defineExpose({
|
|
defineExpose({
|
|
|
clearData,
|
|
clearData,
|
|
|
Savesubscribe,
|
|
Savesubscribe,
|
|
@@ -827,6 +842,7 @@ defineExpose({
|
|
|
<div>
|
|
<div>
|
|
|
<RulesShipments
|
|
<RulesShipments
|
|
|
Title="Ocean shipments"
|
|
Title="Ocean shipments"
|
|
|
|
|
+ ref="MilOceanref"
|
|
|
@ChangeCheckRules="ChangeCheckOceanRules"
|
|
@ChangeCheckRules="ChangeCheckOceanRules"
|
|
|
:CheckboxList="MilestoneOceanListInit"
|
|
:CheckboxList="MilestoneOceanListInit"
|
|
|
:CheckedList="MilestoneOceanListChecked"
|
|
:CheckedList="MilestoneOceanListChecked"
|
|
@@ -835,6 +851,7 @@ defineExpose({
|
|
|
<div>
|
|
<div>
|
|
|
<RulesShipments
|
|
<RulesShipments
|
|
|
Title="Air shipments"
|
|
Title="Air shipments"
|
|
|
|
|
+ ref="MilAirref"
|
|
|
@ChangeCheckRules="ChangeCheckAirRules"
|
|
@ChangeCheckRules="ChangeCheckAirRules"
|
|
|
:CheckboxList="MilestoneAirListInit"
|
|
:CheckboxList="MilestoneAirListInit"
|
|
|
:CheckedList="MilestoneAirListChecked"
|
|
:CheckedList="MilestoneAirListChecked"
|
|
@@ -863,6 +880,7 @@ defineExpose({
|
|
|
<div>
|
|
<div>
|
|
|
<RulesShipments
|
|
<RulesShipments
|
|
|
Title="Ocean shipments"
|
|
Title="Ocean shipments"
|
|
|
|
|
+ ref="ContainerOcean"
|
|
|
@ChangeCheckRules="ChangeContainerRules"
|
|
@ChangeCheckRules="ChangeContainerRules"
|
|
|
:CheckboxList="ContainerOceanListInit"
|
|
:CheckboxList="ContainerOceanListInit"
|
|
|
:CheckedList="ContainerOceanListChecked"
|
|
:CheckedList="ContainerOceanListChecked"
|
|
@@ -1062,12 +1080,14 @@ defineExpose({
|
|
|
></AddedrluesTag>
|
|
></AddedrluesTag>
|
|
|
<AddedrluesTag
|
|
<AddedrluesTag
|
|
|
v-if="props.TitleType == 'Milestone'"
|
|
v-if="props.TitleType == 'Milestone'"
|
|
|
|
|
+ @handleCloseRadio="handleCloseMilestoneOcean"
|
|
|
:CheckedList="OceanCheckList"
|
|
:CheckedList="OceanCheckList"
|
|
|
Title="Ocean Shipments"
|
|
Title="Ocean Shipments"
|
|
|
></AddedrluesTag>
|
|
></AddedrluesTag>
|
|
|
<AddedrluesTag
|
|
<AddedrluesTag
|
|
|
v-if="props.TitleType == 'Container'"
|
|
v-if="props.TitleType == 'Container'"
|
|
|
:CheckedList="ContainerOceanList"
|
|
:CheckedList="ContainerOceanList"
|
|
|
|
|
+ @handleCloseRadio="handleCloseContainer"
|
|
|
Title="Ocean Shipments"
|
|
Title="Ocean Shipments"
|
|
|
></AddedrluesTag>
|
|
></AddedrluesTag>
|
|
|
<AddedrluesTag
|
|
<AddedrluesTag
|
|
@@ -1091,6 +1111,7 @@ defineExpose({
|
|
|
<AddedrluesTag
|
|
<AddedrluesTag
|
|
|
v-if="props.TitleType == 'Milestone'"
|
|
v-if="props.TitleType == 'Milestone'"
|
|
|
:CheckedList="AirCheckList"
|
|
:CheckedList="AirCheckList"
|
|
|
|
|
+ @handleCloseRadio="handleCloseMilestoneAir"
|
|
|
Title="Air Shipments"
|
|
Title="Air Shipments"
|
|
|
></AddedrluesTag>
|
|
></AddedrluesTag>
|
|
|
<AddedrluesTag
|
|
<AddedrluesTag
|