| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <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-input v-model="searchKey.unique" placeholder="抖音号" clearable :style="{ width: '100%' }" @keyup.enter="searchForm()">
- <template #prepend>抖音号</template>
- </el-input>
- </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>
|