普兆健康管家前端代码仓库
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.

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