Commit 63bd0c8c authored by zhengke's avatar zhengke

修改

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