Commit 0b74ef52 authored by 黄奎's avatar 黄奎

11

parent 6170caf8
......@@ -236,9 +236,13 @@
height: 25px;
}
.travelTeamInfo .el-input-number--mini {
height: 25px;
line-height: 25px;
.travelTeamInfo .tFlightTab .el-input-number {
height: 38px !important;
line-height: 38px !important;
}
.travelTeamInfo .tFlightTab .el-input--mini .el-input__inner {
height: 40px !important;
}
</style>
......@@ -555,7 +559,7 @@
<td>
<el-form-item :label="$t('system.query_arrivalTime')">
<el-input v-model="fItem.Arrival_time" style="width:80px;"></el-input>
<el-input-number size="mini" v-model="fItem.aDay" style="width:90px;">
<el-input-number size="mini" v-model="fItem.aDay" style="width:90px;" :min="0" :max="5">
</el-input-number>
</el-form-item>
</td>
......
......@@ -783,22 +783,22 @@
<td>{{ $t("salesModule.ChildNoBed") }}</td>
<td>
{{
(item.B2BShowPrice - item.ChildNoNeedPrice)
(item.B2BShowPrice + item.ChildNoNeedPrice)
}}
</td>
<td>
{{
(item.B2BShowPrice - item.ChildNoNeedPrice)
(item.B2BShowPrice + item.ChildNoNeedPrice)
}}
</td>
<td>
{{
(item.B2CShowPrice - item.ChildNoNeedPrice)
(item.B2CShowPrice + item.ChildNoNeedPrice)
}}
</td>
<td>
{{
(item.B2CShowPrice - item.ChildNoNeedPrice)
(item.B2CShowPrice + item.ChildNoNeedPrice)
}}
</td>
</tr>
......
......@@ -363,30 +363,30 @@
<td>{{ $t("salesModule.ChildNoBed") }}</td>
<td>
{{
(item.B2BShowPrice - item.ChildNoNeedPrice)
(item.B2BShowPrice + item.ChildNoNeedPrice)
| priceFormat(
item.B2BShowPrice - item.ChildNoNeedPrice
item.B2BShowPrice + item.ChildNoNeedPrice
)
}}
</td>
<td>
{{
(item.B2BShowPrice - item.ChildNoNeedPrice)
| priceFormat(item.B2BShowPrice - item.ChildNoNeedPrice)
(item.B2BShowPrice + item.ChildNoNeedPrice)
| priceFormat(item.B2BShowPrice + item.ChildNoNeedPrice)
}}
</td>
<td>
{{
(item.B2BShowPrice - item.ChildNoNeedPrice)
(item.B2BShowPrice + item.ChildNoNeedPrice)
| priceFormat(
item.B2BShowPrice - item.ChildNoNeedPrice
item.B2BShowPrice + item.ChildNoNeedPrice
)
}}
</td>
<td>
{{
(item.B2CShowPrice - item.ChildNoNeedPrice)
| priceFormat(item.B2CShowPrice - item.ChildNoNeedPrice)
(item.B2CShowPrice + item.ChildNoNeedPrice)
| priceFormat(item.B2CShowPrice + item.ChildNoNeedPrice)
}}
</td>
</tr>
......
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