驾驶证管理
This commit is contained in:
parent
bafc0368e2
commit
0ab378f2be
|
@ -61,7 +61,7 @@
|
|||
<form-col :span="span * 2" label="禁行区内断电" prop="noRidingOutage" label-width="8em" tip="开启后,当车辆进入禁行区内将断电,直到车辆离开禁行区重新上电">
|
||||
<el-switch v-model="form.noRidingOutage" active-text="断电" inactive-text="不断电"/>
|
||||
</form-col>
|
||||
<form-col :span="span * 2" label="用户认证" prop="authentication" tip="设置用户需要哪些认证才能解锁骑行">
|
||||
<form-col :span="span * 2" label="用户认证" prop="authentication" tip="设置用户需要同时满足哪些认证才能解锁骑行">
|
||||
<el-select v-model="form.authentication" placeholder="请选择认证类型" multiple style="width: 100%" >
|
||||
<el-option v-for="dict of dict.type.user_auth_type" :key="dict.value" :label="dict.label" :value="dict.value"/>
|
||||
</el-select>
|
||||
|
|
|
@ -247,7 +247,7 @@
|
|||
<div v-if="d.row.payChannelName != null">{{d.row.payChannelName | dv}}</div>
|
||||
</template>
|
||||
<template v-else-if="column.key === 'use'">
|
||||
<div v-if="d.row.duration != null">
|
||||
<div>
|
||||
<i class="el-icon-timer" />
|
||||
{{toDescriptionFromSecond(getOrderDuration(d.row)).text | dv}}
|
||||
</div>
|
||||
|
@ -256,6 +256,7 @@
|
|||
{{d.row.distance / 1000 | fix2 | dv}} 公里
|
||||
</div>
|
||||
<div v-if="d.row.endReason != null">{{d.row.endReason | dv}}</div>
|
||||
<div v-else-if="d.row.preRideFee">预估 {{d.row.preRideFee.rideFee | fix2 | dv}} 元</div>
|
||||
</template>
|
||||
<template v-else-if="column.key === 'userName'">
|
||||
<div v-if="d.row.userName != null">
|
||||
|
|
Loading…
Reference in New Issue
Block a user