|
@@ -190,22 +190,12 @@ const search = async () => {
|
|
|
}
|
|
|
}
|
|
|
const searchAchieve = async () => {
|
|
|
- const data = {
|
|
|
- skip: 0,
|
|
|
- limit: 3,
|
|
|
- is_use: '0',
|
|
|
- status: '1',
|
|
|
- industry: info.value.industry
|
|
|
- }
|
|
|
+ const data = { skip: 0, limit: 3, is_use: '0', status: '1', industry: info.value.industry }
|
|
|
const res = await store.list(data)
|
|
|
if (res.errcode == '0') projectList.value = res.data
|
|
|
}
|
|
|
const searchExpert = async () => {
|
|
|
- const data = {
|
|
|
- skip: 0,
|
|
|
- limit: 3,
|
|
|
- status: '1'
|
|
|
- }
|
|
|
+ const data = { skip: 0, limit: 3, status: '1' }
|
|
|
const res = await expertStore.query(data)
|
|
|
if (res.errcode == '0') expertList.value = res.data
|
|
|
}
|