gongao.vue 931 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <template>
  2. <view class="content">
  3. <view class="list">
  4. <view class="list-content">
  5. {{list}}
  6. </view>
  7. <view class="time">
  8. {{time}}
  9. </view>
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. export default {
  15. data() {
  16. return {
  17. list:'水岸边阿是你的奶奶ID你阿森纳迪纳斯的那四年Indian设定阿萨德',
  18. time:'2021-1-2 10:00:00'
  19. };
  20. }
  21. }
  22. </script>
  23. <style lang="scss">
  24. page,.content{
  25. padding: 0;
  26. margin: 0;
  27. height: 100%;
  28. width: 750rpx;
  29. background: #111111;
  30. .list{
  31. height: 130rpx;
  32. padding: 20rpx 30rpx;
  33. background: #222222;
  34. border-bottom:2rpx solid #919295; ;
  35. display: flex;
  36. flex-direction: column;
  37. justify-content: space-around;
  38. .list-content{
  39. overflow: hidden;
  40. white-space: nowrap;
  41. text-overflow: ellipsis;
  42. font-size: 26rpx;
  43. font-weight: 500;
  44. color: #FFFFFF;
  45. }
  46. .time{
  47. font-size: 20rpx;
  48. font-weight: 500;
  49. color: #999999;
  50. }
  51. }
  52. }
  53. </style>