Commit 24c61085 authored by xinzhedeai's avatar xinzhedeai

数据概览

parent 7d87e724
......@@ -102,7 +102,7 @@
</div>
</div>
</li>
<li class="tab_panel_1" v-if="activeIndex === 1">
<li class="tab_panel_1" v-if="activeIndex === 1||activeIndex === 2||activeIndex === 3">
<div class="_left">
<div class="_title">
<span>在孵企业</span>
......@@ -112,8 +112,8 @@
<el-input
placeholder="请输入内容"
prefix-icon="el-icon-search"
v-model="searchText"
style="100%"
v-model="searchQuery4panel1"
@blur="getData4panel1"
></el-input>
<ul>
......@@ -275,8 +275,9 @@
<el-input
placeholder="请输入姓名搜索"
prefix-icon="el-icon-search"
v-model="searchText4panel0"
style="width: 300px;"
v-model="searchQuery4panel4"
style="width: 300px; margin-right: 10px;"
@blur="filterData4panel4"
></el-input>
</div>
<ul>
......@@ -623,7 +624,7 @@ export default {
size: this.pageSize4panel1,
incubatorId: this.incubatorId,
companyType,
mentorName: this.searchQuery4panel1
vague: {"companyName": this.searchQuery4panel1}
})
.then((res) => {
this.tableData4panel1 = res.body.records || [];
......@@ -666,6 +667,9 @@ export default {
size: this.pageSize4panel1_2,
exact:{
companyId: this.currentSelectedCompanyId,
},
vague:{
year: this.searchQuery4panel1_2
}
})
.then((res) => {
......@@ -688,20 +692,25 @@ export default {
this.dialogVisible4panel1_3 = true
this.getDialogData4panel1_3()
},
getDialogData4panel1_3(fn) { // 获取panel1 产品弹窗列表信息
getDialogData4panel1_3() { // 获取panel1 产品弹窗列表信息
overviewApi
.getDialogData4panel1_3({
page: this.currentPage4panel1_3 > 0 ? this.currentPage4panel1_3-1 : this.currentPage4panel1_3,
size: this.pageSize4panel1_3,
exact:{
companyId: this.currentSelectedCompanyId,
}
},
vague: {"productName": this.searchQuery4panel1_3}
})
.then((res) => {
this.tableData4panel1_3 = res.body.list || [];
this.totalCount4panel1_3 = res.body.total
});
},
filterData4panel1_3() {
this.currentPage4panel1_3 = 1; // 重置当前分页
this.getDialogData4panel1_3();
},
handleCurrentChange4panel1_3(newPage) {
// 切换分页
this.currentPage4panel1_3 = newPage;
......@@ -799,7 +808,10 @@ export default {
page: this.currentPage4panel0 > 0 ? this.currentPage4panel0-1 : this.currentPage4panel0,
size: this.pageSize4panel0,
incubatorId: this.incubatorId,
year: this.searchQuery4panel0
vague:{
year: this.searchQuery4panel0
}
})
.then((res) => {
console.log(res, "getData4panel04tech");
......@@ -848,7 +860,7 @@ export default {
page: this.currentPage4panel4 > 0 ? this.currentPage4panel4-1 : this.currentPage4panel4,
size: this.pageSize4panel4,
incubatorId: this.incubatorId,
mentorName: this.searchQuery4panel4
vague: {"mentorName":this.searchQuery4panel4}
})
.then((res) => {
this.tableData4panel4 = res.body.list || [];
......@@ -984,7 +996,7 @@ export default {
ul {
display: flex;
flex-wrap: wrap;
margin-left: 60px;
margin-left: 68px;
// margin-top: 20px;
& > li {
position: relative;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment