mirror of
https://gitee.com/huangge1199_admin/vue-pro.git
synced 2024-11-24 00:01:56 +08:00
18 lines
349 B
JavaScript
18 lines
349 B
JavaScript
|
import config from '@/config'
|
||
|
const baseUrl = config.baseUrl
|
||
|
export const myRequest = (option={})=>{
|
||
|
return new Promise((reslove,reject)=>{
|
||
|
uni.request({
|
||
|
url: baseUrl + option.url,
|
||
|
data :option.data,
|
||
|
method:option.method || "GET",
|
||
|
success: (result) => {
|
||
|
reslove(result)
|
||
|
},
|
||
|
fail:(error)=>{
|
||
|
reject(error)
|
||
|
}
|
||
|
})
|
||
|
})
|
||
|
}
|