|
@@ -559,7 +559,7 @@ const app = new Vue({
|
|
|
return
|
|
|
}
|
|
|
this.userCardInfoData = res.data
|
|
|
- console.log('获取卡信息消耗时间:' + ((+ new Date() - this.obtainCardInfoStartDate) / 1000) + '秒')
|
|
|
+ let ms = + new Date() - this.obtainCardInfoStartDate
|
|
|
this.connectWebRtc()
|
|
|
return
|
|
|
case 5200:
|
|
@@ -762,22 +762,6 @@ const app = new Vue({
|
|
|
}
|
|
|
})
|
|
|
|
|
|
-function playOnBtn() {
|
|
|
- const { isTips } = this.parametersData;
|
|
|
- Dialog.alert({
|
|
|
- title: '提示',
|
|
|
- message: `${+isTips ? '开始' : '继续'}使用云手机`,
|
|
|
- confirmButtonText: '确定',
|
|
|
- confirmButtonColor: '#3cc51f',
|
|
|
- beforeClose: (action, done) => {
|
|
|
- if (action === 'confirm') {
|
|
|
-
|
|
|
- done()
|
|
|
- }
|
|
|
- }
|
|
|
- });
|
|
|
-}
|
|
|
-
|
|
|
|
|
|
// 获取URL参数
|
|
|
function getParameters() {
|