1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <template>
- <view>
- <view class="myclient_list " v-for="(item,index) in list">
- <view class="myclient_list_name">
- {{item.mainTitle}}
- </view>
- <view class="myclient_list_content">
- <view class="phone">
- <image referrerpolicy="no-referrer" src="/static/image/order.png" />
- <text class="text">
- 订单编号: {{item.orderNo}}
- </text>
- </view>
- <view class="time">
- <image referrerpolicy="no-referrer" src="/static/image/time.png" />
- <text class="text">
- 时间: {{item.createTime}}
- </text>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- name:"normalMsg",
- props: {
- list: { // 为了请求数据,演示用,可根据自己的项目判断是否要传
- type: Array,
- default () {
- return []
- }
- },
- },
- data() {
- return {
- };
- }
- }
- </script>
- <style lang="scss" scoped>
- .myclient_list {
- margin-top: 20rpx;
- width: 750rpx;
- min-height: 220rpx;
- padding: 30rpx;
- background: #FFFFFF;
- .myclient_list_name {
- margin-bottom: 15rpx;
- height: 44rpx;
- font-size: 28rpx;
- font-weight: bold;
- color: #111111;
- line-height: 44rpx;
- }
- .myclient_list_content {
- image {
- width: 28rpx;
- height: 28rpx;
- margin-top: 9rpx;
- margin-right: 10rpx;
- }
- .phone {
- margin-bottom: 15rpx;
- height: 44rpx;
- display: flex;
- flex-direction: row;
- }
- .time {
- height: 44rpx;
- display: flex;
- flex-direction: row;
- }
- }
- }
- .text{
- font-size: 24rpx;
- font-weight: 400;
- color: #999999;
- line-height: 44rpx;
- }
- .bord{
- border: 1px solid red;
- }
- </style>
|