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

5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
  1. <template>
  2. <!-- 帮助中心 -->
  3. <view class="page">
  4. <navbar
  5. title="帮助中心"
  6. leftClick
  7. @leftClick="$utils.navigateBack"/>
  8. <view style="padding: 20rpx;">
  9. <uv-parse :content="help.parmValue"></uv-parse>
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. export default {
  15. data() {
  16. return {
  17. help:{},
  18. }
  19. },
  20. onLoad() {
  21. this.helpInfo()
  22. },
  23. methods: {
  24. helpInfo(){
  25. this.$api('helpInfo', res =>{
  26. if(res.code == 200){
  27. this.help = res.result
  28. }
  29. })
  30. },
  31. }
  32. }
  33. </script>
  34. <style scoped lang="scss">
  35. .page{
  36. .Box{
  37. display: flex;
  38. justify-content: center;
  39. margin-top: 80rpx;
  40. }
  41. }
  42. </style>