|
@@ -23,7 +23,7 @@
|
|
|
<view
|
|
|
style=" min-width: 180rpx; max-width: 200rpx;margin-left:20rpx;margin-right:10rpx;flex:1; ">
|
|
|
|
|
|
- <uni-combox class='font2' ref="raidus" :border="false" v-model="raidus"
|
|
|
+ <uni-combox class='font2' ref="radius" :border="false" v-model="radius"
|
|
|
:candidates="radiuses" @updateModel='updateRadius'
|
|
|
@updateSelector="updateTypeSelector('0')"></uni-combox>
|
|
|
</view>
|
|
@@ -606,7 +606,7 @@ import {
|
|
|
},
|
|
|
|
|
|
area: '荆州市',
|
|
|
- raidus: '10公里',
|
|
|
+ radius: '10公里',
|
|
|
type: '全部',
|
|
|
stationType: '全部',
|
|
|
longitude: '',
|
|
@@ -648,7 +648,7 @@ import {
|
|
|
}
|
|
|
this.$nextTick(() => {
|
|
|
this.type = this.info.obc_type[this.preference.obc_type_index].text;
|
|
|
- this.raidus = this.info.miles_type[this.preference.miles_index].text;
|
|
|
+ this.radius = this.info.miles_type[this.preference.miles_index].text;
|
|
|
this.stationType = this.info.obc_stationType[this.preference.obc_stationType_index].text;
|
|
|
|
|
|
|
|
@@ -966,7 +966,7 @@ import {
|
|
|
}
|
|
|
|
|
|
this.type = this.info.obc_type[this.preference.obc_type_index].text;
|
|
|
- this.raidus = this.info.miles_type[this.preference.miles_index].text;
|
|
|
+ this.radius = this.info.miles_type[this.preference.miles_index].text;
|
|
|
this.stationType = this.info.obc_stationType[this.preference.obc_stationType_index].text;
|
|
|
|
|
|
if (this.preference.save_preference) {
|
|
@@ -1039,8 +1039,8 @@ import {
|
|
|
data1.type = this.info.obc_type[this.preference.obc_type_index].value;
|
|
|
|
|
|
if (this.info.miles_type[this.preference.miles_index].distance != null){
|
|
|
- data1.raidus = this.info.miles_type[this.preference.miles_index].distance.toString();
|
|
|
- this.tagBtnAcList.push(data1.raidus+"公里")
|
|
|
+ data1.radius = this.info.miles_type[this.preference.miles_index].distance.toString();
|
|
|
+ this.tagBtnAcList.push(data1.radius+"公里")
|
|
|
}
|
|
|
|
|
|
if(data1.type){
|
|
@@ -1153,7 +1153,7 @@ import {
|
|
|
},
|
|
|
updateTypeSelector(val) {
|
|
|
|
|
|
- var sz = ["raidus", "type", 'city']
|
|
|
+ var sz = ["radius", "type", 'city']
|
|
|
for (var i in sz) {
|
|
|
if (i == val && val != '') {
|
|
|
|