| | |
| | | </view> |
| | | <view class="search_item" v-if="['2'].includes(this.type)" @click="$refs.pengTree._show()"> |
| | | <view class="search_item_label">位置</view> |
| | | <view class="search_item_value">{{ model.localtionName ? model.localtionName : '全部' }}</view> |
| | | <view class="search_item_value">{{ model.localtionId ? model.localtionName : '全部' }}</view> |
| | | </view> |
| | | <view class="search_item" v-if="['2'].includes(this.type)" @click="openZT"> |
| | | <view class="search_item_label">主题</view> |
| | | <view class="search_item_value">{{ model.typeName ? model.typeName : '全部' }}</view> |
| | | <view class="search_item_value">{{ model.typeId ? model.typeName : '全部' }}</view> |
| | | </view> |
| | | <view class="search_item" @click="openRQ"> |
| | | <view class="search_item_label">日期</view> |
| | |
| | | async getLocation() { |
| | | let res = await this.$u.api.categoryTree({ categoryType: 3 }) |
| | | if (res.code === 200) { |
| | | res.data.unshift({ name: '全部', id: '', childList: [] }) |
| | | this.address = res.data |
| | | } |
| | | }, |
| | |
| | | async getZhuti() { |
| | | let res = await this.$u.api.categoryList({ categoryType: 4, isRoot: 1 }) |
| | | if (res.code === 200) { |
| | | res.data.unshift({ name: '全部', id: '', childList: [] }) |
| | | this.theme = [res.data] |
| | | } |
| | | }, |