detail.vue 711 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <template>
  2. <view class="helper-detail">
  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. .helper-detail {
  27. .detail {
  28. text-align: left;
  29. padding: $spacing-base $spacing-base;
  30. .title {
  31. font-size: $font-lg;
  32. color: $font-color-dark;
  33. padding: $spacing-base 0;
  34. }
  35. }
  36. }
  37. </style>