|
@@ -19,6 +19,7 @@ const reportId = ref(0);
|
|
|
|
|
|
const isBinding = ref(true);
|
|
const isBinding = ref(true);
|
|
|
|
|
|
|
|
+const disclaimers = ref("");
|
|
// 获取数据
|
|
// 获取数据
|
|
const reportSelectionDetail = async () => {
|
|
const reportSelectionDetail = async () => {
|
|
const res = await inrernalApi.getProductInteriorDetail({
|
|
const res = await inrernalApi.getProductInteriorDetail({
|
|
@@ -27,6 +28,7 @@ const reportSelectionDetail = async () => {
|
|
if (res.Ret === 200) {
|
|
if (res.Ret === 200) {
|
|
reportDetail.value = res.Data.Detail;
|
|
reportDetail.value = res.Data.Detail;
|
|
document.title = reportDetail.value.ColumnName;
|
|
document.title = reportDetail.value.ColumnName;
|
|
|
|
+ disclaimers.value = res.Data.Disclaimers;
|
|
}
|
|
}
|
|
};
|
|
};
|
|
|
|
|
|
@@ -156,7 +158,7 @@ onMounted(async () => {
|
|
<div v-if="reportDetail.Body" v-html="reportDetail.Body.slice(0, 200)"></div>
|
|
<div v-if="reportDetail.Body" v-html="reportDetail.Body.slice(0, 200)"></div>
|
|
<div class="please-login" @click="pleaseGoLogin">请登录后查看更多内容</div>
|
|
<div class="please-login" @click="pleaseGoLogin">请登录后查看更多内容</div>
|
|
</template>
|
|
</template>
|
|
- <dlg :showTips="showTips" type="产品内测" @hideDlg="showTips = false" />
|
|
|
|
|
|
+ <dlg :showTips="showTips" type="产品内测" :disclaimers="disclaimers" @hideDlg="showTips = false" />
|
|
<van-dialog v-model:show="showDlg" closeOnClickOverlay :show-confirm-button="false" @cancel="onClickHide">
|
|
<van-dialog v-model:show="showDlg" closeOnClickOverlay :show-confirm-button="false" @cancel="onClickHide">
|
|
<view class="content-dialog">
|
|
<view class="content-dialog">
|
|
<div class="close">
|
|
<div class="close">
|