工单小程序2024-11-20
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

49 lines
677 B

<template>
<!-- 隐私协议 -->
<view class="page">
<navbar
title="隐私协议"
leftClick
@leftClick="$utils.navigateBack"/>
<view style="padding: 20rpx;">
<uv-parse :content="privacy.parmValue"></uv-parse>
</view>
</view>
</template>
<script>
export default {
data() {
return {
privacy:{}
}
},
onLoad() {
this.privacyInfo()
},
methods: {
privacyInfo(){
this.$api('privacyInfo', res =>{
if(res.code == 200){
this.privacy = res.result
}
})
},
}
}
</script>
<style scoped lang="scss">
.page{
.Box{
display: flex;
justify-content: center;
margin-top: 80rpx;
}
}
</style>