normalMsg.vue 1.5 KB

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