You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
<!-- 促进产业项目情况 -->
|
|
|
|
|
<template>
|
|
|
|
|
<div class="promoteProject-box-wai-box">
|
|
|
|
|
<div class="promoteProject-box-div" v-for="(item,index) in tableData" :key="index">
|
|
|
|
|
<div class="promoteProject-top">
|
|
|
|
|
<span class="span-one">【{{ item.projectName }}】</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="promoteProject-bottom">
|
|
|
|
|
<div class="promoteProject-bottom-left">
|
|
|
|
|
所属企业:
|
|
|
|
|
<span class="span-two">{{ item.enterprice }}</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="promoteProject-bottom-right">
|
|
|
|
|
申报时间:
|
|
|
|
|
<span class="span-three">{{ item.time }}</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="promoteProject-position">复审中</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
tableData:[
|
|
|
|
|
{
|
|
|
|
|
projectName:"项目名称",
|
|
|
|
|
enterprice:"苏州众汇聚合信息科技有限公司",
|
|
|
|
|
time:"2024-04-01",
|
|
|
|
|
type:1,
|
|
|
|
|
},{
|
|
|
|
|
projectName:"项目名称",
|
|
|
|
|
enterprice:"苏州众汇聚合信息科技有限公司",
|
|
|
|
|
time:"2024-04-01",
|
|
|
|
|
type:2,
|
|
|
|
|
},{
|
|
|
|
|
projectName:"项目名称",
|
|
|
|
|
enterprice:"苏州众汇聚合信息科技有限公司",
|
|
|
|
|
time:"2024-04-01",
|
|
|
|
|
type:3,
|
|
|
|
|
},{
|
|
|
|
|
projectName:"项目名称",
|
|
|
|
|
enterprice:"苏州众汇聚合信息科技有限公司",
|
|
|
|
|
time:"2024-04-01",
|
|
|
|
|
type:3,
|
|
|
|
|
},
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
methods:{
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
|
|
|
|
|
</style>
|