123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <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="http://www.gzzzyd.com/groupon/home_slices/出厂编号-线@2x.png" />
- <text>
- 订单编号:{{item.orderNo}}
- </text>
- </view>
- <view class="time">
- <image referrerpolicy="no-referrer" src="http://www.gzzzyd.com/groupon/home_slices/时间@2x.png" />
- <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: 30rpx;
- width: 750rpx;
- min-height: 220rpx;
- padding: 30rpx;
- background: #FFFFFF;
- .myclient_list_name {
- margin-bottom: 15rpx;
- height: 44rpx;
- font-size: 28rpx;
- font-weight: 500;
- color: #111111;
- line-height: 44rpx;
- }
- .myclient_list_content {
- image {
- width: 24rpx;
- height: 24rpx;
- margin-right: 20rpx;
- }
- .phone {
- margin-bottom: 15rpx;
- height: 44rpx;
- font-size: 24rpx;
- font-weight: 400;
- color: #999999;
- line-height: 44rpx;
- }
- .time {
- height: 44rpx;
- font-size: 24rpx;
- font-weight: 400;
- color: #999999;
- line-height: 44rpx;
- }
- }
- }
- </style>
|