|
@@ -43,12 +43,12 @@
|
|
|
>
|
|
|
<template #default>
|
|
|
|
|
|
- <view v-if="timedList.length>0" class="list-cell list-cell-arrow" style="margin:20px 0;color:rgb(20, 158, 255);background-color: rgba(20, 158, 255,.1)" >
|
|
|
- <view style="width: calc(100% - 51px); display: flex; ; padding-right: 10px">
|
|
|
+ <view v-if="timedList.length>0" @click="goTimingPage()" class="list-cell list-cell-arrow" style="margin:20px 0;color:rgb(20, 158, 255);background-color: rgba(20, 158, 255,.1)" >
|
|
|
+ <view style="width: calc(100% - 51px); display: flex; ; padding-right: 10px" >
|
|
|
<u-icon name="info-circle" color="#2979ff" size="18" style="margin-right: 5px"></u-icon>
|
|
|
- <view v-if="timedList.length==1" @click="goTimingPage()">您有1条定时日志将于{{timedList[0].timingTime.slice(0,16)}}发布</view>
|
|
|
+ <view v-if="timedList.length==1">您有1条定时日志将于{{timedList[0].timingTime.slice(0,16)}}发布</view>
|
|
|
|
|
|
- <view v-else @click="goTimingPage()">您有{{timedList.length}}条定时日志将于指定时间发布</view>
|
|
|
+ <view v-else >您有{{timedList.length}}条定时日志将于指定时间发布</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
|