Commit fe2696a7 authored by 黄奎's avatar 黄奎

页面修改

parent 5231ecfb
......@@ -26,6 +26,12 @@
<el-date-picker v-model='msg.EndTime' class='w135' value-format="yyyy-MM-dd" type="date"></el-date-picker>
</span>
</li>
<li><span><em>确认状态</em></span>
<el-select v-model='msg.QSureState'>
<el-option label='已确认' value='1' key='1'></el-option>
<el-option label='未确认' value='2' key='2'></el-option>
</el-select>
</li>
<li>
<input type="button" class="normalBtn" value="查询" @click="getList();resetPageIndex()" />
</li>
......@@ -89,13 +95,13 @@
{{item.OfferStateName}}
</td>
<td>
<template v-if="item.IsSure==0">
<span style="color:red">待确认</span>
<template v-if="item.SureId==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>
<span style="color:red">已确认</span><br />
<span style="color:red">确认人:{{item.SureByName}}</span><br />
<span style="color:red">确认时间:{{item.SureTime}}</span>
</template>
</td>
<td>
......@@ -110,7 +116,6 @@
</div>
<el-pagination background @current-change="handleCurrentChange" :current-page.sync="currentPage"
layout="total,prev, pager, next, jumper" :page-size="msg.pageSize" :total="total"></el-pagination>
<el-dialog custom-class='addCompany' :title="dialogTitle" :visible.sync="isShowPrice" center>
<el-row>
<el-col :span="12">
......@@ -182,6 +187,23 @@
<el-col :span="8" style="text-align:left">{{postMsg.GuideInfo}}</el-col>
</el-col>
</el-row>
<el-row>
<el-col :span="12">
<el-col :span="4" style="text-align:right">确认状态:</el-col>
<el-col :span="8" style="text-align:left">
<template v-if="postMsg.SureId==0">
<span>未确认</span>
</template>
<template v-else>
<span>已确认 确认人:{{postMsg.SureByName}} 确实时间:{{postMsg.SureTime}}</span>
</template>
</el-col>
</el-col>
<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>
</el-row>
<span>
行程信息
</span>
......@@ -349,7 +371,7 @@
</el-col>
</el-row>
<div slot="footer" class="dialog-footer">
<button class="hollowFixedBtn" @click="isShowPrice=false">{{$t('pub.cancelBtn')}}</button> &nbsp;
<button class="hollowFixedBtn" @click="isShowPrice=false">关闭</button> &nbsp;
<button v-if="priceType==1" class="normalBtn" type="primary"
@click="submitTripBusOffer('addMsg')">{{$t('pub.sureBtn')}}</button>
</div>
......@@ -374,6 +396,7 @@
TeamName: "", //团体名称
StartTime: "", //开始时间
EndTime: "", //结束时间
QSureState: "", //确认状态
},
boxHeight: 0,
offsetwidth: 0,
......
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