Commit 250a1a63 authored by 黄奎's avatar 黄奎

页面样式修改

parent 897d92f2
...@@ -301,24 +301,21 @@ ...@@ -301,24 +301,21 @@
</div> </div>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="定团号" min-width="230"> <el-table-column label="订团号" min-width="215">
<template slot-scope="scope"> <template slot-scope="scope">
<template v-for="(subItem,subIndex) in scope.row.BusPlanOrderList"> <div class="comBTM" v-for="(subItem,subIndex) in scope.row.BusPlanOrderList">
<template v-if="scope.$index==0&&subIndex==0"> <template v-if="scope.$index==0&&subIndex==0">
<div class="BusTyleFirst"> <i class="iconfont icon-tongshang" style="opacity:0;filter:alpha(opacity=0); "></i>
<el-input class='w170' type="text" v-model="subItem.BookGroup"></el-input> <el-input class='w150' type="text" v-model="subItem.BookGroup"></el-input>
</div>
</template> </template>
<template v-else> <template v-else>
<div class="comBTM"> <el-tooltip class="item" effect="dark" content="同上" placement="top">
<el-tooltip class="item" effect="dark" content="同上" placement="top"> <i class="iconfont icon-tongshang" style="cursor:pointer;"
<i class="iconfont icon-tongshang" style="cursor:pointer;" @click="getBeforeInfo(scope.$index,subIndex),getBusPrice(subItem)"></i>
@click="getBeforeInfo(scope.$index,subIndex),getBusPrice(subItem)"></i> </el-tooltip>
</el-tooltip> <el-input class='w150' type="text" v-model="subItem.BookGroup"></el-input>
<el-input class='w170' type="text" v-model="subItem.BookGroup"></el-input>
</div>
</template> </template>
</template> </div>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="司机住宿" min-width="180"> <el-table-column label="司机住宿" min-width="180">
...@@ -343,19 +340,19 @@ ...@@ -343,19 +340,19 @@
</div> </div>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="高速费用" min-width="150"> <el-table-column label="高速费用" min-width="140">
<template slot-scope="scope"> <template slot-scope="scope">
<div v-for="subItem in scope.row.BusPlanOrderList" class="comBTM"> <div v-for="subItem in scope.row.BusPlanOrderList" class="comBTM">
<el-input v-model="subItem.HighSpeedPrice" @keyup.native="checkPrice(subItem,'HighSpeedPrice')" <el-input v-model="subItem.HighSpeedPrice" @keyup.native="checkPrice(subItem,'HighSpeedPrice')"
placeholder="请输入费用" :disabled="isShowBtn==1?true:false"></el-input> placeholder="请输入费用" :disabled="isShowBtn==1?true:false" class='w135'></el-input>
</div> </div>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="高速费用付款方式" min-width="150"> <el-table-column label="高速费用付款方式" min-width="140">
<template slot-scope="scope"> <template slot-scope="scope">
<div> <div>
<div v-for="(subItem,index) in scope.row.BusPlanOrderList" class="comBTM"> <div v-for="(subItem,index) in scope.row.BusPlanOrderList" class="comBTM">
<el-select class='sel' v-model='subItem.HighSpeedPayType' :placeholder="$t('pub.pleaseSel')" <el-select class='sel w135' v-model='subItem.HighSpeedPayType' :placeholder="$t('pub.pleaseSel')"
@change="PayTypeChange(subItem)" :disabled="isShowBtn==1?true:false"> @change="PayTypeChange(subItem)" :disabled="isShowBtn==1?true:false">
<el-option label='请选择' :value='0'></el-option> <el-option label='请选择' :value='0'></el-option>
<el-option label='现付' :value='1'></el-option> <el-option label='现付' :value='1'></el-option>
...@@ -377,11 +374,11 @@ ...@@ -377,11 +374,11 @@
</div> </div>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="成本价" min-width="150"> <el-table-column label="成本价" min-width="140">
<template slot-scope="scope"> <template slot-scope="scope">
<div v-for="subItem in scope.row.BusPlanOrderList" class="comBTM"> <div v-for="subItem in scope.row.BusPlanOrderList" class="comBTM">
<el-input v-model="subItem.CostPrice" @keyup.native="checkPrice(subItem,'CostPrice')" <el-input v-model="subItem.CostPrice" @keyup.native="checkPrice(subItem,'CostPrice')"
placeholder="请输入成本价" :disabled="isShowBtn==1?true:false"></el-input> placeholder="请输入成本价" :disabled="isShowBtn==1?true:false" class="w135"></el-input>
</div> </div>
</template> </template>
</el-table-column> </el-table-column>
...@@ -780,8 +777,8 @@ ...@@ -780,8 +777,8 @@
oldPlanData = this.PlanTableData[index].BusPlanOrderList[subIndex - 1]; oldPlanData = this.PlanTableData[index].BusPlanOrderList[subIndex - 1];
} }
} else { } else {
oldPlanData = this.PlanTableData[index - 1].BusPlanOrderList[this.PlanTableData[index - 1].BusPlanOrderList oldPlanData = this.PlanTableData[index - 1].BusPlanOrderList[this.PlanTableData[index - 1].BusPlanOrderList
.length - 1]; .length - 1];
} }
let newPlanData = this.PlanTableData[index].BusPlanOrderList[subIndex]; let newPlanData = this.PlanTableData[index].BusPlanOrderList[subIndex];
newPlanData.DriverName = oldPlanData.DriverName; newPlanData.DriverName = oldPlanData.DriverName;
......
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