Blame view

admin-web-master/src/views/revenue/totalsales/index.vue 17.5 KB
3f535f30   杨鑫   '初始'
1
2
3
4
5
6
7
8
9
10
11
12
  <template>
  
    <div style="background-color:#f7f7f7;padding:10px 10px;">
      <div class="history">
        <div style="height:58px;line-height:58px;">
          <div style="color:#0006"> <span>渠道额统计分析</span> <span style="padding:0 5px;">></span> <span
              style="color:#000000e6">销售总额统计</span></div>
        </div>
       <div >
  
           <!-- 顶部搜索 -->
           <div class="toolbar">
cc748250   杨鑫   '2'
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
             <el-form ref="formParams" :inline="true" :model="pageIndex">
               <el-form-item label="渠道">
               <el-select  placeholder="全部"
                 v-model="pageIndex.ticketChannel"
                 style="width: 120px;margin-right: 15px">
                 <el-option label="大麦" value="大麦" />
                 <el-option label="猫眼" value="猫眼" />
                 <el-option label="携程" value="携程" />
                 <el-option label="美团" value="美团" />
               </el-select>
               </el-form-item>
               <el-form-item label="票种">
               <el-select  placeholder="全部"   v-model="pageIndex.ticketType"
                 style="width: 120px;margin-right: 15px">
                 <el-option label="电影票" value="电影票" />
                 <el-option label="演唱会票" value="演唱会票" />
               </el-select>
               </el-form-item>
3f535f30   杨鑫   '初始'
31
32
               <el-form-item label="日期">
                 <el-date-picker
cc748250   杨鑫   '2'
33
                   v-model="pageIndex.list"
3f535f30   杨鑫   '初始'
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
                   type="daterange"
  
                   range-separator="至"
                   start-placeholder="开始时间"
                   end-placeholder="结束时间"
                   value-format="yyyy-MM-dd"
                 />
               </el-form-item>
  
               <el-form-item label-width="0">
                 <el-button   @click="search('formParams')" style="background-color: #3F9B6A;color: #fff">查询</el-button>
                 <el-button  @click="clear('formParams')" class="buttonHover"
                style="color: #606266;border: 1px solid #dddfe5;background-color: #fff;">重置</el-button>
               </el-form-item>
             </el-form>
           </div>
cc748250   杨鑫   '2'
50
51
52
           <div>
             <el-button  style="background-color: #3F9B6A;color: #fff" @click="daochu">导出</el-button>
           </div>
3f535f30   杨鑫   '初始'
53
54
55
56
57
58
59
60
       </div>
          <!-- 表格 -->
          <div class="content_table" style="padding: 15px 10px 10px 20px;background-color:#F2F3F5">
            <div style="background-color: #fff;padding: 10px;margin-bottom: 20px;">
            <div style='padding:20px 10px;background-color:#fff;'>
              <div style="display:flex;font-size:14px;justify-content: space-around">
                <div style="width:10%;border-right:1px solid #F2F2F2">
                  <div style="margin-bottom: 10px;font-weight: 600;">总销售额(元)</div>
cc748250   杨鑫   '2'
61
                  <div style="font-weight: 600;">{{moyeOne}}</div>
3f535f30   杨鑫   '初始'
62
63
64
                </div>
                <div style="width:10%;border-right:1px solid #F2F2F2">
                  <div style="margin-bottom: 10px;font-weight: 600;">美团销售总额(元)</div>
cc748250   杨鑫   '2'
65
                  <div style="font-weight: 600;">{{meimoye}}</div>
3f535f30   杨鑫   '初始'
66
67
68
                </div>
                <div style="width:10%;border-right:1px solid #F2F2F2">
                   <div style="margin-bottom: 10px;font-weight: 600;">大麦销售总额(元)</div>
cc748250   杨鑫   '2'
69
                  <div style="font-weight: 600;">{{moyeTwo}}</div>
3f535f30   杨鑫   '初始'
70
71
72
                </div>
                <div style="width:10%;border-right:1px solid #F2F2F2">
                   <div style="margin-bottom: 10px;font-weight: 600;">携程销售总额(元)</div>
cc748250   杨鑫   '2'
73
                   <div style="font-weight: 600;">{{moyethree}}</div>
3f535f30   杨鑫   '初始'
74
                </div>
cc748250   杨鑫   '2'
75
       <!--         <div style="width:10%;border-right:1px solid #F2F2F2">
3f535f30   杨鑫   '初始'
76
77
78
79
80
81
82
83
84
85
                  <div style="margin-bottom: 10px;font-weight: 600;">票种1销售总额(元)</div>
                   <div style="font-weight: 600;">100,000.00</div>
                </div>
                <div style="width:10%;border-right:1px solid #F2F2F2">
                  <div style="margin-bottom: 10px;font-weight: 600;">票种1销售总额(元)</div>
                   <div style="font-weight: 600;">100,000.00</div>
                </div>
                <div style="width:10%">
                  <div style="margin-bottom: 10px;font-weight: 600;">票种2销售总额(元)</div>
                   <div style="font-weight: 600;">100,000.00</div>
cc748250   杨鑫   '2'
86
                </div> -->
3f535f30   杨鑫   '初始'
87
88
89
90
91
92
93
94
              </div>
            </div>
         </div>
         <!-- 图表 -->
                 <div style="display: flex;">
                        <div style="background-color: #fff;padding: 10px;margin-right: 10px;width: 32%;">
                          <div style="display: flex;border-bottom:1px solid #F2F2F2;justify-content: space-between;padding: 5px; 0 15px 0">
                            <div style="line-height: 200%;">总销售额趋势表</div>
cc748250   杨鑫   '2'
95
                            <!-- <el-button  style="background-color: #3F9B6A;color: #fff">导出</el-button> -->
3f535f30   杨鑫   '初始'
96
97
                          </div>
                          <div style="margin:10px 0 15px 0">
cc748250   杨鑫   '2'
98
                             <!-- <el-date-picker
3f535f30   杨鑫   '初始'
99
100
101
102
103
104
105
  
                                  v-model="value1"
                                  value-format="yyyy-mm-dd"
                                  type="daterange"
                                  range-separator="至"
                                  start-placeholder="开始日期"
                                  end-placeholder="结束日期">
cc748250   杨鑫   '2'
106
                                </el-date-picker> -->
3f535f30   杨鑫   '初始'
107
108
109
                          </div>
                          <div style="color:#000">单位:张</div>
                          <!--    折线图-->
cc748250   杨鑫   '2'
110
                            <div ref="container1" style="width: 400px; height: 400px;"></div>
3f535f30   杨鑫   '初始'
111
112
113
114
115
  
                        </div>
                        <div style="background-color: #fff;padding: 10px;margin-right: 10px;width: 32%;">
                          <div style="display: flex;border-bottom:1px solid #F2F2F2;justify-content: space-between;padding: 5px; 0 15px 0">
                            <div style="line-height: 200%;">渠道销售情况表</div>
cc748250   杨鑫   '2'
116
                            <!-- <el-button  style="background-color: #3F9B6A;color: #fff">导出</el-button> -->
3f535f30   杨鑫   '初始'
117
                          </div>
cc748250   杨鑫   '2'
118
                          <!-- <div style="margin:10px 0 15px 0">
3f535f30   杨鑫   '初始'
119
120
121
122
123
124
                               <el-radio-group v-model="radio1">
                                   <el-radio-button label="全部"></el-radio-button>
                                   <el-radio-button label="美团"></el-radio-button>
                                   <el-radio-button label="大麦"></el-radio-button>
                                   <el-radio-button label="携程"></el-radio-button>
                                 </el-radio-group>
cc748250   杨鑫   '2'
125
                          </div> -->
3f535f30   杨鑫   '初始'
126
127
128
129
130
131
132
133
                          <div style="color:#000">单位:元</div>
                          <!--    柱状图-->
                            <div ref="container2" style="width: 400px; height: 400px;"></div>
  
                        </div>
                        <div style="background-color: #fff;padding: 10px;width: 32%;">
                          <div style="display: flex;border-bottom:1px solid #F2F2F2;justify-content: space-between;padding: 5px; 0 15px 0">
                            <div style="line-height: 200%;">票种销售额情况表</div>
cc748250   杨鑫   '2'
134
                            <!-- <el-button  style="background-color: #3F9B6A;color: #fff">导出</el-button> -->
3f535f30   杨鑫   '初始'
135
                          </div>
cc748250   杨鑫   '2'
136
                          <!-- <div style="margin:10px 0 15px 0">
3f535f30   杨鑫   '初始'
137
138
139
140
141
142
                             <el-radio-group v-model="radio2">
                                 <el-radio-button label="全部"></el-radio-button>
                                 <el-radio-button label="票种1"></el-radio-button>
                                 <el-radio-button label="票种2"></el-radio-button>
                                 <el-radio-button label="票种3"></el-radio-button>
                               </el-radio-group>
cc748250   杨鑫   '2'
143
                          </div> -->
3f535f30   杨鑫   '初始'
144
145
146
147
148
149
150
151
152
153
154
155
156
157
                          <div style="color:#000">单位:元</div>
                          <!--    柱状图-->
                            <div ref="container3" style="width: 400px; height: 400px;"></div>
  
                        </div>
                 </div>
          </div>
  
      </div>
    </div>
  </template>
  
  <script>
  import * as echarts from 'echarts';
cc748250   杨鑫   '2'
158
  import {getTotalSales,excelToTotalSales} from '@/api/piaowu'
3f535f30   杨鑫   '初始'
159
160
161
162
163
164
  export default {
    data() {
      return {
        value1:'',
        radio1:'',
        radio2:'',
3f535f30   杨鑫   '初始'
165
166
167
168
169
170
171
        total: 1,
        pageSize: 10,
        currentPage: 1,
        formParams: {
          page: 1,
          pageSize: 10
        },
cc748250   杨鑫   '2'
172
173
        tipsList: [],
         tableData: [],
3f535f30   杨鑫   '初始'
174
175
176
                chart1:null,
                chart2:null,
                chart3:null,
cc748250   杨鑫   '2'
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
   pageIndex:{
          list: [],
              page: 1,
              pageSize: 10,
              startTime:"",
              endTime:"",
              ticketChannel:"",
              ticketType:""
          },
  numOne:0,
          moyeOne:0,
          numTwo:0,
          moyeTwo:0,
          meimoye:0,
          numthree:0,
          moyethree:0,
3f535f30   杨鑫   '初始'
193
194
195
      }
    },
    mounted() {
cc748250   杨鑫   '2'
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
      this.getAll()
   // this.echar(this.$refs.container)
   //        console.log(this.$refs.container2)
   //      this.echar2(this.$refs.container2)
  
   //      this.echar3(this.$refs.container3)
   //      this.resizeChart = () => {
   //          try {
   //            this.chart.resize()
   //            this.chart2.resize()
   //            this.chart3.resize()
   //          } catch (error) {
   //            console.log(error);
   //          }
   //        };
   //        window.addEventListener('resize', this.resizeChart, false); // false代表事件句柄在冒泡阶段执行
3f535f30   杨鑫   '初始'
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
  
        // this.$nextTick(() => {
        // this.echar(this.$refs.container)
        // this.echar2(this.$refs.container2)
        // this.echar3(this.$refs.container3)
        //   this.resizeChart = () => {
        //     try {
        //       this.chart.resize()
        //       this.chart2.resize()
        //       this.chart3.resize()
        //     } catch (error) {
        //       console.log(error);
        //     }
        //   };
        //   window.addEventListener('resize', this.resizeChart, false); // false代表事件句柄在冒泡阶段执行
        // 	})
    },
  
    methods: {
cc748250   杨鑫   '2'
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
      async getAll(){
        let res =   await getTotalSales(this.pageIndex)
        this.tableData = res.data.list
        this.total = res.data.total
  
        // this.echar(res.data.list)
        let numOne =0
         let moyeOne =0
         let meimoye = 0
         let numTwo =0
          let moyeTwo =0
          let numthree=0
           let moyethree =0
  
        this.tableData.map(item=>{
             moyeOne += Number(item.price)
          if(item.ticketChannel == '美团'){
             numOne += item.num
            meimoye = meimoye + Number(item.price)
          }
         if(item.ticketChannel == '大麦'){
            numTwo += item.num
  
           moyeTwo = moyeTwo + Number(item.price)
         }
         if(item.ticketChannel == '携程'){
            numthree += item.num
  
           moyethree = moyethree + Number(item.price)
         }
        })
      this.numOne = numOne
      this.moyeOne = moyeOne
      this.numTwo = numTwo
      this.moyeTwo = moyeTwo
      this.meimoye = meimoye
   this.numthree = numthree
  this.moyethree = moyethree
  this.echar2(this.tableData)
  this.echar3( this.tableData)
  this.echar( this.tableData)
        },
        search(){
          if(this.pageIndex.list.length !=0){
            this.pageIndex.startTime = this.pageIndex.list[0]
            this.pageIndex.endTime = this.pageIndex.list[1]
          }
          this.getAll()
        },
        clear(){
          this.pageIndex = {
            list: [],
                page: 1,
                pageSize: 10,
                startTime:"",
                endTime:"",
                ticketChannel:"",
                ticketType:""
            }
            this.getAll()
        },
      echar(datas) {
        let Dom = this.$refs.container1
        let myChart = echarts.init(Dom)
        // let processedData = datas.map(item => ({
        //   name: item.ticketChannel,
        //   value: item.num
        // }))
     let processedData = datas.reduce((accumulator, item) => {
       // 查找当前名称是否已经存在于累加器中
       let existingItemIndex = accumulator.findIndex(i => i.name === item.time);
  
       // 如果存在,则累加值
       if (existingItemIndex !== -1) {
         accumulator[existingItemIndex].value += item.num;
       } else {
         // 如果不存在,则添加新项
         accumulator.push({ name: item.time, value: item.num });
       }
  
       return accumulator;
     }, []); // 初始值为空数组
        console.log(processedData)
        // this.chart1 = echarts.init(diameter);
3f535f30   杨鑫   '初始'
315
        // 指定图表的配置项和数据
cc748250   杨鑫   '2'
316
        let option = {
3f535f30   杨鑫   '初始'
317
318
           xAxis: {
              type: 'category',
cc748250   杨鑫   '2'
319
320
        data:processedData.map(item => item.name),
        },
3f535f30   杨鑫   '初始'
321
322
323
324
325
            yAxis: {
              type: 'value'
            },
            series: [
              {
cc748250   杨鑫   '2'
326
327
               data:processedData.map(item => item.value),
                type: 'line',
3f535f30   杨鑫   '初始'
328
329
              }
            ]
cc748250   杨鑫   '2'
330
          }
3f535f30   杨鑫   '初始'
331
332
  
        // 使用刚指定的配置项和数据显示图表。
cc748250   杨鑫   '2'
333
        option && myChart.setOption(option);
3f535f30   杨鑫   '初始'
334
      },
cc748250   杨鑫   '2'
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
      echar2(datas) {
        let Dom = this.$refs.container2
        let myChart = echarts.init(Dom)
        let processedData = datas.reduce((accumulator, item) => {
          // 查找当前名称是否已经存在于累加器中
          let existingItemIndex = accumulator.findIndex(i => i.name === item.ticketChannel);
  
          // 如果存在,则累加值
          if (existingItemIndex !== -1) {
            accumulator[existingItemIndex].value += Number(item.price);
          } else {
            // 如果不存在,则添加新项
            accumulator.push({ name: item.ticketChannel, value:Number(item.price)});
          }
  
          return accumulator;
        }, []); // 初始值为空数组
        // this.chart2= echarts.init(diameter);
3f535f30   杨鑫   '初始'
353
354
355
       let  option = {
          xAxis: {
            type: 'category',
cc748250   杨鑫   '2'
356
            data:processedData.map(item => item.name),
3f535f30   杨鑫   '初始'
357
358
359
360
361
362
          },
          yAxis: {
            type: 'value'
          },
          series: [
            {
cc748250   杨鑫   '2'
363
                data:processedData.map(item => item.value),
3f535f30   杨鑫   '初始'
364
              type: 'bar'
cc748250   杨鑫   '2'
365
            },
3f535f30   杨鑫   '初始'
366
  
cc748250   杨鑫   '2'
367
368
369
370
          ],
  
        };
           option && myChart.setOption(option);
3f535f30   杨鑫   '初始'
371
      },
cc748250   杨鑫   '2'
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
      echar3(datas) {
        let Dom = this.$refs.container3
        let myChart = echarts.init(Dom)
        let processedData = datas.reduce((accumulator, item) => {
          // 查找当前名称是否已经存在于累加器中
          let existingItemIndex = accumulator.findIndex(i => i.name === item.ticketType);
  
          // 如果存在,则累加值
          if (existingItemIndex !== -1) {
            accumulator[existingItemIndex].value +=Number(item.price);
          } else {
            // 如果不存在,则添加新项
            accumulator.push({ name: item.ticketType, value: Number(item.price) });
          }
  
          return accumulator;
        }, []); // 初始值为空数组
  
        // this.chart3 = echarts.init(diameter);
3f535f30   杨鑫   '初始'
391
392
393
394
        // 指定图表的配置项和数据
       let  option = {
          xAxis: {
            type: 'category',
cc748250   杨鑫   '2'
395
            data:processedData.map(item => item.name),
3f535f30   杨鑫   '初始'
396
397
398
399
400
401
          },
          yAxis: {
            type: 'value'
          },
          series: [
            {
cc748250   杨鑫   '2'
402
              data:processedData.map(item => item.value),
3f535f30   杨鑫   '初始'
403
404
405
406
407
              type: 'bar'
            }
          ]
        };
        // 使用刚指定的配置项和数据显示图表。
cc748250   杨鑫   '2'
408
        option && myChart.setOption(option)
3f535f30   杨鑫   '初始'
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
      },
      getSummaries(param) {
              const { columns, data } = param;
              const sums = [];
              columns.forEach((column, index) => {
                if (index === 0) {
                  sums[index] = '总价';
                  return;
                }
                const values = data.map(item => Number(item[column.property]));
                if (!values.every(value => isNaN(value))) {
                  sums[index] = values.reduce((prev, curr) => {
                    const value = Number(curr);
                    if (!isNaN(value)) {
                      return prev + curr;
                    } else {
                      return prev;
                    }
                  }, 0);
                  sums[index] += ' 元';
                } else {
                  sums[index] = 'N/A';
                }
              });
  
              return sums;
cc748250   杨鑫   '2'
435
436
            },
  
3f535f30   杨鑫   '初始'
437
438
439
440
441
442
          handleCurrentChange(val) {
            this.currentPage = val
          },
          handleSizeChange(val) {
            this.pageSize = val
          },
cc748250   杨鑫   '2'
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
         async daochu(){
            let res = await excelToTotalSales(this.pageIndex)
            if(!res){
              return
            }
            const blob = new Blob([res], { type: 'application/vnd.ms-excel' })
            const fileName = '总销售额明细表.xls'
            if ('download' in document.createElement('a')) {
               // 非IE下载
               const elink = document.createElement('a')
               elink.download = fileName
               elink.style.display = 'none'
               elink.href = URL.createObjectURL(blob)
               document.body.appendChild(elink)
               elink.click()
               URL.revokeObjectURL(elink.href) // 释放URL 对象
               document.body.removeChild(elink)
             } else {
              // IE10+下载
              navigator.msSaveBlob(blob, fileName)
            }
            this.$message({
              message: '导出成功',
              type: 'success'
            })
  
3f535f30   杨鑫   '初始'
469
  
cc748250   杨鑫   '2'
470
471
          },
     }
3f535f30   杨鑫   '初始'
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
   }
  </script>
  
  <style lang='scss' scoped>
  .history{
   padding: 0 20px 20px 20px;
      min-height: calc(100vh - 50px - 20px);
      background-color: #Fff;
  
  }
   ::v-deep .el-form-item__label{
          font-weight: normal;
           font-size: 14px;
  
         }
      ::v-deep .buttonHover:hover{
        color:#3f9b6a !important;
        border-color: #c5e1d2 !important;
        background-color: #ecf5f0 !important;
        outline: none;
      }
  
  </style>
  <style scoped>
  
  
  
  </style>
  <style>
  .el-tooltip__popper {
    max-width: 50%;
  }
  </style>