1234567891011121314151617 |
- /**
- * 这是用户业务逻辑的服务
- */
- export default class UserService {
- constructor(AjaxService) {
- Object.assign(this, { AjaxService })
- this.name = 'UserService'
- }
- /* 初始化查询用户是否为正常用户 */
- appSelectLoginUser (data = {}) {
- return this.AjaxService.post({ url:'', data, isLoading: true })
- }
- /* 微信获取用户手机号登录 */
- LoginUsers (data = {}) {
- return this.AjaxService.post({ url:'', data, isLoading: true })
- }
- }
|