| 12345678910111213141516171819202122232425262728293031 |
- <template>
- <view class="">
- <web-view :src="src"></web-view>
- </view>
- </template>
- <script>
- export default {
- name: '',
- data() {
- return {
- h5Path:'https://ldt.guosen-fumao.cn/h5/#/pages/auth/auth?src=',
- src:""
- };
- },
- onLoad(options) {
- if (this.$isEmpty(options.src)) {
- this.$dialog.showModalAndBack('二维码获取失败')
- return
- }
- this.src=this.h5Path+ options.src
- },
- methods:{
-
- }
- };
- </script>
- <style lang="scss" scoped>
-
- </style>
|