mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-06-13 11:49:49 +08:00
update 财务管理页面添加筛选参数
This commit is contained in:
@@ -17,10 +17,26 @@ public class QueryMerchantInfoDTO {
|
|||||||
|
|
||||||
private Integer pageNum;
|
private Integer pageNum;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 运营商id
|
||||||
|
*/
|
||||||
private String merchantId;
|
private String merchantId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 运营商名称
|
||||||
|
*/
|
||||||
private String merchantName;
|
private String merchantName;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 负责人名称
|
||||||
|
*/
|
||||||
|
private String managerName;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 负责人手机号
|
||||||
|
*/
|
||||||
|
private String managerPhone;
|
||||||
|
|
||||||
private List<String> deptIds;
|
private List<String> deptIds;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -400,5 +400,11 @@
|
|||||||
<if test="dto.merchantId != null and dto.merchantId != ''">
|
<if test="dto.merchantId != null and dto.merchantId != ''">
|
||||||
and t1.id = #{dto.merchantId,jdbcType=VARCHAR}
|
and t1.id = #{dto.merchantId,jdbcType=VARCHAR}
|
||||||
</if>
|
</if>
|
||||||
|
<if test="dto.managerName != null and dto.managerName != ''">
|
||||||
|
and t1.manager_name = #{dto.managerName,jdbcType=VARCHAR}
|
||||||
|
</if>
|
||||||
|
<if test="dto.managerPhone != null and dto.managerPhone != ''">
|
||||||
|
and t1.manager_phone = #{dto.managerPhone,jdbcType=VARCHAR}
|
||||||
|
</if>
|
||||||
</select>
|
</select>
|
||||||
</mapper>
|
</mapper>
|
||||||
@@ -18,6 +18,22 @@
|
|||||||
/>
|
/>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
<el-form-item label="联系人名称" prop="managerName">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.managerName"
|
||||||
|
placeholder="请输入联系人名称"
|
||||||
|
clearable
|
||||||
|
@keyup.enter.native="handleQuery"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="管理员联系方式" prop="managerPhone">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.managerPhone"
|
||||||
|
placeholder="请输入管理员联系方式"
|
||||||
|
clearable
|
||||||
|
@keyup.enter.native="handleQuery"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button
|
<el-button
|
||||||
type="primary"
|
type="primary"
|
||||||
@@ -156,6 +172,8 @@ export default {
|
|||||||
pageSize: 10,
|
pageSize: 10,
|
||||||
merchantId: null,
|
merchantId: null,
|
||||||
merchantName: null,
|
merchantName: null,
|
||||||
|
managerName: null,
|
||||||
|
managerPhone: null,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user