Commit 5231ecfb authored by 黄奎's avatar 黄奎

页面修改

parent e30440e5
......@@ -43,9 +43,11 @@
<th width="110">行程天数</th>
<th width="110">人数</th>
<th width="110">用车类型</th>
<th width="110">总价</th>
<th width="110">申请人</th>
<th width="130">下单时间</th>
<th width="110">状态</th>
<th width="110">报价状态</th>
<th width="110">确认状态</th>
<th width="110">操作</th>
</tr>
<tbody v-for="(item,index) in DataList" :key="index">
......@@ -74,6 +76,9 @@
<td>
{{item.BusTypeName}}
</td>
<td>
{{item.TotalPrice}}
</td>
<td>
{{item.CustomerName}}
</td>
......@@ -83,6 +88,16 @@
<td>
{{item.OfferStateName}}
</td>
<td>
<template v-if="item.IsSure==0">
<span style="color:red">待确认</span>
</template>
<template v-else>
<span style="color:red">已确认</span><br/>
<span style="color:red">确认人:{{item.SureByName}}</span><br/>
<span style="color:red">确认时间:{{item.SureTime}}</span>
</template>
</td>
<td>
<div class="w100 link">
<span v-if="item.OfferState==2" @click="SetTripBusPrice(item,1)" style="color:blue">报价</span>
......@@ -138,11 +153,11 @@
</el-col>
</el-row>
<el-row>
<el-col :span="24">
<el-col :span="12">
<el-col :span="4" style="text-align:right">接机信息:</el-col>
<el-col :span="8" style="text-align:left">{{postMsg.PickUpInfo}}</el-col>
</el-col>
<el-col :span="24">
<el-col :span="12">
<el-col :span="4" style="text-align:right"></el-col>
<el-col :span="8" style="text-align:left"></el-col>
</el-col>
......@@ -172,40 +187,40 @@
</span>
<table v-if="postMsg.details&& postMsg.details.length>0">
<tr>
<th>
<th style="width:110px;text-align:center;">
日期
</th>
<th>
<th style="width:110px;text-align:center;">
Day
</th>
<th>
<th style="width:115px;text-align:center;">
用车类型
</th>
<th style="width:150px;">
<th style="width:170px;text-align:center;">
行程
</th>
<th>
<th style="width:110px;text-align:center;">
价格
</th>
<th>
<th style="width:110px;text-align:center;">
停车费
</th>
<th>
<th style="width:110px;text-align:center;">
司机住宿费
</th>
</tr>
<tbody>
<tr v-for="(item,index) in postMsg.details" :key="index">
<td>
<td style="text-align:left">
{{item.UseDate}}
</td>
<td>
<td style="text-align:left">
DAY {{item.DayNum}}
</td>
<td>
<td style="text-align:left">
{{item.UseTypeName}}
</td>
<td>
<td style="text-align:left">
{{item.TripInfo}}
</td>
<td>
......
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