Blame view

绿纤uni-app/apis/modules/clue.js 419 Bytes
29608708   李宇   增加unia-app和html
1
2
3
4
5
6
7
  import request from '@/service/request.js'
  import config from '@/common/config.js'
  
  export default {
  	// 获取客户线索列表
  	getCustomerClues(params) {
  		return request.get(`${config.getApiBaseUrl()}/api/Extend/LqKhxx`, params);
a856ffdc   李宇   ```
8
9
10
11
12
  	},
  	
  	// 获取会员剩余权益
  	getMemberRemainingItems(memberId) {
  		return request.get(`${config.getApiBaseUrl()}/api/Extend/lqkhxx/GetMemberRemainingItems`, { memberId });
29608708   李宇   增加unia-app和html
13
14
  	}
  }