Compare commits
2 Commits
ddfc33f708
...
8e7aecb0ab
Author | SHA1 | Date | |
---|---|---|---|
8e7aecb0ab | |||
4710b56904 |
|
@ -51,6 +51,14 @@
|
|||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="操作人" prop="createBy">
|
||||
<el-input
|
||||
v-model="queryParams.createBy"
|
||||
placeholder="请输入操作人手机"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
||||
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
||||
|
|
|
@ -564,6 +564,10 @@ export default {
|
|||
pageNum: 1,
|
||||
pageSize: 20,
|
||||
},
|
||||
queryParams2: {
|
||||
pageNum: 1,
|
||||
pageSize: 999,
|
||||
},
|
||||
// 表单参数
|
||||
form: {
|
||||
payChannel: 2,
|
||||
|
@ -661,7 +665,7 @@ export default {
|
|||
},
|
||||
methods: {
|
||||
todetal(row){
|
||||
const deptId = row.deptId
|
||||
const deptId = row.deptId
|
||||
this.$router.push(`/system/deptDetail/index/${deptId}`);
|
||||
},
|
||||
withdrawSubmit(){
|
||||
|
@ -810,7 +814,7 @@ export default {
|
|||
this.areaOptions = response.rows;
|
||||
this.form.parentId = 100;
|
||||
});
|
||||
listChannel(this.queryParams).then(response => {
|
||||
listChannel(this.queryParams2).then(response => {
|
||||
this.channelOptions = response.rows;
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue
Block a user