sysMsg.vue 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <template>
  2. <view>
  3. <view class="myclient_list2" v-for="(item,index) in list">
  4. <view class="myclient_list_name">
  5. {{item.title}}
  6. </view>
  7. <view class="myclient_list_content">
  8. <view class="content">
  9. <text>
  10. {{item.content}}
  11. </text>
  12. </view>
  13. <view class="time">
  14. <image referrerpolicy="no-referrer" src="http://www.gzzzyd.com/groupon/home_slices/时间@2x.png" />
  15. <text>
  16. 时间:{{item.releaseTime}}
  17. </text>
  18. </view>
  19. </view>
  20. </view>
  21. </view>
  22. </template>
  23. <script>
  24. export default {
  25. name:"sysMsg",
  26. props: {
  27. list: { // 为了请求数据,演示用,可根据自己的项目判断是否要传
  28. type: Array,
  29. default () {
  30. return []
  31. }
  32. },
  33. },
  34. data() {
  35. return {
  36. };
  37. }
  38. }
  39. </script>
  40. <style lang="scss" scoped>
  41. .myclient_list2 {
  42. margin-top: 30rpx;
  43. width: 750rpx;
  44. min-height: 220rpx;
  45. padding: 30rpx;
  46. background: #FFFFFF;
  47. .myclient_list_name {
  48. margin-bottom: 15rpx;
  49. font-size: 28rpx;
  50. font-weight: 500;
  51. color: #111111;
  52. line-height: 44rpx;
  53. }
  54. .myclient_list_content {
  55. image {
  56. width: 24rpx;
  57. height: 24rpx;
  58. margin-right: 20rpx;
  59. }
  60. .content {
  61. margin-bottom: 15rpx;
  62. font-size: 28rpx;
  63. font-weight: 400;
  64. color: #666666;
  65. }
  66. .time {
  67. height: 44rpx;
  68. font-size: 24rpx;
  69. font-weight: 400;
  70. color: #999999;
  71. line-height: 44rpx;
  72. }
  73. }
  74. }
  75. </style>