Commit 419c3645 authored by liudong1993's avatar liudong1993
parents defd56b7 3fc9ebe0
...@@ -381,6 +381,7 @@ ...@@ -381,6 +381,7 @@
font-size: 12px; font-size: 12px;
color: gray; color: gray;
} }
.TD_MainContent .TCbtn-info { .TD_MainContent .TCbtn-info {
color: #ffffff; color: #ffffff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
...@@ -404,12 +405,13 @@ ...@@ -404,12 +405,13 @@
outline: none; outline: none;
cursor: pointer; cursor: pointer;
} }
.TCbtn-info:hover, .TCbtn-info:hover,
.btn-warning:hover { .btn-warning:hover {
color: #ffffff; color: #ffffff;
opacity: 0.8; opacity: 0.8;
} }
.TD_MainContent .singeRowTable { .TD_MainContent .singeRowTable {
width: 100%; width: 100%;
border-collapse: collapse; border-collapse: collapse;
...@@ -455,8 +457,8 @@ ...@@ -455,8 +457,8 @@
销售人员:{{dataList.saleName}}</template> 销售人员:{{dataList.saleName}}</template>
<span> <span>
<template v-if="dataList.orderType==0"> <template v-if="dataList.orderType==0">
<input type="button" class="TCbtn-info" @click="(dialogVisible = true), getGuestList()" value="复制合同" /> <input type="button" class="TCbtn-info" @click="(dialogVisible = true), getGuestList()" value="复制合同" />
</template> </template>
<input type="button" class="TCbtn-info" v-if="dataList.status==1" @click="getinvalid()" value="作废" /> <input type="button" class="TCbtn-info" v-if="dataList.status==1" @click="getinvalid()" value="作废" />
<input type="button" class="TCbtn-info" v-if="dataList.companySignature==''" <input type="button" class="TCbtn-info" v-if="dataList.companySignature==''"
@click="isShowFade=true,GetQrCode()" value="客户签字" /> @click="isShowFade=true,GetQrCode()" value="客户签字" />
...@@ -1208,9 +1210,9 @@ ...@@ -1208,9 +1210,9 @@
dialogVisible: false, dialogVisible: false,
QRCodeStr: "", QRCodeStr: "",
pdfLoading: false, pdfLoading: false,
//旅客名单 //旅客名单
backGuest: [], backGuest: [],
//旅客名单 //旅客名单
guestList: [], guestList: [],
//线路名称 //线路名称
LineName: '', LineName: '',
...@@ -1295,8 +1297,8 @@ ...@@ -1295,8 +1297,8 @@
}) })
}, },
//点击合同获取旅客信息 //点击合同获取旅客信息
getGuestList() { getGuestList() {
let msg = { let msg = {
orderId: this.msg.orderID, orderId: this.msg.orderID,
}; };
...@@ -1378,7 +1380,7 @@ ...@@ -1378,7 +1380,7 @@
this.apipost("travelcontract_post_GetContractInfoService", this.msg, res => { this.apipost("travelcontract_post_GetContractInfoService", this.msg, res => {
if (res.data.resultCode === 1) { if (res.data.resultCode === 1) {
this.dataList = res.data.data; this.dataList = res.data.data;
this.guestList = this.dataList.allGuestList; this.guestList = this.dataList.allGuestList;
} else { } else {
this.Error(res.data.message); this.Error(res.data.message);
} }
...@@ -1475,6 +1477,7 @@ ...@@ -1475,6 +1477,7 @@
TID = this.$route.query.Id; TID = this.$route.query.Id;
} }
if (this.$route.query.ID) { if (this.$route.query.ID) {
this.msg.Id = this.$route.query.ID;
TID = this.$route.query.ID; TID = this.$route.query.ID;
} }
this.getList(); this.getList();
......
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