|
|
|
@ -29,8 +29,8 @@
|
|
|
|
|
{{ |
|
|
|
|
`${$util.formatDate( |
|
|
|
|
detail.startDate, |
|
|
|
|
'YYYY年M月D日' |
|
|
|
|
)} 至 ${$util.formatDate(detail.endDate, 'YYYY年M月D日')}` |
|
|
|
|
'YYYY/M/D' |
|
|
|
|
)}~${$util.formatDate(detail.endDate, 'YYYY/M/D')}` |
|
|
|
|
}} |
|
|
|
|
</text> |
|
|
|
|
</view> |
|
|
|
@ -59,7 +59,7 @@
|
|
|
|
|
{{ |
|
|
|
|
isShowAllText |
|
|
|
|
? detail.description |
|
|
|
|
: `${detail.description.slice(1, 20)}...` |
|
|
|
|
: `${detail.description.slice(1, 100)}...` |
|
|
|
|
}} |
|
|
|
|
<text style="color: #17c653; padding-left: 4px"> |
|
|
|
|
{{ isShowAllText ? '收起' : '展开' }} |
|
|
|
@ -164,14 +164,7 @@
|
|
|
|
|
></cs-dict-tag> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
<u-loadmore |
|
|
|
|
:status="load" |
|
|
|
|
marginTop="12" |
|
|
|
|
marginBottom="12" |
|
|
|
|
v-if="load != 'nomore'" |
|
|
|
|
/> |
|
|
|
|
<cs-emty v-if="list.length == 0"></cs-emty> |
|
|
|
|
|
|
|
|
|
<u-loadmore :status="load" marginTop="12" marginBottom="12" /> |
|
|
|
|
<view class="btn-box" v-if="isSelect.length > 0"> |
|
|
|
|
<view class="confirm-btn" @tap="replay"> |
|
|
|
|
已选择({{ isSelect.length }}) |
|
|
|
@ -383,7 +376,6 @@ export default {
|
|
|
|
|
taskId: this.detail.id |
|
|
|
|
}) |
|
|
|
|
this.list.push(...data.list) |
|
|
|
|
uni.stopPullDownRefresh() |
|
|
|
|
this.load = 'loadmore' |
|
|
|
|
if (this.list.length == data.total) { |
|
|
|
|
this.load = 'nomore' |
|
|
|
|