activity.vue 930 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <template>
  2. <view class="container-view flex-row">
  3. <img style="width: 352rpx;height: 352rpx;" src="https://qiniu.bms16.com/Fn0mFwx4EHDzQiCypHM7HgiL4uuP" alt="">
  4. <view class="active-text">暂无可参与的活动</view>
  5. <CustomTabbar curt-tab="active"/>
  6. </view>
  7. </template>
  8. <script>
  9. import CustomTabbar from '@/component/customTabbar/index';
  10. export default {
  11. components: {
  12. CustomTabbar
  13. },
  14. data() {
  15. return {
  16. };
  17. },
  18. /**
  19. * 生命周期函数--监听页面加载
  20. */
  21. onLoad: function(options) {
  22. },
  23. /**
  24. * 生命周期函数--监听页面显示
  25. */
  26. onShow: function() {
  27. },
  28. onUnload: function () {
  29. },
  30. methods: {
  31. }
  32. };
  33. </script>
  34. <style>
  35. .container-view{
  36. flex-direction: column;
  37. padding-top: 272rpx;
  38. height: 100vh;
  39. background-color: #FFF;
  40. }
  41. .active-text{
  42. font-family: PingFangSC, PingFang SC;
  43. font-weight: 600;
  44. font-size: 32rpx;
  45. color: #2A3A5A;
  46. }
  47. </style>