6.28(优化
This commit is contained in:
@@ -126,7 +126,7 @@
|
||||
<el-descriptions-item label="用户id">{{ formData.uid }}</el-descriptions-item>
|
||||
<el-descriptions-item label="返佣平台id">{{ formData.platformId }}</el-descriptions-item>
|
||||
<el-descriptions-item label="返佣平台sn">{{ formData.platformSn }}</el-descriptions-item>
|
||||
<el-descriptions-item label="车牌号">{{ formData.car.carNo }}</el-descriptions-item>
|
||||
<el-descriptions-item label="车牌号">{{ carData.carNo }}</el-descriptions-item>
|
||||
<el-descriptions-item label="返佣平台名称">{{ formData.platformName }}</el-descriptions-item>
|
||||
<el-descriptions-item label="参与编码">{{ formData.joinSn }}</el-descriptions-item>
|
||||
<el-descriptions-item label="滴友id">{{ formData.driverKey }}</el-descriptions-item>
|
||||
@@ -141,7 +141,7 @@
|
||||
<span v-if="formData.status == 3"> 审核成功</span>
|
||||
</el-descriptions-item>
|
||||
<el-descriptions-item label="动力类型">{{
|
||||
formData.car.powerType == 0 ? '纯电' : formData.car.powerType == 1 ? '油电' : '纯油'
|
||||
carData.powerType == 0 ? '纯电' : carData.powerType == 1 ? '油电' : '纯油'
|
||||
}}</el-descriptions-item>
|
||||
<el-descriptions-item label="参与时间">{{ formData.participationTime }}</el-descriptions-item>
|
||||
<el-descriptions-item label="绑定时间">{{ formData.bindingTime }}</el-descriptions-item>
|
||||
@@ -164,6 +164,7 @@ export default {
|
||||
formData:{
|
||||
car:{}
|
||||
},
|
||||
carData:{},
|
||||
//导入类型
|
||||
expType:1,
|
||||
//导入弹出层
|
||||
@@ -257,6 +258,10 @@ export default {
|
||||
this.loadingFrom = true;
|
||||
getUserDetail(id).then((res) => {
|
||||
this.formData = res;
|
||||
if(res.car){
|
||||
this.carData=res.car
|
||||
}
|
||||
|
||||
});
|
||||
},
|
||||
// 上传
|
||||
@@ -496,4 +501,8 @@ export default {
|
||||
margin-top: 15px;
|
||||
color: #1890ff;
|
||||
}
|
||||
|
||||
.descriBOX {
|
||||
padding: 30px;
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user