|
@@ -66,7 +66,7 @@
|
|
|
<el-col :span="24" class="tecList" v-for="(item, index) in tecList" :key="index">
|
|
|
<span></span>
|
|
|
<span class="textOver" @click="tecDetail(item.id)">{{ item.name || '暂无' }}</span>
|
|
|
- <span @click="toChat(item)">对接</span>
|
|
|
+ <span @click="toChat(item)" style="display:none">对接</span>
|
|
|
<span>{{ item.meta | getDate }}</span>
|
|
|
</el-col>
|
|
|
</el-col>
|
|
@@ -209,7 +209,7 @@ export default {
|
|
|
...product(['newquery']),
|
|
|
...talentExperts({ expertQuery: 'query' }),
|
|
|
async search() {
|
|
|
- let res = await this.newquery({ skip: 0, limit: 4, totaltype: '0', status: '1' });
|
|
|
+ let res = await this.newquery({ skip: 0, limit: 6, totaltype: '0', status: '1' });
|
|
|
if (this.$checkRes(res)) this.$set(this, `tecList`, res.data);
|
|
|
res = await this.newquery({ skip: 0, limit: 4, totaltype: '1', status: '1' });
|
|
|
if (this.$checkRes(res)) this.$set(this, `productList`, res.data);
|