|
@@ -4,6 +4,7 @@ import moment from 'moment'
|
|
import {ref,onMounted,nextTick} from 'vue'
|
|
import {ref,onMounted,nextTick} from 'vue'
|
|
import { useRoute } from 'vue-router'
|
|
import { useRoute } from 'vue-router'
|
|
import {useWaterMark} from '@/hooks/waterMark.js'
|
|
import {useWaterMark} from '@/hooks/waterMark.js'
|
|
|
|
+import { apiBaseConfig } from '@/api/common'
|
|
|
|
|
|
import {apiGetChapterReportDetail,apiGetReportDetail} from '@/api/activity'
|
|
import {apiGetChapterReportDetail,apiGetReportDetail} from '@/api/activity'
|
|
import { useStore } from 'vuex'
|
|
import { useStore } from 'vuex'
|
|
@@ -29,6 +30,16 @@ const getInfo=async ()=>{
|
|
}
|
|
}
|
|
getInfo()
|
|
getInfo()
|
|
|
|
|
|
|
|
+const disclaimer = ref('')
|
|
|
|
+function getConfig() {
|
|
|
|
+ apiBaseConfig().then(res => {
|
|
|
|
+ if (res.code == 200) {
|
|
|
|
+ disclaimer.value = res.data.disclaimer
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+}
|
|
|
|
+getConfig()
|
|
|
|
+
|
|
// 获取底部列表
|
|
// 获取底部列表
|
|
let info2=ref(null)
|
|
let info2=ref(null)
|
|
let botList=ref([])
|
|
let botList=ref([])
|
|
@@ -95,7 +106,7 @@ const chapterTypeChange=(item)=>{
|
|
<span>{{info.report_chapter_item.author}}</span>
|
|
<span>{{info.report_chapter_item.author}}</span>
|
|
<span class="time">{{moment(info2.researchReportDate).format('YYYY-MM-DD HH:mm:ss')}}</span>
|
|
<span class="time">{{moment(info2.researchReportDate).format('YYYY-MM-DD HH:mm:ss')}}</span>
|
|
</div>
|
|
</div>
|
|
- <div class="tips">
|
|
|
|
|
|
+ <div class="tips" v-if="disclaimer">
|
|
<span>注:请务必阅读</span>
|
|
<span>注:请务必阅读</span>
|
|
<span style="color:#F3A52F;margin-left:20px;cursor: pointer;" @click="showDisclaimers=true">免责声明</span>
|
|
<span style="color:#F3A52F;margin-left:20px;cursor: pointer;" @click="showDisclaimers=true">免责声明</span>
|
|
</div>
|
|
</div>
|