Commit 731d34c4 authored by 沈良进's avatar 沈良进

save

parent a934b51f
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
@change="changeMonthHandler" placeholder="选择查询的月份"> @change="changeMonthHandler" placeholder="选择查询的月份">
</el-date-picker> </el-date-picker>
</div> </div>
<div > <div>
<span class="font-size-12" style="padding-right: 10px" <span class="font-size-12" style="padding-right: 10px"
>业务员</span >业务员</span
> >
......
...@@ -4,11 +4,27 @@ ...@@ -4,11 +4,27 @@
<div class="tools-item"> <div class="tools-item">
<h1>月度引流统计</h1> <h1>月度引流统计</h1>
</div> </div>
<div style="width: 340px;"> <div class="flex">
<div style="margin-right: 20px">
<el-date-picker v-model="msg.month" type="year" icon="el-icon-date" slot="append" class="input-with-select" <el-date-picker v-model="msg.month" type="year" icon="el-icon-date" slot="append" class="input-with-select"
format="yyyy 年" @change="changeMonthHandler" placeholder="选择查询的月份"> format="yyyy 年" @change="changeMonthHandler" placeholder="选择查询的月份">
</el-date-picker> </el-date-picker>
</div> </div>
<div>
<span class="font-size-12" style="padding-right: 10px"
>业务员</span
>
<!-- height: 40px; overflow: auto -->
<el-select style="width: 220px;" filterable multiple clearable v-model="msg.QEmployeeIdsArr" @change="changeEmployee">
<el-option
v-for="(item, index) in EmployeeList"
:key="index"
:label="item.EmName"
:value="item.EmployeeId"
>
</el-option>
</el-select>
</div></div>
<div class="rightmenu"> <div class="rightmenu">
<el-dropdown @command="handleCommand"> <el-dropdown @command="handleCommand">
<el-button class="crm-btn crm-btn-more easy-btn margin-right0"> <el-button class="crm-btn crm-btn-more easy-btn margin-right0">
...@@ -222,6 +238,7 @@ ...@@ -222,6 +238,7 @@
selfParams: { selfParams: {
queryTime: {}, queryTime: {},
}, },
EmployeeList: []
}; };
}, },
provide() { provide() {
...@@ -237,8 +254,40 @@ ...@@ -237,8 +254,40 @@
mounted() { mounted() {
this.init(); this.init();
this.initRate(); this.initRate();
this.Employee()
}, },
methods: { methods: {
changeEmployee() {
this.msg.QEmployeeIds =this.msg.QEmployeeIdsArr.join(',')
this.init();
},
// 获取业务员
Employee() {
let userInfo = this.getLocalStorage();
let msg = {
RB_Group_id: userInfo.RB_Group_id,
BranchId: -1,
DepartmentId: 0,
PostId: 0,
IsLeave: 0,
};
this.apipost2(
"admin_get_EmployeeGetList",
msg,
(res) => {
if (res.data.resultCode == 1) {
this.EmployeeList = res.data.data;
// let data = {
// EmName: "不限",
// EmployeeId: "0",
// };
// this.EmployeeList.unshift(data);
} else {
}
},
(err) => {}
);
},
handleClose(done) { handleClose(done) {
done(); done();
}, },
......
...@@ -4,6 +4,21 @@ ...@@ -4,6 +4,21 @@
<div class="tools-item"> <div class="tools-item">
<h1>年度引流统计</h1> <h1>年度引流统计</h1>
</div> </div>
<div>
<span class="font-size-12" style="padding-right: 10px"
>业务员</span
>
<!-- height: 40px; overflow: auto -->
<el-select style="width: 220px;" filterable multiple clearable v-model="msg.QEmployeeIdsArr" @change="changeEmployee">
<el-option
v-for="(item, index) in EmployeeList"
:key="index"
:label="item.EmName"
:value="item.EmployeeId"
>
</el-option>
</el-select>
</div>
<div class="rightmenu"> <div class="rightmenu">
<el-dropdown @command="handleCommand"> <el-dropdown @command="handleCommand">
<el-button class="crm-btn crm-btn-more easy-btn margin-right0"> <el-button class="crm-btn crm-btn-more easy-btn margin-right0">
...@@ -60,6 +75,8 @@ ...@@ -60,6 +75,8 @@
export default { export default {
data() { data() {
return { return {
msg: {
},
total: 0, total: 0,
tableData: [], tableData: [],
loading: false, loading: false,
...@@ -70,13 +87,46 @@ export default { ...@@ -70,13 +87,46 @@ export default {
first: "", first: "",
second: "", second: "",
}, },
EmployeeList: []
}; };
}, },
mounted() { mounted() {
this.init(); this.init();
this.initRate(); this.initRate();
this.Employee()
}, },
methods: { methods: {
changeEmployee() {
this.msg.QEmployeeIds =this.msg.QEmployeeIdsArr.join(',')
this.init();
},
// 获取业务员
Employee() {
let userInfo = this.getLocalStorage();
let msg = {
RB_Group_id: userInfo.RB_Group_id,
BranchId: -1,
DepartmentId: 0,
PostId: 0,
IsLeave: 0,
};
this.apipost2(
"admin_get_EmployeeGetList",
msg,
(res) => {
if (res.data.resultCode == 1) {
this.EmployeeList = res.data.data;
// let data = {
// EmName: "不限",
// EmployeeId: "0",
// };
// this.EmployeeList.unshift(data);
} else {
}
},
(err) => {}
);
},
init() { init() {
if (this.loading) return; if (this.loading) return;
this.loading = true; this.loading = true;
......
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