[FIX] 【隐私政策】 移除title

This commit is contained in:
li.kai
2020-07-07 14:04:58 +08:00
parent e1b3923478
commit 19446be25e

View File

@@ -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)
}