|
@@ -265,7 +265,6 @@ export default {
|
|
|
},
|
|
|
created() {
|
|
|
this.search();
|
|
|
- // this.searchExperts();
|
|
|
},
|
|
|
methods: {
|
|
|
...product(['query']),
|
|
@@ -278,7 +277,7 @@ export default {
|
|
|
res = await this.query({ skip: 0, limit: 4, totaltype: '2' });
|
|
|
if (this.$checkRes(res)) this.$set(this, `serviceList`, res.data);
|
|
|
res = await this.expertQuery({ skip: 0, limit: 4 });
|
|
|
- console.log(res);
|
|
|
+ if (this.$checkRes(res)) this.$set(this, `expertsList`, res.data);
|
|
|
},
|
|
|
},
|
|
|
filters: {
|