normalMsg.vue 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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="/static/image/order.png" />
  10. <text class="text">
  11. 订单编号:&nbsp;&nbsp;{{item.orderNo}}
  12. </text>
  13. </view>
  14. <view class="time">
  15. <image referrerpolicy="no-referrer" src="/static/image/time.png" />
  16. <text class="text">
  17. 时间:&nbsp;&nbsp;{{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: 20rpx;
  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: bold;
  53. color: #111111;
  54. line-height: 44rpx;
  55. }
  56. .myclient_list_content {
  57. image {
  58. width: 28rpx;
  59. height: 28rpx;
  60. margin-top: 9rpx;
  61. margin-right: 10rpx;
  62. }
  63. .phone {
  64. margin-bottom: 15rpx;
  65. height: 44rpx;
  66. display: flex;
  67. flex-direction: row;
  68. }
  69. .time {
  70. height: 44rpx;
  71. display: flex;
  72. flex-direction: row;
  73. }
  74. }
  75. }
  76. .text{
  77. font-size: 24rpx;
  78. font-weight: 400;
  79. color: #999999;
  80. line-height: 44rpx;
  81. }
  82. .bord{
  83. border: 1px solid red;
  84. }
  85. </style>