|
|
|
@ -5,10 +5,13 @@ |
|
|
|
<view class="mask"></view> |
|
|
|
<view class="layer"> |
|
|
|
<view class="specification-wrapper"> |
|
|
|
<scroll-view class="specification-wrapper-content" scroll-y="true"> |
|
|
|
<scroll-view class="specification-wrapper-content" scroll-y="true" > |
|
|
|
<!-- 隐私政策 --> |
|
|
|
<privacy></privacy> |
|
|
|
<privacy v-if="mkey=='private'"></privacy> |
|
|
|
<!-- 协议 --> |
|
|
|
<protocol v-else></protocol> |
|
|
|
</scroll-view> |
|
|
|
|
|
|
|
<!-- 关闭按钮 --> |
|
|
|
<view class="close" @click="close('close')" v-if="showClose != false"> |
|
|
|
<image class="close-item" :src="closeImage"></image> |
|
|
|
@ -21,11 +24,13 @@ |
|
|
|
<script> |
|
|
|
import Popup from '@/components/popup/popup' |
|
|
|
import privacy from '@/pages/help/private' |
|
|
|
import protocol from '@/pages/help/prototal' |
|
|
|
|
|
|
|
export default { |
|
|
|
components: { |
|
|
|
"popup":Popup, |
|
|
|
privacy |
|
|
|
privacy, |
|
|
|
protocol |
|
|
|
}, |
|
|
|
|
|
|
|
props: { |
|
|
|
@ -38,6 +43,11 @@ |
|
|
|
Type:String, |
|
|
|
default:"" |
|
|
|
}, |
|
|
|
// 关键词 |
|
|
|
mkey:{ |
|
|
|
Type:String, |
|
|
|
default: "" |
|
|
|
}, |
|
|
|
// 是否显示右上角关闭按钮 |
|
|
|
showClose: { |
|
|
|
Type: Boolean, |
|
|
|
|