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
a635b79b
authored
2020-05-22 20:25:46 +0800
by
simon
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
#24 处理
1 parent
7968d17a
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
4 deletions
src/components/home-bk/dropdown/dropdown.js
src/pages/join-us/join-us.vue
src/components/home-bk/dropdown/dropdown.js
View file @
a635b79
...
...
@@ -62,7 +62,7 @@ export default {
},
methods
:
{
onNavHandler
()
{
console
.
log
(
"this.dataObj:"
,
this
.
dataObj
);
//
console.log("this.dataObj:", this.dataObj);
let
path
=
this
.
dataObj
&&
this
.
dataObj
.
path
||
""
;
if
(
path
)
{
this
.
$router
.
push
({
...
...
src/pages/join-us/join-us.vue
View file @
a635b79
<
template
>
<div
class=
"content"
>
{{
locale
==
'en'
?
'Currently no position opening'
:
locale
==
'zh'
?
'暂无空缺'
:
'暫無空缺'
}}
</div>
</
template
>
<
style
lang=
"scss"
scoped
>
.content
{
font-size
:
18px
;
display
:
flex
;
justify-content
:
center
;
align-items
:
center
;
height
:
500px
;
}
</
style
>
<
script
>
export
default
{};
export
default
{
computed
:
{
locale
()
{
return
this
.
$i18n
.
locale
||
"tc"
;
}
}
};
</
script
>
\ No newline at end of file
...
...
Please
register
or
sign in
to post a comment