Commit 3dd4eb51 by maxiaohan

认定页面删除功能接口调整

parent ed7d46ce
...@@ -7,11 +7,10 @@ ...@@ -7,11 +7,10 @@
class="input-with-select" class="input-with-select"
> >
<el-select v-model="select" slot="prepend" placeholder="请选择"> <el-select v-model="select" slot="prepend" placeholder="请选择">
<el-option label="餐厅名" value="1"></el-option> <el-option label="指纹" value="1"></el-option>
<el-option label="订单号" value="2"></el-option> <el-option label="掌纹" value="2"></el-option>
<el-option label="用户电话" value="3"></el-option>
</el-select> </el-select>
<el-button slot="append">筛选</el-button> <el-button slot="append" @click="search">筛选</el-button>
</el-input> </el-input>
</div> </div>
<div class="lt_cnadidate_checked"> <div class="lt_cnadidate_checked">
...@@ -49,9 +48,14 @@ export default { ...@@ -49,9 +48,14 @@ export default {
checked: true, checked: true,
tableData: candidates, tableData: candidates,
input: "", input: "",
select: "", select: 1,
input3: "" input3: ""
}; };
},
methods: {
search() {
console.info(this.select);
}
} }
}; };
const candidates = [ const candidates = [
...@@ -117,4 +121,10 @@ div { ...@@ -117,4 +121,10 @@ div {
height: 40px; height: 40px;
width: 100%; width: 100%;
} }
.el-select .el-input {
width: 130px;
}
.input-with-select .el-input-group__prepend {
background-color: #fff;
}
</style> </style>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment