├── php-api/ # 改造后的PHP接口层 ├── java-ad-service/ # 若依框架微服务(广告+VIP+分账) ├── uniapp-reader/ # UniApp前端项目 │ ├── pages/ # 各端页面 │ └──
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.

ad-platform.vue 456B

12345678910111213141516171819
  1. <!-- 组件:/components/ad-platform.vue -->
  2. <template>
  3. <!-- 微信小程序广告 -->
  4. <ad v-if="platform==='wechat' && !isVIP" ad-type="video" unit-id="..."></ad>
  5. <!-- 抖音小程序广告 -->
  6. <ad-douyin v-else-if="platform==='douyin' && !isVIP" :unit-id="..."></ad-douyin>
  7. <!-- H5广告 -->
  8. <div v-else-if="platform==='h5' && !isVIP">
  9. <iframe :src="dcloudAdUrl"></iframe>
  10. </div>
  11. </template>
  12. <script>
  13. </script>
  14. <style>
  15. </style>