Commit 9d3f31e1 authored by youjie's avatar youjie

no message

parent 4de35dd8
...@@ -383,7 +383,8 @@ ...@@ -383,7 +383,8 @@
<tr> <tr>
<td> <td>
<el-form-item label="公司名称"> <el-form-item label="公司名称">
<el-select v-model="CtObj.SignType" placeholder="请选择" @change="changeSignType" class="w300"> <el-select v-model="CtObj.SignType" placeholder="请选择" @change="changeSignType" class="w300"
:disabled="isCompany">
<el-option key="0" label="四川和平国际旅行社有限公司" :value="0"> <el-option key="0" label="四川和平国际旅行社有限公司" :value="0">
</el-option> </el-option>
<el-option key="1" label="(株)ピースインターナショナル" :value="1"> <el-option key="1" label="(株)ピースインターナショナル" :value="1">
...@@ -820,7 +821,7 @@ ...@@ -820,7 +821,7 @@
} }
} }
return { return {
isCompany: false,
isShowFade: false, isShowFade: false,
QRCodeStr: "", QRCodeStr: "",
//客户省份列表 //客户省份列表
...@@ -1169,16 +1170,19 @@ ...@@ -1169,16 +1170,19 @@
this.CtObj.orderId = this.$route.query.orderID; this.CtObj.orderId = this.$route.query.orderID;
this.VoluntaryArr = this.CtObj.shopProtocolList; this.VoluntaryArr = this.CtObj.shopProtocolList;
this.WillingPayArr = this.CtObj.payProtocolList; this.WillingPayArr = this.CtObj.payProtocolList;
// if(company SignType)
console.log("travelcontract_post_GetContractInfoService", this.CtObj); console.log("travelcontract_post_GetContractInfoService", this.CtObj);
if (tempObj && tempObj.id <= 0) { if (tempObj && tempObj.id <= 0) {
this.CtObj.totalNumber = 2; this.CtObj.totalNumber = 2;
this.CtObj.eachNumber = 1; this.CtObj.eachNumber = 1;
//初始化行程 //初始化行程
this.GetTrip(0, this.msg.TCID); this.GetTrip(0, this.msg.TCID);
} else { } if(tempObj.company) {
this.CtObj.SignType = tempObj.company == '日本和平国际旅行社有限公司' ? 1 : 0; this.isCompany = true
this.CtObj.SignType = tempObj.company == '日本和平国际旅行社有限公司' ? 0 : 1;
this.CtObj.company = tempObj.company; this.CtObj.company = tempObj.company;
} }
if (this.CtObj.auditContract == 2) { if (this.CtObj.auditContract == 2) {
this.goContract() this.goContract()
} }
......
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