Commit dc8668ff authored by youjie's avatar youjie

修复景区报价、优化酒店订单列表

parent f6fde008
...@@ -266,13 +266,20 @@ ...@@ -266,13 +266,20 @@
let addList = function(arr){ let addList = function(arr){
arr.forEach(x=>{ arr.forEach(x=>{
x.list = [] x.list = []
x.isMore = false
x.upIcon = false
x.NewDetailList = []
// x.Tax = 0 // x.Tax = 0
// x.Tax2 = 0 // x.Tax2 = 0
}) })
} }
addList(data) addList(data)
data.forEach(item => { data.forEach(item => {
item.DetailList.forEach(x=>{ if(item.DetailList.length>2){
item.isMore = true
}
let dataLists = []
item.DetailList.forEach((x,index)=>{
x.Number = 0 x.Number = 0
x.PeopleNumber = 0 x.PeopleNumber = 0
x.RoomList.forEach(r=>{ x.RoomList.forEach(r=>{
...@@ -282,7 +289,11 @@ ...@@ -282,7 +289,11 @@
x.Tax = x.TaxesPrice*x.Number x.Tax = x.TaxesPrice*x.Number
x.Tax2 = x.PriceInTangTax*x.PeopleNumber x.Tax2 = x.PriceInTangTax*x.PeopleNumber
x.Money = x.HotelMoeny+x.TaxesPrice x.Money = x.HotelMoeny+x.TaxesPrice
if(index<2){
dataLists.push(x)
}
}) })
item.NewDetailList = JSON.parse(JSON.stringify(dataLists))
}) })
this.OrderList = data; this.OrderList = data;
......
...@@ -311,7 +311,7 @@ ...@@ -311,7 +311,7 @@
<template> <template>
<div> <div>
<div <div
v-for="(item, index) in OrderList" v-for="(item, index) in OrderList" :key="index"
class="column bgf radius5 px15 mb20" class="column bgf radius5 px15 mb20"
> >
<div class="row-c justify-sb align-c py"> <div class="row-c justify-sb align-c py">
...@@ -382,7 +382,7 @@ ...@@ -382,7 +382,7 @@
</div> </div>
</div> </div>
<div class="mb"> <div class="mb">
<el-table :data="item.DetailList" style="width:100%" border> <el-table :data="item.NewDetailList" style="width:100%" border>
<el-table-column <el-table-column
label="入住日期" label="入住日期"
min-width="100" min-width="100"
...@@ -479,8 +479,9 @@ ...@@ -479,8 +479,9 @@
{{ item.HandFittingFee ? item.HandFittingFee : "-" }} {{ item.HandFittingFee ? item.HandFittingFee : "-" }}
</template> </template>
</el-table-column> </el-table-column>
<template slot="append" v-if="item.Remark"> <template slot="append" v-if="item.Remark||item.isMore">
<div style="padding:10px;color:#f1416c">客户备注:{{item.Remark}}</div> <div style="padding:10px;color:#f1416c">客户备注:{{item.Remark}}</div>
<more v-if="item.isMore" @change="ViewMore(item,index)" :upIcon="item.upIcon"></more>
</template> </template>
</el-table> </el-table>
</div> </div>
...@@ -864,7 +865,9 @@ ...@@ -864,7 +865,9 @@
</div> </div>
</template> </template>
<script> <script>
import more from '../../public/more.vue';
export default { export default {
components: { more },
props: ["OrderList","pagesTitle"], props: ["OrderList","pagesTitle"],
data() { data() {
return { return {
...@@ -915,6 +918,20 @@ export default { ...@@ -915,6 +918,20 @@ export default {
} }
}, },
methods: { methods: {
ViewMore(x,index){
x.upIcon = !x.upIcon
if(x.upIcon){
x.NewDetailList = JSON.parse(JSON.stringify(x.DetailList))
}else{
x.NewDetailList = []
x.DetailList.forEach((y,index)=>{
if(index<2){
x.NewDetailList.push(y)
}
})
}
},
uploadFileBtn(file){ uploadFileBtn(file){
let ft = file.file.name.substring(file.file.name.lastIndexOf('.') + 1, file.file.name.length).toUpperCase(); let ft = file.file.name.substring(file.file.name.lastIndexOf('.') + 1, file.file.name.length).toUpperCase();
let typeOk = false; let typeOk = false;
......
...@@ -777,12 +777,12 @@ export default { ...@@ -777,12 +777,12 @@ export default {
res => { res => {
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
console.log(res.data) console.log(res.data)
//this.initDataTable(); this.initDataTable();
this.Success("保存成功!"); this.Success("保存成功!");
// this.isShowDIv = false; this.isShowDIv = false;
// this.resetForm("addMsg"); this.resetForm("addMsg");
// this.goUrl('ticketManagement',this.CouponsId); // this.goUrl('ticketManagement',this.CouponsId);
location.reload() // location.reload()
} else { } else {
this.Error(res.data.message); this.Error(res.data.message);
} }
......
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