You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
334 B
JavaScript
21 lines
334 B
JavaScript
/**
|
|
* 门店号管理
|
|
* @author yechenhao
|
|
* @date 2020/4/14
|
|
*/
|
|
import http from '../CommonHttp'
|
|
|
|
/**
|
|
* 上传文件
|
|
* @param params
|
|
* @param call
|
|
* @returns {Promise<any | never>}
|
|
*/
|
|
export function uploadUser(params, call) {
|
|
return http.post('/store/emp/import', params).then(call);
|
|
}
|
|
|
|
export default {
|
|
uploadUser
|
|
}
|