Commit 72babe7b authored by liudong1993's avatar liudong1993

1

parent eb887cf1
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
<ul> <ul>
<li> <li>
<em>出团公司</em> <em>出团公司</em>
<el-select filterable v-model='msg.OutBranchId' <el-select class="permiss-input w160" filterable v-model='msg.OutBranchId'
@change='getControlList()'> @change='getControlList()'>
<el-option :label="$t('pub.unlimitedSel')" :value="-1" :key="-1"></el-option> <el-option :label="$t('pub.unlimitedSel')" :value="-1" :key="-1"></el-option>
<el-option <el-option
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
<li> <li>
<span> <span>
<em>团类型</em> <em>团类型</em>
<el-select class="w200" v-model="msg.PriceTeamType" filterable :placeholder="$t('pub.pleaseImport')" <el-select class="permiss-input w160" v-model="msg.PriceTeamType" filterable :placeholder="$t('pub.pleaseImport')"
@change="getControlList()"> @change="getControlList()">
<el-option :label="$t('pub.unlimitedSel')" value="-1"> <el-option :label="$t('pub.unlimitedSel')" value="-1">
</el-option> </el-option>
...@@ -30,18 +30,32 @@ ...@@ -30,18 +30,32 @@
<li> <li>
<span> <span>
<em>团号</em> <em>团号</em>
<el-input maxlength="50" v-model="msg.TCNUM" class="permiss-input w200" <el-input maxlength="50" v-model="msg.TCNUM" class="permiss-input w160"
@keyup.enter="getControlList" :placeholder="$t('pub.pleaseImport')"></el-input> @keyup.enter="getControlList" :placeholder="$t('pub.pleaseImport')"></el-input>
</span> </span>
</li> </li>
<li> <li>
<span> <span>
<em>编号</em> <em>编号</em>
<el-input maxlength="6" v-model="msg.TCID" class="permiss-input 200" <el-input maxlength="6" v-model="msg.TCID" class="permiss-input w160"
@keyup.native.enter="getControlList" :placeholder="$t('pub.pleaseImport')" @keyup.native.enter="getControlList" :placeholder="$t('pub.pleaseImport')"
@keyup.native="checkInteger(msg,'TCID')"></el-input> @keyup.native="checkInteger(msg,'TCID')"></el-input>
</span> </span>
</li> </li>
<li>
<span>
<em>出团日期</em>
<el-date-picker
style="height: 34px;"
value-format="yyyy-MM-dd"
v-model="DatelistBM"
type="daterange"
:range-separator="$t('OrderList.zhi')"
:start-placeholder="$t('OrderList.star')"
:end-placeholder="$t('OrderList.end')" @change="getDatesBM">
</el-date-picker>
</span>
</li>
<li v-if="userinfo.ActionMenuCode.indexOf('Finance_clumpSeeAll')!=-1"> <li v-if="userinfo.ActionMenuCode.indexOf('Finance_clumpSeeAll')!=-1">
<span><em>只看待我审核</em> <span><em>只看待我审核</em>
<el-switch <el-switch
...@@ -280,6 +294,8 @@ ...@@ -280,6 +294,8 @@
OutBranchId: -1, OutBranchId: -1,
OutGroupAuditState: 1, OutGroupAuditState: 1,
OutGroupAuditEmpId: 0,//当前登录用户id , 如果有查询所有的权限 则=0 OutGroupAuditEmpId: 0,//当前登录用户id , 如果有查询所有的权限 则=0
QStartDate: '',
QEndDate: ''
}, },
TeamListArr:[], TeamListArr:[],
total:0, total:0,
...@@ -295,7 +311,8 @@ ...@@ -295,7 +311,8 @@
RB_Group_Id:'0', RB_Group_Id:'0',
Status:'0', Status:'0',
}, },
userinfo: {} userinfo: {},
DatelistBM:[]
} }
}, },
components: { components: {
...@@ -326,6 +343,15 @@ ...@@ -326,6 +343,15 @@
}, },
methods: { methods: {
getDatesBM(){
if(this.DatelistBM){
this.msg.QStartDate = this.DatelistBM[0];
this.msg.QEndDate = this.DatelistBM[1];
}if(!this.DatelistBM){
this.msg.QStartDate = '';
this.msg.QEndDate = '';
}
},
getPendingMyTrial(){ getPendingMyTrial(){
let ActionMenuCode=this.userinfo.ActionMenuCode; let ActionMenuCode=this.userinfo.ActionMenuCode;
if(ActionMenuCode.indexOf('Finance_clumpSeeAll')!=-1){ if(ActionMenuCode.indexOf('Finance_clumpSeeAll')!=-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