js-api-methods
v1.0.7
Published
commom api methods
Downloads
294
Readme
zh-api
安装
npm i js-api-methods
使用
在页面中使用
//导入
import zhApis from 'js-api-methods'
import request, { uaaUrl } from "@/utils/request";
zhApis.systemApi.init(request, uaaUrl);
//使用
zhApis.systemApi.addSysDept({
name: 'xxx',
}).then(res => {
console.log(res)
}).catch(err => {
console.log(err)
})