|
@@ -66,7 +66,6 @@
|
|
|
border-radius: 0.2rem;
|
|
|
"
|
|
|
>
|
|
|
- <!-- <h1 style="font:0.64rem '微软雅黑'; color:#333; text-align:center; margin-bottom:0.34rem;">免责声明</h1> -->
|
|
|
<h1
|
|
|
style="
|
|
|
font: 0.64rem 'segoe';
|
|
@@ -77,11 +76,7 @@
|
|
|
>
|
|
|
Disclaimers
|
|
|
</h1>
|
|
|
- <div style="max-height:50vh;overflow:auto">
|
|
|
- <p style="margin-bottom:10px">1、This report is to be used solely by the clients of Horizon Insights,and will not be regarded as a client by the Recipient/Receiving institution because of the receipt of this report.</p>
|
|
|
- <p style="margin-bottom:10px">2、This report is based on international and industry standards, and the information is obtained from legal sources to ensure that it is as reliable, accurate and complete as possible, but does not guarantee the accuracy and completeness of the information described in the report, nor does it guarantee that the information or recommendations contained in this report will not change in any way after the issuance of this report. The information provided in this report is for informational purposes only.</p>
|
|
|
- <p style="margin-bottom:10px">3、The contents of the report do not make any guarantee for the final operation recommendations made by investors, nor do they have any form of written or oral commitment to share investment returns or investment losses. It is not intended as the client's final operational advice in terms of investment, legal, accounting or taxation, nor as a moral, responsible and legal basis or evidence, whether or not it has been expressed or implied.</p>
|
|
|
- <p style="margin-bottom:10px">4、In no event shall the Company be liable for any loss or damage incurred by the Client/Recipient/ Receiving institution as a result of the use of the contents of the Report, and the Client/Recipient/ Receiving institution shall bear the entire risk.</p>
|
|
|
+ <div style="max-height:50vh;overflow:auto" v-html="Disclaimer">
|
|
|
</div>
|
|
|
<p
|
|
|
@click="hideTips"
|
|
@@ -131,6 +126,7 @@ export default {
|
|
|
page_no: 0,
|
|
|
pageSize: 20, //默认初始加载50个p标签
|
|
|
total_page: 0,
|
|
|
+ Disclaimer: '',
|
|
|
};
|
|
|
},
|
|
|
created() {
|
|
@@ -220,6 +216,7 @@ export default {
|
|
|
Data.Report.Title+'('+Data.Report.CreateTime.substring(5,7)+Data.Report.CreateTime.substring(8,10)+')'
|
|
|
|
|
|
this.reportInfo = Data.Report;
|
|
|
+ this.Disclaimer = Data.DisclaimerEn||'';
|
|
|
this.isshow = true;
|
|
|
|
|
|
this.splitContentHandle(this.reportInfo.Content);
|