Blame view

lvdao-miniapp/pagesA/rentPay/webView.vue 504 Bytes
4e955529   杨鑫   '1'
1
2
  <template>
  	  <view>
2067568a   杨鑫   '租金缴费'
3
  		  <web-view :src="url"></web-view>
4e955529   杨鑫   '1'
4
5
6
7
8
  	  </view>
  </template>
  
  <script>
  	export default {
2067568a   杨鑫   '租金缴费'
9
10
11
12
13
  	data() {
  		return {
  			url:'https://test-pay.028wlkj.com/fixedPay?payId=CDWLOLE490393BE9E049D29766DB184366132F'
  			}
  	},
65478d1d   杨鑫   '最新'
14
15
16
17
18
19
20
  	onBackPress() {
  	    // 拦截返回事件
  	    uni.redirectTo({
  	      url: '/pagesA/rentPay/rentPay'
  	    });
  	    return true; 
  	  },
2067568a   杨鑫   '租金缴费'
21
22
23
24
  	  onLoad(options) {
  			 if(options.urls){
  				 this.url = options.urls
  			 }
4e955529   杨鑫   '1'
25
26
  	  },
  	  mounted() {
65478d1d   杨鑫   '最新'
27
  
4e955529   杨鑫   '1'
28
29
30
31
32
33
  	  }
  	}
  </script>
  
  <style>
  </style>