赞
踩
- export function getData(callback){
- let opt = {
- method : 'get',
- url: '/user',
- success: res => {
- callback(res.data.value || [])
- },
- fail:err => {
- tipInfo(err.data.desc,"提示",'warning')
- }
- }
- $http(opt)
-
- }
- getData(data => {
- console.log(data)
- })
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。