|
|
|
@ -12,7 +12,7 @@ |
|
|
|
<el-option value="共性需求">共性需求</el-option> |
|
|
|
</el-select> |
|
|
|
|
|
|
|
<el-select v-model="type2" @change="getList" :clearable="true" class="left10"> |
|
|
|
<el-select v-model="type2" @change="init" :clearable="true" class="left10"> |
|
|
|
<el-option value="全部">全部</el-option> |
|
|
|
<template v-if="listType == '个性需求'"> |
|
|
|
<el-option value="商家支撑">商家支撑</el-option> |
|
|
|
@ -155,6 +155,10 @@ export default { |
|
|
|
|
|
|
|
methods: { |
|
|
|
init() { |
|
|
|
if (!this.searchDate) { |
|
|
|
this.searchDate = ['', '']; |
|
|
|
} |
|
|
|
|
|
|
|
this.getList(); |
|
|
|
this.getCount(); |
|
|
|
}, |
|
|
|
@ -167,7 +171,7 @@ export default { |
|
|
|
}, |
|
|
|
changList() { |
|
|
|
this.type2 = '全部'; |
|
|
|
this.getList(); |
|
|
|
this.init(); |
|
|
|
}, |
|
|
|
handleClickBreadItem({ item }) { |
|
|
|
if (item.type == 'back') { |
|
|
|
|