Commit 3cc9734f authored by liudong1993's avatar liudong1993
parents 12b78490 40e04035
......@@ -2706,8 +2706,7 @@
}}<span v-if="childItem.OneSex > 0"
style="color: #e95252">({{ childItem.OneSex == 1 ?$t('objFill.dannan') : $t('objFill.dannv') }})</span><span
v-if="childItem.ChirdNoNeedBedNum > 0"
style="color: #e95252">({{$t('Operation.Op_childNobed')}}{{ childItem.ChirdNoNeedBedNum }}{{$t('hotel_.hotel_people')}}
</span>:{{ childItem.OrderGuestHouseStr }}
style="color: #e95252">({{$t('Operation.Op_childNobed')}}{{ childItem.ChirdNoNeedBedNum }}{{$t('hotel.hotel_people')}})</span>:{{ childItem.OrderGuestHouseStr }}
<el-popover trigger="click" popper-class="RL_Scenic">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr class="_color_666" style="text-align: center">
......@@ -6821,7 +6820,7 @@
//恢复订单
RecoverOrder(item) {
var _this = this;
this.Confirm(that.$t('objFill.querenyhfcddm'), function () {
this.Confirm(_this.$t('objFill.querenyhfcddm'), function () {
_this.apipost(
"sellorder_post_RecoverOrderService", {
OrderId: item.OrderId,
......
......@@ -42,7 +42,6 @@
.ContractManage .Ec_cha:hover {
color: red;
}
</style>
<template>
......@@ -51,7 +50,8 @@
<ul>
<li>
<span><em>{{$t('objFill.hetongbh')}}</em>
<el-input class="w210" v-model="msg.T_ContractNum" :placeholder="$t('objFill.qingshurhtbh')" @keyup.enter.native="getList">
<el-input class="w210" v-model="msg.T_ContractNum" :placeholder="$t('objFill.qingshurhtbh')"
@keyup.enter.native="getList">
</el-input>
</span>
</li>
......@@ -67,25 +67,29 @@
</li>
<li>
<span><em>{{$t('objFill.jiafangmc')}}</em>
<el-input class="w210" v-model="msg.Tourists_Name" :placeholder="$t('rule.EnterCusNameC')" @keyup.enter.native="getList">
<el-input class="w210" v-model="msg.Tourists_Name" :placeholder="$t('rule.EnterCusNameC')"
@keyup.enter.native="getList">
</el-input>
</span>
</li>
<li>
<span><em>{{$t('objFill.kehudianh')}}</em>
<el-input class="w210" v-model="msg.Tourists_Tel" :placeholder="$t('objFill.qingsrkhdh')" @keyup.enter.native="getList">
<el-input class="w210" v-model="msg.Tourists_Tel" :placeholder="$t('objFill.qingsrkhdh')"
@keyup.enter.native="getList">
</el-input>
</span>
</li>
<li>
<span><em>{{$t('visa.v_tuanhao')}}</em>
<el-input class="w210" v-model="msg.C_TCNUM" :placeholder="$t('visa.v_shurutuanhao')" @keyup.enter.native="getList">
<el-input class="w210" v-model="msg.C_TCNUM" :placeholder="$t('visa.v_shurutuanhao')"
@keyup.enter.native="getList">
</el-input>
</span>
</li>
<li>
<span><em>{{$t('system.query_lineName')}}</em>
<el-input class="w210" v-model="msg.C_ProductName" :placeholder="$t('system.ph_lineName')" @keyup.enter.native="getList">
<el-input class="w210" v-model="msg.C_ProductName" :placeholder="$t('system.ph_lineName')"
@keyup.enter.native="getList">
</el-input>
</span>
</li>
......@@ -110,15 +114,15 @@
</li>
<li>
<span><em>{{$t('scen.sc_temID')}}</em>
<el-input class="w210" v-model="msg.TCID" :placeholder="$t('objFill.qingsrtdbh')" @keyup.enter.native="getList" clearable
@clear="getList">
<el-input class="w210" v-model="msg.TCID" :placeholder="$t('objFill.qingsrtdbh')"
@keyup.enter.native="getList" clearable @clear="getList">
</el-input>
</span>
</li>
<li>
<span><em>{{$t('hotel.order_Number')}}</em>
<el-input class="w210" v-model="msg.OrderId" :placeholder="$t('rule.qsrdingdanhao')" @keyup.enter.native="getList" clearable
@clear="getList">
<el-input class="w210" v-model="msg.OrderId" :placeholder="$t('rule.qsrdingdanhao')"
@keyup.enter.native="getList" clearable @clear="getList">
</el-input>
</span>
</li>
......@@ -180,7 +184,8 @@
</td>
<td>{{ item.T_ContractNum }}</td>
<td style="text-align:left">
<span v-if="item.Tourists_Sign&&item.Tourists_Sign!=''" style="color:green;">【{{$t('objFill.yiqianzi')}}】</span>
<span v-if="item.Tourists_Sign&&item.Tourists_Sign!=''"
style="color:green;">【{{$t('objFill.yiqianzi')}}】</span>
<span v-else style="color:red;">【{{$t('objFill.weiqianzi')}}】</span>
{{ item.Tourists_Name }}
</td>
......@@ -319,25 +324,21 @@
//提交并盖章
SubmitContract(item) {
var that = this;
this.Confirm(that.$t('objFill.shifoutjbgzcht'), function () {
console.log(res,'----444')
this.apipost(
"travelcontract_post_UpdateTravelContractStatusService", {
var tipMsg = that.$t('objFill.shifoutjbgzcht');
var postMsg = {
ID: item.ID,
Status: 1
},
}
this.Confirm(tipMsg, function () {
that.apipost("travelcontract_post_UpdateTravelContractStatusService", postMsg,
res => {
console.log(res,'----111')
if (res.data.resultCode == 1) {
that.Success(res.data.message);
that.getList();
} else {
console.log('----22')
that.Error(res.data.message);
}
},
err => { console.log(res,'----333')}
);
}, null);
});
},
//复制合同
......@@ -525,5 +526,4 @@
}
}
};
</script>
\ No newline at end of file
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