Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
frontend
/
qqxb-self-service
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
d87568e0
authored
Jun 27, 2020
by
miss_lian
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
upate
parent
667bec7a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
3 deletions
src/components/common/cityList.vue
src/views/archives/personInfo.vue
src/views/archives/socialInfo.vue
src/components/common/cityList.vue
View file @
d87568e0
...
...
@@ -108,6 +108,7 @@ export default class cityList extends Vue {
this
.
$emit
(
"childCityList"
,
ary
);
}
onCancel
(){
this
.
$emit
(
"cancelCityList"
);
//this.showCancel=false
}
}
...
...
src/views/archives/personInfo.vue
View file @
d87568e0
...
...
@@ -59,7 +59,7 @@
/>
<van-popup
v-model=
"showBirthplace"
position=
"bottom"
>
<!--
<city-list
@
childCityList=
"birthCity"
:showBirthplace=
"showCancel"
/>
-->
<city-list
@
childCityList=
"birthCity"
/>
<city-list
@
childCityList=
"birthCity"
@
cancelCityList=
"cancelCityList"
/>
</van-popup>
<!-- 民族 -->
<van-field
...
...
@@ -157,7 +157,7 @@
@
click=
"showFile = true"
/>
<van-popup
v-model=
"showFile"
position=
"bottom"
>
<city-list
@
childCityList=
"localCity"
/>
<city-list
@
childCityList=
"localCity"
@
cancelCityList=
"cancelCityList"
/>
</van-popup>
<!-- 开始工作时间 -->
<van-field
...
...
@@ -386,6 +386,10 @@ export default class personInfo extends Vue {
}
});
}
cancelCityList
(){
this
.
showFile
=
false
;
this
.
showBirthplace
=
false
;
}
}
</
script
>
...
...
src/views/archives/socialInfo.vue
View file @
d87568e0
...
...
@@ -126,7 +126,7 @@
</van-popup>
<!-- 原社保缴纳省市 -->
<van-popup
v-model=
"showSocialCity"
position=
"bottom"
>
<city-list
@
childCityList=
"socialCity"
/>
<city-list
@
childCityList=
"socialCity"
@
cancelCityList=
"cancelCityList"
/>
</van-popup>
<!-- 与原单位关系 -->
<van-popup
v-model=
"showRelationUnit"
position=
"bottom"
>
...
...
@@ -332,6 +332,9 @@ export default class socialInfo extends Vue {
this
.
getSalaryInfo
();
this
.
getSocialInfo
();
}
cancelCityList
(){
this
.
showSocialCity
=
false
;
}
}
</
script
>
...
...
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