1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- export const path = `${location.origin}/service`
- // get方法
- export function get(url, data = {}) {
- url = path + url;
- return new Promise((resolve, reject) => {
- uni.request({
- url,
- data,
- header: {
- 'Cache-Control': 'no-cache'
- },
- success(res) {
- if(res.statusCode === 200){
- resolve(res.data);
- }else{
- reject();
- uni.showToast({
- icon: 'none',
- title: '请求数据失败!'
- });
- }
- },
- fail(err) {
- reject();
- uni.showToast({
- icon: 'none',
- title: '请求数据失败!'
- });
- }
- })
- });
- }
- // post方法
- export function post(url, data = {}) {
- url = path + url;
- return new Promise((resolve, reject) => {
- uni.request({
- method: 'POST',
- url,
- data,
- header: {
- 'Cache-Control': 'no-cache'
- },
- success(res) {
- if(res.statusCode === 200){
- resolve(res.data);
- }else{
- reject();
- uni.showToast({
- icon: 'none',
- title: '请求数据失败!'
- });
- }
- },
- fail(err) {
- reject();
- uni.showToast({
- icon: 'none',
- title: '请求数据失败!'
- });
- }
- })
- });
- }
|