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.

zaweb.vue 621B

1 year ago
1 year ago
1 year ago
1234567891011121314151617181920212223
  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/wxOrder/#/pages/backPage/backPage?type=3'
  17. url.value = 'https://qtzl.etcjz.cn/aliOrder/'
  18. // url.value = 'https://qtzl.etcjz.cn/h5/#/pages/productSelection/productSelection?qdOrderNo=20231129210008520101000026149316'
  19. // #endif
  20. </script>
  21. <style lang='scss' scoped>
  22. </style>