Commit 63bd0c8c authored by zhengke's avatar zhengke

修改

parent 8142caac
...@@ -82,8 +82,8 @@ ...@@ -82,8 +82,8 @@
</view> </view>
</view> </view>
<view class="c_row_t"> <view class="c_row_t">
<image :src="info.TipsIco" mode="aspectFill" style="width: 13px;height: 11px;"></image> <image :src="info.TipsIco" mode="aspectFill" style="width: 15px;height: 13px;"></image>
<span style='font-size: 11px;color: #121212;margin-left: 5px;'>{{info.Tips}}</span> <span style='font-size: 12px;color: #121212;margin-left: 5px;'>{{info.Tips}}</span>
</view> </view>
<view class="btnstyle" :style="{'color':info.ButtonTextColor,'background':info.ButtonColor,'border-radius':info.ButtonFilletPX+'px'}" @click="goList"> <view class="btnstyle" :style="{'color':info.ButtonTextColor,'background':info.ButtonColor,'border-radius':info.ButtonFilletPX+'px'}" @click="goList">
{{info.ButtonText?info.ButtonText:''}} {{info.ButtonText?info.ButtonText:''}}
...@@ -105,7 +105,7 @@ ...@@ -105,7 +105,7 @@
:scroll-y="true" :scroll-y="true"
style="max-height: 420px;"> style="max-height: 420px;">
<view class="txtype"> <view class="txtype">
<view class="typeitem" v-for="(item, index) in classList" :key="index" > <view class="typeitem" v-for="(item, index) in classList" :key="index" @click="radioChange(item)">
<Text>{{item.Name}}</Text> <Text>{{item.Name}}</Text>
<u-radio-group v-model="carName"> <u-radio-group v-model="carName">
<u-radio <u-radio
...@@ -113,7 +113,6 @@ ...@@ -113,7 +113,6 @@
active-color="#EE4454" active-color="#EE4454"
shape="circle" shape="circle"
:name="item.Name" :name="item.Name"
@change="radioChange(item)"
> >
</u-radio> </u-radio>
</u-radio-group> </u-radio-group>
...@@ -137,7 +136,7 @@ ...@@ -137,7 +136,7 @@
:scroll-y="true" :scroll-y="true"
style="max-height: 420px;"> style="max-height: 420px;">
<view class="txtype"> <view class="txtype">
<view class="typeitem" v-for="(item, index) in EnumList" :key="index" > <view class="typeitem" v-for="(item, index) in EnumList" :key="index" @click="radioChange2(item)">
<Text>{{item.Name}}</Text> <Text>{{item.Name}}</Text>
<u-radio-group v-model="EnumName"> <u-radio-group v-model="EnumName">
<u-radio <u-radio
...@@ -145,7 +144,6 @@ ...@@ -145,7 +144,6 @@
active-color="#EE4454" active-color="#EE4454"
shape="circle" shape="circle"
:name="item.Name" :name="item.Name"
@change="radioChange2(item)"
> >
</u-radio> </u-radio>
</u-radio-group> </u-radio-group>
...@@ -269,8 +267,7 @@ ...@@ -269,8 +267,7 @@
this.amapPlugin.getRegeo({ this.amapPlugin.getRegeo({
success: (data) => { success: (data) => {
console.log(data) this.address =data[0].name
this.address =data[0].name
this.Pickcar = data[0].regeocodeData.addressComponent.city; this.Pickcar = data[0].regeocodeData.addressComponent.city;
this.latitude = data[0].latitude; this.latitude = data[0].latitude;
this.longitude = data[0].longitude; this.longitude = data[0].longitude;
...@@ -462,7 +459,6 @@ ...@@ -462,7 +459,6 @@
}, },
res => { res => {
console.log('res', res);
if(res.data.length==3){ if(res.data.length==3){
this.msg.RegionIds = res.data[0].ID+','+res.data[1].ID+','+res.data[2].ID this.msg.RegionIds = res.data[0].ID+','+res.data[1].ID+','+res.data[2].ID
}else{ }else{
...@@ -491,7 +487,6 @@ ...@@ -491,7 +487,6 @@
let tic= 0; let tic= 0;
that.classList.forEach((x,i)=>{ that.classList.forEach((x,i)=>{
if(x.Id == msg.CarClass){ if(x.Id == msg.CarClass){
console.log(i)
tic = i tic = i
} }
}) })
......
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