|
|
@@ -2,14 +2,18 @@
|
|
|
<view>
|
|
|
<view class="cu-load padding-top-10" :class="ajax.loading?'loading':''" @tap="getHistoryMsg"></view>
|
|
|
<view class="cart-view-box" v-for="(item,index) in msgList" :key="index" :id="`msg-${item.id}`">
|
|
|
- <view class="text-gray text-center">{{item.createDate}}</view>
|
|
|
+ <view class="text-gray text-center">{{item.createTime}}</view>
|
|
|
<view @click="goDetail(item)" class="bg-white margin-top radius card-view">
|
|
|
<view class="content-view">
|
|
|
- <view class="text-black text-bold text-lg text-cut">{{item.title}}</view>
|
|
|
- <view class=" text-sm text-cut-2 subtitle">{{item.content}}</view>
|
|
|
- <view class="flex justify-between padding-top-20" style=" border-top: 1rpx solid #f2f2f2;box-sizing: border-box;">
|
|
|
+ <!-- <view class="text-black text-bold text-lg text-cut">
|
|
|
+ <text>{{item.title}}</text>
|
|
|
+ <view style="padding-top: 8rpx;">
|
|
|
+ <text class=" cuIcon-right"></text>
|
|
|
+ </view>
|
|
|
+ </view> -->
|
|
|
+ <view class="flex justify-between text-bold" style="box-sizing: border-box;">
|
|
|
<view class="text-df text-black">
|
|
|
- <text>查看详情</text>
|
|
|
+ <text>{{item.title}}</text>
|
|
|
</view>
|
|
|
<view style="padding-top: 8rpx;">
|
|
|
<text class=" cuIcon-right"></text>
|
|
|
@@ -37,7 +41,7 @@
|
|
|
flag:true, // 请求开关
|
|
|
loading:true, // 加载中
|
|
|
},
|
|
|
- content:''
|
|
|
+ content:'',
|
|
|
}
|
|
|
},
|
|
|
mounted() {
|
|
|
@@ -142,7 +146,7 @@
|
|
|
that.$http.getNoticeList(params).then (res=>{
|
|
|
//获取成功
|
|
|
done(res.data.noticeList);
|
|
|
-
|
|
|
+
|
|
|
});
|
|
|
|
|
|
},800);
|