1234567891011121314 |
- /**
- * 这是用户业务逻辑的服务
- */
- export default class UserService {
- constructor(AjaxService) {
- Object.assign(this, { AjaxService })
- this.name = 'UserService'
- }
- /* 微信一键登录 */
- appSelectLoginUser (data = {}) {
- return this.AjaxService.post({ url:'/sso/AppletsloginUsers', data, isLoading: true ,json: false })
- }
- }
|