Commit 444eb43c authored by youjie's avatar youjie

no message

parent 198526c0
......@@ -4,7 +4,7 @@
<ul>
<li>
<em>出团公司</em>
<el-select filterable v-model='msg.OutBranchId' size="small" @change='getControlList()' clearable>
<el-select filterable v-model='msg.OutBranchId' size="small" @change='getControlList()'>
<el-option label="不限" :value="-1" :key="-1"></el-option>
<el-option v-for="item in companyList" :label='item.BName' :value='item.Id' :key='item.Id'></el-option>
</el-select>
......@@ -13,7 +13,7 @@
<span>
<em>团队类型</em>
<el-select class="w200" v-model="msg.TeamType" filterable :placeholder="$t('pub.pleaseImport')" size="small"
@change="getControlList()" clearable>
@change="getControlList()">
<el-option v-for="item in groupType" :label="item.Name" :value="item.Id" :key="item.Id"></el-option>
</el-select>
</span>
......@@ -22,7 +22,7 @@
<span>
<em>审核状态</em>
<el-select class="w200" v-model="msg.BranchAuditState" filterable :placeholder="$t('pub.pleaseImport')"
size="small" @change="getControlList()" clearable>
size="small" @change="getControlList()">
<el-option v-for="item in BranchAuditStateType" :label="item.Name" :value="item.Id" :key="item.Id">
</el-option>
</el-select>
......@@ -201,9 +201,6 @@
this.StartTime = [StartTime, EndTime]
this.msg.QStartDate = StartTime
this.msg.QEndDate = EndTime
if (this.$route.query && this.$route.query.TCID) {
this.msg.TCID = this.$route.query.TCID
}
this.getCompany()
},
mounted() {
......@@ -218,6 +215,7 @@
this.msg.QStartDate = ''
this.msg.QEndDate = ''
}
this.getControlList()
},
getCompany() {
this.apipost('admin_get_BranchGetList', this.getCompanyMsg, res => {
......
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