|
@@ -136,22 +136,18 @@ export default {
|
|
|
const res1 = await this.query({ skip: 0, type: '1', status: '1' });
|
|
|
if (this.$checkRes(res1)) {
|
|
|
this.$set(this, `tecList`, res1.data);
|
|
|
- // console.log(this.tecList);
|
|
|
}
|
|
|
const res2 = await this.query({ skip: 0, type: '0', status: '1' });
|
|
|
if (this.$checkRes(res2)) {
|
|
|
this.$set(this, `demandList`, res2.data);
|
|
|
- // console.log(this.demandList);
|
|
|
}
|
|
|
const res3 = await this.query({ skip: 0, type: '2', status: '1' });
|
|
|
if (this.$checkRes(res3)) {
|
|
|
this.$set(this, `serveList`, res3.data);
|
|
|
- // console.log(this.serveList);
|
|
|
}
|
|
|
const res4 = await this.expertquery({ skip: 0, status: '1' });
|
|
|
if (this.$checkRes(res4)) {
|
|
|
this.$set(this, `expertList`, res4.data);
|
|
|
- // console.log(this.expertList);
|
|
|
}
|
|
|
},
|
|
|
//下拉选择
|