【bug】 增加酒店信息 会议文件下载接口增加type参数

This commit is contained in:
fengachen
2021-12-24 09:26:45 +08:00
parent 541e1e369b
commit 8ca24111bd
3 changed files with 39 additions and 9 deletions
+32 -3
View File
@@ -41,6 +41,24 @@
<span><j-ellipsis :value="model.directorName" :length="20"></j-ellipsis></span>
</a-col>
</a-row>
<a-row :gutter="24" class="flex-col">
<a-col :span="12">
<label>酒店名称:</label><span>{{ model.hotelName }}</span>
</a-col>
<a-col :span="12">
<label>酒店地址:</label><span>{{ model.hotelAddress }}</span>
</a-col>
</a-row>
<a-row :gutter="24" class="flex-col">
<a-col>
<label class="label">酒店联系人及手机号:</label>
<span class="content"
v-for="(item,index) of model.hotelContactsList"
:key="index">
{{ item.hotelContacts + ':' + item.hotelContactsPhone + ' ' }}</span>
</a-col>
</a-row>
<a-row :gutter="24" class="flex-col">
<a-col :span="12">
<label>报名截止时间:</label>
@@ -522,12 +540,11 @@
</template>
</section>
<div v-if="model.meetingSignUpType+'' === '1' ">
<div v-if=" (model.meetingSignUpType+'' === '1' && !compareCurrentTime(model.registerDeadline)) ">
<a-button type="primary" @click="goSignUpPage" >报名 </a-button>
</div>
</a-spin>
<!--报名信息end-->
<!--报名信息end-->ArriveAndInvoivingList
<!--会议资料begin-->
<section class="base-info">
<h3 class="title">会议资料</h3>
@@ -782,6 +799,18 @@ export default {
window.open(`https://www.kuaidi100.com/chaxun?com=${com}&nu=${record.postNo}`)
},
/*
* 当前时间是否超过会议报名时间
* */
compareCurrentTime(time) {
let date = new Date()
let compareTime = new Date(time)
if (date.getTime() > compareTime.getTime()) {
return true
} else {
return false
}
},
/*
* 通过会议id获取会议性情
* */
queryMeetingInfoById(id) {