普兆健康管家前端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

66 lines
1.1 KiB

  1. <template>
  2. <view>
  3. <uv-popup ref="popup" mode="center" bgColor="none" >
  4. <view class="flex flex-column popup__view">
  5. <view class="header">添加客服微信</view>
  6. <view class="content">
  7. <image class="qrcode" src="@/pages_order/static/checkup/qrcode.png" mode="widthFix"></image>
  8. </view>
  9. </view>
  10. </uv-popup>
  11. </view>
  12. </template>
  13. <script>
  14. import { mapState } from 'vuex'
  15. export default {
  16. data() {
  17. return {
  18. }
  19. },
  20. computed : {
  21. ...mapState(['configList'])
  22. },
  23. methods: {
  24. open() {
  25. this.$refs.popup.open()
  26. },
  27. close() {
  28. this.$refs.popup.close()
  29. },
  30. },
  31. }
  32. </script>
  33. <style lang="scss" scoped>
  34. .popup__view {
  35. width: 550rpx;
  36. padding: 32rpx 0;
  37. box-sizing: border-box;
  38. background: #F3F2F7;
  39. border: 2rpx solid #FFFFFF;
  40. border-radius: 64rpx;
  41. }
  42. .header {
  43. margin-bottom: 40rpx;
  44. text-align: center;
  45. font-family: PingFang SC;
  46. font-weight: 500;
  47. font-size: 40rpx;
  48. line-height: 1.4;
  49. color: #181818;
  50. }
  51. .content {
  52. width: 486rpx;
  53. height: auto;
  54. .qrcode {
  55. width: 100%;
  56. height: auto;
  57. }
  58. }
  59. </style>