[抖火申请支付]

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

22
pages/webview/webCode.vue Normal file
View File

@@ -0,0 +1,22 @@
<template>
<view>
<web-view :src="url"></web-view>
</view>
</template>
<script>
export default {
data() {
return {
url: '' // 外部链接地址
}
},
onLoad(options) {
// 跳到关注公众号页面
this.$Router.replace({name: 'indexGeneral', params: {code: options.code}})
},
}
</script>
<style>
</style>