Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
T
techbook
Project
Project
Details
Activity
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
front-end-dev
techbook
Commits
f33ec241
Commit
f33ec241
authored
Jan 14, 2021
by
anxixi
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
66b5ceb1
ab361a89
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
5 deletions
+8
-5
.env
.env
+1
-1
.env.dev
.env.dev
+1
-1
version.json
public/version.json
+2
-1
main.js
src/main.js
+1
-1
mineOrOther.vue
src/views/mobile/mineOrOther.vue
+3
-1
No files found.
.env
View file @
f33ec241
NODE_ENV="production"
VUE_APP_URL="prod"
API_ROOT="/"
VUE_APP_UPDATED="9.0.1
1
"
VUE_APP_UPDATED="9.0.1
2
"
VUE_APP_UPLOAD_IMG="/base/upload/uploadPicture"
VUE_APP_UPLOAD_FILE="/base/upload/uploadFile"
VUE_APP_UPLOAD_LOGO="/base/upload/uploadLogo"
.env.dev
View file @
f33ec241
NODE_ENV="production"
VUE_APP_URL="dev"
API_ROOT="/"
VUE_APP_UPDATED="9.0.1
1
"
VUE_APP_UPDATED="9.0.1
2
"
VUE_APP_UPLOAD_IMG="/base/upload/uploadPicture"
VUE_APP_UPLOAD_FILE="/base/upload/uploadFile"
VUE_APP_UPLOAD_LOGO="/base/upload/uploadLogo"
public/version.json
View file @
f33ec241
{
"version"
:
"9.0.1
1
"
"version"
:
"9.0.1
2
"
}
\ No newline at end of file
src/main.js
View file @
f33ec241
...
...
@@ -162,7 +162,7 @@ var getCookie = (function(){
})();
import
{
Loading
,
MessageBox
}
from
'element-ui'
;
import
{
Toast
}
from
'mint-ui'
;
var
vvv
=
"9.0.1
1
"
var
vvv
=
"9.0.1
2
"
window
.
localStorage
.
setItem
(
"_version_"
,
vvv
);
if
(
vvv
!=
process
.
env
.
VUE_APP_UPDATED
){
location
.
reload
();
...
...
src/views/mobile/mineOrOther.vue
View file @
f33ec241
...
...
@@ -875,11 +875,13 @@
};
api
.
selectByEmpId
(
params
).
then
(
res
=>
{
if
(
res
.
code
==
0
)
{
if
(
this
.
$route
.
query
.
empId
)
this
.
getStatusFunc
();
this
.
empuser
=
res
.
result
;
if
(
this
.
$route
.
query
.
empId
)
{
var
email
=
this
.
userInfo
.
empAccount
.
indexOf
(
"@"
)
>
-
1
?
this
.
userInfo
.
empAccount
:
this
.
userInfo
.
empAccount
+
"@techcode.com"
;
sessionStorage
.
setItem
(
"liveEmail"
,
email
);
sessionStorage
.
setItem
(
"liveName"
,
res
.
result
.
empOtherName
);
this
.
getStatusFunc
();
}
this
.
mineList
.
push
({
id
:
5
,
name
:
"comment"
,
...
...
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