12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <template>
- <view>
- <view class="myclient_list2" v-for="(item,index) in list">
- <view class="myclient_list_name">
- {{item.title}}
- </view>
- <view class="myclient_list_content">
- <view class="content">
- <text>
- {{item.content}}
- </text>
- </view>
- <view class="time">
- <image referrerpolicy="no-referrer" src="http://www.gzzzyd.com/groupon/home_slices/时间@2x.png" />
- <text>
- 时间:{{item.releaseTime}}
- </text>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- name:"sysMsg",
- props: {
- list: { // 为了请求数据,演示用,可根据自己的项目判断是否要传
- type: Array,
- default () {
- return []
- }
- },
- },
- data() {
- return {
- };
- }
- }
- </script>
- <style lang="scss" scoped>
- .myclient_list2 {
- margin-top: 30rpx;
- width: 750rpx;
- min-height: 220rpx;
- padding: 30rpx;
- background: #FFFFFF;
- .myclient_list_name {
- margin-bottom: 15rpx;
- font-size: 28rpx;
- font-weight: 500;
- color: #111111;
- line-height: 44rpx;
- }
- .myclient_list_content {
- image {
- width: 24rpx;
- height: 24rpx;
- margin-right: 20rpx;
- }
- .content {
- margin-bottom: 15rpx;
- font-size: 28rpx;
- font-weight: 400;
- color: #666666;
- }
- .time {
- height: 44rpx;
- font-size: 24rpx;
- font-weight: 400;
- color: #999999;
- line-height: 44rpx;
- }
- }
- }
- </style>
|