Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
dev
/
pingan-life-index-pro
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
0bf4a78c
authored
2020-02-25 15:00:27 +0800
by
joe
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
#295
1 parent
c80b9a83
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
src/components/clarms/clarms-plugins-upload.js
src/components/clarms/clarms-plugins-upload.js
View file @
0bf4a78
...
...
@@ -62,6 +62,9 @@ export default {
}
return
false
;
},
lan
()
{
return
this
.
$i18n
.
locale
;
},
i18n
()
{
return
this
.
$i18n
.
messages
&&
this
.
$i18n
.
locale
?
this
.
$i18n
.
messages
[
this
.
$i18n
.
locale
]
:
{};
},
...
...
@@ -179,14 +182,14 @@ export default {
}
else
{
clearInterval
(
item
.
intervial
);
item
.
intervial
=
false
;
item
.
err
=
"失败"
;
item
.
err
=
this
.
lan
==
'en'
?
"Fail"
:
this
.
lan
==
'tc'
?
"失敗"
:
"失败"
;
this
.
$set
(
this
,
"images"
,
this
.
images
);
this
.
refreshUploadNumber
();
}
}).
catch
(
err
=>
{
clearInterval
(
item
.
intervial
);
item
.
intervial
=
false
;
item
.
err
=
"失败"
;
item
.
err
=
this
.
lan
==
'en'
?
"Fail"
:
this
.
lan
==
'tc'
?
"失敗"
:
"失败"
;
this
.
$set
(
this
,
"images"
,
this
.
images
);
this
.
refreshUploadNumber
();
});
...
...
Please
register
or
sign in
to post a comment