Compare commits
4 Commits
322892892d
...
4569477128
Author | SHA1 | Date |
---|---|---|
JayChou | 4569477128 | 2 weeks ago |
JayChou | 21d7669c8d | 2 weeks ago |
JayChou | 2ce6dcacb2 | 2 weeks ago |
JayChou | 31bc241933 | 2 weeks ago |
5 changed files with 263 additions and 29 deletions
@ -0,0 +1,42 @@ |
||||
import { defHttp } from '/@/utils/http/axios'; |
||||
|
||||
// 获取仪器列表 |
||||
export function getindexcomp(params) { |
||||
return defHttp.request({ |
||||
url: '/instrument/instrument/listcms', |
||||
method: 'GET', |
||||
params, |
||||
}); |
||||
} |
||||
// 获取仪器详情 |
||||
export function getindexnew(params) { |
||||
return defHttp.request({ |
||||
url: '/instrument/instrument/queryByIdCms', |
||||
method: 'GET', |
||||
params, |
||||
}); |
||||
} |
||||
// 获取学科领域 |
||||
export function getindexsubject() { |
||||
return defHttp.request({ |
||||
url: '/disciplinefieid/disciplineFieid/listcms', |
||||
method: 'GET', |
||||
|
||||
}); |
||||
} |
||||
// 获取仪器分类 |
||||
export function getindexclass() { |
||||
return defHttp.request({ |
||||
url: '/instrumenttype/instrumentType/listcms', |
||||
method: 'GET', |
||||
|
||||
}); |
||||
} |
||||
// 获取创新券列表 |
||||
export function getindexaward(params) { |
||||
return defHttp.request({ |
||||
url: '/innovationvoucher/innovationVoucher/listcms', |
||||
method: 'GET', |
||||
params, |
||||
}); |
||||
} |
@ -0,0 +1,59 @@ |
||||
<template> |
||||
<div class="container"> |
||||
<a-table :dataSource="indexaward" :columns="columns" > |
||||
<template v-if="columns.Key === 'setting'"> |
||||
<div> |
||||
111 |
||||
</div> |
||||
</template> |
||||
</a-table> |
||||
</div> |
||||
</template> |
||||
|
||||
<script setup> |
||||
import { ref } from 'vue'; |
||||
|
||||
const columns = [ |
||||
{ |
||||
title: '申报项目名称', |
||||
dataIndex: 'proName', |
||||
key: 'proName', |
||||
}, |
||||
{ |
||||
title: '申报类别', |
||||
dataIndex: 'state_dictText', |
||||
key: 'state_dictText', |
||||
}, |
||||
{ |
||||
title: '申请金额', |
||||
dataIndex: 'proMoney', |
||||
key: 'proMoney', |
||||
}, |
||||
{ |
||||
title: '创新券编码', |
||||
dataIndex: 'cxqCode', |
||||
key: 'cxqCode', |
||||
}, |
||||
{ |
||||
title: '操作', |
||||
dataIndex: '', |
||||
key: 'setting', |
||||
}, |
||||
]; |
||||
const indexaward = ref([]); |
||||
const getindexawardEvent = async () => { |
||||
console.log(111); |
||||
|
||||
fetch(import.meta.env.VITE_GLOB_API_URL_CXQ + '/innovationvoucher/innovationVoucher/listcms') |
||||
.then((res) => res.json()) |
||||
.then((res) => (indexaward.value = res.result.records)); |
||||
}; |
||||
getindexawardEvent(); |
||||
</script> |
||||
|
||||
<style scoped lang="less"> |
||||
.container { |
||||
width: 1200px; |
||||
margin: 0 auto; |
||||
} |
||||
</style> |
Loading…
Reference in new issue