| @@ -697,7 +697,9 @@ | |||||
| </div> | </div> | ||||
| </div> | </div> | ||||
| <div class="pagechen"> | |||||
| <div class="pagechen" @click=" | |||||
| toDetail('/ReceivingRecords/index', 'validInvalid,0', '接待记录') | |||||
| "> | |||||
| <div style="width:100%"> | <div style="width:100%"> | ||||
| <div class="pageboxtitle1 projectCardItem"> | <div class="pageboxtitle1 projectCardItem"> | ||||
| @@ -735,7 +737,7 @@ | |||||
| </div> | </div> | ||||
| <div class="pagechen"> | |||||
| <div class="pagechen" @click="toDetail('/ReceivingRecords/index', 'taboo,1,dateType,0,validInvalid,0', '接待记录')"> | |||||
| <div style="width:100%"> | <div style="width:100%"> | ||||
| <div class="pageboxtitle1 projectCardItem"> | <div class="pageboxtitle1 projectCardItem"> | ||||
| @@ -772,7 +774,7 @@ | |||||
| </div> | </div> | ||||
| </div> | </div> | ||||
| <div class="pagechen"> | |||||
| <div class="pagechen" @click="toDetail('/ReceivingRecords/index', '', '接待记录')"> | |||||
| <div style="width:100%"> | <div style="width:100%"> | ||||
| <div class="pageboxtitle1 projectCardItem"> | <div class="pageboxtitle1 projectCardItem"> | ||||
| <div class="sum">平均接待时长(分钟) | <div class="sum">平均接待时长(分钟) | ||||
| @@ -223,6 +223,7 @@ | |||||
| @selection-change="handleSelectionChange" | @selection-change="handleSelectionChange" | ||||
| style="width: 100%" | style="width: 100%" | ||||
| height="390" | height="390" | ||||
| :header-cell-style="{background:'#F5F7FA',color:'#333333'}" | |||||
| > | > | ||||
| <el-table-column type="selection" width="55"> </el-table-column> | <el-table-column type="selection" width="55"> </el-table-column> | ||||
| <el-table-column type="index" label="序号" align="center"> | <el-table-column type="index" label="序号" align="center"> | ||||
| @@ -353,6 +353,7 @@ | |||||
| @selection-change="handleSelectionChange" | @selection-change="handleSelectionChange" | ||||
| style="width: 100%" | style="width: 100%" | ||||
| height="390" | height="390" | ||||
| :header-cell-style="{background:'#F5F7FA',color:'#333333'}" | |||||
| > | > | ||||
| <el-table-column type="selection" width="55"> </el-table-column> | <el-table-column type="selection" width="55"> </el-table-column> | ||||
| <el-table-column type="index" label="序号" align="center"> | <el-table-column type="index" label="序号" align="center"> | ||||
| @@ -438,6 +438,13 @@ export default { | |||||
| if (this.$route.query.houseId) { | if (this.$route.query.houseId) { | ||||
| this.searchForm.projectId = this.$route.query.houseId; | this.searchForm.projectId = this.$route.query.houseId; | ||||
| } | } | ||||
| if(this.$route.query.types){ | |||||
| let arr = this.$route.query.types.split(","); | |||||
| console.log(arr) | |||||
| this.searchForm[arr[0]] = arr[1] | |||||
| this.searchForm[arr[2]] = arr[3] | |||||
| this.searchForm[arr[4]] = arr[5] | |||||
| } | |||||
| // 获取项目列表 | // 获取项目列表 | ||||
| this.zkhousePage(); | this.zkhousePage(); | ||||
| }, | }, | ||||