ykt-team-wxapp/pages/mine/contact.vue

31 lines
1.0 KiB
Vue
Raw Normal View History

2026-02-02 11:20:15 +08:00
<template>
2026-02-08 10:41:41 +08:00
<view class="flex flex-col justify-center items-center h-full bg-white">
2026-02-08 16:15:24 +08:00
<image class="service-qrcode" :show-menu-by-longpress="true" src="/static/service-qrcode.jpg" />
2026-02-08 10:41:41 +08:00
<!-- <view>
2026-02-02 11:20:15 +08:00
<view class="mb-10 text-dark text-lg font-semibold text-center mb-10">
柚康企微客服
</view>
<view class="flex justify-center overflow-hidden">
<uqrcode canvas-id="qrcode-contact" value="https://uqrcode.cn/doc" :options="options"></uqrcode>
</view>
<view class="mt-10 px-15 text-base text-dark leading-normal text-center">
扫码或长按添加柚康企微客服
</view>
<view class="mt-10 px-15 text-base text-dark leading-normal text-center">
我们将为您提供软件使用咨询服务并支持补充病历宣教问卷回访等多种工作模板
</view>
2026-02-08 10:41:41 +08:00
</view> -->
2026-02-02 11:20:15 +08:00
</view>
</template>
<script setup>
const options = { margin: 10 }
</script>
<style>
2026-02-08 10:41:41 +08:00
.service-qrcode {
width: 750rpx;
height: 977rpx;
}
2026-02-02 11:20:15 +08:00
</style>