webView.vue 504 Bytes
<template>
	  <view>
		  <web-view :src="url"></web-view>
	  </view>
</template>

<script>
	export default {
	data() {
		return {
			url:'https://test-pay.028wlkj.com/fixedPay?payId=CDWLOLE490393BE9E049D29766DB184366132F'
			}
	},
	onBackPress() {
	    // 拦截返回事件
	    uni.redirectTo({
	      url: '/pagesA/rentPay/rentPay'
	    });
	    return true; 
	  },
	  onLoad(options) {
			 if(options.urls){
				 this.url = options.urls
			 }
	  },
	  mounted() {

	  }
	}
</script>

<style>
</style>