源文件
This commit is contained in:
25
jeepay-ui-uapp-cashier/pages/H5/H5.vue
Normal file
25
jeepay-ui-uapp-cashier/pages/H5/H5.vue
Normal file
@@ -0,0 +1,25 @@
|
||||
<template>
|
||||
<web-view :src="src" update-title />
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { onLoad } from '@dcloudio/uni-app'
|
||||
import { ref } from 'vue'
|
||||
const src = ref('')
|
||||
onLoad((options) => {
|
||||
src.value = options.url
|
||||
// #ifdef H5 || MP-WEIXIN
|
||||
uni.setNavigationBarTitle({
|
||||
title: ' '
|
||||
})
|
||||
// #endif
|
||||
// 条件编译 支付宝
|
||||
// #ifdef H5 || MP-ALIPAY
|
||||
my.setNavigationBar({
|
||||
title: ' '
|
||||
})
|
||||
// #endif
|
||||
})
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped></style>
|
||||
Reference in New Issue
Block a user