|
|
@ -8,7 +8,7 @@ |
|
|
|
> |
|
|
|
<el-form-item label="收取方式" prop="incomeExpenditureMethods"> |
|
|
|
<el-select |
|
|
|
v-model="queryParams.cv.value" |
|
|
|
v-model="queryParams.conditionViews[0].value" |
|
|
|
placeholder="请选择收取方式" |
|
|
|
clearable |
|
|
|
size="small" |
|
|
@ -28,22 +28,32 @@ |
|
|
|
label-width="152px" |
|
|
|
> |
|
|
|
<el-input |
|
|
|
v-model="queryParams.data.depositBankSalaryDeposit" |
|
|
|
v-model="queryParams.conditionViews[1].value" |
|
|
|
placeholder="请输入工资保证金开户银行" |
|
|
|
clearable |
|
|
|
size="small" |
|
|
|
@keyup.enter.native="handleQuery" |
|
|
|
/> |
|
|
|
> |
|
|
|
<template slot="append"> |
|
|
|
<el-button |
|
|
|
type="primary" |
|
|
|
slot="append" |
|
|
|
icon="el-icon-search" |
|
|
|
size="small" |
|
|
|
@click="handleQuery" |
|
|
|
></el-button> |
|
|
|
</template> |
|
|
|
</el-input> |
|
|
|
</el-form-item> |
|
|
|
|
|
|
|
<el-form-item> |
|
|
|
<el-button |
|
|
|
<!-- <el-button |
|
|
|
type="cyan" |
|
|
|
icon="el-icon-search" |
|
|
|
size="mini" |
|
|
|
@click="handleQuery" |
|
|
|
>搜索</el-button |
|
|
|
> |
|
|
|
> --> |
|
|
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery" |
|
|
|
>重置</el-button |
|
|
|
> |
|
|
@ -701,7 +711,20 @@ export default { |
|
|
|
proNo: null, |
|
|
|
owerDept: null, |
|
|
|
}, |
|
|
|
cv: {}, |
|
|
|
conditionViews: [ |
|
|
|
{ |
|
|
|
name: "incomeExpenditureMethods", |
|
|
|
value: "", |
|
|
|
type: "like", |
|
|
|
isAnd: "1", |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: "depositBankSalaryDeposit", |
|
|
|
value: "", |
|
|
|
type: "like", |
|
|
|
isAnd: "1", |
|
|
|
}, |
|
|
|
], |
|
|
|
// 排序方式 |
|
|
|
params: { |
|
|
|
// 按哪个字段排序 |
|
|
@ -949,7 +972,20 @@ export default { |
|
|
|
owerDept: null, |
|
|
|
remark: null, |
|
|
|
}, |
|
|
|
cv: {}, |
|
|
|
conditionViews: [ |
|
|
|
{ |
|
|
|
name: "incomeExpenditureMethods", |
|
|
|
value: "", |
|
|
|
type: "like", |
|
|
|
isAnd: "1", |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: "depositBankSalaryDeposit", |
|
|
|
value: "", |
|
|
|
type: "like", |
|
|
|
isAnd: "1", |
|
|
|
}, |
|
|
|
], |
|
|
|
// 排序方式 |
|
|
|
params: { |
|
|
|
// 按哪个字段排序 |
|
|
@ -962,8 +998,8 @@ export default { |
|
|
|
}, |
|
|
|
/** 搜索按钮操作 */ |
|
|
|
handleQuery() { |
|
|
|
this.queryParams.cv.name = "incomeExpenditureMethods"; |
|
|
|
this.queryParams.cv.type = "like"; |
|
|
|
// this.queryParams.cv.name = "incomeExpenditureMethods"; |
|
|
|
// this.queryParams.cv.type = "like"; |
|
|
|
this.queryParams.pageNum = 1; |
|
|
|
this.getList(); |
|
|
|
}, |
|
|
|