|
|
@@ -11,8 +11,14 @@
|
|
|
<block v-if="!$util.isEmpty(list.data)">
|
|
|
<view class="allot-item" v-for="(item, index) in list.data" :key="index" @click="goTo(item)" >
|
|
|
<view class="info">
|
|
|
- <view class="info-order-un-read" v-if="item.read == 0">{{ item.title }}</view>
|
|
|
- <view class="info-order" v-else>{{ item.title }}</view>
|
|
|
+ <view class="info-order-un-read" v-if="item.read == 0">
|
|
|
+ {{ item.title }}
|
|
|
+ <text style="float:right;font-weight:normal;font-size:26upx;">{{ item.addTime ? item.addTime.substr(5,11):'' }}</text>
|
|
|
+ </view>
|
|
|
+ <view class="info-order" v-else>
|
|
|
+ {{ item.title }}
|
|
|
+ <text style="float:right;font-weight:normal;font-size:26upx;">{{ item.addTime ? item.addTime.substr(5,11):'' }}</text>
|
|
|
+ </view>
|
|
|
<view class="info-name">{{ item.content }}</view>
|
|
|
</view>
|
|
|
</view>
|