activity.vue 1.0 KB

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