new-people.vue 927 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <template>
  2. <view class="iframe-content">
  3. <headContent statusBarBg="#191A2E" bgColor="#191A2E">
  4. <template #left>
  5. <reverse-back iconColor="#fff" />
  6. </template>
  7. <template #content>
  8. <view class="haed-title">
  9. 新人指南
  10. </view>
  11. </template>
  12. <template #right>
  13. <closeIocn iconColor="#fff" />
  14. </template>
  15. </headContent>
  16. <view class="iframe-box">
  17. <iframe
  18. src="https://biking.zendesk.com/hc/zh-cn/sections/10621702835985-%E6%96%B0%E6%89%8B%E6%8C%87%E5%8D%97"
  19. frameborder="0"></iframe>
  20. </view>
  21. </view>
  22. </template>
  23. <script>
  24. export default {
  25. name: "new-people",
  26. data() {
  27. return {
  28. };
  29. }
  30. }
  31. </script>
  32. <style lang="scss" scoped>
  33. .haed-title {
  34. color: #fff !important;
  35. }
  36. .iframe-content {
  37. width: 100%;
  38. height: 100vh;
  39. display: flex;
  40. flex-direction: column;
  41. .iframe-box {
  42. flex: 1;
  43. iframe {
  44. width: 100%;
  45. height: 100%;
  46. }
  47. }
  48. }
  49. </style>