article.vue 863 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <template>
  2. <view class="page">
  3. <view class="header">
  4. <view class="left">
  5. <image class="img" mode="widthFix" src="../../static/article/name.png"></image>
  6. </view>
  7. </view>
  8. <view class="no-content">
  9. <image class="icon" mode="widthFix" src="../../static/home/no.png"></image>
  10. <text>暂无数据</text>
  11. </view>
  12. <!-- 提示框 -->
  13. <DialogBox ref="DialogBox"></DialogBox>
  14. </view>
  15. </template>
  16. <script>
  17. export default {
  18. components: {},
  19. data() {
  20. return {
  21. title: '',
  22. }
  23. },
  24. onLoad() {
  25. setTimeout(function() {
  26. uni.setNavigationBarColor({
  27. frontColor: '#ffffff',
  28. backgroundColor: '#00000000',
  29. animation: {
  30. duration: 400,
  31. timingFunc: 'easeIn'
  32. }
  33. })
  34. }, 200);
  35. },
  36. onShow() {},
  37. methods: {
  38. onBack() {},
  39. }
  40. }
  41. </script>
  42. <style scoped lang="scss">
  43. @import 'article.scss';
  44. </style>