Commit a9b2aa67 authored by 罗超's avatar 罗超

no message

parent 7aa7fbda
......@@ -296,6 +296,21 @@
cursor:pointer;
text-decoration: underline;
}
.illustrate-text{
display: flex;
justify-content: space-between;
}
.illustrate-left{
flex-grow: 2;
}
.illustrate-right{
flex-shrink: 0;
margin-left: 20px;
cursor: pointer;
}
.illustrate-right:hover{
text-decoration: underline;
}
</style>
<template>
......@@ -328,8 +343,8 @@
<my-DJ-Bill :ID="FrID" :GetDetail="GetDetail" :width="widthSon" :color="colorSon"></my-DJ-Bill>
</template>
<div class="_explain">
<p>附加说明:<span class="fr" v-if="GetDetail.ComplainID > 0" @click="goUrl('ComplaintsDetail', GetDetail.ComplainID,GetDetail.OrderID)"> <span style="color:#000">投诉单号:</span>
<div class="illustrate-text">
<p class="illustrate-left">附加说明:<span class="fr" v-if="GetDetail.ComplainID > 0" @click="goUrl('ComplaintsDetail', GetDetail.ComplainID,GetDetail.OrderID)"> <span style="color:#000">投诉单号:</span>
<span class="cursorpointer text-decoration">{{GetDetail.ComplainID}}</span></span>
<span v-if="GetDetail.TemplateId==28 || GetDetail.TemplateId==30" @click="Gourl(GetDetail)" style="cursor: pointer;float: right;color: #000;font-size: 14px;text-decoration: underline;">提成详情</span>
<span v-if="CostTypeState" @click="GourlCostType('VisitRecord',1)" style="margin:0 10px;cursor: pointer;float: right;color: #000;font-size: 14px;text-decoration: underline;">拜访记录</span>
......@@ -343,6 +358,11 @@
</span>
</p>
<div class="illustrate-right" v-if="GetDetail.OtherType=='55'"
@click="clickAirTicketOrder">
机票单号:{{GetDetail.ReFinanceId}}
</div>
</div>
<table border="1" bordercolor="#D2D2D2" style="border-collapse:collapse;margin-top:15px;" width="100%" v-if="GetDetail.TCIDAndTCNUMList.length>0">
<tr v-for="(o,ox) in GetDetail.TCIDAndTCNUMList" class="_fujiashuoming_tr">
<td :colspan="3">
......@@ -1530,6 +1550,24 @@ export default {
},
methods:{
// 点击机票订单跳转CRM自动登录
clickAirTicketOrder(){
let href
let url
if(this.isOnline()){
url = 'http://fcrmyx.oytour.com/#/'
}else{
url = 'http://localhost:8081/#/'
}
let data = [
{
path:'customerOrder',
OrderId: this.GetDetail.ReFinanceId,
}
]
href = url+'automaticLogin?token='+this.getLocalStorage().token+'&data=' + JSON.stringify(data)
window.open(href);
},
GetAuth() {
var actionCode = this.$AuthCode.TeamShouZhi;
this.CheckUserAuth(actionCode, res => {
......
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