| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <template>
- <div id="qrcode" ref="qrcode"></div>
- </template>
- <script>
- import QRCode from 'qrcodejs2' // 引入qrcode
- export default {
- name: "qrcode",
- props: {
- field: Object,
- formData: {
- type: Object,
- default () {
- return {}
- }
- },
- readonly: {
- type: Boolean,
- default: false,
- }
- },
- methods: {
- qrcode() {
- let qrcode = new QRCode('qrcode', {
- width: 132,
- height: 132,
- // text: 'https://www.baidu.com', // 需要二维码跳转的地址
- //text: `http://localhost:1111/#/ziliao?id=${this.formData.id}`, // 这2
- // text: `http://192.168.2.99:1111/#/ziliao?id=${this.formData.id}`, // 2
- // text:`https://open.weixin.qq.com/connect/oauth2/authorize?appid=wxf0aecf99696061a3&redirect_uri=http%3A%2F%2F192.168.2.99%3A1111%2F%23%2Fziliao&response_type=code&scope=snsapi_base&state=67e9c2b4e83a4091be478807565fb623#wechat_redirect`,
- // text:`https://open.weixin.qq.com/connect/oauth2/authorize?appid=wxf0aecf99696061a3&redirect_uri=https%3A%2F%2Fwww.szjyxt.com%2F%23%2Fziliao&response_type=code&scope=snsapi_base&state=${this.formData.id}#wechat_redirect`,
- //text:`https://open.weixin.qq.com/connect/oauth2/authorize?appid=wxf0aecf99696061a3&redirect_uri=https%3A%2F%2Fwww.szjyxt.com%2F%23%2Fziliao&response_type=code&scope=snsapi_base&state=${this.formData.id}#wechat_redirect`,
- // text:`https://www.szjyxt.com/#/ziliao?id=${this.formData.id}`,
- // text: `http://localhost:1111/#/ziliao/${this.formData.id}`,
- // text: `http://192.168.2.99:1111/#/ziliao/${this.formData.id}`,
- colorDark: "#000000", //前景色
- colorLight: "#FFFFFF", //背景色
- correctLevel:QRCode.CorrectLevel.L,
- })
- },
- },
- mounted() {
- this.$nextTick(() => {
- setTimeout(() => {
- this.qrcode();
- }, 0)
- })
- },
- }
- </script>
- <style scoped>
- #qrcode {
- width: 100px;
- height: 100px;
- }
- </style>
|