工单小程序2024-11-20
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.

38 lines
481 B

6 months ago
  1. <template>
  2. <!-- 帮助中心 -->
  3. <view class="page">
  4. <navbar
  5. title="帮助中心"
  6. leftClick
  7. @leftClick="$utils.navigateBack"/>
  8. <view class="box">
  9. <view class="center">
  10. <h2>帮助中心</h2>
  11. </view>
  12. </view>
  13. </view>
  14. </template>
  15. <script>
  16. export default {
  17. data() {
  18. return {
  19. }
  20. },
  21. methods: {
  22. }
  23. }
  24. </script>
  25. <style scoped lang="scss">
  26. .page{
  27. .box{margin-top: 150rpx;
  28. display: flex;
  29. justify-content: center;
  30. }
  31. }
  32. </style>