|
@@ -21,15 +21,18 @@
|
|
|
<h3>活动主办方</h3>
|
|
|
<p>{{ activityDetail.activityHold }}</p>
|
|
|
<h3>活动内容</h3>
|
|
|
- <p v-html="activityDetail.activityContent"></p>
|
|
|
+ <p v-html="activityDetail.activityContent" />
|
|
|
<h3>活动时间</h3>
|
|
|
<p> {{ activityDetail.activityStartTime }} — {{ activityDetail.activityEndTime }}</p>
|
|
|
<h3>活动地址</h3>
|
|
|
<p>{{ activityDetail.activityAddress }}</p>
|
|
|
<h3>联系电话</h3>
|
|
|
<p>{{ activityDetail.contactPhone }}</p>
|
|
|
-<!-- <h3>报名条件</h3>-->
|
|
|
-<!-- <p>{{ activityDetail.registrationConditions }}</p>-->
|
|
|
+ <div v-for="(item,index) in file" :key="index" style="color: orangered;cursor: pointer" @click="dowLoad(item)">
|
|
|
+ {{ item.name }}
|
|
|
+ </div>
|
|
|
+ <!-- <h3>报名条件</h3>-->
|
|
|
+ <!-- <p>{{ activityDetail.registrationConditions }}</p>-->
|
|
|
<!-- <div>-->
|
|
|
<!-- <p>以Josh Bersin & IBM Institute 的 HR 3.0 为主线,讲解传统HR (1.0)向战略型HR (3.0)转型的十大关键举措,用实操案例聚集三大主题:敏捷组织,员工体验,HR能力转型,提供帮助企业及人力资源自身提升的战略与方法,推动业务的突破。</p>-->
|
|
|
<!-- <p>1、数字化时代企业挑战及员工特点;</p>-->
|
|
@@ -78,6 +81,7 @@ export default {
|
|
|
],
|
|
|
id: '',
|
|
|
activityDetail: '',
|
|
|
+ file: [],
|
|
|
number: 0
|
|
|
}
|
|
|
},
|
|
@@ -92,6 +96,7 @@ export default {
|
|
|
getActivityById(this.id, null).then((res) => {
|
|
|
if (res.data) {
|
|
|
_this.activityDetail = res.data
|
|
|
+ _this.file = JSON.parse(res.data.activityFile)
|
|
|
_this.activityDetail.registrationStartTime = this.$common.transBaseDateTime(
|
|
|
_this.activityDetail.registrationStartTime
|
|
|
)
|
|
@@ -119,6 +124,9 @@ export default {
|
|
|
detail(index) {
|
|
|
// this.$router.push({path:'/zhaoshang/detail1?smallType='+index})
|
|
|
this.showInfo = true
|
|
|
+ },
|
|
|
+ dowLoad(item) {
|
|
|
+ window.location.href = item.url
|
|
|
}
|
|
|
}
|
|
|
}
|