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

36 lines
666 B

  1. <template>
  2. <view class="page">
  3. <navbar title="客服" leftClick @leftClick="$utils.navigateBack" />
  4. <image class="bg" :src="imgurl" mode="scaleToFill" :show-menu-by-longpress="true"></image>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. data() {
  10. return {
  11. imgurl: null,
  12. }
  13. },
  14. onLoad() {
  15. // todo: fetch imgurl
  16. this.imgurl = '../../static/image/center/temp-service.png'
  17. },
  18. }
  19. </script>
  20. <style scoped lang="scss">
  21. .page {
  22. width: 100vw;
  23. height: 100vh;
  24. position: relative;
  25. overflow: hidden;
  26. }
  27. .bg {
  28. width: 100vw;
  29. height: calc(100vh - #{$navbar-height} - var(--status-bar-height) - 20rpx);
  30. }
  31. </style>