Commit a0cf7120 authored by 李晓兵's avatar 李晓兵

Merge branch 'develop' of https://hel.hand-china.com/xugong/hls-xcmg-vue-app into develop

parents 483005f8 edb9778b
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* @Descrip""/>User Settings Edit * @Descrip""/>User Settings Edit
* @Author: your name * @Author: your name
* @Date: 2019-10-11 09:39:51 * @Date: 2019-10-11 09:39:51
* @LastEditTime: 2019-10-14 14:05:34 * @LastEditTime: 2019-10-15 10:26:04
* @LastEditors: Please set LastEditors * @LastEditors: Please set LastEditors
--> -->
<template> <template>
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
<span>选择地区</span> <span>选择地区</span>
</div> </div>
</h-header> </h-header>
<h-content> <section>
<div class="current-location"> <div class="current-location">
<div class="img-box"> <div class="img-box">
<img src="@/assets/homePage/location.png" alt=""> <img src="@/assets/homePage/location.png" alt="">
...@@ -42,21 +42,30 @@ ...@@ -42,21 +42,30 @@
<p :class="{styles:!flag}" @click="changeStyle(1)">{{ province }}</p> <p :class="{styles:!flag}" @click="changeStyle(1)">{{ province }}</p>
<p :class="{styles:flag}" @click="changeStyle(2)">{{ city }}</p> <p :class="{styles:flag}" @click="changeStyle(2)">{{ city }}</p>
</div> </div>
</section>
<section>
<!-- 省份 --> <!-- 省份 -->
<list-item v-if="province_flag" :item-height="40"> <scroll v-show="province_flag" :pullUp="false" class="content-scroll">
<item v-for="(item,index) in lists" :key="index" :proportion="[5,2]">
<section slot="name" @click="selectProvince(item)">{{ item.province_name }}</section> <list-item :item-height="40">
</item> <item v-for="(item,index) in lists" :key="index" :proportion="[5,2]">
</list-item> <section slot="name" @click="selectProvince(item)">{{ item.province_name }}</section>
</item>
</list-item>
</scroll>
<!-- 城市 --> <!-- 城市 -->
<list-item v-if="!province_flag" :item-height="40"> <scroll v-show="!province_flag" :pullUp="false" class="content-scroll">
<item v-for="(item,index) in cityList" :key="index" :proportion="[5,2]">
<section slot="name" @click="selectCity(item.city_name)">{{ item.city_name }}</section> <list-item :item-height="40">
</item> <item v-for="(item,index) in cityList" :key="index" :proportion="[5,2]">
</list-item> <section slot="name" @click="selectCity(item.city_name)">{{ item.city_name }}</section>
</h-content> </item>
</list-item>
</scroll>
</section>
</h-view> </h-view>
</template> </template>
<script> <script>
...@@ -97,6 +106,10 @@ export default { ...@@ -97,6 +106,10 @@ export default {
window.localStorage.setItem('province', res.address.province) window.localStorage.setItem('province', res.address.province)
window.localStorage.setItem('city', res.address.city) window.localStorage.setItem('city', res.address.city)
vm.places = window.localStorage.getItem('province') + '-' + window.localStorage.getItem('city') vm.places = window.localStorage.getItem('province') + '-' + window.localStorage.getItem('city')
vm.province = '请选择省'
vm.city = '请选择市'
vm.flag = false
vm.province_flag = true
} }
}, {enableHighAccuracy: true}) }, {enableHighAccuracy: true})
}, },
......
...@@ -53,7 +53,7 @@ export default { ...@@ -53,7 +53,7 @@ export default {
methods: { methods: {
toPayEntry (money) { toPayEntry (money) {
this.$router.push({ this.$router.push({
name: 'PayEntry', name: 'MarginPayEntry',
params: { params: {
money, money,
}, },
......
...@@ -95,7 +95,7 @@ export default { ...@@ -95,7 +95,7 @@ export default {
}, },
methods: { methods: {
addRows (e) { addRows (e) {
let addNum = parseInt(e.length / 25) let addNum = parseInt(e.length / 16)
if (addNum === 0) { if (addNum === 0) {
this.$refs.myTestarea.rows = 1 this.$refs.myTestarea.rows = 1
} else if (addNum >= addNum - 1 && addNum < addNum + 1) { } else if (addNum >= addNum - 1 && addNum < addNum + 1) {
...@@ -103,7 +103,7 @@ export default { ...@@ -103,7 +103,7 @@ export default {
} }
}, },
addRowsLive (e) { addRowsLive (e) {
let addNum = parseInt(e.length / 25) let addNum = parseInt(e.length / 16)
if (addNum === 0) { if (addNum === 0) {
this.$refs.myTestareaLive.rows = 1 this.$refs.myTestareaLive.rows = 1
} else if (addNum >= addNum - 1 && addNum < addNum + 1) { } else if (addNum >= addNum - 1 && addNum < addNum + 1) {
......
...@@ -143,8 +143,8 @@ ...@@ -143,8 +143,8 @@
slot="content" slot="content"
ref="myTestareaLive" ref="myTestareaLive"
v-model="baseInfo.living_address" v-model="baseInfo.living_address"
cols="34"
rows="1" rows="1"
cols="30"
placeholder="请输入居住地址" placeholder="请输入居住地址"
@input="addRowsLive(baseInfo.living_address)" @input="addRowsLive(baseInfo.living_address)"
/> />
...@@ -600,7 +600,7 @@ export default { ...@@ -600,7 +600,7 @@ export default {
}) })
}, },
addRows (e) { addRows (e) {
let addNum = parseInt(e.length / 25) let addNum = parseInt(e.length / 16)
if (addNum === 0) { if (addNum === 0) {
this.$refs.myTestarea.rows = 1 this.$refs.myTestarea.rows = 1
} else if (addNum >= addNum - 1 && addNum < addNum + 1) { } else if (addNum >= addNum - 1 && addNum < addNum + 1) {
...@@ -608,7 +608,8 @@ export default { ...@@ -608,7 +608,8 @@ export default {
} }
}, },
addRowsLive (e) { addRowsLive (e) {
let addNum = parseInt(e.length / 25) let addNum = parseInt(e.length / 16)
console.log(addNum)
if (addNum === 0) { if (addNum === 0) {
this.$refs.myTestareaLive.rows = 1 this.$refs.myTestareaLive.rows = 1
} else if (addNum >= addNum - 1 && addNum < addNum + 1) { } else if (addNum >= addNum - 1 && addNum < addNum + 1) {
......
...@@ -564,7 +564,7 @@ export default { ...@@ -564,7 +564,7 @@ export default {
}) })
}, },
addRows (e) { addRows (e) {
let addNum = parseInt(e.length / 25) let addNum = parseInt(e.length / 16)
if (addNum === 0) { if (addNum === 0) {
this.$refs.myTestarea.rows = 1 this.$refs.myTestarea.rows = 1
} else if (addNum >= addNum - 1 && addNum < addNum + 1) { } else if (addNum >= addNum - 1 && addNum < addNum + 1) {
...@@ -572,7 +572,7 @@ export default { ...@@ -572,7 +572,7 @@ export default {
} }
}, },
addRowsLive (e) { addRowsLive (e) {
let addNum = parseInt(e.length / 25) let addNum = parseInt(e.length / 16)
if (addNum === 0) { if (addNum === 0) {
this.$refs.myTestareaLive.rows = 1 this.$refs.myTestareaLive.rows = 1
} else if (addNum >= addNum - 1 && addNum < addNum + 1) { } else if (addNum >= addNum - 1 && addNum < addNum + 1) {
...@@ -580,7 +580,7 @@ export default { ...@@ -580,7 +580,7 @@ export default {
} }
}, },
addAddressRows (e) { addAddressRows (e) {
let addNum = parseInt(e.length / 25) let addNum = parseInt(e.length / 16)
if (addNum === 0) { if (addNum === 0) {
this.$refs.address.rows = 1 this.$refs.address.rows = 1
} else if (addNum >= addNum - 1 && addNum < addNum + 1) { } else if (addNum >= addNum - 1 && addNum < addNum + 1) {
......
...@@ -139,7 +139,7 @@ export default { ...@@ -139,7 +139,7 @@ export default {
}) })
}, },
addRows (e) { addRows (e) {
let addNum = parseInt(e.length / 25) let addNum = parseInt(e.length / 16)
if (addNum === 0) { if (addNum === 0) {
this.$refs.myTestarea.rows = 1 this.$refs.myTestarea.rows = 1
} else if (addNum >= addNum - 1 && addNum < addNum + 1) { } else if (addNum >= addNum - 1 && addNum < addNum + 1) {
...@@ -147,7 +147,8 @@ export default { ...@@ -147,7 +147,8 @@ export default {
} }
}, },
addRowsLive (e) { addRowsLive (e) {
let addNum = parseInt(e.length / 25) let addNum = parseInt(e.length / 16)
console.log(addNum)
if (addNum === 0) { if (addNum === 0) {
this.$refs.myTestareaLive.rows = 1 this.$refs.myTestareaLive.rows = 1
} else if (addNum >= addNum - 1 && addNum < addNum + 1) { } else if (addNum >= addNum - 1 && addNum < addNum + 1) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment