工单小程序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
661 B

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