@ -1,16 +1,16 @@ |
|||
<!DOCTYPE html> |
|||
<html lang="zh"> |
|||
<head> |
|||
<html> |
|||
|
|||
<head> |
|||
<meta charset="UTF-8" /> |
|||
<link rel="icon" type="image/svg+xml" href="/vite.svg" /> |
|||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
|||
<!-- <script type="text/javascript" src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=oVfsVaYhLHUB2dqfOIdSTYASndsX33LF"></script> --> |
|||
<!-- <script src="//unpkg.com/@bmapgl-plugin/cluster@0.0.5"></script> --> |
|||
<!-- <script src="//mapopen-pub-jsapi.cdn.bcebos.com/static/js/bjpoi.js"></script> --> |
|||
<title>pathogenData</title> |
|||
</head> |
|||
<body> |
|||
</head> |
|||
|
|||
<body> |
|||
<div id="app"></div> |
|||
<script type="module" src="/src/main.js"></script> |
|||
</body> |
|||
</body> |
|||
|
|||
</html> |
Before Width: | Height: | Size: 569 B After Width: | Height: | Size: 1.2 KiB |
@ -0,0 +1,10 @@ |
|||
import _axios from "@/plugins/axios"; |
|||
import _ from "lodash"; |
|||
let personalToken = `6LEduRKgkheVUBeQ6uvGrZ`//广实代谢
|
|||
// 首页获取下拉框的数据
|
|||
export function homeMetabolite() { |
|||
return _axios({ |
|||
url: `/biobank/reportTemplate/5e7ac090233167dcfccd9031/group/dashboard%2FguangshiMetabolome%2FHBM_2831.txt`, |
|||
method: "GET", |
|||
}); |
|||
} |
After Width: | Height: | Size: 6.8 KiB |
After Width: | Height: | Size: 4.6 KiB |
After Width: | Height: | Size: 4.8 KiB |
After Width: | Height: | Size: 6.2 KiB |
After Width: | Height: | Size: 3.2 KiB |
@ -0,0 +1,22 @@ |
|||
<template> |
|||
<div>about</div> |
|||
</template> |
|||
|
|||
<script> |
|||
|
|||
export default { |
|||
name: "about", |
|||
components: {}, |
|||
data() { |
|||
return {}; |
|||
}, |
|||
watch: {}, |
|||
computed: {}, |
|||
async mounted() { }, |
|||
methods: {}, |
|||
|
|||
destoryed() { }, |
|||
|
|||
}; |
|||
</script> |
|||
<style scoped></style> |
@ -0,0 +1,21 @@ |
|||
<template> |
|||
<div>contact</div> |
|||
</template> |
|||
|
|||
<script> |
|||
export default { |
|||
name: "contact", |
|||
components: {}, |
|||
data() { |
|||
return {}; |
|||
}, |
|||
watch: {}, |
|||
computed: {}, |
|||
async mounted() { }, |
|||
methods: {}, |
|||
|
|||
destoryed() { }, |
|||
|
|||
}; |
|||
</script> |
|||
<style scoped></style> |
@ -0,0 +1,23 @@ |
|||
<template> |
|||
<div>metabolite</div> |
|||
</template> |
|||
|
|||
<script> |
|||
export default { |
|||
name: "metabolite", |
|||
components: {}, |
|||
data() { |
|||
return {}; |
|||
}, |
|||
watch: {}, |
|||
computed: {}, |
|||
async mounted() { |
|||
console.log(15, this.$route); |
|||
}, |
|||
methods: {}, |
|||
|
|||
destoryed() { }, |
|||
|
|||
}; |
|||
</script> |
|||
<style scoped></style> |