a7.vue 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <template>
  2. <div class="guide-title">3.1应用接入</div>
  3. <div class="guide-body">
  4. <p>
  5. 平台有完整的应用接入流程,当用户申请成为开发者之后,可申请调用平台的接口或者使用平台中的数据开发自己的应用,当应用开发完成之后,
  6. 用户可以提交自己所开发的应用,管理员审核通过之后,应用就会在平台中上线,可以被其他用户查看、检索。
  7. </p>
  8. <div class="guide-desc-title" id="1.2.1">3.1.1应用的编辑与发布</div>
  9. </div>
  10. </template>
  11. <script>
  12. import {computed, defineComponent, onMounted, reactive, ref} from 'vue'
  13. export default defineComponent({
  14. components: {},
  15. setup() {
  16. return {}
  17. },
  18. })
  19. </script>
  20. <style scoped>
  21. .guide-title {
  22. padding: 15px 0 0;
  23. margin: 0 20px;
  24. line-height: 35px;
  25. font-size: 17px;
  26. font-weight: 400;
  27. font-style: normal;
  28. border-bottom: 1px solid #cccccc;
  29. }
  30. .guide-body {
  31. margin: 0 20px;
  32. }
  33. .guide-desc-title {
  34. width: 100%;
  35. margin: 15px 0 10px;
  36. font-size: 15px;
  37. font-weight: 700;
  38. }
  39. </style>