uni-pay.md 419 字节
Newer Older
D
DCloud_LXH 已提交
1

2
文件已搬家,[前往新文档](./uni-pay/uni-app.md)
D
DCloud_LXH 已提交
3

VK1688's avatar
VK1688 已提交
4
<!-- <script>
D
DCloud_LXH 已提交
5 6 7 8
	export default {
		data() {
			return {

9
			};
D
DCloud_LXH 已提交
10
		},
11 12
		created(){
			this.init();
D
DCloud_LXH 已提交
13
		},
14
		mounted() {
D
DCloud_LXH 已提交
15 16 17

		},
		methods: {
18 19 20 21 22
			// 页面数据初始化函数
			init(options = {}){
				let url = window.location.href;
				let newUrl = url.replace("uni-pay.html", "uni-pay/uni-app.html");
				window.location.href = newUrl;
D
DCloud_LXH 已提交
23 24
			}
		}
25
	};
VK1688's avatar
VK1688 已提交
26
</script> -->