123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310 |
- <template>
- <div class="JCDetails" style="padding: 0 50px 0 50px;">
- <h1>产值统计</h1>
- <!-- <div class="topbox">
- <div class="selec">
- <el-select v-model="value" clearable placeholder="请选择">
- <el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value">
- </el-option>
- </el-select>
- </div>
- <div class="timeselec">
- </div>
- </div> -->
- <div class="topbox" style="display: flex;justify-content: space-between;">
- <div style="flex: 1;"></div>
- <div class="selec ershi">
- <el-select v-model="value" filterable multiple collapse-tags clearable placeholder="请选择">
- <el-option v-for="(item, index) in options" :key="index" :label="item.text" :value="item.value">
- </el-option>
- </el-select>
- </div>
- <div class="timeselec ershi">
- <el-date-picker v-model="value1" type="daterange" range-separator="至" start-placeholder="开始日期"
- end-placeholder="结束日期">
- </el-date-picker>
- </div>
- <button class="ershi" style="width: 100px;height: 40px;background-color: aqua;"
- @click="chaxun2(value, value1)">查询</button>
- </div>
- <div> <el-table ref="table" show-summary :height="taheight" :summary-method="getSummaries" :header-cell-style="{
- background: 'rgba(30, 111, 200,0.8)',
- color: 'white',
- textAlign: 'center',
- border: '1px rgb(70, 91, 117) solid',
- }" :data="tableData" style="width: 100%">
- <el-table-column prop="company" fixed label="品牌" width="100">
- </el-table-column>
- <el-table-column label="收入类">
- <el-table-column prop="pjls" sortable label="配件零售" width="110">
- </el-table-column>
- <el-table-column label="首保收入">
- <el-table-column prop="sbgs" sortable width="110" label="首保工时">
- </el-table-column>
- <el-table-column prop="sbll" sortable width="110" label="首保领料">
- </el-table-column>
- </el-table-column>
- <el-table-column label="索赔收入">
- <el-table-column prop="spll" sortable width="110" label="索赔领料">
- </el-table-column>
- <el-table-column prop="spgs" sortable width="110" label="索赔工时">
- </el-table-column>
- </el-table-column>
- <el-table-column label="定保收入">
- <el-table-column prop="dbgs" sortable width="110" label="定保工时">
- </el-table-column>
- <el-table-column prop="dbll" sortable width="110" label="定保领料">
- </el-table-column>
- </el-table-column>
- <el-table-column label="一般维修收入">
- <el-table-column prop="ybwxll" sortable width="110" label="外修领料">
- </el-table-column>
- <el-table-column prop="ybwxgs" sortable width="110" label="外修工时">
- </el-table-column>
- </el-table-column>
- <el-table-column label="事故收入">
- <el-table-column prop="bpll" sortable width="110" label="事故材料">
- </el-table-column>
- <el-table-column prop="bpgs" sortable width="110" label="事故工时">
- </el-table-column>
- </el-table-column>
- <el-table-column prop="jpsr" sortable label="精品">
- </el-table-column>
- <el-table-column prop="qtsr" sortable label="其他收入">
- </el-table-column>
- <el-table-column prop="srhj" sortable label="收入合计">
- </el-table-column>
- </el-table-column>
- </el-table></div>
- </div>
- </template>
- <script>
- import { column } from "./tuozhuai";
- import { cztjtabledataInfo } from "../../../servuces/prove";
- import { nowdaterange } from "../../../servuces/getnowtime";
- export default {
- data () {
- return {
- taheight: window.innerHeight - (window.innerHeight * 0.15),
- tableData: [],
- tableDatahj: [],
- options: [],
- value: '',
- value1: '',
- activeName: 'first'
- }
- },
- created () {
- const data = sessionStorage.getItem('data')
- console.log(data);
- if (data) {
- this.options = JSON.parse(data)
- }
- },
- mounted () {
- column(this)
- this.cztjtabledataapi()
- },
- updated () {
- this.$nextTick(() => {
- this.$refs.table.doLayout()
- })
- },
- methods: {
- // handleClick(tab, event) {
- // console.log(tab, event);
- // },
- getSummaries () {
- const keyindex = {
- 'company': 0,
- 'pjls': 1,
- 'sbgs': 2,
- 'sbll': 3,
- 'spll': 4,
- 'spgs': 5,
- 'dbgs': 6,
- 'dbll': 7,
- 'ybwxll': 8,
- 'ybwxgs': 9,
- 'bpll': 10,
- 'bpgs': 11,
- 'jpsr': 12,
- 'qtsr': 13,
- 'srhj': 14,
- }
- const item_value = []
- for (let key in this.tableDatahj) {
- let index = keyindex[key]
- item_value[index] = this.tableDatahj[key] + ''
- }
- // console.log(item_value);
- item_value[0] = '合计'
- return item_value
- },
- chaxun2 (value, value1) {
- const strvalue = value.join(',')
- if (value1) {
- const strvaluezh = value1.map(item => {
- const date = new Date(item)
- // 获取年份和月份
- const year = date.getFullYear();
- const month = date.getMonth() + 1; // 月份从0开始,需要加1
- const day = date.getDate()
- // 将年份和月份拼接成所需形式的字符串
- return `${year}-${month}-${day}`;
- });
- cztjtabledataInfo({ "company_ids": strvalue, "date_begin": strvaluezh[0], 'date_end': strvaluezh[1] }).then(res => {
- // console.log('查询分期业务', res);
- this.tableData = res.rows
- this.tableDatahj = res.footer
- console.log(res);
- }
- )
- } else {
- cztjtabledataInfo({ "company_ids": strvalue, "date_begin": '', 'date_end': '' }).then(res => {
- // console.log('查询分期业务', res);
- this.tableData = res.rows
- this.tableDatahj = res.footer
- console.log(res);
- }
- )
- }
- // const strvalue1 = strvaluezh.join(',')
- // console.log(strvaluezh[0], strvaluezh[1]);
- // const date = new Date(value1)
- // // 获取年份和月份
- // const year = date.getFullYear();
- // const month = String(date.getMonth() + 1); // 月份从0开始,需要加1
- // const day = String(date.getDate())
- // // 将年份和月份拼接成所需形式的字符串
- // const strvalue1 = `${year}-${month}-${day}`;
- // const strvalue3=
- // console.log(strvalue, strvaluezh[0], strvaluezh[1]);
- // console.log(strvalue, strvalue1);
- // console.log(value, value1);
- },
- cztjtabledataapi () {
- this.value1 = nowdaterange
- cztjtabledataInfo({ "company_ids": '', "date_begin": nowdaterange[0], 'date_end': nowdaterange[1] }).then(res => {
- // console.log(res);
- this.tableData = res.rows
- this.tableDatahj = res.footer
- })
- }
- }
- }
- </script>
- <style>
- /* .el-table tr {
- background-color: none;
- color: white;
- } */
- .el-table .warning-row {
- background-color: rgba(15, 78, 146, 0.827);
- }
- .el-table .success-row {
- background-color: rgb(15, 78, 146, 0.5);
- }
- .has-gutter tr th:last-child {
- background-color: rgba(30, 111, 200, 0.8);
- }
- .el-table tr {
- background-color: rgb(15, 78, 146, 0.5);
- }
- </style>
- <style scoped lang="scss">
- .JCDetails {
- .selec {
- margin: 0 0 20px 0;
- }
- }
- ::v-deep .el-table__footer {
- border: none;
- tr {
- border: none;
- td {
- border: none;
- color: white;
- background-color: rgba(30, 111, 200, 0.8);
- }
- td:hover {
- color: white;
- }
- }
- }
- ::v-deep .el-table {
- background-color: transparent;
- border-color: rgb(70, 91, 117);
- }
- ::v-deep .el-table td,
- .building-top .el-table th.is-leaf {
- border-color: rgb(70, 91, 117);
- color: white;
- }
- ::v-deep .el-table__body tr.hover-row>td.el-table__cell {
- background-color: rgb(58, 147, 189) !important;
- }
- ::v-deep .el-table td:hover {
- color: rgb(5, 51, 159);
- }
- ::v-deep .gutter {
- background-color: rgba(30, 111, 200, 0.8) !important;
- border: 0 !important;
- }
- ::v-deep .has-gutter th {
- border-color: rgb(70, 91, 117);
- }
- ::v-deep .el-table--enable-row-hover .el-table__body tr:hover>td {
- background-color: rgb(58, 147, 189);
- }
- ::v-deep #tab-first,
- ::v-deep #tab-second,
- ::v-deep #tab-third,
- ::v-deep #tab-fourth {
- color: #fff; //设置修改默认蚊子颜色,背景颜色,等
- }
- ::v-deep .el-tabs__item.is-active {
- color: rgb(37, 99, 214) !important;
- }
- </style>
|