[抖火申请支付]

This commit is contained in:
2023-05-15 13:33:00 +08:00
commit c503bff7d2
294 changed files with 25144 additions and 0 deletions

25
pages/webview/webview.vue Normal file
View File

@@ -0,0 +1,25 @@
<template>
<view class="">
<!-- 跳转第三方 -->
<block v-if="uraData != ''">
<web-view :src="uraData"></web-view>
</block>
</view>
</template>
<script>
export default {
data() {
return {
uraData: ''
};
},
onLoad(options) {
this.uraData = decodeURIComponent(this.$Route.query.faceUrl)
}
}
</script>
<style>
</style>