12345678910111213141516171819202122232425262728293031323334353637 |
- // 客服
- <template>
- <x-prompt :visible="visible">
- <div class="head">联系客服</div>
- <div class="body">
- <p>截图后至微信“扫一扫”打开,添加客服</p>
- <img :src="src"
- style="width: 60%;margin-top: .3rem;">
- </div>
- </x-prompt>
- </template>
- <script>
- import prompt from "../prompt.vue";
- import { getCustomQRCode } from "@/api";
- export default {
- components: { "x-prompt": prompt },
- data() {
- return {
- channel_id: window.options.distribution_channel_id,
- src: "",
- };
- },
- methods: {
- initServerImage() {
- getCustomQRCode(this.channel_id, this.openid).then((r) => {
- this.src = r.qrcode;
- });
- },
- },
- created() {
- this.initServerImage();
- },
- };
- </script>
- <style lang="scss">
- </style>
|