|
@@ -53,6 +53,15 @@
|
|
|
class="input_width"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
+
|
|
|
+ <el-form-item label="状态">
|
|
|
+ <el-select v-model="searchForm.enable" class="input">
|
|
|
+ <el-option label="未选择" value=""></el-option>
|
|
|
+ <el-option label="已启用" value="true"></el-option>
|
|
|
+ <el-option label="已禁用" value="false"></el-option>
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+
|
|
|
<el-form-item>
|
|
|
<el-button
|
|
|
size="small"
|
|
@@ -62,6 +71,7 @@
|
|
|
>
|
|
|
查询
|
|
|
</el-button>
|
|
|
+
|
|
|
<el-button
|
|
|
size="small"
|
|
|
icon="el-icon-refresh"
|
|
@@ -69,6 +79,7 @@
|
|
|
>
|
|
|
重置
|
|
|
</el-button>
|
|
|
+
|
|
|
<el-button
|
|
|
size="small"
|
|
|
type="primary"
|
|
@@ -601,7 +612,8 @@ export default {
|
|
|
this.searchForm = Object.assign(this.searchForm, {
|
|
|
roleId: "",
|
|
|
loginName: "",
|
|
|
- name: ""
|
|
|
+ name: "",
|
|
|
+ enable: ""
|
|
|
});
|
|
|
},
|
|
|
handleSizeChange(val) {
|