| | |
| | | <template> |
| | | <TableLayout :permissions="['business:member:query']"> |
| | | <!-- 搜索表单 --> |
| | | <el-form ref="searchForm" slot="search-form" :model="searchForm" label-width="100px" inline> |
| | | <el-form ref="searchForm" slot="search-form" :model="searchForm" label-width="100px" > |
| | | <el-form-item label="用户" prop="nickname"> |
| | | <el-input v-model="searchForm.nickname" style="width: 160px" placeholder="昵称/手机号/真实姓名" @keypress.enter.native="search"></el-input> |
| | | </el-form-item> |
| | |
| | | <el-form-item label="关联经销商" prop="shopName"> |
| | | <el-input v-model="searchForm.shopName" style="width: 160px" placeholder="经销商名称" @keypress.enter.native="search"></el-input> |
| | | </el-form-item> |
| | | <div class="date-style" style="display: inline"> |
| | | <el-form-item label="创建时间" prop="starttime" > |
| | | <el-date-picker |
| | | style="width: 160px" |
| | |
| | | placeholder="截止时间" |
| | | ></el-date-picker> |
| | | </el-form-item> |
| | | </div> |
| | | |
| | | <section> |
| | | <el-button type="primary" @click="search">搜索</el-button> |
| | | <el-button @click="reset">重置</el-button> |