| | |
| | | <div class="content_search"> |
| | | <v-Search @searchInput="searchForm.mixParam" @submit="search" @reset="reset" :isShow="true" |
| | | placeholder="搜索关键字"> |
| | | <template v-slot:content> |
| | | <div class="Search_item"> |
| | | <div class="Search_item_label">计划日期</div> |
| | | <div class="Search_item_content" @click="isOpenDate = true"> |
| | | <div class="Search_item_content_a" :style="searchForm.startDate ? 'color: #000;' : ''"> |
| | | {{ searchForm.startDate ? searchForm.startDate : '开始日期'}} |
| | | </div> |
| | | <span>-</span> |
| | | <div class="Search_item_content_a" :style="searchForm.endDate ? 'color: #000;' : ''"> |
| | | {{ searchForm.endDate ? searchForm.endDate : '结束日期'}} |
| | | </div> |
| | | </div> |
| | | </div> |
| | | </template> |
| | | </v-Search> |
| | | <div class="content_search_x"></div> |
| | | <v-LableSelection :TagList="tagList" :isShow="true" @change="clickTag"></v-LableSelection> |