Browse Source
Merge pull request #639 from flipped-aurora/gva_gormv2_dev
Gva gormv2 dev
main
奇淼(piexlmax
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with
4 additions and
4 deletions
-
server/core/server.go
-
server/initialize/router.go
-
web/src/core/gin-vue-admin.js
-
web/src/view/superAdmin/user/user.vue
|
|
@ -31,7 +31,7 @@ func RunWindowsServer() { |
|
|
|
|
|
|
|
fmt.Printf(` |
|
|
|
欢迎使用 github.com/flipped-aurora/gin-vue-admin/server |
|
|
|
当前版本:V2.4.4 |
|
|
|
当前版本:V2.4.5 alpha |
|
|
|
加群方式:微信号:shouzi_1994 QQ群:622360840 |
|
|
|
默认自动化文档地址:http://127.0.0.1%s/swagger/index.html
|
|
|
|
默认前端文件运行地址:http://127.0.0.1:8080
|
|
|
|
|
|
@ -1,7 +1,7 @@ |
|
|
|
package initialize |
|
|
|
|
|
|
|
import ( |
|
|
|
//"github.com/flipped-aurora/gva-plug-email" // 在线仓库模式
|
|
|
|
//email "github.com/flipped-aurora/gva-plug-email" // 在线仓库模式
|
|
|
|
"github.com/flipped-aurora/gin-vue-admin/server/plugin/email" // 本地插件仓库地址模式
|
|
|
|
"github.com/flipped-aurora/gin-vue-admin/server/plugin/example_plugin" |
|
|
|
"net/http" |
|
|
|
|
|
@ -22,7 +22,7 @@ Vue.use(uploader) |
|
|
|
|
|
|
|
console.log(`
|
|
|
|
欢迎使用 Gin-Vue-Admin |
|
|
|
当前版本:V2.4.4 |
|
|
|
当前版本:V2.4.5 alpha |
|
|
|
加群方式:微信:shouzi_1994 QQ群:622360840 |
|
|
|
默认自动化文档地址:http://127.0.0.1:${process.env.VUE_APP_SERVER_PORT}/swagger/index.html
|
|
|
|
默认前端文件运行地址:http://127.0.0.1:${process.env.VUE_APP_CLI_PORT}
|
|
|
|
|
|
@ -66,7 +66,7 @@ |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="头像" label-width="80px"> |
|
|
|
<div style="display:inline-block" @click="openHeaderChange"> |
|
|
|
<img v-if="userInfo.headerImg" class="header-img-box" :src="userInfo.headerImg"> |
|
|
|
<img v-if="userInfo.headerImg" class="header-img-box" :src="(userInfo.headerImg && userInfo.headerImg.slice(0, 4) !== 'http')?path+userInfo.headerImg:userInfo.headerImg"> |
|
|
|
<div v-else class="header-img-box">从媒体库选择</div> |
|
|
|
</div> |
|
|
|
</el-form-item> |
|
|
|