Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SuperMan
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
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
罗超
SuperMan
Commits
3516fae3
Commit
3516fae3
authored
Oct 12, 2019
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
图片上传修改
parent
f0cf845e
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
32 additions
and
25 deletions
+32
-25
BasicDocuments.vue
src/components/FinancialModule/BasicDocuments.vue
+1
-1
FinancialDocumentsDetail.vue
src/components/FinancialModule/FinancialDocumentsDetail.vue
+1
-1
airlineManagement.vue
src/components/Ticketing/airlineManagement.vue
+14
-3
VisaSuplier.vue
src/components/VisaCenter/VisaSuplier.vue
+16
-20
No files found.
src/components/FinancialModule/BasicDocuments.vue
View file @
3516fae3
...
...
@@ -1389,7 +1389,7 @@ export default {
show
:
false
,
},
CurrencyId
:
''
,
importFileUrl
:
this
.
domainManager
().
UploadFileUrl
+
'?cmd=User_post_FileUpload&fileType=1&fileLimit=10'
,
imageUrl
:
''
,
uploadImgList
:[],
coinGetList
:[],
...
...
src/components/FinancialModule/FinancialDocumentsDetail.vue
View file @
3516fae3
...
...
@@ -867,7 +867,7 @@ export default {
AuditListData
:{
AuditList
:[]
},
importFileUrl
:
this
.
domainManager
().
UploadFileUrl
+
'?cmd=User_post_FileUpload&fileType=1&fileLimit=10'
,
imageUrl
:
''
,
uploadImgList
:[],
FuImgList
:[],
...
...
src/components/Ticketing/airlineManagement.vue
View file @
3516fae3
...
...
@@ -354,7 +354,9 @@
</el-input>
</el-form-item>
<el-form-item
:label=
"$t('system.table_logoImg')"
>
<el-upload
class=
"avatar-uploader"
:action=
"importFileUrl"
:show-file-list=
"false"
<el-upload
class=
"avatar-uploader"
:http-request=
"UploadImage"
:show-file-list=
"false"
:on-success=
"handleAvatarSuccess"
:before-upload=
"beforeAvatarUpload"
>
<img
v-if=
"imageUrl"
:src=
"imageUrl"
class=
"avatar"
>
<i
class=
"el-icon-upload2 avatar-uploader-icon"
></i>
...
...
@@ -428,8 +430,7 @@
ticket_requirements
:
""
,
ParentId
:
"0"
},
importFileUrl
:
this
.
domainManager
().
UploadFileUrl
+
"?cmd=User_post_FileUpload&fileType=1&fileLimit=10"
,
defaultImg
:
'this.src="'
+
require
(
"../../assets/img/bg_z1@2x.png"
)
+
'"'
,
checkAll
:
false
,
checkedCities
:
[],
...
...
@@ -477,6 +478,16 @@
};
},
methods
:
{
UploadImage
(
file
)
{
let
newArr
=
[];
newArr
.
push
(
file
.
file
);
let
fileName
=
file
.
file
.
name
;
var
path
=
"/Upload/AirLine/"
;
this
.
UploadSelfFileT
(
path
,
newArr
,
x
=>
{
this
.
imageUrl
=
this
.
domainManager
().
ViittoFileUrl
+
x
.
data
.
FilePath
;
this
.
addMsg
.
image
=
x
.
data
.
FilePath
;
});
},
getList
()
{
//获取数据分页
this
.
loading
=
true
;
...
...
src/components/VisaCenter/VisaSuplier.vue
View file @
3516fae3
...
...
@@ -121,9 +121,9 @@
<el-form-item
:label=
"$t('visa.v_yinzhang')"
>
<el-upload
class=
"avatar-uploader"
:action=
"importFileUrl
"
:http-request=
"UploadImage
"
:show-file-list=
"false"
:on-success=
"handleAvatarSuccess"
:before-upload=
"beforeAvatarUpload"
>
<img
v-if=
"imageUrl"
:src=
"imageUrl"
class=
"avatar"
>
<i
class=
"el-icon-upload2 avatar-uploader-icon"
></i>
...
...
@@ -198,7 +198,7 @@ export default {
deleteID
:
""
,
typeList
:
""
,
TypeOne
:
""
,
importFileUrl
:
this
.
domainManager
().
UploadFileUrl
+
'?cmd=User_post_FileUpload&fileType=1&fileLimit=10'
,
imageUrl
:
''
,
noData
:
false
,
msg
:
{
...
...
@@ -253,6 +253,17 @@ export default {
};
},
methods
:
{
//上传图片
UploadImage
(
file
)
{
let
newArr
=
[];
newArr
.
push
(
file
.
file
);
let
fileName
=
file
.
file
.
name
;
var
path
=
"/Upload/Temporary/"
;
this
.
UploadSelfFileT
(
path
,
newArr
,
x
=>
{
this
.
imageUrl
=
this
.
domainManager
().
ViittoFileUrl
+
x
.
data
.
FilePath
;
this
.
addMsg
.
Icon
=
x
.
data
.
FilePath
;
});
},
getVisaTempleteTypeList
(){
// 获取模版类型枚举
this
.
apipost
(
"dmc_get_visa_GetVisaTempleteTypeList"
,{},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
){
...
...
@@ -262,24 +273,9 @@ export default {
}
},
err
=>
{});
},
handleAvatarSuccess
(
res
,
file
)
{
//上传
console
.
log
(
'上传文件'
,
res
)
if
(
res
.
resultCode
==
1
){
var
img_path
=
res
.
data
.
FullFilePath
this
.
addMsg
.
Icon
=
res
.
data
.
FilePath
this
.
imageUrl
=
img_path
}
},
beforeAvatarUpload
(
file
)
{
//上传-
// const isJPG = file.type === 'image/jpeg';
// const isLt2M = file.size / 1024 / 1024
<
2
;
// if (!isJPG) {
// this.$message.error('上传头像图片只能是 JPG 格式!');
// }
// if (!isLt2M) {
// this.$message.error('上传头像图片大小不能超过 2MB!');
// }
// return isJPG && isLt2M;
},
handleCurrentChange
(
val
)
{
this
.
msg
.
pageIndex
=
val
;
...
...
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