parent
2ce6dcacb2
commit
21d7669c8d
3 changed files with 83 additions and 14 deletions
@ -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