Commit 1d7eda91 authored by liudong1993's avatar liudong1993

1

parent 020b2715
......@@ -348,22 +348,26 @@
<p class="_TCIDAndTCNUMList">{{$t('pub.noMsg')}}</p>
</template>
<template v-if="scope.row.OtherType>0&&scope.row.ReFinanceIds!='0'&&scope.row.ReFinanceIds">
<template v-if="scope.row.OtherType>0&&scope.row.ReFinanceId2>0">
<p v-if="scope.row.OtherType==66">
<span>{{$t('objFill.admissionticketid')}}</span>
<span>{{scope.row.ReFinanceIds}}</span>
<span>{{scope.row.ReFinanceId2}}</span>
</p>
<p v-else-if="scope.row.OtherType==67">
<span>{{$t('objFill.vehicleid')}}</span>
<span>{{scope.row.ReFinanceIds}}</span>
<span>{{scope.row.ReFinanceId2}}</span>
</p>
<p v-else-if="scope.row.OtherType==61">
<span>{{$t('salesModule.HotelOrderNum')}}</span>
<span>{{scope.row.ReFinanceIds}}</span>
<span>{{scope.row.ReFinanceId2}}</span>
</p>
<p v-else-if="scope.row.OtherType==80">
<span>{{$t('objFill.impressioncarshopid')}}</span>
<span>{{scope.row.ReFinanceIds}}</span>
<span>{{$t('objFill.impressioncarshopid')}}</span>
<span @click="ImpressionSingleDetails('CarDealerOrderOP',80,scope.row.ReFinanceId2)" style="cursor: pointer; color: #00C6FF">{{scope.row.ReFinanceId2}}</span>
</p>
<p v-else-if="scope.row.OtherType==83">
<span>印象车行包车订单号:</span>
<span @click="ImpressionSingleDetails('CarDealerOrderOP',83,scope.row.ReFinanceId2)" style="cursor: pointer; color: #00C6FF">{{scope.row.ReFinanceId2}}</span>
</p>
</template>
<template v-else-if="scope.row.OrderSource>0&&scope.row.OrderID>0">
......@@ -641,6 +645,27 @@
var that = this;
},
methods: {
// 单项酒店订单
ImpressionSingleDetails(path,OtherType,ReFinanceId) {
if(OtherType == 80){
this.$router.push({
path: path,
query: {
OrderId: ReFinanceId,
blank: 'y'
}
});
}
else if(OtherType == 83){
this.$router.push({
path: path,
query: {
MainId: ReFinanceId,
blank: 'y'
}
});
}
},
GetJapanCarCustomerList() { // 获取对象类型
this.apipost('JapanCar_get_GetJapanCarCustomerList', {}, res => {
if (res.data.resultCode == 1) {
......
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