服装智能制造软件平台V3.0 http://182.92.169.222/hhxy/#/user/login
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

80 lines
1.4 KiB

<template>
</template>
<script>
import { threeMainFunction } from "./atlas/js/main1.js";
import { threeVendorFunction } from "./atlas/js/vendor1.js";
export default {
name: 'SeKnowGroupList',
mixins:[ ],
components: {
threeMainFunction,
threeVendorFunction
},
mounted() {
threeVendorFunction;
threeMainFunction;
},
data () {
return {
description: '知识图谱表管理页面',
dictOptions:{},
loadRouteType:false,
parameterId:"",
}
},
created() {
this.loadParameter();
this.initLoad();
// console.log(document.getElementById('app').style.height)
},
computed: {
},
methods: {
initDictConfig(){
},
initLoad(){
let that = this;
this.timer = setInterval(function () {
that.newDate = new Date().toLocaleString();
});
let canvas = document.body.querySelector("canvas");
canvas.style.position = "absolute";
canvas.style.top = "0";
},
//加载传递参数
loadParameter() {
if(this.loadRouteType==false)
{
// this.id = this.$route.query.name
// console.log(id);
this.loadRouteType=true;
}
},
}
}
</script>
<style scoped>
html,
body,
#app {
height: 0px;
margin: 0px;
padding: 0px;
}
</style>