Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
贷
贷超管理后台
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
zhanhai
贷超管理后台
Commits
02d6fe88
Commit
02d6fe88
authored
Nov 23, 2021
by
caimeng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改上传的路径地址,根据环境变量
parent
d41468b3
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
18 additions
and
11 deletions
+18
-11
config.js
src/config/config.js
+1
-1
setting.vue
src/views/app/setting.vue
+3
-2
new.vue
src/views/merchant/new.vue
+5
-4
new.vue
src/views/notice/new.vue
+3
-1
edit.vue
src/views/prod/edit.vue
+3
-1
new.vue
src/views/prod/new.vue
+3
-2
No files found.
src/config/config.js
View file @
02d6fe88
...
...
@@ -3,7 +3,7 @@
**/
const
config
=
{
title
:
'贷超管理后台'
,
layout
:
'
gallery
'
,
layout
:
'
vertical
'
,
templateFolder
:
'project'
,
authentication
:
'intelligence'
,
// all , intelligence
}
...
...
src/views/app/setting.vue
View file @
02d6fe88
...
...
@@ -110,7 +110,7 @@
>
<el-upload
class=
"avatar-uploader"
action=
"/api/sysUser/upload
"
:action=
"uploadUrl
"
list-type=
"picture-card"
:show-file-list=
"false"
:on-success=
"handleSuccessBusiness"
...
...
@@ -158,7 +158,7 @@
<
script
>
import
BlockHeader
from
"@/components/blockHeader"
;
import
API
from
"@/server/api"
;
const
$API
=
process
.
env
.
VUE_APP_API_PATH
;
export
default
{
name
:
"MerchantNew"
,
components
:
{
...
...
@@ -166,6 +166,7 @@ export default {
},
data
()
{
return
{
uploadUrl
:
`
${
$API
}
/sysUser/upload`
,
data
:
null
,
dialogVisible
:
false
,
form
:
{},
...
...
src/views/merchant/new.vue
View file @
02d6fe88
...
...
@@ -52,7 +52,7 @@
>
<el-upload
class=
"avatar-uploader"
action=
"/api/sysUser/upload
"
:action=
"uploadUrl
"
list-type=
"picture-card"
:show-file-list=
"false"
:on-success=
"handleSuccessBusiness"
...
...
@@ -76,7 +76,7 @@
>
<el-upload
class=
"avatar-uploader"
action=
"/api/sysUser/upload
"
:action=
"uploadUrl
"
list-type=
"picture-card"
:show-file-list=
"false"
:on-success=
"handleSuccessLoan"
...
...
@@ -100,7 +100,7 @@
>
<el-upload
class=
"avatar-uploader"
action=
"/api/sysUser/upload
"
:action=
"uploadUrl
"
list-type=
"picture-card"
:show-file-list=
"false"
:on-success=
"handleSuccessOffice"
...
...
@@ -148,7 +148,7 @@
<
script
>
import
BlockHeader
from
"@/components/blockHeader"
;
import
API
from
"@/server/api"
;
const
$API
=
process
.
env
.
VUE_APP_API_PATH
;
export
default
{
name
:
"MerchantNew"
,
components
:
{
...
...
@@ -156,6 +156,7 @@ export default {
},
data
()
{
return
{
uploadUrl
:
`
${
$API
}
/sysUser/upload`
,
tenantNo
:
""
,
form
:
{
tenantFullName
:
""
,
...
...
src/views/notice/new.vue
View file @
02d6fe88
...
...
@@ -15,7 +15,7 @@
>
<el-upload
class=
"avatar-uploader"
action=
"/api/sysUser/upload
"
:action=
"uploadUrl
"
list-type=
"picture-card"
:show-file-list=
"false"
:on-success=
"handleSuccessLogo"
...
...
@@ -85,6 +85,7 @@
<
script
>
import
BlockHeader
from
"@/components/blockHeader"
;
import
API
from
"@/server/api"
;
const
$API
=
process
.
env
.
VUE_APP_API_PATH
;
export
default
{
name
:
"MerchantNew"
,
...
...
@@ -93,6 +94,7 @@ export default {
},
data
()
{
return
{
uploadUrl
:
`
${
$API
}
/sysUser/upload`
,
form
:
{
znxTitle
:
"mc公告标题"
,
znxTitleUrl
:
""
,
...
...
src/views/prod/edit.vue
View file @
02d6fe88
...
...
@@ -59,7 +59,7 @@
>
<el-upload
class=
"avatar-uploader"
action=
"/api/sysUser/upload
"
:action=
"uploadUrl
"
list-type=
"picture-card"
:show-file-list=
"false"
:on-success=
"handleSuccessLogo"
...
...
@@ -312,6 +312,7 @@
<
script
>
import
BlockHeader
from
"@/components/blockHeader"
;
import
API
from
"@/server/api"
;
const
$API
=
process
.
env
.
VUE_APP_API_PATH
;
export
default
{
name
:
"MerchantNew"
,
...
...
@@ -320,6 +321,7 @@ export default {
},
data
()
{
return
{
uploadUrl
:
`
${
$API
}
/sysUser/upload`
,
appNo
:
''
,
form
:
{
tenantNo
:
""
,
...
...
src/views/prod/new.vue
View file @
02d6fe88
...
...
@@ -58,7 +58,7 @@
>
<el-upload
class=
"avatar-uploader"
action=
"/api/sysUser/upload
"
:action=
"uploadUrl
"
list-type=
"picture-card"
:show-file-list=
"false"
:on-success=
"handleSuccessLogo"
...
...
@@ -311,7 +311,7 @@
<
script
>
import
BlockHeader
from
"@/components/blockHeader"
;
import
API
from
"@/server/api"
;
const
$API
=
process
.
env
.
VUE_APP_API_PATH
;
export
default
{
name
:
"MerchantNew"
,
components
:
{
...
...
@@ -319,6 +319,7 @@ export default {
},
data
()
{
return
{
uploadUrl
:
`
${
$API
}
/sysUser/upload`
,
form
:
{
tenantNo
:
""
,
abutmentWay
:
""
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment