|
@@ -3,18 +3,27 @@
|
|
|
<div class="search clear" style="align-items: center;;">
|
|
|
<el-switch style="margin-right: 10px;" v-model="isTenThound" active-text="万元" inactive-text="元" :disabled="isEmpty" />
|
|
|
|
|
|
- <el-select size="small" style="margin-right:10px" v-model="companyNo" @change="requestData" :disabled="isEmpty">
|
|
|
+ <el-select size="small" style="margin-right:10px;width:145px" v-model="companyNo" @change="requestData" :disabled="isEmpty">
|
|
|
<el-option v-for="company in cp_companies" :key="company.value" :value="company.value" :label="company.label" />
|
|
|
</el-select>
|
|
|
|
|
|
- <el-date-picker class="fr picker" v-model="daytime" style=";width:150px" value-format="yyyy-MM-dd" :editable="false" :disabled="isEmpty"
|
|
|
+ <el-date-picker class="fr picker" v-model="daytime" style=";width:140px" value-format="yyyy-MM-dd" :editable="false" :disabled="isEmpty"
|
|
|
:clearable="false" :size="'small'" format="yyyy-MM-dd" type="date" align="right" placeholder="选择日期"
|
|
|
:picker-options="{ disabledDate(time) { return time.getTime() > Date.now(); } }" @change="requestData" />
|
|
|
</div>
|
|
|
|
|
|
<el-row style="margin-top:10px" v-if="!isEmpty">
|
|
|
<el-table border size="mini" :data="tableData" :cell-class-name="setCellClassName">
|
|
|
- <el-table-column fixed="left" label="业务公司" prop="companyName" align="center" width="190px" />
|
|
|
+ <el-table-column fixed="left" label="业务公司" prop="companyName" align="center" width="70px">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div v-if="scope.row.companyName.indexOf('普润') === -1">{{scope.row.companyName}}</div>
|
|
|
+ <div v-else>
|
|
|
+ <p style="margin:0px">普润</p>
|
|
|
+ <p style="margin:0px">锦兴</p>
|
|
|
+ <p style="margin:0px">知事</p>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="当日营业收入" align="center" width="120px">
|
|
|
<template slot-scope="scope">
|
|
|
{{ unit2TenThousand(scope.row.sale_total, isTenThound) }}
|
|
@@ -135,6 +144,7 @@
|
|
|
<script>
|
|
|
import asyncRequest from "@/api/newResults";
|
|
|
import { addition, unit2TenThousand, subtraction, multiplication, division } from "../newReport/src/_utils";
|
|
|
+import { mapCompany } from "./mapCompany";
|
|
|
|
|
|
export default {
|
|
|
props: ['companies', 'costField'],
|
|
@@ -167,8 +177,9 @@ export default {
|
|
|
if (this.cp_companies.length === 4) this.cp_companies = [{ value: "", label: "所有公司" }, ...this.cp_companies];
|
|
|
|
|
|
this.isEmpty = this.cp_companies.length === 0;
|
|
|
-
|
|
|
if(this.isEmpty) return;
|
|
|
+
|
|
|
+ this.cp_companies = this.cp_companies.map(item => ({ ...item, label:mapCompany[item.label] || item.label}))
|
|
|
|
|
|
this.companyNo = this.cp_companies[0].value;
|
|
|
this.daytime = this.transformTime();
|
|
@@ -180,7 +191,7 @@ export default {
|
|
|
// Number(addition(c1.total_tips,c2.total_tips)).toFixed(2)
|
|
|
|
|
|
return {
|
|
|
- companyName: '普润&锦兴&知事',
|
|
|
+ companyName: '普润\n锦兴\n知事',
|
|
|
cost_tips: Number(addition(c1.cost_tips, c2.cost_tips)).toFixed(2),
|
|
|
total_tips: Number(c1.total_tips).toFixed(2),
|
|
|
monthinfo: c1.monthinfo.map((item, index) => ({
|