shop.vue 933 B

1234567891011121314151617181920212223242526272829303132333435
  1. <template>
  2. <view>
  3. <web-view :src="src"></web-view>
  4. </view>
  5. </template>
  6. <script>
  7. const appId = "wxe25fed34f9f70ef4";
  8. const url = "https%3A%2F%2Fcjxmall.dnzc.vip%2F";
  9. const urlTwo = "https%3A%2F%2Fcjxmall2.dnzc.vip%2F";
  10. export default {
  11. data() {
  12. return {
  13. src :""
  14. }
  15. },
  16. onLoad(opt){
  17. let type = opt.type;
  18. if(opt.pointType === 2){
  19. this.src = "https://d.dnzc.vip/cache/wx?appid="+appId+"&redirect_uri="+urlTwo+"%2Fpages%2Fusers%2Fwechat_login%2Findex%3Fstate="+type+"&response_type=code&scope=snsapi_userinfo&connect_redirect=1#wechat_redirect"
  20. return;
  21. }
  22. // this.src = "https://cjxmall.dnzc.vip"
  23. this.src = "https://d.dnzc.vip/cache/wx?appid="+appId+"&redirect_uri="+url+"%2Fpages%2Fusers%2Fwechat_login%2Findex%3Fstate="+type+"&response_type=code&scope=snsapi_userinfo&connect_redirect=1#wechat_redirect"
  24. },
  25. methods: {
  26. }
  27. }
  28. </script>
  29. <style>
  30. </style>