|
|
@ -3,7 +3,8 @@ |
|
|
|
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=0"> |
|
|
|
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=0"> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="wechat_tip_content" v-if="agent === 'wxandroid' || agent === 'wxapple'"> |
|
|
|
<div class="wechat_tip_content" v-if="(agent === 'wxandroid' || agent === 'wxapple') && !wrong"> |
|
|
|
|
|
|
|
<div class="mask"> |
|
|
|
<div class="wechat_tip" v-show="agent === 'wxandroid'"> |
|
|
|
<div class="wechat_tip" v-show="agent === 'wxandroid'"> |
|
|
|
<i class="triangle-up"/>请点击右上角<br>选择"在浏览器打开" |
|
|
|
<i class="triangle-up"/>请点击右上角<br>选择"在浏览器打开" |
|
|
|
</div> |
|
|
|
</div> |
|
|
@ -11,6 +12,7 @@ |
|
|
|
<i class="triangle-up"/>请点击右上角<br>选择"在Safari中打开" |
|
|
|
<i class="triangle-up"/>请点击右上角<br>选择"在Safari中打开" |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
<div v-else> |
|
|
|
<div v-else> |
|
|
|
<!-- <span class="pattern left"><img src="@/assets/down_left.png"></span>--> |
|
|
|
<!-- <span class="pattern left"><img src="@/assets/down_left.png"></span>--> |
|
|
@ -64,12 +66,13 @@ |
|
|
|
|
|
|
|
|
|
|
|
<div id="actions" class="actions" v-if="agent !==''" |
|
|
|
<div id="actions" class="actions" v-if="agent !==''" |
|
|
|
style="margin-top: 20%;margin-bottom: 20%"> |
|
|
|
style="margin-top: 20%;margin-bottom: 20%"> |
|
|
|
|
|
|
|
<button type="button" v-if="wrong">{{ msg }}</button> |
|
|
|
|
|
|
|
|
|
|
|
<el-button type="info" round v-if="agent === 'wxandroid' || agent === 'wxapple'"> |
|
|
|
<el-button type="info" round |
|
|
|
|
|
|
|
v-else-if="agent === 'wxandroid' || agent === 'wxapple'"> |
|
|
|
不支持在微信内下载 |
|
|
|
不支持在微信内下载 |
|
|
|
</el-button> |
|
|
|
</el-button> |
|
|
|
|
|
|
|
|
|
|
|
<button type="button" v-else-if="wrong">{{ msg }}</button> |
|
|
|
|
|
|
|
<div v-else style="margin-top: 20%;margin-bottom: 20%"> |
|
|
|
<div v-else style="margin-top: 20%;margin-bottom: 20%"> |
|
|
|
<div v-if="isdownload"> |
|
|
|
<div v-if="isdownload"> |
|
|
|
<div v-if="gomobile"> |
|
|
|
<div v-if="gomobile"> |
|
|
@ -692,6 +695,15 @@ |
|
|
|
</script> |
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
|
|
<style scoped> |
|
|
|
<style scoped> |
|
|
|
|
|
|
|
.mask { |
|
|
|
|
|
|
|
z-index: 9; |
|
|
|
|
|
|
|
position: fixed; |
|
|
|
|
|
|
|
top: 0; |
|
|
|
|
|
|
|
right: 0; |
|
|
|
|
|
|
|
bottom: 0; |
|
|
|
|
|
|
|
left: 0; |
|
|
|
|
|
|
|
background: rgba(0, 0, 0, .5); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.text-black { |
|
|
|
.text-black { |
|
|
|
color: #505556 |
|
|
|
color: #505556 |
|
|
@ -710,7 +722,8 @@ |
|
|
|
|
|
|
|
|
|
|
|
.wechat_tip, .wechat_tip > i { |
|
|
|
.wechat_tip, .wechat_tip > i { |
|
|
|
position: absolute; |
|
|
|
position: absolute; |
|
|
|
right: 10px |
|
|
|
right: 10px; |
|
|
|
|
|
|
|
z-index: 99999; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.wechat_tip { |
|
|
|
.wechat_tip { |
|
|
@ -727,7 +740,7 @@ |
|
|
|
color: #fff; |
|
|
|
color: #fff; |
|
|
|
font-size: 14px; |
|
|
|
font-size: 14px; |
|
|
|
font-weight: 500; |
|
|
|
font-weight: 500; |
|
|
|
width: 135px; |
|
|
|
width: 166px; |
|
|
|
height: 60px; |
|
|
|
height: 60px; |
|
|
|
border-radius: 10px; |
|
|
|
border-radius: 10px; |
|
|
|
top: 15px |
|
|
|
top: 15px |
|
|
|