|
@@ -1,5 +1,5 @@
|
|
|
<template>
|
|
|
- <view class="activity-detail">
|
|
|
+ <view class="activity-detail" v-if="info">
|
|
|
<!-- 路演 -->
|
|
|
<block v-if="info.RsCalendarItem.ActivityType=='路演'">
|
|
|
<view class="section white-wrap">
|
|
@@ -48,7 +48,7 @@
|
|
|
</view>
|
|
|
<view class="info-item flex">
|
|
|
<view class="label">提交时间:</view>
|
|
|
- <view>{{info.RsCalendarItem.CreateTime}}</view>
|
|
|
+ <view>{{info.RsCalendarItem.CreateTime|}}</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="section white-wrap" v-if="info.RsCalendarResearcherItem.Status==2||info.RsCalendarResearcherItem.Status==3">
|
|
@@ -98,7 +98,7 @@
|
|
|
</view>
|
|
|
<view class="info-item flex">
|
|
|
<view class="label">提交时间:</view>
|
|
|
- <view>{{info.RsCalendarItem.CreateTime}}</view>
|
|
|
+ <view>{{info.RsCalendarItem.CreateTime|formatTime}}</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="section white-wrap" v-if="info.RsCalendarResearcherItem.Status==2||info.RsCalendarResearcherItem.Status==3">
|
|
@@ -136,7 +136,7 @@ export default {
|
|
|
this.RsCalendarId=options.RsCalendarId
|
|
|
},
|
|
|
onShow() {
|
|
|
- // this.getDetail()
|
|
|
+ this.getDetail()
|
|
|
},
|
|
|
methods: {
|
|
|
// 获取详情
|