├── php-api/ # 改造后的PHP接口层 ├── java-ad-service/ # 若依框架微服务(广告+VIP+分账) ├── uniapp-reader/ # UniApp前端项目 │ ├── pages/ # 各端页面 │ └──
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

uni-tbody.vue 423B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <!-- #ifdef H5 -->
  3. <tbody>
  4. <slot></slot>
  5. </tbody>
  6. <!-- #endif -->
  7. <!-- #ifndef H5 -->
  8. <view><slot></slot></view>
  9. <!-- #endif -->
  10. </template>
  11. <script>
  12. export default {
  13. name: 'uniBody',
  14. options: {
  15. // #ifdef MP-TOUTIAO
  16. virtualHost: false,
  17. // #endif
  18. // #ifndef MP-TOUTIAO
  19. virtualHost: true
  20. // #endif
  21. },
  22. data() {
  23. return {
  24. }
  25. },
  26. created() {},
  27. methods: {}
  28. }
  29. </script>
  30. <style>
  31. </style>