aleyds 11 months ago
parent
commit
d43de2af6b
2 changed files with 4 additions and 4 deletions
  1. 3 3
      deploy/index.js
  2. 1 1
      src/views/system/user/profile/userAvatar.vue

+ 3 - 3
deploy/index.js

@@ -6,11 +6,11 @@ let server = {}
 console.log(chalk.white('部署环境:'+ process.env.NODE_ENV))
 if (process.env.NODE_ENV === 'prod'){
   server = {
-    host:'172.16.90.65',//服务器IP
+    host:'10.0.8.25',//服务器IP
     port:22,//服务器端口
     username:'root',//服务器ssh登录用户名
-    password:'hongwei$123',//服务器ssh登录密码
-    path:'/www/wwwroot/tourismadmin.dev.gztjy.top'//服务器web目录
+    password:'Flw$1234',//服务器ssh登录密码
+    path:'/home/data/wwwroot/admin.pro.fenglongwan.com.cn'//服务器web目录
   }
 }else{
   server = {

+ 1 - 1
src/views/system/user/profile/userAvatar.vue

@@ -137,7 +137,7 @@ export default {
         formData.append("avatarfile", data, this.options.filename);
         uploadAvatar(formData).then(response => {
           this.open = false;
-          this.options.img = process.env.VUE_APP_BASE_API + response.imgUrl;
+          this.options.img = response.imgUrl;
           store.commit('SET_AVATAR', this.options.img);
           this.$modal.msgSuccess("修改成功");
           this.visible = false;