shop.vue 957 B

123456789101112131415161718192021222324252627282930313233343536
  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";
  9. const urlTwo = "https%3A%2F%2Fcjxmall2.dnzc.vip";
  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. console.log(this.src);
  21. return;
  22. }
  23. // this.src = "https://cjxmall.dnzc.vip"
  24. 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"
  25. },
  26. methods: {
  27. }
  28. }
  29. </script>
  30. <style>
  31. </style>