|
@@ -3,6 +3,7 @@ package com.quansu.heifengwuliu.vmodel
|
|
|
import android.app.Activity
|
|
|
import android.app.Application
|
|
|
import android.text.TextUtils
|
|
|
+import android.util.Log
|
|
|
import androidx.databinding.Bindable
|
|
|
import androidx.lifecycle.MutableLiveData
|
|
|
import com.hwangjr.rxbus.RxBus
|
|
@@ -215,7 +216,20 @@ class VehicleInfoVModel(application: Application) : BViewModel<BRepository>(appl
|
|
|
carBrand=bean.model
|
|
|
carUse=bean.use_character
|
|
|
number=bean.plate_num
|
|
|
+ //车辆类型
|
|
|
+ if(null!=info.value?.car_cate_z) {
|
|
|
|
|
|
+ for (item in info.value!!.car_cate_z) {
|
|
|
+
|
|
|
+ if(item.name.contains(bean.vehicle_type)){
|
|
|
+ carCate_code= item.code
|
|
|
+ carCate.value = item.name
|
|
|
+ return@doOnNext
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
|
|
|
}else{//第二面
|
|
|
drivingSn=bean.record
|
|
@@ -230,6 +244,14 @@ class VehicleInfoVModel(application: Application) : BViewModel<BRepository>(appl
|
|
|
}else{
|
|
|
carSizeH=ss[2]
|
|
|
}
|
|
|
+ //总质量
|
|
|
+ var totalQuality=bean.total_quality.substring(0,bean.total_quality.length-2)
|
|
|
+ if(totalQuality.toDouble()/1000>4.5){
|
|
|
+ tonnage.value=2
|
|
|
+ }else{
|
|
|
+ tonnage.value=1
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
}
|
|
|
|