Commit ade5c61b authored by youjie's avatar youjie

车订单 bug

parent 6e2b7661
...@@ -582,9 +582,11 @@ ...@@ -582,9 +582,11 @@
<el-table :data="[scope.row]" style="width:100%" border> <el-table :data="[scope.row]" style="width:100%" border>
<el-table-column :label="$t('objFill.caravanshopcol.t1')" min-width="100" style="background:#EAEAEA"> <el-table-column :label="$t('objFill.caravanshopcol.t1')" min-width="100" style="background:#EAEAEA">
<template slot-scope="scopes"> <template slot-scope="scopes">
<div>{{scope.row.CarModel.CarName+'/'+scope.row.CarModel.CarNo }}</div> <div v-if="scope.row.CarModel">
<span style="color: #999999;">{{ scope.row.UseDate }}</span> {{ scope.row.CarModel.CarName+'/'+scope.row.CarModel.CarNo }}
<span style="color: #999999;">{{ scope.row.UseDay }}</span> </div>
<span style="color: #999999;">{{ scope.row.UseDateStr }}</span>
<span style="color: #999999;">/ {{ scope.row.UseDay }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column :label="$t('objFill.caravanshopcol.t2')" min-width="200" style="background:#EAEAEA"> <el-table-column :label="$t('objFill.caravanshopcol.t2')" min-width="200" style="background:#EAEAEA">
...@@ -593,7 +595,7 @@ ...@@ -593,7 +595,7 @@
<div class="fz12 c9e" v-for="(x, i) in scope.row.NewOrderDetailList"> <div class="fz12 c9e" v-for="(x, i) in scope.row.NewOrderDetailList">
<span class="mr">{{$t('objFill.unit.thefirst')}} {{x.Day}} {{$t('objFill.unit.day')}}</span> <span class="mr">{{$t('objFill.unit.thefirst')}} {{x.Day}} {{$t('objFill.unit.day')}}</span>
<span class="ml mr">{{$t('objFill.driver')}}: <span class="ml mr" v-if="x.DriverModel">{{$t('objFill.driver')}}:
{{x.DriverModel.DriverName}}/{{x.DriverModel.DriverTel}}</span> {{x.DriverModel.DriverName}}/{{x.DriverModel.DriverTel}}</span>
<span class="ml mr" <span class="ml mr"
v-if="x.CopilotDriverModel">{{$t('objFill.assistantdriver')}}{{x.CopilotDriverModel.DriverName}}/{{x.CopilotDriverModel.DriverTel}}</span> v-if="x.CopilotDriverModel">{{$t('objFill.assistantdriver')}}{{x.CopilotDriverModel.DriverName}}/{{x.CopilotDriverModel.DriverTel}}</span>
......
...@@ -213,16 +213,16 @@ export default { ...@@ -213,16 +213,16 @@ export default {
return { return {
useTypes: [ useTypes: [
{ {
StatusName: this.$t('objFill.v100.pickup'),StatusId: 1 StatusName: this.$t('objFill.pickup'),StatusId: 1
}, },
{ {
StatusName: this.$t('objFill.v100.send'),StatusId: 2 StatusName: this.$t('objFill.send'),StatusId: 2
}, },
{ {
StatusName: this.$t('objFill.v100.halfday'),StatusId: 3 StatusName: this.$t('objFill.halfday'),StatusId: 3
}, },
{ {
StatusName: this.$t('objFill.v100.allday'), StatusId: 4 StatusName: this.$t('objFill.allday'), StatusId: 4
} }
], ],
userInfo: {}, userInfo: {},
......
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