|
@@ -9,7 +9,7 @@
|
|
|
inactive-text="元"
|
|
|
/>
|
|
|
|
|
|
- <el-select size="small" style="margin-right:10px;width:145px" v-model="companyNo" @change="requestData" :disabled="isEmpty">
|
|
|
+ <el-select size="small" style="margin-right:10px;width:105px" v-model="companyNo" @change="requestData" :disabled="isEmpty">
|
|
|
<el-option
|
|
|
v-for="depart in companies"
|
|
|
:key="depart.value"
|
|
@@ -38,7 +38,7 @@
|
|
|
<el-row style="margin-top: 10px; display: flex;" v-if="!isEmpty">
|
|
|
<el-table border size="mini" :data="list" :span-method="spanMethod" :cell-class-name="setCellClassName">
|
|
|
<el-table-column fixed="left" label="公司" prop="company" align="center" width="45px" />
|
|
|
- <el-table-column fixed="left" label="部门" prop="depart" align="center" width="70px">
|
|
|
+ <el-table-column fixed="left" label="部门" prop="depart" align="center" width="60px">
|
|
|
<template slot-scope="scope">
|
|
|
<p style="margin:0px" v-for="(chunk,index) in scope.row.depart.split('@')" :key="index">
|
|
|
{{chunk}}
|
|
@@ -223,7 +223,7 @@ export default {
|
|
|
|
|
|
let mapDepart = ["百辰","泓源","普润","平台"]
|
|
|
list = mapDepart.map(d => list.find(({ depart }) => depart === d))
|
|
|
- const mapToDepartment = { 百辰:"客服部@百辰荣达", 泓源:"网络部@泓源广诚", 普润:" 项目部@普润心堂", 平台:" 平台部@万宇恒通" }
|
|
|
+ const mapToDepartment = { 百辰:"客服部@百辰", 泓源:"网络部@泓源", 普润:" 项目部@普润", 平台:" 平台部@万宇" }
|
|
|
|
|
|
const company = this.companies.find(item => item.value === this.companyNo);
|
|
|
this.list = list.map(({depart,total_tips,dayinfo,monthinfo,mchannel_sale_total,mzy_sale_total,zy_cost_total,mchannel_cost_total,mzy_cost_total}) => {
|