Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
H
hls-xcmg-vue-app
Project
Project
Details
Activity
Releases
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
xugong
hls-xcmg-vue-app
Commits
20117859
Commit
20117859
authored
Oct 15, 2019
by
786817560
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
'定位修改'
parent
07bb27b8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
13 deletions
+26
-13
location.vue
src/pages/home/location.vue
+26
-13
No files found.
src/pages/home/location.vue
View file @
20117859
...
...
@@ -2,7 +2,7 @@
* @Descrip""/>User Settings Edit
* @Author: your name
* @Date: 2019-10-11 09:39:51
* @LastEditTime: 2019-10-1
4 14:05:3
4
* @LastEditTime: 2019-10-1
5 10:26:0
4
* @LastEditors: Please set LastEditors
-->
<
template
>
...
...
@@ -13,7 +13,7 @@
<span>
选择地区
</span>
</div>
</h-header>
<
h-content
>
<
section
>
<div
class=
"current-location"
>
<div
class=
"img-box"
>
<img
src=
"@/assets/homePage/location.png"
alt=
""
>
...
...
@@ -42,21 +42,30 @@
<p
:class=
"
{styles:!flag}" @click="changeStyle(1)">
{{
province
}}
</p>
<p
:class=
"
{styles:flag}" @click="changeStyle(2)">
{{
city
}}
</p>
</div>
</section>
<section>
<!-- 省份 -->
<list-item
v-if=
"province_flag"
:item-height=
"40"
>
<item
v-for=
"(item,index) in lists"
:key=
"index"
:proportion=
"[5,2]"
>
<section
slot=
"name"
@
click=
"selectProvince(item)"
>
{{
item
.
province_name
}}
</section>
</item>
</list-item>
<scroll
v-show=
"province_flag"
:pullUp=
"false"
class=
"content-scroll"
>
<list-item
:item-height=
"40"
>
<item
v-for=
"(item,index) in lists"
:key=
"index"
:proportion=
"[5,2]"
>
<section
slot=
"name"
@
click=
"selectProvince(item)"
>
{{
item
.
province_name
}}
</section>
</item>
</list-item>
</scroll>
<!-- 城市 -->
<list-item
v-if=
"!province_flag"
:item-height=
"40"
>
<item
v-for=
"(item,index) in cityList"
:key=
"index"
:proportion=
"[5,2]"
>
<section
slot=
"name"
@
click=
"selectCity(item.city_name)"
>
{{
item
.
city_name
}}
</section>
</item>
</list-item>
</h-content>
<scroll
v-show=
"!province_flag"
:pullUp=
"false"
class=
"content-scroll"
>
<list-item
:item-height=
"40"
>
<item
v-for=
"(item,index) in cityList"
:key=
"index"
:proportion=
"[5,2]"
>
<section
slot=
"name"
@
click=
"selectCity(item.city_name)"
>
{{
item
.
city_name
}}
</section>
</item>
</list-item>
</scroll>
</section>
</h-view>
</
template
>
<
script
>
...
...
@@ -97,6 +106,10 @@ export default {
window
.
localStorage
.
setItem
(
'province'
,
res
.
address
.
province
)
window
.
localStorage
.
setItem
(
'city'
,
res
.
address
.
city
)
vm
.
places
=
window
.
localStorage
.
getItem
(
'province'
)
+
'-'
+
window
.
localStorage
.
getItem
(
'city'
)
vm
.
province
=
'请选择省'
vm
.
city
=
'请选择市'
vm
.
flag
=
false
vm
.
province_flag
=
true
}
},
{
enableHighAccuracy
:
true
})
},
...
...
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