Commit c3afd18b authored by youjie's avatar youjie

no message

parent 69d2211b
......@@ -319,7 +319,7 @@
.cursor-p{
cursor: pointer;
}
.cursor-p.active{
.cursor-p.active,.cursor-p:hover{
color: #409EFF;
}
.float-l{
......
......@@ -1866,7 +1866,7 @@
<div class="_jztime">
<p class="PingFangSC">{{item.TicketDeadlineStr}}</p>
<p class="_text">{{$t('Airticket.Air_deadTicketTime')}}</p>
<p class="_text" v-if="item.InvoicingPrice>0">¥{{item.InvoicingPrice}}</p>
<p class="_text cursor-p" v-if="item.InvoicingPrice>0" @click="BillingCharge(item,1)">开票总金额:¥{{item.InvoicingPrice}}</p>
</div>
</el-col>
<el-col :span="3" class="">
......@@ -2645,8 +2645,8 @@
</el-dialog>
<!-- 开票费用 -->
<el-dialog width="1000px" title="开票费用" :visible.sync="BillingChargeDialog" center>
<el-form class="Rform" ref="form" :model="Ticketform" label-width="67px">
<el-dialog width="1000px" :title="BillingChargeTitle" :visible.sync="BillingChargeDialog" center>
<el-form class="Rform" ref="form" :model="Ticketform" label-width="67px" :disabled="BillingChargeTitle=='开票费用详情'">
<div style="color: red;font-size: 13px;text-align: right;padding: 0 0 5px 0;">注:开票单价*开票数量+升舱增收=总开票金额</div>
<table class="po_content singeRowTable" style="border:1px solid #E6E6E6;margin-bottom:15px" cellspacing="0"
cellpadding="0" v-loading="loading">
......@@ -2701,6 +2701,7 @@
}
};
return {
BillingChargeTitle:'',
BillingChargeDialog: false,
FinaceIdnum: "",
AirSeritem: [],
......@@ -3052,7 +3053,12 @@
);
},
BillingCharge(item){
BillingCharge(item,type){
if(type){
this.BillingChargeTitle = '开票费用详情'
}else{
this.BillingChargeTitle = '编辑开票费用'
}
this.loading = true
this.BillingChargeDialog = true
this.apipost(
......
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