Commit 464fd19e authored by 黄奎's avatar 黄奎

页面修改

parent e966a6ba
...@@ -144,11 +144,13 @@ ...@@ -144,11 +144,13 @@
.busUsePrice2 .combottomDiv .el-select { .busUsePrice2 .combottomDiv .el-select {
width: 100%; width: 100%;
} }
.busUsePrice2 .linkStrle {
.busUsePrice2 .linkStrle {
cursor: pointer; cursor: pointer;
text-decoration: underline; text-decoration: underline;
color:blue; color: blue;
} }
.busUsePriceTable { .busUsePriceTable {
width: 100%; width: 100%;
font-size: 14px; font-size: 14px;
...@@ -165,16 +167,19 @@ ...@@ -165,16 +167,19 @@
text-indent: 15px; text-indent: 15px;
border: 1px solid #cccccc; border: 1px solid #cccccc;
} }
.busUsePriceTable tr td { .busUsePriceTable tr td {
min-height: 60px; min-height: 60px;
height: auto; height: auto;
padding: 10px; padding: 10px;
font-size: 14px !important; font-size: 14px !important;
border: 1px solid #cccccc; border: 1px solid #cccccc;
} }
.busUsePrice2 .busUsePriceTable .el-pagination{
border-top:0!important; .busUsePrice2 .busUsePriceTable .el-pagination {
border-top: 0 !important;
} }
</style> </style>
<template> <template>
<div class="flexOne busUsePrice2"> <div class="flexOne busUsePrice2">
...@@ -223,6 +228,9 @@ ...@@ -223,6 +228,9 @@
<th> <th>
接送茶代 接送茶代
</th> </th>
<th>
报价详情
</th>
<th> <th>
操作 操作
</th> </th>
...@@ -257,20 +265,64 @@ ...@@ -257,20 +265,64 @@
</td> </td>
<td>{{item.AllDayChaDaiFee}}</td> <td>{{item.AllDayChaDaiFee}}</td>
<td>{{item.PickUpChaDaiFee}}</td> <td>{{item.PickUpChaDaiFee}}</td>
<td>
<el-popover width="590" trigger="click">
<table width="100%" border="0" cellspacing="0" cellpadding="0" >
<tr style="text-align:center;">
<th width="70">月份</th>
<th width="80">接送价格</th>
<th width="80">全天价格</th>
<th width="80">半天价格</th>
<th width="80">全天高速</th>
<th width="80">接送高速</th>
<th width="80">全天茶代</th>
<th width="80">接送茶代</th>
</tr>
<tr v-for="(fItem,fIndex) in item.DetailsList" :key="fIndex" style="text-align:center;">
<td>
{{fItem.MonthStr}}
</td>
<td>
{{fItem.S_ReceivePrice}}
</td>
<td>
{{fItem.S_AllDayPrice}}
</td>
<td>
{{fItem.S_HalfDayPrice}}
</td>
<td>
{{fItem.S_AllDayHighSpeedFee}}
</td>
<td>
{{fItem.S_PickUpHighSpeedFee}}
</td>
<td>
{{fItem.S_AllDayChaDaiFee}}
</td>
<td>
{{fItem.S_PickUpChaDaiFee}}
</td>
</tr>
</table>
<span slot="reference" style="cursor:pointer;">详情
<i class="iconfont icon-xiaotuziCduan_1"></i>
</span>
</el-popover>
</td>
<td rowspan="2" style="text-align:center;"> <td rowspan="2" style="text-align:center;">
<!-- <input type="button" class="normalBtn" @click="managePrice(item.Id)" value="管理报价" />&nbsp;
<a class="linkStrle" @click="goUrl('busUsePriceDetails',item.Id,'报价详情')">详情</a>&nbsp;
<a class="linkStrle" @click="isdelete(item.Id)">删除</a> -->
<el-button-group size='mini'> <el-button-group size='mini'>
<el-tooltip class="item" effect="dark" content="管理报价" placement="top-start"> <el-tooltip class="item" effect="dark" content="管理报价" placement="top-start">
<el-button type="primary" class="iconfont icon-bianji-smal" @click="managePrice(item.Id)"></el-button> <el-button type="primary" class="iconfont icon-bianji-smal" @click="managePrice(item.Id)"></el-button>
</el-tooltip> </el-tooltip>
<el-tooltip class="item" effect="dark" content="报价详情" placement="top-start"> <el-tooltip class="item" effect="dark" content="报价详情" placement="top-start">
<el-button type="primary" class="iconfont icon-danju1" @click="goUrl('busUsePriceDetails',item.Id,'报价详情')"></el-button> <el-button type="primary" class="iconfont icon-danju1"
</el-tooltip> @click="goUrl('busUsePriceDetails',item.Id,'报价详情')"></el-button>
<el-tooltip class="item" effect="dark" content="删除" placement="top-start"> </el-tooltip>
<el-button type="danger" class="iconfont icon-img_delete_small" @click="isdelete(item.Id)"></el-button> <el-tooltip class="item" effect="dark" content="删除" placement="top-start">
</el-tooltip> <el-button type="danger" class="iconfont icon-img_delete_small" @click="isdelete(item.Id)">
</el-button>
</el-tooltip>
</el-button-group> </el-button-group>
</td> </td>
</tr> </tr>
...@@ -532,7 +584,7 @@ ...@@ -532,7 +584,7 @@
}; };
}, },
methods: { methods: {
goUrl(path, id, name) { goUrl(path, id, name) {
this.$router.push({ this.$router.push({
name: path, name: path,
query: { query: {
......
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