123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- import request from '@/utils/request'
- // 获取检出物占比统计信息
- export async function getjcwzbInfo(id) {
- return request({
- url: '/data/report/jcwzb/' + id,
- method: 'get',
- })
- }
- // 获取获取样本类型统计信息
- export async function getyblxtjInfo(id) {
- return request({
- url: '/data/report/yblxtj/' + id,
- method: 'get',
- })
- }
- // 获取样本统计信息
- export async function getybtjInfo(type,assemblyAccession) {
- return request({
- url: `/data/report/ybtj/${type}/${assemblyAccession}`,
- method: 'get',
- })
- }
- // 获取病原体占比统计信息
- export async function getbytzbInfo(data) {
- return request({
- url: '/data/report/bytzb' ,
- method: 'post',
- data: data
- })
- }
- // 获取病原体占比柱状图信息
- export async function getbytzzfbnfo(data) {
- return request({
- url: '/data/report/bytzzfb',
- method: 'post',
- data: data
- })
- }
- // 获取世界病原体占比统计信息
- export async function getsjbytztqkInfo(data) {
- return request({
- url: '/data/report/sjbytztqk',
- method: 'post',
- data: data
- })
- }
- // 获取中国病原体占比统计信息
- export async function getzgbytztqkInfo(data) {
- return request({
- url: '/data/report/zgbytztqk',
- method: 'post',
- data: data
- })
- }
- // 生成病菌预测世界地图
- export function generatesjbytfzzbqkInfo(data) {
- return request({
- url: '/data/report/sjbytfzzbqk',
- method: 'post',
- data: data
- })
- }
- // 生成病菌预测中国地图
- export function generatezgbytfzzbqkInfo(data) {
- return request({
- url: '/data/report/zgbytfzzbqk',
- method: 'post',
- data: data
- })
- }
- export function pathogenConfigGetAll(data) {
- return request({
- url: '/system/pathogenConfig/getAll',
- method: 'get'
- })
- }
- // 获取诊断统计设置编号列表
- export async function getConfigList() {
- return request({
- url: '/system/systemConfig/getAll',
- method: 'get',
- })
- }
- // 获取诊断统计设置编号对应图表数据
- export async function getConfigData(type, assemblyAccession, configId) {
- return request({
- url: `/data/report/yblxtj/${type}/${assemblyAccession}/${configId}`,
- method: 'get',
- })
- }
- // 模糊搜索NCBI基因组序列编号
- export async function getAssemblyAccessionList(keyword) {
- return request({
- url: `/data/dataBase/loadTop20DataBase/${keyword}`,
- method: 'get',
- })
- }
- export function qqlxbxjcsj(data) {
- return request({
- url: '/data/report/qqlxbxjcsj',
- method: 'post',
- data: data
- })
- }
|