|
@@ -60,8 +60,6 @@ defineEmits<{
|
|
}>();
|
|
}>();
|
|
|
|
|
|
const panoModel = getSupperPanoModel();
|
|
const panoModel = getSupperPanoModel();
|
|
-watchEffect(() => console.error(panoModel.value));
|
|
|
|
-
|
|
|
|
const modelList = computed(() =>
|
|
const modelList = computed(() =>
|
|
fuseModels.value.map((model) => ({
|
|
fuseModels.value.map((model) => ({
|
|
raw: model,
|
|
raw: model,
|
|
@@ -70,13 +68,10 @@ const modelList = computed(() =>
|
|
);
|
|
);
|
|
|
|
|
|
const modelChangeSelect = (model: FuseModel, mode: "pano" | "fuse") => {
|
|
const modelChangeSelect = (model: FuseModel, mode: "pano" | "fuse") => {
|
|
- console.error(getFuseModelShowVariable(model).value);
|
|
|
|
if (getFuseModelShowVariable(model).value) {
|
|
if (getFuseModelShowVariable(model).value) {
|
|
- console.log(custom.currentModel, model);
|
|
|
|
if (custom.currentModel === model && mode === custom.showMode) {
|
|
if (custom.currentModel === model && mode === custom.showMode) {
|
|
custom.currentModel = null;
|
|
custom.currentModel = null;
|
|
custom.showMode = "fuse";
|
|
custom.showMode = "fuse";
|
|
- console.log("a?");
|
|
|
|
} else {
|
|
} else {
|
|
custom.currentModel = model;
|
|
custom.currentModel = model;
|
|
custom.showMode = mode;
|
|
custom.showMode = mode;
|