Commit 35bd895b authored by zhengke's avatar zhengke

增加筛选

parent 8a854205
...@@ -31,6 +31,10 @@ ...@@ -31,6 +31,10 @@
.TC_firTable td{height:20px!important;text-align: center!important;} .TC_firTable td{height:20px!important;text-align: center!important;}
.TC_midTable td{text-align: center!important;} .TC_midTable td{text-align: center!important;}
.TC_showUnion{float:right;color:#2aaef2;cursor: pointer;margin-bottom:10px;} .TC_showUnion{float:right;color:#2aaef2;cursor: pointer;margin-bottom:10px;}
.TCL_Content span{
display: inline-block;
margin-right:10px;
}
</style> </style>
<template> <template>
<div> <div>
...@@ -59,6 +63,16 @@ ...@@ -59,6 +63,16 @@
</el-select> </el-select>
</span> </span>
</li> </li>
<li>
<span>
<em>团控类型</em>
<el-select class="w150" v-model="queryMsg.FreePlanType" filterable :placeholder="$t('pub.pleaseSel')">
<el-option :label="$t('pub.unlimitedSel')" :value="-1"></el-option>
<el-option label="自由行" :value="1" :key="1"></el-option>
<el-option label="计划方案" :value="2" :key="2"></el-option>
</el-select>
</span>
</li>
<li> <li>
<span> <span>
<em>团号</em> <em>团号</em>
...@@ -263,6 +277,7 @@ ...@@ -263,6 +277,7 @@
<div> <div>
<div class="TC_teamType"> <div class="TC_teamType">
<span v-if="item.IsB2B==0" title="内部团"></span> <span v-if="item.IsB2B==0" title="内部团"></span>
<span v-if="item.FreePlan==1" title="计划方案"></span>
</div> </div>
<div class="TCL-OutBranchName" title="销售公司">{{item.OutBranchName}}</div> <div class="TCL-OutBranchName" title="销售公司">{{item.OutBranchName}}</div>
<div class="TCL-TOPTCNUM">({{item.TCID}}) {{item.TCNUM}}</div> <div class="TCL-TOPTCNUM">({{item.TCID}}) {{item.TCNUM}}</div>
...@@ -550,7 +565,7 @@ ...@@ -550,7 +565,7 @@
</div> </div>
</div> </div>
</div> </div>
<div class="TC_remarkContent" v-if="item.OPRemark||item.OPInnerRemark"> <div class="TC_remarkContent" v-if="item.OPRemark||item.OPInnerRemark||item.PriceTagList">
<div class="clearfix TCL-redType" v-if="item.OPRemark"> <div class="clearfix TCL-redType" v-if="item.OPRemark">
<div class="TCL_remarkTitle">OP对外备注:</div> <div class="TCL_remarkTitle">OP对外备注:</div>
<div class="TCL_Content">{{item.OPRemark}}</div> <div class="TCL_Content">{{item.OPRemark}}</div>
...@@ -559,6 +574,12 @@ ...@@ -559,6 +574,12 @@
<div class="TCL_remarkTitle">OP对内备注:</div> <div class="TCL_remarkTitle">OP对内备注:</div>
<div class="TCL_Content">{{item.OPInnerRemark}}</div> <div class="TCL_Content">{{item.OPInnerRemark}}</div>
</div> </div>
<div class="clearfix TCL-redType" v-if="item.PriceTagList.length>0">
<div class="TCL_remarkTitle">标签:</div>
<div class="TCL_Content">
<span v-for="chidItem in item.PriceTagList">{{chidItem.Content}}</span>
</div>
</div>
</div> </div>
</li> </li>
</ul> </ul>
...@@ -721,7 +742,9 @@ ...@@ -721,7 +742,9 @@
RateOn: "-1", RateOn: "-1",
TeamType:1,//小包团 TeamType:1,//小包团
//是否显示联运 //是否显示联运
IsShowUnion: 1 IsShowUnion: 1,
//团控状态
FreePlanType:-1
}, },
remarkMsg: { remarkMsg: {
TCID: 0, TCID: 0,
...@@ -874,6 +897,7 @@ ...@@ -874,6 +897,7 @@
}); });
} }
}); });
console.log(this.queryCommonData.dataList,'dataList');
} }
}, },
err => {} err => {}
......
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