info.vue 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <template>
  2. <view class="analyse-wrapper info-wrapper" >
  3. <view class="top-banner justify-center align-center text-center">
  4. </view>
  5. <view class="cu-list menu-avatar padding-lr">
  6. <view class="cu-item shadow" @tap="goFireBase()">
  7. <view class="cu-avatar " style="background-image:url(../../static/fireBase.png)"></view>
  8. <view class="content">
  9. <view class="">消防知识库</view>
  10. </view>
  11. <view class="nav-right">
  12. <view class="text-grey">
  13. <text class="icon iconfont margin-right-xs margin-left-lg">&#xe629;</text>
  14. </view>
  15. </view>
  16. </view>
  17. <!-- <view class="cu-item shadow" @tap="goPushList()">
  18. <view class="cu-avatar " style="background-image:url(../../static/pushList.png)"></view>
  19. <view class="content">
  20. <view class="">消息推送</view>
  21. </view>
  22. <view class="nav-right">
  23. <view class="text-grey">
  24. <text class="icon iconfont margin-right-xs margin-left-lg">&#xe629;</text>
  25. </view>
  26. </view>
  27. </view> -->
  28. </view>
  29. </view>
  30. </template>
  31. <script>
  32. export default {
  33. data() {
  34. return {
  35. }
  36. },
  37. methods: {
  38. goFireBase() {
  39. uni.navigateTo({
  40. url: '/pages/info/fireBase/fireBase',
  41. success: res => {},
  42. fail: () => {},
  43. complete: () => {}
  44. });
  45. },
  46. goPushList() {
  47. uni.navigateTo({
  48. url: '/pages/info/pushList/pushList',
  49. success: res => {},
  50. fail: () => {},
  51. complete: () => {}
  52. });
  53. },
  54. }
  55. }
  56. </script>
  57. <style>
  58. .shadow {
  59. box-shadow: 1px 1px 4px rgb(26 26 26 / 10%);
  60. }
  61. </style>
  62. <style lang="scss">
  63. </style>