12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <template>
- <view :style="getHeight">
- <!-- 公共组件-每个页面必须引入 -->
- <public-module></public-module>
- <view class="content d-flex flex-column a-center j-center">
- <image src="/static/image/addStaff/face_sao.png" mode="widthFix" lazy-load style="width: 500upx;"></image>
- <image :src="recommendImg" mode="widthFix" lazy-load style="width: 450upx;"></image>
- <view>新成员只需要扫描您的二维码,即可马上注册加入啦!</view>
- </view>
- </view>
- </template>
- <script>
- import {
- mapState
- } from "vuex"
- import QR from "@/common/wxqrcode.js"
- export default {
- data() {
- return {
- recommendImg: ""
- }
- },
- computed: {
- ...mapState(['userInfo']),
- getHeight() {
- let height = uni.getSystemInfoSync().windowHeight;
- return `height: ${height}px;`;
- }
- },
- onLoad() {
- var id = this.userInfo.sysUser.id;
- console.log(id)
- this.recommendImg = QR.createQrCodeImg(this.$base.h5BaseUrl + "/#/pages/register/orderissuer?id=" + id, {
- size: parseInt(200) //二维码大小
- })
- },
- methods: {
- }
- }
- </script>
- <style>
- .content {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -60%);
- }
- .content>image {
- margin-top: 30upx;
- margin-bottom: 30upx;
- }
- .content>view {
- width: 400upx;
- color: red;
- text-align: center;
- }
- </style>
|