monthPay.vue 587 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <view>
  3. <a ref="payUrlRef" :href="PayUrl"></a>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. PayUrl: "",
  11. };
  12. },
  13. onLoad(page) {
  14. // console.log('page',page);
  15. // console.log('page1',this.$u.queryParams(page).slice(0));
  16. //15是因为传了‘currentPayUrl’,不要更改参数名
  17. this.PayUrl = this.$u.queryParams(page).slice(8);
  18. },
  19. mounted() {
  20. // console.log('this.PayUrl',this.PayUrl);
  21. // console.log('this.$refs.payUrlRef',this.$refs.payUrlRef);
  22. this.$refs.payUrlRef.click();
  23. }
  24. }
  25. </script>
  26. <style>
  27. </style>