@ -1,16 +1,16 @@ |
|||||
<!DOCTYPE html> |
<!DOCTYPE html> |
||||
<html lang="zh"> |
<html> |
||||
<head> |
|
||||
<meta charset="UTF-8" /> |
<head> |
||||
<link rel="icon" type="image/svg+xml" href="/vite.svg" /> |
<meta charset="UTF-8" /> |
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
<link rel="icon" type="image/svg+xml" href="/vite.svg" /> |
||||
<!-- <script type="text/javascript" src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=oVfsVaYhLHUB2dqfOIdSTYASndsX33LF"></script> --> |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
||||
<!-- <script src="//unpkg.com/@bmapgl-plugin/cluster@0.0.5"></script> --> |
<title>pathogenData</title> |
||||
<!-- <script src="//mapopen-pub-jsapi.cdn.bcebos.com/static/js/bjpoi.js"></script> --> |
</head> |
||||
<title>pathogenData</title> |
|
||||
</head> |
<body> |
||||
<body> |
<div id="app"></div> |
||||
<div id="app"></div> |
<script type="module" src="/src/main.js"></script> |
||||
<script type="module" src="/src/main.js"></script> |
</body> |
||||
</body> |
|
||||
</html> |
</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> |