| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <template>
- <fieldset>
- <legend>
- <el-tag type="info">条件筛选</el-tag>
- </legend>
- <el-form class="lv-form-inline" ref="searchForm" :model="searchKey" label-position="right" label-width="100px">
- <div class="search-form">
- <div class="form-left">
- <el-row :gutter="10">
- <el-col :xs="12" :sm="12" :md="12" :lg="6" :xl="6">
- <el-input v-model="searchKey.poi_name" placeholder="请选择商家" clearbale readonly :style="{width:'100%'}" @click="selectStore">
- <template #append>
- <el-tooltip effect="dark" content="点这里,清除选择" placement="top-start">
- <div class="remove-a" @click="clearStore">清除</div>
- </el-tooltip>
- </template>
- <template #prepend>所属商家</template>
- </el-input>
- </el-col>
- <el-col :xs="12" :sm="12" :md="12" :lg="6" :xl="4">
- <el-input v-model="searchKey.name" placeholder="达人昵称" clearable :style="{ width: '100%' }" @keyup.enter="searchForm()">
- <template #prepend>计划名称</template>
- </el-input>
- </el-col>
- <el-col :xs="12" :sm="12" :md="12" :lg="6" :xl="4">
- <el-select v-model="searchKey.status" clearable placeholder="请选择状态" @change="searchForm" :style="{width: '100%'}" class="diy-select">
- <el-option value="1" label="进行中"></el-option>
- <el-option value="2" label="已取消"></el-option>
- <template #prefix>状态</template>
- </el-select>
- </el-col>
- <el-col :xs="12" :sm="6" :md="6" :lg="6" :xl="4">
- <el-date-picker v-model="searchKey.create" :style="{width: '100%'}" placeholder="请选择创建时间" start-placeholder="开始时间" end-placeholder="结束时间" type="daterange" range-separator="至" @change="searchForm" />
- </el-col>
- </el-row>
- </div>
- <div class="form-line"></div>
- <div class="form-right">
- <el-button type="primary" icon="el-icon-search" @click="searchForm">搜索</el-button>
- </div>
- </div>
- </el-form>
- </fieldset>
- <storeData ref="storeData" :multiple="false" @success="handleStore"></storeData>
- </template>
- <script>
- import storeData from '@/views/manage/components/agent';
- export default {
- components: {
- storeData
- },
- data(){
- return {
- searchKey:{}
- }
- },
- methods: {
- selectStore(){
- this.$nextTick(()=>{
- this.$refs.storeData.open()
- })
- },
- handleStore(data){
- this.searchKey.poi_id = data.poi_id;
- this.searchKey.poi_name = data.poi_name;
- this.$emit("success",this.searchKey);
- },
- clearStore(){
- this.searchKey.poi_id = "";
- this.searchKey.poi_name = "";
- this.$emit("success",this.searchKey);
- },
- searchForm(){
- this.$emit("success",this.searchKey);
- }
- }
- }
- </script>
|