Commit 34f29ec7 authored by 吴春's avatar 吴春
parents f39bf921 fefb3799
...@@ -761,9 +761,7 @@ export default { ...@@ -761,9 +761,7 @@ export default {
}else{ }else{
this.OrderTitle='付款单'; this.OrderTitle='付款单';
} }
this.isSignMonth= [44,64,164,255,267];
if(this.Offset=='other'){ if(this.Offset=='other'){
this.isSignMonth= [44,3,64,164,255,267];
let TCIDARR = [this.tcid]; let TCIDARR = [this.tcid];
let orderObj = { let orderObj = {
OrderID: 0, OrderID: 0,
......
...@@ -77,6 +77,18 @@ ...@@ -77,6 +77,18 @@
</el-select> </el-select>
</span> </span>
</li> </li>
<li>
<span>
<em>报价单号</em>
<el-input type="text" class="multiple_input" v-model="queryData.OfferId" clearable ></el-input>
</span>
</li>
<li>
<span>
<em>团号</em>
<el-input type="text" class="multiple_input" v-model="queryData.TCNUMS" clearable></el-input>
</span>
</li>
<li> <li>
<span> <span>
<em>出发日期</em> <em>出发日期</em>
...@@ -262,7 +274,7 @@ ...@@ -262,7 +274,7 @@
<span @click="offerAudit(item,2)"></span> <span @click="offerAudit(item,2)"></span>
</el-tooltip> </el-tooltip>
</span> </span>
<span class="openGroup opbdList" v-if="item.TravelState==3" > <span class="openGroup opbdList" v-if="item.TravelState==3">
<el-tooltip class="item" effect="dark" content="驳回重新调整" placement="top-start" popper-class="max-w250"> <el-tooltip class="item" effect="dark" content="驳回重新调整" placement="top-start" popper-class="max-w250">
<span @click="refuseOffer(item)"></span> <span @click="refuseOffer(item)"></span>
</el-tooltip> </el-tooltip>
...@@ -315,6 +327,8 @@ ...@@ -315,6 +327,8 @@
StartGroupDate: "", //开始日期 StartGroupDate: "", //开始日期
EndGroupDate: "", //结束日期 EndGroupDate: "", //结束日期
RB_Branch_Id: "", //出团公司 RB_Branch_Id: "", //出团公司
OfferId: "", //报价单编号
TCNUMS: "", //团号
}, },
pickerBeginDateBefore: { pickerBeginDateBefore: {
disabledDate: time => { disabledDate: time => {
......
...@@ -827,7 +827,8 @@ ...@@ -827,7 +827,8 @@
<el-dropdown-item v-if="item.Status==1" @click.native="OutGroup(item.TCID,2)"> <el-dropdown-item v-if="item.Status==1" @click.native="OutGroup(item.TCID,2)">
{{$t('Operation.Op_jietuan')}} {{$t('Operation.Op_jietuan')}}
</el-dropdown-item> </el-dropdown-item>
<el-dropdown-item @click.native="goB2B(item.ConfigId)">{{$t('Operation.Op_b2bView')}} <el-dropdown-item @click.native="goB2B(item.ConfigId, item.TCID , 1)">
{{$t('Operation.Op_b2bView')}}
</el-dropdown-item> </el-dropdown-item>
<el-dropdown-item @click.native='goUrl("DistributionTransport",item.ID,"分销联运")'> <el-dropdown-item @click.native='goUrl("DistributionTransport",item.ID,"分销联运")'>
{{$t('Operation.Op_salelianyun')}}</el-dropdown-item> {{$t('Operation.Op_salelianyun')}}</el-dropdown-item>
...@@ -1077,6 +1078,7 @@ ...@@ -1077,6 +1078,7 @@
//团控状态 //团控状态
FreePlanType: -1 FreePlanType: -1
}, },
CurrentUserInfo: {},
showHotelObj: { showHotelObj: {
showPrice: true, //是否显示价格 showPrice: true, //是否显示价格
showPay: false, //是否显示支付方式 showPay: false, //是否显示支付方式
...@@ -1611,13 +1613,17 @@ ...@@ -1611,13 +1613,17 @@
} }
}); });
}, },
goB2B(ConfigId) { goB2B(ConfigId, tcid, type) {
window.open( var B2BDomain = this.CurrentUserInfo.B2BDomain;
"http://www.oytour.com/#/detailTwo/" + if (type == 1) {
encodeURIComponent(ConfigId) + if (this.CurrentUserInfo.RB_Group_id == 81) {
"/preview", this.$tripUtils.GotoB2BPage2(B2BDomain, ConfigId, tcid);
"_blank" } else {
); this.$tripUtils.GotoB2BPage(B2BDomain, ConfigId, tcid);
}
} else {
this.$tripUtils.GotoB2CPage(B2BDomain, ConfigId, tcid);
}
}, },
goTeamBalance(id, OutBranchId) { goTeamBalance(id, OutBranchId) {
this.$router.push({ this.$router.push({
...@@ -1873,6 +1879,7 @@ ...@@ -1873,6 +1879,7 @@
}, },
created() { created() {
let userInfo = this.getLocalStorage(); let userInfo = this.getLocalStorage();
this.CurrentUserInfo = userInfo;
// 团提成权限 // 团提成权限
let ActionMenuCode = userInfo.ActionMenuCode; let ActionMenuCode = userInfo.ActionMenuCode;
if (ActionMenuCode.indexOf("isCommissionDetails") != -1) { if (ActionMenuCode.indexOf("isCommissionDetails") != -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