裂变星小程序-25.03.04
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.

50 lines
862 B

8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
  1. <template>
  2. <view class="page" :style="`background-image: url(${configList.codeImg}); background-size: contain;`">
  3. <navbar title="客服" leftClick @leftClick="$utils.navigateBack" />
  4. <!-- todo -->
  5. <image class="qr" :src="configList.index_huodong" :show-menu-by-longpress="true"></image>
  6. </view>
  7. </template>
  8. <script>
  9. import { mapState } from 'vuex'
  10. export default {
  11. data() {
  12. return {
  13. }
  14. },
  15. computed: {
  16. ...mapState(['configList'])
  17. },
  18. onLoad() {
  19. },
  20. }
  21. </script>
  22. <style scoped lang="scss">
  23. .page {
  24. width: 100vw;
  25. height: 100vh;
  26. position: relative;
  27. overflow: hidden;
  28. }
  29. .bg {
  30. width: 100vw;
  31. height: calc(100vh - #{$navbar-height} - var(--status-bar-height) - 20rpx);
  32. }
  33. .qr {
  34. position: absolute;
  35. top: 854rpx;
  36. left: 50%;
  37. transform: translateX(-50%);
  38. width: 316rpx;
  39. height: 316rpx;
  40. }
  41. </style>