mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-05-02 00:49:59 +08:00
update运营商VIP
This commit is contained in:
@@ -119,5 +119,5 @@ public interface MemberBasicInfoMapper {
|
|||||||
*/
|
*/
|
||||||
List<MerchantInfoVO> getMerchantListByAuth(@Param("deptIds") List<String> deptIds);
|
List<MerchantInfoVO> getMerchantListByAuth(@Param("deptIds") List<String> deptIds);
|
||||||
|
|
||||||
List<MerchantVipVO> queryMerchantVipList(@Param("merchantIdList") List<String> merchantIdList);
|
List<MerchantVipVO> queryMerchantVipList(@Param("merchantIdList") List<String> merchantIdList, @Param("dto") QueryMemberInfoDTO dto);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -488,7 +488,7 @@ public class MemberBasicInfoServiceImpl implements IMemberBasicInfoService {
|
|||||||
List<MerchantInfoVO> merchantInfoVOList = loginUserDetail.getMerchantInfoVOList();
|
List<MerchantInfoVO> merchantInfoVOList = loginUserDetail.getMerchantInfoVOList();
|
||||||
List<String> merchantIdList = merchantInfoVOList.stream()
|
List<String> merchantIdList = merchantInfoVOList.stream()
|
||||||
.map(MerchantInfoVO::getMerchantId).collect(Collectors.toList());
|
.map(MerchantInfoVO::getMerchantId).collect(Collectors.toList());
|
||||||
List<MerchantVipVO> resultList = memberBasicInfoMapper.queryMerchantVipList(merchantIdList);
|
List<MerchantVipVO> resultList = memberBasicInfoMapper.queryMerchantVipList(merchantIdList, dto);
|
||||||
|
|
||||||
return resultList;
|
return resultList;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -272,5 +272,9 @@
|
|||||||
<foreach collection="merchantIdList" item="merchantId" open="(" separator="," close=")">
|
<foreach collection="merchantIdList" item="merchantId" open="(" separator="," close=")">
|
||||||
#{merchantId,jdbcType=VARCHAR}
|
#{merchantId,jdbcType=VARCHAR}
|
||||||
</foreach>
|
</foreach>
|
||||||
|
<if test="dto.mobileNumber != null and dto.mobileNumber != ''">
|
||||||
|
and t2.mobile_number like '%${dto.mobileNumber}%'
|
||||||
|
</if>
|
||||||
|
<if test="dto.memberId != null and dto.memberId != ''">and t2.member_id like '%${dto.memberId}%'</if>
|
||||||
</select>
|
</select>
|
||||||
</mapper>
|
</mapper>
|
||||||
@@ -280,6 +280,8 @@ export default {
|
|||||||
rules: {},
|
rules: {},
|
||||||
// 开卡参数
|
// 开卡参数
|
||||||
createMerchantVip: {},
|
createMerchantVip: {},
|
||||||
|
// 充值/扣款
|
||||||
|
updateMerchantVip: {},
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
|
|||||||
Reference in New Issue
Block a user