普兆健康管家前端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

67 lines
1.1 KiB

<template>
<view>
<uv-popup ref="popup" mode="center" bgColor="none" >
<view class="flex flex-column popup__view">
<view class="header">添加客服微信</view>
<view class="content">
<image class="qrcode" src="@/pages_order/static/checkup/qrcode.png" mode="widthFix"></image>
</view>
</view>
</uv-popup>
</view>
</template>
<script>
import { mapState } from 'vuex'
export default {
data() {
return {
}
},
computed : {
...mapState(['configList'])
},
methods: {
open() {
this.$refs.popup.open()
},
close() {
this.$refs.popup.close()
},
},
}
</script>
<style lang="scss" scoped>
.popup__view {
width: 550rpx;
padding: 32rpx 0;
box-sizing: border-box;
background: #F3F2F7;
border: 2rpx solid #FFFFFF;
border-radius: 64rpx;
}
.header {
margin-bottom: 40rpx;
text-align: center;
font-family: PingFang SC;
font-weight: 500;
font-size: 40rpx;
line-height: 1.4;
color: #181818;
}
.content {
width: 486rpx;
height: auto;
.qrcode {
width: 100%;
height: auto;
}
}
</style>