mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-25 02:33:02 +08:00
[FIX] 【隐私政策】 移除title
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
<template>
|
||||
<div class="privacy-policy-container">
|
||||
<h3 v-html="titleContent" style="text-align:center"></h3>
|
||||
<div v-html="privacyContent"></div>
|
||||
</div>
|
||||
</template>
|
||||
@@ -11,8 +10,7 @@ export default {
|
||||
name: 'PrivacyPolicy',
|
||||
data() {
|
||||
return {
|
||||
privacyContent: '', //隐私条款政策
|
||||
titleContent: '' //隐私条款标题
|
||||
privacyContent: '' //隐私条款政策
|
||||
}
|
||||
},
|
||||
mounted() {
|
||||
@@ -30,7 +28,10 @@ export default {
|
||||
}).then(res => {
|
||||
if (res.result == '0') {
|
||||
this.privacyContent = res.content.privacyContent
|
||||
this.titleContent = res.content.title
|
||||
// eslint-disable-next-line
|
||||
EWebBridge.webCallAppInJs('navigation', {
|
||||
title: res.content.title
|
||||
})
|
||||
} else {
|
||||
this.$toast(res.resultMessage)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user