|
@@ -20,6 +20,7 @@
|
|
|
|
|
|
<el-menu-item index="3">灾害推演</el-menu-item>
|
|
|
<el-menu-item index="4">推演结果</el-menu-item>
|
|
|
+ <el-menu-item index="5">结果对比</el-menu-item>
|
|
|
</el-menu>
|
|
|
<div class="ve_right">
|
|
|
<div class="ve_timeioc" v-if=" aid==null" @click="qingsel">
|
|
@@ -48,6 +49,7 @@
|
|
|
<info-boundary ref="boundary" :classradio="classradio" :aid="aid" />
|
|
|
<info-animation ref="tanimation" :classradio="classradio" :aid="aid" />
|
|
|
<InfoVtkmodel ref="vtkmodel" />
|
|
|
+ <result ref="resultbidui"></result>
|
|
|
</el-main>
|
|
|
</el-container>
|
|
|
</div>
|
|
@@ -64,6 +66,7 @@ import SourceDisaster from "./components/InfoDisaster.vue"
|
|
|
import InfoBoundary from "./components/InfoBoundary.vue"
|
|
|
import InfoAnimation from "./components/InfoAnimation.vue"
|
|
|
import InfoVtkmodel from "./components/InfoVtkmodel.vue"
|
|
|
+import result from "./result.vue"
|
|
|
import Vector from "@/assets/img/Vector.png";
|
|
|
import { timestampToTime } from '@/js/lindex.js'
|
|
|
import mitts from "@/utils/Bus"
|
|
@@ -78,6 +81,7 @@ let classradio = ref()
|
|
|
let boundary = ref();
|
|
|
let tanimation = ref();
|
|
|
let titlefalse = ref(false);
|
|
|
+let resultbidui=ref();
|
|
|
let headerobj = ref({
|
|
|
time: '',
|
|
|
name: "",
|
|
@@ -144,6 +148,7 @@ const handleSelect = (key) => {
|
|
|
boundary.value.accident4(key);
|
|
|
lliudialog.value.accident2(key);
|
|
|
tanimation.value.monitor = false;
|
|
|
+ resultbidui.value.accident6(key)
|
|
|
activeIndex.value='1';
|
|
|
break;
|
|
|
case '2':
|
|
@@ -152,6 +157,7 @@ const handleSelect = (key) => {
|
|
|
sourcedis.value.accident3(key);
|
|
|
lliudialog.value.accident2(key);
|
|
|
tanimation.value.monitor = false;
|
|
|
+ resultbidui.value.accident6(key)
|
|
|
activeIndex.value='2'
|
|
|
break;
|
|
|
case '3':
|
|
@@ -162,15 +168,26 @@ const handleSelect = (key) => {
|
|
|
tanimation.value.monitor = false;
|
|
|
activeIndex.value='3'
|
|
|
lliudialog.value.addinitial();
|
|
|
+ resultbidui.value.accident6(key)
|
|
|
break;
|
|
|
case '4':
|
|
|
boundary.value.accident4(key);
|
|
|
tanimation.value.accident5(aid.value);
|
|
|
sourcedis.value.accident3(key);
|
|
|
lliudialog.value.accident2(key);
|
|
|
+ resultbidui.value.accident6(key)
|
|
|
activeIndex.value='4'
|
|
|
- default:
|
|
|
break;
|
|
|
+ case '5':
|
|
|
+ sourcedis.value.changeModel();
|
|
|
+ sourcedis.value.accident3(key);
|
|
|
+ boundary.value.accident4(key);
|
|
|
+ lliudialog.value.accident2(key);
|
|
|
+ resultbidui.value.accident6(key)
|
|
|
+ tanimation.value.monitor = false;
|
|
|
+ activeIndex.value='5';
|
|
|
+ default:
|
|
|
+ break;
|
|
|
}
|
|
|
}
|
|
|
|