Commit 5c6d27db authored by 黄奎's avatar 黄奎

样式修改

parent dbec8804
...@@ -68,11 +68,11 @@ ...@@ -68,11 +68,11 @@
<el-table-column prop="CouponMoney" label="成本" width="80"> <el-table-column prop="CouponMoney" label="成本" width="80">
<template slot-scope="scope"> <template slot-scope="scope">
<div style="display: flex;align-items: center;"> <div style="display: flex;align-items: center;">
<span v-if="scope.row.OrderType==1">{{scope.row.HotelList[0].CostMoney}}</span> <span v-if="scope.row.OrderType==1">{{scope.row.HotelList[0].CostMoney?scope.row.HotelList[0].CostMoney:0}}</span>
<span v-if="scope.row.OrderType==2">{{scope.row.DiningList[0].CostMoney}}</span> <span v-if="scope.row.OrderType==2">{{scope.row.DiningList[0].CostMoney?scope.row.DiningList[0].CostMoney:0}}</span>
<span v-if="scope.row.OrderType==3">{{scope.row.TicketList[0].CostMoney}}</span> <span v-if="scope.row.OrderType==3">{{scope.row.TicketList[0].CostMoney?scope.row.TicketList[0].CostMoney:0}}</span>
<span v-if="scope.row.OrderType==4">{{scope.row.CarList[0].CostMoney}}</span> <span v-if="scope.row.OrderType==4">{{scope.row.CarList[0].CostMoney?scope.row.CarList[0].CostMoney:0}}</span>
<span v-if="scope.row.OrderType==5">{{scope.row.SDGoodsList[0].CostMoney}}</span> <span v-if="scope.row.OrderType==5">{{scope.row.SDGoodsList[0].CostMoney?scope.row.SDGoodsList[0].CostMoney:0}}</span>
</div> </div>
</template> </template>
</el-table-column> </el-table-column>
...@@ -121,7 +121,7 @@ ...@@ -121,7 +121,7 @@
</div> </div>
<div style="margin-top:10px"> <div style="margin-top:10px">
<span style="margin-right:10px">客户名称</span> <span style="margin-right:10px">客户名称</span>
<el-select class="w200" v-model="finMsg.ClientID" size="small" placeholder="请选择" @change="getName(finMsg.ClientID)"> <el-select class="w200" v-model="finMsg.ClientID" size="small" filterable placeholder="请选择" @change="getName(finMsg.ClientID)">
<el-option v-for="item in ClientAccountList" :key="item.ID" :label="item.Name" :value="item.ID"> <el-option v-for="item in ClientAccountList" :key="item.ID" :label="item.Name" :value="item.ID">
</el-option> </el-option>
</el-select> </el-select>
...@@ -209,10 +209,10 @@ ...@@ -209,10 +209,10 @@
this.ERPEmpId = currentUser.ERPEmpId this.ERPEmpId = currentUser.ERPEmpId
}, },
mounted() { mounted() {
this.getclientList()
this.getList(); this.getList();
this.getplat(); this.getplat();
this.getOrderType(); this.getOrderType();
this.getclientList()
}, },
methods: { methods: {
......
...@@ -155,8 +155,7 @@ ...@@ -155,8 +155,7 @@
<span style="margin-right: 10px;" v-if='item.OrderType == 1'>房间数:x{{list.RoomNumber}}</span> <span style="margin-right: 10px;" v-if='item.OrderType == 1'>房间数:x{{list.RoomNumber}}</span>
<span style="margin-right: 10px;" v-if='item.OrderType == 2 || item.OrderType == 3'>数量:x{{list.PeopleNumber}}</span> <span style="margin-right: 10px;" v-if='item.OrderType == 2 || item.OrderType == 3'>数量:x{{list.PeopleNumber}}</span>
</div> </div>
<div style="margin-bottom: 5px;" >单价:¥{{list.Unit_Price}} </div> <div style="margin-bottom: 5px;" > <span>单价:¥{{list.Unit_Price}}</span></div>
<div style="margin-bottom: 5px;" v-if='item.OrderType == 1'>入店时间:{{list.StartDate}} - {{list.EndDate}}</div> <div style="margin-bottom: 5px;" v-if='item.OrderType == 1'>入店时间:{{list.StartDate}} - {{list.EndDate}}</div>
<div style="margin-bottom: 5px;" v-if='item.OrderType == 4'> <div style="margin-bottom: 5px;" v-if='item.OrderType == 4'>
上车地点:{{list.DepartAddress}} <span style='margin:0 5px'></span> 下车地点:{{list.ArriveAddress}}</div> 上车地点:{{list.DepartAddress}} <span style='margin:0 5px'></span> 下车地点:{{list.ArriveAddress}}</div>
...@@ -2054,6 +2053,9 @@ ...@@ -2054,6 +2053,9 @@
border-radius: 2px; border-radius: 2px;
margin-right: 4px; margin-right: 4px;
} }
.vue-line-clamp span{
font-size:16px;font-weight:bold
}
</style> </style>
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