@@ -8,7 +8,7 @@ import uView from "uview-ui";
Vue.config.productionTip = false;
-Vue.prototype.url = 'https://pet.hdlkeji.com/api';
+Vue.prototype.url = request.baseUrl;
Vue.prototype.$EventBus = new Vue();
@@ -1,6 +1,6 @@
{
"name" : "pet",
- "appid" : "__UNI__1EC8183",
+ "appid" : "__UNI__90E6241",
"description" : "",
"versionName" : "1.0.0",
"versionCode" : "100",
@@ -86,7 +86,7 @@
uni.chooseImage({
success(e) {
uni.uploadFile({
- url: 'https://pet.hdlkeji.com/api/common/upload', //仅为示例,非真实的接口地址
+ url: _this.url + '/common/upload', //仅为示例,非真实的接口地址
filePath: e.tempFilePaths[0],
header: {
"token": getToken()
@@ -68,5 +68,6 @@ async function request(mehtod, params, type, callBack) {
return promise;
}
export default {
- request
+ request,
+ baseUrl
};