Commit d927ed09 authored by 黄奎's avatar 黄奎

11

parent 3b537ec7
......@@ -442,7 +442,7 @@ tr._item_list td:last-child {
</el-col> -->
<el-col :span="4">
<el-form-item :label="$t('advmanager.v_line')">
<el-select filterable v-model="msg.LineId" @change="getLineTeamList(msg.LineId)">
<el-select filterable multiple v-model="msg.LineIDList">
<el-option :value="0" :label="$t('pub.unlimitedSel')"></el-option>
<el-option
v-for="item in LineList"
......@@ -582,6 +582,8 @@ export default {
OutBranchId: "",
TCID: "",
LineId:"",
LineIDList:[],
QLineIds:"",
QStartDate: "",
QEndDate: "",
EmployeeId:''
......@@ -635,6 +637,7 @@ export default {
this.userId = userInfo.EmployeeId;
this.msg.OutBranchId=0;
this.msg.LineId=14;
this.msg.LineIDList=[14];
this.getCompanyList();
// this.getPageList();
......@@ -656,6 +659,9 @@ export default {
this.msg.OutBranchId = -1;
if (!this.msg.TCID) this.msg.TCID = 0;
if (this.msg.QStartDate == "") this.msg.QStartDate = new Date().getFullYear()+"";
this.msg.LineId=0;
this.msg.QLineIds = "";
this.msg.QLineIds = this.msg.LineIDList.join(',');
this.apipost('financestatistics_post_GetPeopleMonthReportList', this.msg, res=>{
if (res.data.resultCode == 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