|
@@ -156,11 +156,10 @@ export default {
|
|
|
// 高企政策服务
|
|
|
let res = await this.policyQuery({ skip, limit: 7, status: 1, ...info });
|
|
|
if (this.$checkRes(res)) this.$set(this, `oneList`, res.data);
|
|
|
- // res = await this.ticketQuery({ skip, limit: 7, ...info });
|
|
|
- // if (this.$checkRes(res)) {
|
|
|
- // // for (const val of res.data) this.searchCompany(val);
|
|
|
- // // this.$set(this, `twoList`, res.data);
|
|
|
- // }
|
|
|
+ res = await this.ticketQuery({ skip, limit: 7, status: 1, ...info });
|
|
|
+ if (this.$checkRes(res)) {
|
|
|
+ this.$set(this, `twoList`, res.data);
|
|
|
+ }
|
|
|
},
|
|
|
// 查询企业详细信息
|
|
|
async searchCompany(data) {
|