weixin.vue
380 Bytes
<template>
<div class="form-wx">
<div class="orCode" />
<p>扫码登录</p>
</div>
</template>
<script setup>
</script>
<style scoped>
.form-wx {
text-align: center;
margin-top: 70px;
}
.orCode {
width: 200px;
height: 200px;
background-image: url("@/assets/images/未开通该功能!.png");
background-size: 100%;
display: inline-block;
}
</style>