not_open.vue 885 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <!-- 推荐商品列表组件 -->
  2. <template name="activity_not_open">
  3. <view class="activity_not_open">
  4. <view class="empty_sort_page"">
  5. <image :src=" imgUrl+'point/not_open.png'" mode="aspectFit" class="empty_img">
  6. </image>
  7. <view class="empty_text">{{$L('活动暂未开启')}}</view>
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. name: 'ActivityNotOpen',
  14. components: {},
  15. data() {
  16. return {
  17. imgUrl: getApp().globalData.imgUrl,
  18. }
  19. },
  20. mounted() {},
  21. }
  22. </script>
  23. <style lang='scss'>
  24. .activity_not_open {
  25. .empty_sort_page {
  26. width: 100%;
  27. // height: 100vh;
  28. background: #F5F5F5;
  29. display: flex;
  30. flex-direction: column;
  31. align-items: center;
  32. padding-top: 340rpx;
  33. .empty_img {
  34. width: 210rpx;
  35. height: 210rpx;
  36. margin-bottom: 32rpx;
  37. }
  38. .empty_text {
  39. font-size: 26rpx;
  40. color: #999;
  41. }
  42. }
  43. }
  44. </style>