32 lines
629 B
Vue
32 lines
629 B
Vue
<template>
|
|
<view>
|
|
<view style="margin-left: 12%;margin-top: 20%;">
|
|
<span style="font-size: 30px;font-weight: bold;margin-left: 20%;">专属二维码</span>
|
|
|
|
<uqrcode :size="300" ref="uqrcode" canvas-id="qrcode" :value="info" :options="{ margin: 10 }"></uqrcode>
|
|
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
info: "https://www.nuoyunr.com/jxjlCode"
|
|
}
|
|
},
|
|
onLoad(option) {
|
|
console.log(option);
|
|
this.info = this.info + "?type=" + option.type + "&id=" + option.id + "&jlId=" + option.jlId
|
|
console.log(this.info);
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
|
|
</style> |