jinjian1.1/pages/index/sign.vue

26 lines
330 B
Vue
Raw Permalink Normal View History

2024-11-26 15:27:53 +08:00
<template>
<view>
<web-view :src="ysSignPage"></web-view>
</view>
</template>
<script>
import { test } from '@/utils/api.js'
export default {
data() {
return {
ysSignPage:''
}
},
onLoad(options) {
this.ysSignPage = options.sigUrl
console.log(this.ysSignPage);
}
}
</script>
<style>
</style>