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

页面修改

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