3f535f30
杨鑫
'初始'
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<template>
<!-- <div style="padding: 10px;background-color:#F2F3F5"> -->
<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 class="toolbar" style="margin-bottom:10px">
<el-form ref="formParams" :inline="true" :model="formParams">
<el-form-item label="日期">
<el-date-picker v-model="formParams.dates" 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"
style="background-color: #3F9B6A;color: #fff">查询</el-button>
<el-button @click="clear"
class="buttonHover"
style="color: #606266;border: 1px solid #dddfe5;background-color: #fff;">重置</el-button>
</el-form-item>
</el-form>
<!-- <el-button @click="search"
style="background-color: #3F9B6A;color: #fff">批量导入</el-button> -->
|
e5b57447
杨鑫
'分包问卷'
|
27
28
|
<!-- <el-button @click="clear"
style="background-color: #3F9B6A;color: #fff">导出</el-button> -->
|
3f535f30
杨鑫
'初始'
|
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
</div>
<div style="padding: 15px 10px 10px 0px;background-color:#F2F3F5">
<div style="display:flex;justify-content: space-around">
<div class="midcrad" v-for="(item,index) in dataList">
<div style="margin-bottom:20px;color: #1acda1;font-size: 48px;font-weight: 600;">{{item.value}}</div>
<div style="font-size: 18px;">{{item.name}}</div>
</div>
<!-- <div class="midcrad">
<div style="margin-bottom:20px;color: #1acda1;font-size: 48px;font-weight: 600;">0</div>
<div style="font-size: 18px;">待处理订单</div>
</div>
<div class="midcrad">
<div style="margin-bottom:20px;color: #1acda1;font-size: 48px;font-weight: 600;">0</div>
<div style="font-size: 18px;">售后订单</div>
</div>
<div class="midcrad">
<div style="margin-bottom:20px;color: #1acda1;font-size: 48px;font-weight: 600;">0</div>
<div style="font-size: 18px;">已成交订单</div>
</div> -->
</div>
</div>
<div style="padding: 15px 10px 10px 0px;background-color:#F2F3F5;margin-top:15px">
<div style="display:flex;justify-content: space-around;font-size:14px">
<div class="tucard">
<div style="display: flex;justify-content: flex-end;margin-bottom:10px;">
<div style="margin-right:25%;padding:7px 0;">用户访问趋势</div>
<el-button @click="userVisitExport"
style="background-color: #3F9B6A;color: #fff">导出</el-button>
</div>
|
41c84754
杨鑫
'最新'
|
58
|
<!-- <div style="text-align:center;">订单增长趋势</div> -->
|
3f535f30
杨鑫
'初始'
|
59
60
61
62
|
<div ref="myEchart" class="full-size" />
</div>
<div class="tucard">
<div style="display: flex;justify-content: flex-end;margin-bottom:10px;">
|
179c8432
杨鑫
'商城'
|
63
|
<div style="margin-right:25%;padding:7px 0;">订单支付趋势</div>
|
3f535f30
杨鑫
'初始'
|
64
65
66
|
<el-button @click="userVisitExport"
style="background-color: #3F9B6A;color: #fff">导出</el-button>
</div>
|
41c84754
杨鑫
'最新'
|
67
|
<!-- <div style="text-align:center;">总转化率</div> -->
|
3f535f30
杨鑫
'初始'
|
68
69
70
71
72
|
<div ref="myEcharts" class="full-size" />
</div>
<div class="tucard">
<div style="display: flex;justify-content: flex-end;margin-bottom:10px;">
<div style="margin-right:25%;padding:7px 0;" >热卖商品</div>
|
e5b57447
杨鑫
'分包问卷'
|
73
|
<el-button @click="userVisitExport"
|
3f535f30
杨鑫
'初始'
|
74
75
|
style="background-color: #3F9B6A;color: #fff">导出</el-button>
</div>
|
41c84754
杨鑫
'最新'
|
76
|
<!-- <div style="text-align:center;">售后订单趋势</div> -->
|
8dca79c8
杨鑫
1
|
77
|
<div style="width:100%;max-height:500px; overflow-y: auto; scrollbar-width: none;-ms-overflow-style: none;">
|
3f535f30
杨鑫
'初始'
|
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
<ul v-if="Orderlist">
<li v-for="(value, key, index) in Orderlist" :key="index">
<p>{{index + 1 }}</p>
<p >{{ key }}</p>
<p>{{ `已售 ${key.length} 件` }}</p>
</li>
</ul>
<div v-else class="empty">
<img src="../../../assets/images/empty.png" alt>
<p>暂无数据</p>
</div>
</div>
</div>
</div>
</div>
<!-- 表格 -->
|
3d9acc2b
杨鑫
'最新'
|
94
|
<div class="tableBox">
|
8dca79c8
杨鑫
1
|
95
|
<el-table :data="tableData.slice((currentPage - 1) * pageSize, currentPage * pageSize)"
|
3d9acc2b
杨鑫
'最新'
|
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
|
:header-cell-style="{fontSize: '14px',color:'#0009',fontWeight: 'normal',backgroundColor:'#F2F3F5'}"
>
<el-table-column prop="id" label="排名">
<template slot-scope="scope">
{{scope.$index + 1 }}
</template>
</el-table-column>
<!-- <el-table-column prop="shopnum" label="商品编号">
<template slot-scope="scope">
{{scope.row.products[0].productId}}
</template>
</el-table-column> -->
<el-table-column prop="shopname" label="商品名称" width="300" show-overflow-tooltip>
<template slot-scope="scope">
{{scope.row.products[0].productName}}
</template>
</el-table-column>
<el-table-column prop="fl" label="商品分类">
<template slot-scope="scope">
{{scope.row.product.shopGroupName}}
</template>
</el-table-column>
<el-table-column prop="createTime" label="商品创建时间" show-overflow-tooltip>
<template slot-scope="scope">
{{scope.row.product.createTime}}
</template>
</el-table-column>
<el-table-column prop="bigDecimal" label="销售数量" />
<el-table-column prop="multiply" label="销售金额" />
<el-table-column prop="grossProfitRate" label="毛利率" >
<template slot-scope="scope">
{{scope.row.grossProfitRate}}%
</template>
</el-table-column>
</el-table>
<div class="fenye">
<div>共{{ total }}条</div>
<el-pagination :current-page="currentPage" :page-size="10" layout="prev, pager, next" :total="total"
@current-change="handleCurrentChange" />
|
3f535f30
杨鑫
'初始'
|
136
137
138
139
140
141
142
143
144
145
146
147
148
149
|
</div>
</div>
</div>
</div>
</template>
<script>
import echarts from 'echarts'
import {
exportOrderModel,
importOrderData,
orderStatistics,
orderStatisticsProductInformation,
|
3d9acc2b
杨鑫
'最新'
|
150
151
|
orderGetAll,
orderIndex,
|
8dca79c8
杨鑫
1
|
152
153
|
getAllNotPage,
salesRanking
|
3f535f30
杨鑫
'初始'
|
154
155
156
157
|
} from '@/api/orderany'
export default {
data() {
return {
|
3d9acc2b
杨鑫
'最新'
|
158
|
flag:false,
|
3f535f30
杨鑫
'初始'
|
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
|
list: [],
total: 1,
pageSize: 10,
currentPage: 1,
formParams: {
searchType: '1',
search: '', // 搜索字段
state: '',
// afterState: '', // 售后状态 0-无售后 1-售后中 2-售后成功 3-售后关闭
dates: [], // 下单时间数组
page: 1,
shopName: '',
pageSize: 10
},
tableData: [],
rules: {
noticeType: [{
required: true,
message: '请选择消息类型',
trigger: 'change'
}]
},
|
8dca79c8
杨鑫
1
|
181
|
|
3f535f30
杨鑫
'初始'
|
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
|
dataList: [{
name: '订单总数 (件)',
value: '0',
field: 'total'
},
{
name: '待处理订单 (件)',
value: '0',
field: 'stayOrders'
},
{
name: '售后订单 (件)',
value: '0',
field: 'stayAfters'
},
{
name: '已成交订单 (件)',
value: '0',
field: 'money'
}
],
|
3d9acc2b
杨鑫
'最新'
|
203
204
205
206
|
orderPage:{
startTime:'2000-01-01 00:00:00',
endTime:'2000-01-01 00:00:00'
}
|
3f535f30
杨鑫
'初始'
|
207
208
209
210
|
}
},
mounted() {
|
3d9acc2b
杨鑫
'最新'
|
211
212
|
let time = this.getCurrentTime()
this.orderPage.endTime =time+' '+'23:59:59'
|
3f535f30
杨鑫
'初始'
|
213
214
215
216
217
|
this.getTotalData()
},
methods: {
search(){
|
3d9acc2b
杨鑫
'最新'
|
218
219
220
221
222
223
224
|
if(this.formParams.dates.length == 0){
let time = this.getCurrentTime()
this.orderPage.endTime =time+' '+'23:59:59'
}else{
this.orderPage.startTime =this.formParams.dates[0]+' '+'00:00:00'
this.orderPage.endTime =this.formParams.dates[1]+' '+'23:59:59'
}
|
3f535f30
杨鑫
'初始'
|
225
226
|
this.getTotalData()
},
|
2067568a
杨鑫
'租金缴费'
|
227
228
229
230
231
232
233
234
235
236
237
|
clear(){
this.formParams={
searchType: '1',
search: '', // 搜索字段
state: '',
// afterState: '', // 售后状态 0-无售后 1-售后中 2-售后成功 3-售后关闭
dates: [], // 下单时间数组
page: 1,
shopName: '',
pageSize: 10
}
|
3d9acc2b
杨鑫
'最新'
|
238
239
240
241
242
243
|
this.orderPage = {
startTime:'2000-01-01 00:00:00',
endTime:'2000-01-01 00:00:00'
}
let time = this.getCurrentTime()
this.orderPage.endTime =time+' '+'23:59:59'
|
2067568a
杨鑫
'租金缴费'
|
244
245
|
this.getTotalData()
},
|
3d9acc2b
杨鑫
'最新'
|
246
247
248
249
250
251
252
|
getCurrentTime() {
const now = new Date();
const year = now.getFullYear();
const month = String(now.getMonth() + 1).padStart(2, '0');
const hour = String(now.getHours()).padStart(2, '0');
return `${year}-${month}-${hour}`;
},
|
3f535f30
杨鑫
'初始'
|
253
|
async getTotalData() {
|
3d9acc2b
杨鑫
'最新'
|
254
255
|
const res = await getAllNotPage(this.formParams)
|
8dca79c8
杨鑫
1
|
256
257
258
|
const biao = await salesRanking(res.data)
this.tableData = biao.data.sort((a, b) => b.multiply - a.multiply);
this.total = biao.data.length
|
3d9acc2b
杨鑫
'最新'
|
259
260
|
const Orderlist = await orderStatistics(res.data)
const tablelist = await orderStatisticsProductInformation(res.data)
|
3f535f30
杨鑫
'初始'
|
261
262
|
// console.log(tablelist.data.commodityInformation)
|
8dca79c8
杨鑫
1
|
263
264
265
|
// this.tableData = Object.values(tablelist.data.commodityInformation).flat();
// console.log(this.tableData)
// this.total = this.tableData.length
|
3f535f30
杨鑫
'初始'
|
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
|
this.Orderlist = Orderlist.data.bestSellers
let length = 0;
let keys = []
let totals = []
for (const key in Orderlist.data.dailyOrderVolume) {
keys.push(key)
totals.push(parseInt(Orderlist.data.dailyOrderVolume[key].length))
length += parseInt(Orderlist.data.dailyOrderVolume[key].length)
}
this.dataList[0].value = length ||0
this.dataList[1].value = Orderlist.data.pendingOrders || 0
this.dataList[2].value = Orderlist.data.afterSalesOrder || 0
this.dataList[3].value = Orderlist.data.completedOrders || 0
// if (res.code === '') {
// const d = res.data
// this.dataList.map(item => {
// item.value = d[item.field]
// })
let data = {
"time":keys,
"total":totals,
}
this.draw(data)
|
3d9acc2b
杨鑫
'最新'
|
290
291
292
|
const orderIn = await orderIndex(this.orderPage)
this.draws(orderIn.data.conversion)
|
3f535f30
杨鑫
'初始'
|
293
|
|
8dca79c8
杨鑫
1
|
294
|
|
3f535f30
杨鑫
'初始'
|
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
|
},
handleCurrentChange(val) {
this.currentPage = val
},
handleSizeChange(val) {
this.pageSize = val
},
handleSelectionChange(val) {
this.multipleSelection = val;
},
//折线图
draw(arr) {
const myEchart = echarts.init(this.$refs.myEchart, 'light')
const option = {
|
3d9acc2b
杨鑫
'最新'
|
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
|
tooltip: {
trigger: 'axis', // 触发类型为坐标轴触发
axisPointer: {
type: 'cross', // 指示器类型为十字准星
crossStyle: {
color: '#999'
}
},
formatter: function (params) {
const data = params[0];
const name = data.name; // 获取 arr.names 中的名称
const value = data.value; // 获取 arr.rates 中的次数
return ` ${value} 人`; // 自定义提示框内容
}
},
|
179c8432
杨鑫
'商城'
|
326
|
color: "#3F9B6A",
|
3f535f30
杨鑫
'初始'
|
327
328
329
330
331
332
|
xAxis: {
type: 'category',
data: arr.time
},
yAxis: {
type: 'value',
|
3d9acc2b
杨鑫
'最新'
|
333
|
name: '人数'
|
3f535f30
杨鑫
'初始'
|
334
335
336
337
338
339
340
341
342
|
},
series: [{
data: arr.total,
type: 'line'
}]
}
myEchart.setOption(option)
},
|
3d9acc2b
杨鑫
'最新'
|
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
|
filterData(arr) {
const targetNames = ["加购", "支付成功"];
const result = {
names: [],
rates: []
};
for (let i = 0; i < arr.names.length; i++) {
if (targetNames.includes(arr.names[i])) {
result.names.push(arr.names[i]);
result.rates.push(arr.rates[i]);
}
}
return result;
},
|
3f535f30
杨鑫
'初始'
|
358
|
draws(arr) {
|
3d9acc2b
杨鑫
'最新'
|
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
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
435
436
437
438
439
440
441
442
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
469
470
471
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
505
|
const filteredData = this.filterData(arr);
const myEchart = echarts.init(this.$refs.myEcharts, 'light')
const option = {
color: "#3F9B6A",
tooltip: {
trigger: 'axis', // 触发类型为坐标轴触发
axisPointer: {
type: 'cross', // 指示器类型为十字准星
crossStyle: {
color: '#999'
}
},
formatter: function (params) {
const data = params[0];
const name = data.name; // 获取 arr.names 中的名称
const value = data.value; // 获取 arr.rates 中的次数
return `${name}: ${value} 人`; // 自定义提示框内容
}
},
xAxis: {
type: 'category',
data: filteredData.names
},
yAxis: {
type: 'value',
name: '人数',
},
series: [
{
data: filteredData.rates,
type: 'line'
}
]
}
myEchart.setOption(option)
// const myEchart = echarts.init(this.$refs.myEcharts, 'light')
// // const o = this.chartData
// const option = {
// // color: ["#74d1fd", "#009ae4", "#0071c1"],
// // 设置图表的位置
// grid: {
// x: 110, // 左间距
// y: 0, // 上间距
// x2: 60, // 右间距
// y2: 40 // 下间距
// },
// // 提示框组件
// tooltip: {
// trigger: 'axis', // 触发类型, axis: 坐标轴触发
// axisPointer: {
// // 指示器类型 'line' 直线指示器 'shadow' 阴影指示器 'none' 无指示器
// // 'cross' 十字准星指示器 其实是种简写,表示启用两个正交的轴的 axisPointer
// type: 'none'
// },
// textStyle: {
// color: '#cdd3ee' // 文字颜色
// },
// // 提示框浮层内容格式器,支持字符串模板和回调函数两种形式 折线(区域)图、柱状(条形)图、K线图
// // {a}(系列名称),{b}(类目值),{c}(数值), {d}(无)
// formatter: '{b}<br />{a0}: {c0}%'
// },
// // // 图例组件
// // legend: {
// // textStyle: {
// // // 文本样式
// // fontSize: 16,
// // color: "#cdd3ee"
// // },
// // top: 13, // 定位
// // data: ["已完成", "进行中", "未完成"] // 图例的数据数组
// // },
// // X轴
// xAxis: {
// type: 'value', // 坐标轴类型, 'value' 数值轴,适用于连续数据
// // 坐标轴刻度
// axisTick: {
// show: false // 是否显示坐标轴刻度 默认显示
// },
// // 坐标轴轴线
// axisLine: {
// // 是否显示坐标轴轴线 默认显示
// show: false // 是否显示坐标轴轴线 默认显示
// },
// // 坐标轴在图表区域中的分隔线
// splitLine: {
// show: false // 是否显示分隔线。默认数值轴显示
// },
// // 坐标轴刻度标签
// axisLabel: {
// show: false // 是否显示刻度标签 默认显示
// }
// },
// yAxis: [
// // 左侧Y轴
// {
// // 坐标轴类型, 'category' 类目轴,适用于离散的类目数据
// // 为该类型时必须通过 data 设置类目数据
// type: 'category',
// // 坐标轴刻度
// axisTick: {
// show: false // 是否显示坐标轴刻度 默认显示
// },
// // 坐标轴轴线
// axisLine: {
// // 是否显示坐标轴轴线 默认显示
// show: false, // 是否显示坐标轴轴线 默认显示
// lineStyle: {
// // 坐标轴线线的颜色
// color: '#cdd3ee'
// }
// },
// // 坐标轴在图表区域中的分隔线
// splitLine: {
// show: false // 是否显示分隔线。默认数值轴显示
// },
// // 坐标轴刻度标签
// axisLabel: {
// show: true, // 是否显示刻度标签 默认显示
// fontSize: 16, // 文字的字体大小
// color: '#cdd3ee', // 刻度标签文字的颜色
// // 使用字符串模板,模板变量为刻度默认标签 {value}
// formatter: '{value}'
// },
// // 类目数据,在类目轴(type: 'category')中有效
// data: arr.names.reverse()
// }
// ],
// // 系列列表
// series: [
// {
// type: 'bar', // 系列类型
// name: '已完成',
// barMaxWidth: 20, // 柱条的最大宽度,不设时自适应
// // label: {
// // show: true,
// // position: "inside"
// // },
// itemStyle: {
// barBorderRadius: [10, 0, 0, 10] // 圆角半径, 单位px, 支持传入数组分别指定 4 个圆角半径
// },
// data: arr.rates.reverse() // 系列中的数据内容数组
// }
// ]
// }
|
3f535f30
杨鑫
'初始'
|
506
|
|
3d9acc2b
杨鑫
'最新'
|
507
|
// myEchart.setOption(option)
|
3f535f30
杨鑫
'初始'
|
508
509
|
},
//导出
|
e5b57447
杨鑫
'分包问卷'
|
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
|
// async userVisitExport() {
// this.$message({
// message: '数据导出中,请勿重复操作!',
// type: 'success'
// })
// const res = await exportOrderModel()
// 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)
// }
// },
|
3f535f30
杨鑫
'初始'
|
536
|
async userVisitExport() {
|
e5b57447
杨鑫
'分包问卷'
|
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
|
this.$message({
message: '数据导出中,请勿重复操作!',
type: 'success'
})
const res = await exportOrderModel(this.formInline)
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)
}
},
|
3f535f30
杨鑫
'初始'
|
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
|
}
}
</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 .btn .el-button:focus,
.el-button:hover {
border: 1px solid #3F9B6A;
}
::v-deep .el-button {
border: 1px solid #3F9B6A;
}
::v-deep .el-pagination.is-background .el-pager li:not(.disabled).active {
background-color: #3F9B6A;
}
</style>
<style scoped>
.history /deep/ .el-table .cell.el-tooltip img {
max-height: 100px;
}
.fenye {
|
41c84754
杨鑫
'最新'
|
598
|
margin-top: 10px;
|
3f535f30
杨鑫
'初始'
|
599
|
display: flex;
|
41c84754
杨鑫
'最新'
|
600
601
|
align-items: center;
justify-content: space-between;
|
3f535f30
杨鑫
'初始'
|
602
603
604
605
606
607
608
609
|
position: relative;
}
.pagination {
text-align: right;
line-height: 20px;
}
|
3f535f30
杨鑫
'初始'
|
610
|
|
3f535f30
杨鑫
'初始'
|
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
|
.midcrad {
border: 1px solid #F2F3F5;
background-color: #fff;
width: 22%;
padding: 15px 0;
text-align: center;
}
.tucard {
border: 1px solid #F2F3F5;
background-color: #fff;
width: 30%;
padding: 10px 5px;
}
.full-size {
width:100%;
height: 500px;
}
.empty {
|
8dca79c8
杨鑫
1
|
632
|
/* height: 450px; */
|
3f535f30
杨鑫
'初始'
|
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
|
img {
width: 80px;
height: 80px;
margin: 100px auto 10px;
display: block;
}
p {
text-align: center;
color: #333333;
}
}
.tucard{
ul {
height: calc(100% - 50px);
margin: 0;
padding: 10px 0;
li {
height: 10%;
display: flex;
margin-bottom: 20px;
p {
float: left;
text-align: center;
text-indent: 2em;
padding: 0;
margin: 0;
color: #333333;
font-size: 14px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
&:nth-child(1) {
flex: 2;
}
&:nth-child(2) {
flex: 6;
}
&:nth-child(3) {
flex: 4;
}
}
}
}
}
.tableBtn {
display: inline-block;
margin-right: 10px;
}
.greens {
color: #3F9B6A ;
}
::v-deep .buttonHover:hover{
color:#3f9b6a !important;
border-color: #c5e1d2 !important;
background-color: #ecf5f0 !important;
outline: none;
}
|
41c84754
杨鑫
'最新'
|
691
|
|
3f535f30
杨鑫
'初始'
|
692
693
694
695
696
697
|
</style>
<style>
.el-tooltip__popper {
max-width: 50%;
}
</style>
|