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.

1 年之前
1 年之前
1 年之前
123456789101112131415161718192021
  1. <template>
  2. <div>
  3. <web-view :src="url"></web-view>
  4. </div>
  5. </template>
  6. <script setup lang='ts'>
  7. import {
  8. ref
  9. } from 'vue'
  10. let url = ref('https://qtzl.etcjz.cn/aliOrder/')
  11. //获取微信小程序openid
  12. // #ifdef MP-WEIXIN
  13. url.value = 'https://qtzl.etcjz.cn/wxOrder/'
  14. // #endif
  15. // #ifdef MP-ALIPAY
  16. url.value = 'https://qtzl.etcjz.cn/aliOrder/'
  17. // #endif
  18. </script>
  19. <style lang='scss' scoped>
  20. </style>