|
@@ -63,8 +63,9 @@ export default {
|
|
let res = await this.query();
|
|
let res = await this.query();
|
|
let rooms = await this.countRoom();
|
|
let rooms = await this.countRoom();
|
|
if (this.$checkRes(res)) {
|
|
if (this.$checkRes(res)) {
|
|
- let arr = _.chunk(res.data, 6);
|
|
|
|
- this.$set(this, `tableData`, arr[0]);
|
|
|
|
|
|
+ let arr = res.data.filter(f => f.status != '3');
|
|
|
|
+ let newArr = _.chunk(arr, 6);
|
|
|
|
+ this.$set(this, `tableData`, newArr[0]);
|
|
let taking = rooms.errcode == 0 ? rooms.total : 0;
|
|
let taking = rooms.errcode == 0 ? rooms.total : 0;
|
|
let s1 = res.data.filter(f => f.status == '1'); //达成意向
|
|
let s1 = res.data.filter(f => f.status == '1'); //达成意向
|
|
let s2 = res.data.filter(f => f.status == '2'); //对接完成
|
|
let s2 = res.data.filter(f => f.status == '2'); //对接完成
|