Commit 14c39732 authored by 吴春's avatar 吴春

报价单加出团类型和出团公司查询

parent 64fcf1ef
...@@ -64,6 +64,26 @@ ...@@ -64,6 +64,26 @@
<div class="flexOne quoTation"> <div class="flexOne quoTation">
<div class="query-box"> <div class="query-box">
<ul> <ul>
<li >
<span><em>{{$t('admin.admin_company')}}</em>
<el-select class="multiple_input" v-model="queryData.OutBranchId" filterable style="width:180px">
<el-option :label="$t('pub.unlimitedSel')" :value='-1'></el-option>
<el-option v-for='item in companyList' :key="item.id" :label="item.bName" :value="item.id">
</el-option>
</el-select>
</span>
</li>
<li >
<span><em>{{$t('system.query_type')}}</em>
<el-select v-model="queryData.TeamType" @change="postConfig.LineId=0,postConfig.LineteamId=0"
style="width:180px">
<el-option :label="$t('pub.unlimitedSel')" :value='-1'></el-option>
<el-option v-for='item in teamList' :key="item.ID" :label="item.Name" :value="item.ID">
</el-option>
</el-select>
</span>
</li>
<li> <li>
<span> <span>
<em>{{$t('system.table_ssLine')}}</em> <em>{{$t('system.table_ssLine')}}</em>
...@@ -605,11 +625,12 @@ ...@@ -605,11 +625,12 @@
PageSize: 10, PageSize: 10,
total: 0, total: 0,
currentPage: 1, currentPage: 1,
TeamType: 0, //0常规,1-小包团,2-一日游,3-地接团 TeamType: -1, //0常规,1-小包团,2-一日游,3-地接团
OfferId: "", //报价单号 OfferId: "", //报价单号
TCNUMS: "", //团号 TCNUMS: "", //团号
StartGroupDate: "", //开始时间 StartGroupDate: "", //开始时间
EndGroupDate: "", //结束时间 EndGroupDate: "", //结束时间
OutBranchId: -1, //出团公司
}, },
pickerBeginDateBefore: { pickerBeginDateBefore: {
disabledDate: time => { disabledDate: time => {
......
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