73 lines
1.6 KiB
Vue
73 lines
1.6 KiB
Vue
<template>
|
|||
|
|
<view class="content">
|
||
|
|
<TopSafe></TopSafe>
|
||
|
|
<view class="setting-view">
|
||
|
|
<iframe :src="h5Url" frameborder="no" border="0" class="web-view">
|
||
|
|
|
||
|
|
</iframe>
|
||
|
|
</view>
|
||
|
|
<!-- 腾讯电子签H5 → 集成到UniApp -->
|
||
|
|
</view>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import { getUserInfo,uploadAvatar } from '@/api/auth.js';
|
||
|
|
import { uploadImage, uploadImg } from '@/api/common.js';
|
||
|
|
import { IMG_TYPE } from '@/utils/enumUtils.js';
|
||
|
|
import { BASE_URL, Authorization } from '@/utils/config.js';
|
||
|
|
import { getStorageFun, TOKEN_NAME,clear } from '@/utils/auth.js';
|
||
|
|
import Header from '@/components/common/header.vue';
|
||
|
|
import TopSafe from '@/components/common/top-safe.nvue'
|
||
|
|
import MyBtn from '@/components/common/my-btn.vue'
|
||
|
|
import func from '@/utils/func.js';
|
||
|
|
|
||
|
|
export default {
|
||
|
|
components: { Header, TopSafe,MyBtn },
|
||
|
|
data() {
|
||
|
|
return {
|
||
|
|
h5Url:'https://www.aigcyun.cn/uniChat/#/?phN1TlflX8LhBw9Poz6%2BdPiXiWnidS%2Fcejlk1Q%2BZkH77Pa573QQamrrxTZmiujWx',
|
||
|
|
andUrl:'https://www.aigcyun.cn/H5/#chat?skillGroupId=5257&enterpriseId=1435'
|
||
|
|
};
|
||
|
|
},
|
||
|
|
onShow() {
|
||
|
|
this.init();
|
||
|
|
},
|
||
|
|
onLoad() {
|
||
|
|
// this.userinfo();
|
||
|
|
},
|
||
|
|
methods: {
|
||
|
|
init() {
|
||
|
|
// this.userinfo()
|
||
|
|
},
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style lang="scss" scoped>
|
||
|
|
.web-view{
|
||
|
|
|
||
|
|
height:100%;
|
||
|
|
width:100%;
|
||
|
|
position: relative;
|
||
|
|
}
|
||
|
|
.setting-view {
|
||
|
|
width: 100%;
|
||
|
|
height: calc(100% - var(--status-bar-height));
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
align-items: center;
|
||
|
|
overflow-y: auto;
|
||
|
|
box-sizing: border-box;
|
||
|
|
position: relative;
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
</style>
|
||
|
|
<style>
|
||
|
|
.chatModel{
|
||
|
|
height:calc(100% - var(--status-bar-height));
|
||
|
|
margin-top:var(--status-bar-height);
|
||
|
|
}
|
||
|
|
</style>
|