From 05e12ffc0cd7ca5cc0469cc7b69f9a524d722d1c Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Thu, 13 Jan 2022 17:46:52 +0800
Subject: [PATCH] 忽略模型文件
---
src/components/mobileWindow/index.vue | 10 +++++++---
1 files changed, 7 insertions(+), 3 deletions(-)
diff --git a/src/components/mobileWindow/index.vue b/src/components/mobileWindow/index.vue
index 231aee2..6d2880b 100644
--- a/src/components/mobileWindow/index.vue
+++ b/src/components/mobileWindow/index.vue
@@ -6,7 +6,11 @@
>
<div class="mobiletitle">
{{ title }}
- <span class="mobile_audio" @click="openAudio" v-show="introduce">
+ <span
+ class="mobile_audio"
+ @click="openAudio"
+ v-show="introduce && !video"
+ >
<i class="el-icon-video-play icon" v-show="!audioState"></i>
<i class="el-icon-video-pause icon" v-show="audioState"></i>
<!-- <div id="bdtts_div_id">
@@ -208,12 +212,12 @@
let once = true;
if (val == "去这") {
//定位
- // console.log(this.query.query);
+ console.log(this.query.query);
// that.$store.commit("set_endPosition", this.query.query.lntLat);
let ints = {
// start: [114.039946, 27.628475],
// end: that.query.query.lntLat,
- start: that.query.query.lntLat,
+ start: [+that.query.query.lntLat[0], +that.query.query.lntLat[1]],
end: [114.031946, 27.621475],
type: "driving",
fn: function (datas) {
--
Gitblit v1.9.3