|
@@ -17,7 +17,6 @@
|
|
|
<template v-if="route.query.deviceType">
|
|
|
<div style="width: 100%; height: 100%; position: absolute; left: 0; top: 0">
|
|
|
<VentModal />
|
|
|
- <div class="switch-button icon-goto right-5px" @click="goMicroApp(true)"></div>
|
|
|
</div>
|
|
|
</template>
|
|
|
<template v-else>
|
|
@@ -123,19 +122,15 @@
|
|
|
}, 60000);
|
|
|
}
|
|
|
|
|
|
- function goMicroApp(test = false) {
|
|
|
- if (test) {
|
|
|
- router.push({ path: route.path });
|
|
|
- } else {
|
|
|
- router.push({
|
|
|
- path: route.path,
|
|
|
- query: {
|
|
|
- ...route.query,
|
|
|
- type: 'model3D',
|
|
|
- deviceType: 'model3D',
|
|
|
- },
|
|
|
- });
|
|
|
- }
|
|
|
+ function goMicroApp() {
|
|
|
+ router.push({
|
|
|
+ path: route.path,
|
|
|
+ query: {
|
|
|
+ ...route.query,
|
|
|
+ type: 'model3D',
|
|
|
+ deviceType: 'model3D',
|
|
|
+ },
|
|
|
+ });
|
|
|
}
|
|
|
|
|
|
watch(
|