index.vue 672 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <view class="helperList">
  3. <oa-empty info="暂无站点帮助"></oa-empty>
  4. </view>
  5. </template>
  6. <script>
  7. import oaEmpty from '@/components/oa-empty';
  8. export default {
  9. components: { oaEmpty},
  10. onShow() {
  11. uni.setNavigationBarColor({
  12. frontColor: '#ffffff',
  13. backgroundColor: this.themeColor.color,
  14. animation: {
  15. duration: 400,
  16. timingFunc: 'easeIn'
  17. }
  18. })
  19. },
  20. };
  21. </script>
  22. <style lang="scss" scoped>
  23. page {
  24. background-color: $page-color-base;
  25. }
  26. .helperList {
  27. margin-top: $spacing-base;
  28. .helper-child-item {
  29. margin: $spacing-base $spacing-lg;
  30. display: flex;
  31. justify-content: space-between;
  32. }
  33. }
  34. </style>