Commit 24c61085 authored by xinzhedeai's avatar xinzhedeai

数据概览

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