|
@@ -12,10 +12,12 @@
|
|
|
<div class="user_qrcode">
|
|
|
<div class="qr_item">
|
|
|
<img src="@/assets/icon/wxQrcode.jpg" :style="imgStyle">
|
|
|
+ <br/>
|
|
|
<span>关注公众号</span>
|
|
|
</div>
|
|
|
<div class="qr_item">
|
|
|
<img :src="infoQrcodeUrl" :style="imgStyle">
|
|
|
+ <br/>
|
|
|
<span>扫码登记</span>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -67,8 +69,8 @@ export default defineComponent({
|
|
|
|
|
|
const updateBrowserWidth = () => {
|
|
|
const browserWidth = window.innerWidth;
|
|
|
- imgStyle.value.width = (browserWidth - 20) / 2 + 'px';
|
|
|
- imgStyle.value.height = (browserWidth - 20) / 2 + 'px';
|
|
|
+ imgStyle.value.width = (browserWidth - 60) / 2 + 'px';
|
|
|
+ imgStyle.value.height = (browserWidth - 60) / 2 + 'px';
|
|
|
}
|
|
|
|
|
|
const onBack = () => {
|
|
@@ -115,7 +117,7 @@ export default defineComponent({
|
|
|
}
|
|
|
|
|
|
img {
|
|
|
- padding: 10px;
|
|
|
+ padding: 20px 20px 15px 20px;
|
|
|
}
|
|
|
}
|
|
|
|