|
@@ -231,7 +231,7 @@
|
|
|
<!-- 客服二维码弹窗 -->
|
|
<!-- 客服二维码弹窗 -->
|
|
|
<uni-popup ref="kfPopup" type="center" :mask-click="false">
|
|
<uni-popup ref="kfPopup" type="center" :mask-click="false">
|
|
|
<view class="kfqrcode-box">
|
|
<view class="kfqrcode-box">
|
|
|
- <image class="kfqrcode" :src="qrcode" show-menu-by-longpress="true"></image>
|
|
|
|
|
|
|
+ <image class="kfqrcode" v-if="qrcode" :src="qrcode" show-menu-by-longpress="true"></image>
|
|
|
<view v-show="qrcodeMsg" style="margin-top: 30rpx;" v-html="qrcodeMsg"></view>
|
|
<view v-show="qrcodeMsg" style="margin-top: 30rpx;" v-html="qrcodeMsg"></view>
|
|
|
<image class="kfqrcode-close" src="https://cos.his.cdwjyyh.com/fs/20250915/97978486cc6c47c6949c5bcc9bc0c4a3.png" mode="aspectFill"
|
|
<image class="kfqrcode-close" src="https://cos.his.cdwjyyh.com/fs/20250915/97978486cc6c47c6949c5bcc9bc0c4a3.png" mode="aspectFill"
|
|
|
@click="closeKFPop"></image>
|
|
@click="closeKFPop"></image>
|
|
@@ -271,7 +271,7 @@
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
<script>
|
|
|
- import ykScreenRecord from '@/components/yk-screenRecord/yk-screenRecord';
|
|
|
|
|
|
|
+ import ykScreenRecord from './components/yk-screenRecord/yk-screenRecord';
|
|
|
import { mapGetters } from 'vuex';
|
|
import { mapGetters } from 'vuex';
|
|
|
import turntableOne from "./components/turntableOne.vue"
|
|
import turntableOne from "./components/turntableOne.vue"
|
|
|
import turntableTwo from "./components/turntableTwo.vue"
|
|
import turntableTwo from "./components/turntableTwo.vue"
|
|
@@ -1094,10 +1094,6 @@
|
|
|
this.qrcode = res.qrcode
|
|
this.qrcode = res.qrcode
|
|
|
this.qrcodeMsg = res.msg
|
|
this.qrcodeMsg = res.msg
|
|
|
this.$refs.kfPopup.open()
|
|
this.$refs.kfPopup.open()
|
|
|
- } else if (res.code == 504) {
|
|
|
|
|
- // 登录
|
|
|
|
|
- this.isCheckRealUrl = false
|
|
|
|
|
- this.goLogin()
|
|
|
|
|
} else if (res.code == 566) {
|
|
} else if (res.code == 566) {
|
|
|
// 官方群发通用链接
|
|
// 官方群发通用链接
|
|
|
const url = res.courseLink.realLink.split('?course=')[1]
|
|
const url = res.courseLink.realLink.split('?course=')[1]
|
|
@@ -1124,7 +1120,12 @@
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
err => {}
|
|
err => {}
|
|
|
- );
|
|
|
|
|
|
|
+ ).catch((err) => {
|
|
|
|
|
+ uni.showToast({
|
|
|
|
|
+ title: err,
|
|
|
|
|
+ icon: 'none'
|
|
|
|
|
+ });
|
|
|
|
|
+ })
|
|
|
},
|
|
},
|
|
|
closeKFPop() {
|
|
closeKFPop() {
|
|
|
this.$refs.kfPopup.close()
|
|
this.$refs.kfPopup.close()
|