manage-client 3.2.160 → 3.2.162
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/dev-server.js +176 -176
- package/package.json +1 -1
- package/src/components/sale/businessquery/BusinessManage.vue +3 -0
- package/src/components/sale/businessquery/FillGasQuery.vue +1 -1
- package/src/components/sale/businessquery/PrintSheetQuery.vue +212 -0
- package/src/filiale/zhongyi/CallReport/CallReportMainPage.vue +43 -22
- package/src/filiale/zhongyi/CallReport/DropDownBox.vue +74 -0
- package/src/filiale/zhongyi/CallReport/IncomingTelegram.vue +9 -17
- package/src/filiale/zhongyi/CallReport/PercentageComplete.vue +44 -11
- package/src/filiale/zhongyi/CallReport/PercentageCompleteEchart.vue +1 -2
- package/src/filiale/zhongyi/CallReport/ServiceStatus.vue +5 -5
- package/src/filiale/zhongyi/CallReport/SwiperTools.vue +35 -30
- package/src/filiale/zhongyi/CallReport/SwiperTools2.vue +67 -34
- package/src/filiale/zhongyi/CallReport/Time.vue +2 -2
- package/src/filiale/zhongyi/CallReport/Userinfo.vue +8 -8
- package/src/filiale/zhongyi/CallReport/WorkOrderPage.vue +96 -8
- package/src/filiale/zhongyi/sale.js +2 -1
- package/src/main.js +66 -66
- package/src/saleManage.js +3 -0
|
@@ -1,64 +1,70 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="main-basic">
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
3
|
<!-- <basic-page ></basic-page>-->
|
|
7
|
-
|
|
8
4
|
<!-- <!–左侧内容模块–>-->
|
|
9
5
|
<!-- <template v-slot:contentLeft>-->
|
|
10
6
|
<!-- <left-content-page></left-content-page>-->
|
|
11
7
|
<!-- </template>-->
|
|
12
8
|
<!-- <!–右侧–>-->
|
|
13
|
-
|
|
9
|
+
<!--分公司下拉框-->
|
|
10
|
+
<drop-down-box @select="selectIndex"></drop-down-box>
|
|
14
11
|
<weather-data></weather-data>
|
|
15
12
|
<time></time>
|
|
16
13
|
<div class="content-header">中邑燃气</div>
|
|
17
|
-
<div class="inform"><span><i></i>{{ data.inform }}</span></div>
|
|
14
|
+
<div class="inform" v-if="false"><span><i></i>{{ data.inform }}</span></div>
|
|
18
15
|
<!--工单模块-->
|
|
19
|
-
<work-order-page></work-order-page>
|
|
16
|
+
<work-order-page :filiale-id="filiale"></work-order-page>
|
|
20
17
|
<!--完成率模块-->
|
|
21
|
-
<percentage-complete></percentage-complete>
|
|
18
|
+
<percentage-complete :filiale-id="filiale"></percentage-complete>
|
|
22
19
|
<!--完成率echart-->
|
|
23
20
|
<percentage-complete-echart></percentage-complete-echart>
|
|
24
21
|
<!--用户模块-->
|
|
25
22
|
<userinfo></userinfo>
|
|
26
23
|
<!--来电统计模块-->
|
|
27
24
|
<incoming-telegram :row="model"></incoming-telegram>
|
|
28
|
-
|
|
29
25
|
<!---->
|
|
30
|
-
|
|
31
|
-
<rate-
|
|
32
|
-
<rate-bottom></rate-bottom>-->
|
|
26
|
+
<!-- <rate-top></rate-top>-->
|
|
27
|
+
<!-- <rate-bottom></rate-bottom>-->
|
|
33
28
|
<!--客服状态模块-->
|
|
34
29
|
<service-status></service-status>
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
30
|
</div>
|
|
40
|
-
|
|
41
|
-
|
|
42
31
|
</template>
|
|
43
32
|
|
|
44
33
|
<script>
|
|
45
34
|
import WorkOrderPage from "./WorkOrderPage";
|
|
35
|
+
// import Select from "./Select";
|
|
36
|
+
import {HttpResetClass} from "vue-client";
|
|
46
37
|
import PercentageComplete from "./PercentageComplete";
|
|
38
|
+
import PercentageCompleteEchart from "./PercentageCompleteEchart";
|
|
39
|
+
import RateTop from "./RateTop";
|
|
47
40
|
import RateBottom from "./RateBottom";
|
|
48
41
|
import WeatherData from "./WeatherData";
|
|
42
|
+
import ServiceStatus from "./ServiceStatus";
|
|
43
|
+
import IncomingTelegram from "./IncomingTelegram";
|
|
44
|
+
import DropDownBox from "./DropDownBox";
|
|
49
45
|
export default {
|
|
50
|
-
components: {
|
|
46
|
+
components: {ServiceStatus,IncomingTelegram,DropDownBox, WeatherData, PercentageComplete,PercentageCompleteEchart, WorkOrderPage,RateTop,RateBottom},
|
|
51
47
|
title:'CallReportMainPage',
|
|
52
48
|
data() {
|
|
53
49
|
return {
|
|
54
50
|
// model:"初入数据",
|
|
55
51
|
data:{
|
|
56
52
|
inform:'2022.3.7号停气',
|
|
57
|
-
|
|
58
|
-
|
|
53
|
+
},
|
|
54
|
+
filiale:23145,
|
|
59
55
|
}
|
|
60
56
|
},
|
|
61
|
-
name: "CallReportMainPage"
|
|
57
|
+
name: "CallReportMainPage",
|
|
58
|
+
methods:{
|
|
59
|
+
selectIndex(val){
|
|
60
|
+
// console.log("这里是父组件",val)
|
|
61
|
+
this.filiale=val
|
|
62
|
+
}},
|
|
63
|
+
watch: {
|
|
64
|
+
'filiale'(val){
|
|
65
|
+
// console.log('toOrgid=====filiale===>',val)
|
|
66
|
+
}
|
|
67
|
+
}
|
|
62
68
|
}
|
|
63
69
|
</script>
|
|
64
70
|
|
|
@@ -79,6 +85,8 @@ export default {
|
|
|
79
85
|
top: 1.389vh;
|
|
80
86
|
left: 45.99vw;
|
|
81
87
|
line-height: 3.333vh;
|
|
88
|
+
font-weight: bolder;
|
|
89
|
+
font-family: '黑体';
|
|
82
90
|
}
|
|
83
91
|
.inform {
|
|
84
92
|
width: 35.833vw;
|
|
@@ -113,4 +121,17 @@ export default {
|
|
|
113
121
|
left: -2.604vw;
|
|
114
122
|
top: 1.111vh;
|
|
115
123
|
}
|
|
124
|
+
.filiale{
|
|
125
|
+
width: 300px;
|
|
126
|
+
height: 50px;
|
|
127
|
+
position: absolute;
|
|
128
|
+
top: 75px;
|
|
129
|
+
left: 31px;
|
|
130
|
+
}
|
|
131
|
+
.font_normal_body{
|
|
132
|
+
color: #fff;
|
|
133
|
+
}
|
|
134
|
+
/*.default.focus,default.focus,dropdown-menu{*/
|
|
135
|
+
/* background: #0f136c;*/
|
|
136
|
+
/*}*/
|
|
116
137
|
</style>
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<!-- 分公司下拉框 -->
|
|
3
|
+
<div class="col-sm-3 form-group form-input-group drop-down-box" style="width: 20%">
|
|
4
|
+
<label class="font_normal_body" style="color: #fff;">分公司</label>
|
|
5
|
+
<v-select
|
|
6
|
+
placeholder='请选择分公司'
|
|
7
|
+
:value-single="true"
|
|
8
|
+
v-model='f_orgstr'
|
|
9
|
+
:value.sync="f_orgstr"
|
|
10
|
+
:options='orgstrs'
|
|
11
|
+
close-on-select clear-button>
|
|
12
|
+
</v-select>
|
|
13
|
+
</div>
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
</template>
|
|
17
|
+
|
|
18
|
+
<script>
|
|
19
|
+
import {HttpResetClass} from "vue-client";
|
|
20
|
+
|
|
21
|
+
export default {
|
|
22
|
+
name: "DropDownBox",
|
|
23
|
+
data(){
|
|
24
|
+
return{
|
|
25
|
+
f_orgstr:'',
|
|
26
|
+
orgstrs:[
|
|
27
|
+
{label: '德州中邑燃气有限责任公司', value: '21125'},
|
|
28
|
+
{label: '夏津中邑燃气有限公司', value: '21131'},
|
|
29
|
+
{label: '临邑中邑燃气有限公司', value: '21137'},
|
|
30
|
+
{label: '山东彤运天燃气有限公司', value: '21143'},
|
|
31
|
+
{label: '庆云中邑燃气有限公司', value: '21149'},
|
|
32
|
+
{label: '庆云浩通天燃气有限公司', value: '21155'},
|
|
33
|
+
{label: '宁津天科燃气有限公司', value: '21161'},
|
|
34
|
+
{label: '山东中邑燃气有限公司', value: '23145'},
|
|
35
|
+
{label: '铜川', value: '47003'},
|
|
36
|
+
]
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
computed:{
|
|
40
|
+
},
|
|
41
|
+
ready(){
|
|
42
|
+
// this.getfengongsi()
|
|
43
|
+
},
|
|
44
|
+
methods:{
|
|
45
|
+
// 获取县域分公司内容
|
|
46
|
+
// getfengongsi(){
|
|
47
|
+
// // console.log("this.$login.f.id:",this.$login.f.orgid,this.$login)
|
|
48
|
+
// let val = {source: 'this.getParentByType($organization$).getSpecialResByType($organization$)', userid: `${this.$login.f.id}`}
|
|
49
|
+
// let http = new HttpResetClass()
|
|
50
|
+
// http.load('POST', '/rs/search', {data: val}, {resolveMsg: null, rejectMsg: null}).then((res) => {
|
|
51
|
+
// // console.log("res.data",res.data)
|
|
52
|
+
// // localStorage.setItem('dataConfig',JSON.stringify(res.data))
|
|
53
|
+
// // console.log("res.data.id",JSON.parse(localStorage.getItem('dataConfig')))
|
|
54
|
+
// res.data.forEach((item) => {
|
|
55
|
+
// this.orgstrs.push({label: item.name, value: item.id})
|
|
56
|
+
// })
|
|
57
|
+
// })
|
|
58
|
+
// },
|
|
59
|
+
},
|
|
60
|
+
watch: {
|
|
61
|
+
'f_orgstr'(val){
|
|
62
|
+
// console.log('f_orgstr========>',val)
|
|
63
|
+
this.$emit('select',val)
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
}
|
|
67
|
+
</script>
|
|
68
|
+
|
|
69
|
+
<style scoped>
|
|
70
|
+
.drop-down-box{
|
|
71
|
+
position: absolute;
|
|
72
|
+
top: 76px;
|
|
73
|
+
}
|
|
74
|
+
</style>
|
|
@@ -5,16 +5,16 @@
|
|
|
5
5
|
<i></i><i></i>
|
|
6
6
|
<div class="incoming-telegram-div">
|
|
7
7
|
<span>{{ data.netAppointment}}</span><br>
|
|
8
|
-
<span
|
|
8
|
+
<span>日统计来电数量</span>
|
|
9
9
|
</div>
|
|
10
10
|
<div class="incoming-telegram-div">
|
|
11
11
|
<span>{{ data.hotLine }}</span><br>
|
|
12
|
-
<span
|
|
12
|
+
<span>月统计来电数量</span>
|
|
13
13
|
</div>
|
|
14
|
-
<span class="text1">接通率</span
|
|
15
|
-
<span class="text2">接通率</span
|
|
16
|
-
<div class="blueLadder"></div
|
|
17
|
-
<div class="yellowLadder"></div
|
|
14
|
+
<!-- <span class="text1">接通率</span>-->
|
|
15
|
+
<!-- <span class="text2">接通率</span>-->
|
|
16
|
+
<!-- <div class="blueLadder"></div>-->
|
|
17
|
+
<!-- <div class="yellowLadder"></div>-->
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
</div>
|
|
@@ -37,16 +37,8 @@ export default {
|
|
|
37
37
|
}
|
|
38
38
|
},
|
|
39
39
|
methods:{
|
|
40
|
-
getInitData(){
|
|
41
|
-
let http = new HttpResetClass()
|
|
42
|
-
http.load('post','rs/sql/getCallSumData',{}).then((res)=>{
|
|
43
|
-
console.log(res.data)
|
|
44
|
-
// this.data = res.data[0]
|
|
45
|
-
})
|
|
46
|
-
}
|
|
47
40
|
},
|
|
48
41
|
ready(){
|
|
49
|
-
// this.getInitData()
|
|
50
42
|
}
|
|
51
43
|
|
|
52
44
|
|
|
@@ -103,13 +95,13 @@ export default {
|
|
|
103
95
|
|
|
104
96
|
.incoming-telegram-div {
|
|
105
97
|
position: absolute;
|
|
106
|
-
top:
|
|
107
|
-
left:
|
|
98
|
+
top: 13vh;
|
|
99
|
+
left: 8.042vw;
|
|
108
100
|
height: 13.889vh;
|
|
109
101
|
}
|
|
110
102
|
|
|
111
103
|
.incoming-telegram div:nth-of-type(2) {
|
|
112
|
-
top:
|
|
104
|
+
top: 34.185vh;
|
|
113
105
|
}
|
|
114
106
|
|
|
115
107
|
.incoming-telegram div span:nth-of-type(1) {
|
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
</div>
|
|
11
11
|
<div class="data">
|
|
12
12
|
<ul>
|
|
13
|
-
<li><span>昨日工单</span><span class="day">{{ data.day }}</span><span>日环比</span><div :class="data.daysFrom[
|
|
14
|
-
<li><span>月度工单量</span><span class="month">{{ data.month }}</span><span>月环比</span><div :class="data.onAMonthlyBasis[
|
|
15
|
-
<li><span>年度工单量</span><span class="year">{{ data.year }}</span><span>同比</span><div :class="data.yoy[
|
|
13
|
+
<li><span>昨日工单</span><span class="day">{{ data.day }}</span><span>日环比</span><div :class="data.daysFrom[1]>'70'?'blueArrows':'yellowArrows'"></div><span :class="data.daysFrom[1]>='70'?'increase':'lower'">{{ data.daysFrom[1] }}%</span></li>
|
|
14
|
+
<li><span>月度工单量</span><span class="month">{{ data.month }}</span><span>月环比</span><div :class="data.onAMonthlyBasis[1]>'70'?'blueArrows':'yellowArrows'"></div><span :class="data.onAMonthlyBasis[1]>'70'?'increase':'lower'">{{ data.onAMonthlyBasis[1] }}%</span></li>
|
|
15
|
+
<li><span>年度工单量</span><span class="year">{{ data.year }}</span><span>同比</span><div :class="data.yoy[1]>'70'?'blueArrows':'yellowArrows'"></div><span :class="data.yoy[1]>'70'?'increase':'lower'">{{ data.yoy[1] }}%</span></li>
|
|
16
16
|
</ul>
|
|
17
17
|
</div>
|
|
18
18
|
</div>
|
|
@@ -20,11 +20,13 @@
|
|
|
20
20
|
|
|
21
21
|
<script>
|
|
22
22
|
import {HttpResetClass} from "vue-client";
|
|
23
|
+
import * as Util from '../../../util'
|
|
23
24
|
|
|
24
25
|
export default {
|
|
25
26
|
name: "PercentageComplete",
|
|
26
27
|
data(){
|
|
27
28
|
return{
|
|
29
|
+
f_orgid: '',
|
|
28
30
|
data:{
|
|
29
31
|
//待处理
|
|
30
32
|
pendingNum:'29',
|
|
@@ -40,27 +42,58 @@ export default {
|
|
|
40
42
|
year:'145784',
|
|
41
43
|
//日环比、月环比、同比第一个参数,0为降,1为增长
|
|
42
44
|
//日环比
|
|
43
|
-
daysFrom:['0','44.18
|
|
45
|
+
daysFrom:['0','44.18'],
|
|
44
46
|
//月环比
|
|
45
|
-
onAMonthlyBasis:['1','71.12
|
|
47
|
+
onAMonthlyBasis:['1','71.12'],
|
|
46
48
|
//同比
|
|
47
|
-
yoy:['1','95.07
|
|
49
|
+
yoy:['1','95.07'],
|
|
48
50
|
|
|
49
51
|
|
|
50
52
|
}
|
|
51
53
|
}
|
|
52
54
|
},
|
|
55
|
+
props:['filialeId'],
|
|
53
56
|
methods:{
|
|
54
|
-
|
|
57
|
+
//获取昨日工单
|
|
58
|
+
getDay(){
|
|
55
59
|
let http = new HttpResetClass()
|
|
56
|
-
http.load('post','rs/
|
|
60
|
+
http.load('post','rs/logic/Dayworkorderstatistics',{
|
|
61
|
+
data: {
|
|
62
|
+
month_start: Util.toStandardDateString(), // 开始时间
|
|
63
|
+
month_end: Util.toStandardDateString(), // 结束时间
|
|
64
|
+
f_orgid: this.filialeId?this.filialeId:this.$login.f.orgid // 分公司id
|
|
65
|
+
}
|
|
66
|
+
},{rejectMsg:null,resolveMsg:null}).then((res)=>{
|
|
57
67
|
console.log(res.data)
|
|
68
|
+
this.day = res.data.daysum
|
|
58
69
|
})
|
|
59
|
-
}
|
|
70
|
+
},
|
|
71
|
+
//获取月工单
|
|
72
|
+
getMonth(){
|
|
73
|
+
let http = new HttpResetClass()
|
|
74
|
+
http.load('post','rs/logic/Monthlyworkorderstatistics',{
|
|
75
|
+
data: {
|
|
76
|
+
month_start: Util.toStandardDateString(), // 开始时间
|
|
77
|
+
month_end: Util.toStandardDateString(), // 结束时间
|
|
78
|
+
f_orgid: this.filialeId?this.filialeId:0 // 分公司id
|
|
79
|
+
}
|
|
80
|
+
},{rejectMsg:null,resolveMsg:null}).then((res)=>{
|
|
81
|
+
console.log(res.data)
|
|
82
|
+
this.month = res.data.monthsum
|
|
83
|
+
})
|
|
84
|
+
},
|
|
60
85
|
},
|
|
61
86
|
ready(){
|
|
62
|
-
|
|
63
|
-
|
|
87
|
+
this.getDay()
|
|
88
|
+
this.getMonth()
|
|
89
|
+
},
|
|
90
|
+
watch: {
|
|
91
|
+
'filialeId'(val){
|
|
92
|
+
console.log("filialeId>>>=====",val)
|
|
93
|
+
this.getDay()
|
|
94
|
+
this.getMonth()
|
|
95
|
+
}
|
|
96
|
+
},
|
|
64
97
|
}
|
|
65
98
|
</script>
|
|
66
99
|
|
|
@@ -16,7 +16,6 @@ export default {
|
|
|
16
16
|
}
|
|
17
17
|
},
|
|
18
18
|
ready(){
|
|
19
|
-
// console.log(this.row)
|
|
20
19
|
this.percentageCompleteEchart()
|
|
21
20
|
},
|
|
22
21
|
mounted(){
|
|
@@ -41,7 +40,7 @@ export default {
|
|
|
41
40
|
type: 'pie',
|
|
42
41
|
radius: ['58%', '45%'],
|
|
43
42
|
silent: true,
|
|
44
|
-
clockwise:
|
|
43
|
+
clockwise: false,
|
|
45
44
|
startAngle: 90,
|
|
46
45
|
z: 0,
|
|
47
46
|
zlevel: 0,
|
|
@@ -88,12 +88,12 @@
|
|
|
88
88
|
</div>
|
|
89
89
|
<div>
|
|
90
90
|
<i class="await"></i>
|
|
91
|
-
<span class="await-text"
|
|
91
|
+
<span class="await-text">闲置</span>
|
|
92
92
|
<span class="await-num">{{ data.awaitNum }}</span>
|
|
93
93
|
</div>
|
|
94
94
|
<div>
|
|
95
95
|
<i class="ring"></i>
|
|
96
|
-
<span class="ring-text"
|
|
96
|
+
<span class="ring-text">响铃中</span>
|
|
97
97
|
<span class="ring-num">{{ data.ringNum }}</span>
|
|
98
98
|
</div>
|
|
99
99
|
<div>
|
|
@@ -325,7 +325,7 @@ export default {
|
|
|
325
325
|
color: #FFCD00;
|
|
326
326
|
position: absolute;
|
|
327
327
|
top: 1.204vh;
|
|
328
|
-
left:
|
|
328
|
+
left: 17.271vw;
|
|
329
329
|
}
|
|
330
330
|
|
|
331
331
|
.ring{
|
|
@@ -337,12 +337,12 @@ export default {
|
|
|
337
337
|
background-size: contain;
|
|
338
338
|
position: absolute;
|
|
339
339
|
top: 1.389vh;
|
|
340
|
-
left:
|
|
340
|
+
left: 21vw;
|
|
341
341
|
}
|
|
342
342
|
.ring-text{
|
|
343
343
|
position: absolute;
|
|
344
344
|
top: 1.852vh;
|
|
345
|
-
left:
|
|
345
|
+
left: 24vw;
|
|
346
346
|
}
|
|
347
347
|
.ring-num{
|
|
348
348
|
font-size: 2.593vh;
|
|
@@ -77,7 +77,7 @@ export default {
|
|
|
77
77
|
default:[
|
|
78
78
|
{
|
|
79
79
|
date: '',
|
|
80
|
-
duration:'',
|
|
80
|
+
// duration:'',
|
|
81
81
|
name:'',
|
|
82
82
|
orderType:'',
|
|
83
83
|
address:'',
|
|
@@ -96,12 +96,10 @@ export default {
|
|
|
96
96
|
font-size: 2.5vh;
|
|
97
97
|
display: flex;
|
|
98
98
|
height: 5.093vh;
|
|
99
|
-
flex-direction: row;
|
|
100
99
|
align-items: center;
|
|
101
100
|
position: relative;
|
|
102
101
|
margin-top: 2.407vh;
|
|
103
102
|
text-align: center;
|
|
104
|
-
justify-content: space-evenly;
|
|
105
103
|
//div:nth-of-type(1){width: 25%;}
|
|
106
104
|
//div:nth-of-type(2){width: 8%;}
|
|
107
105
|
//div:nth-of-type(3){width: 15%;}
|
|
@@ -109,6 +107,13 @@ export default {
|
|
|
109
107
|
//div:nth-of-type(5){width: 21%;}
|
|
110
108
|
//div:nth-of-type(6){width: 10%;}
|
|
111
109
|
//div:nth-of-type(7){width: 11%;}
|
|
110
|
+
div:nth-of-type(1){width: 100px; margin-left: 142px;}
|
|
111
|
+
div:nth-of-type(2){width: 109px; margin-left: 142px;}
|
|
112
|
+
div:nth-of-type(3){width: 109px; margin-left: 52px;}
|
|
113
|
+
div:nth-of-type(4){width: 110px; margin-left: 107px;}
|
|
114
|
+
div:nth-of-type(5){width: 109px; margin-left: 177px;}
|
|
115
|
+
div:nth-of-type(6){width: 100px; margin-left: 49px;}
|
|
116
|
+
//div:nth-of-type(7){width: 100px;margin-left: 37px}
|
|
112
117
|
}
|
|
113
118
|
|
|
114
119
|
.userinfo-data {
|
|
@@ -126,36 +131,36 @@ export default {
|
|
|
126
131
|
line-height: 41px;
|
|
127
132
|
justify-content: space-evenly;
|
|
128
133
|
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
134
|
+
div:nth-of-type(1){
|
|
135
|
+
width: 230px;
|
|
136
|
+
}
|
|
132
137
|
//div:nth-of-type(2){
|
|
133
138
|
// width: 70px;
|
|
134
139
|
//}
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
140
|
+
div:nth-of-type(2){
|
|
141
|
+
width: 100px;
|
|
142
|
+
}
|
|
143
|
+
div:nth-of-type(3){
|
|
144
|
+
width: 22px;
|
|
145
|
+
}
|
|
146
|
+
div:nth-of-type(4){
|
|
147
|
+
height: 100%;
|
|
148
|
+
width: 266px;
|
|
149
|
+
//text-align: center;
|
|
150
|
+
margin-left: 40px;
|
|
151
|
+
div{
|
|
152
|
+
overflow: hidden;
|
|
153
|
+
text-overflow: ellipsis;
|
|
154
|
+
white-space: nowrap;
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
div:nth-of-type(5){
|
|
158
|
+
width: 90px;
|
|
159
|
+
}
|
|
160
|
+
div:nth-of-type(6){
|
|
161
|
+
width: 66px;
|
|
162
|
+
color: #F7DB35;
|
|
163
|
+
}
|
|
159
164
|
}
|
|
160
165
|
|
|
161
166
|
</style>
|
|
@@ -7,13 +7,13 @@
|
|
|
7
7
|
</tr>
|
|
8
8
|
</thead>
|
|
9
9
|
<!-- 显示不出来-->
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
10
|
+
<tbody class="swiper-container">
|
|
11
|
+
<template class="swiper-wrapper">
|
|
12
|
+
<tr class="swiper-slide" v-for="item in noticeList">
|
|
13
|
+
<td v-for="value in item">{{value}}</td>
|
|
14
|
+
</tr>
|
|
15
|
+
</template>
|
|
16
|
+
</tbody>
|
|
17
17
|
<!-- 格式不对-->
|
|
18
18
|
<!-- <tbody class="swiper-container">-->
|
|
19
19
|
<!-- <tr class="swiper-wrapper">-->
|
|
@@ -23,11 +23,11 @@
|
|
|
23
23
|
<!-- </tr>-->
|
|
24
24
|
<!-- </tbody>-->
|
|
25
25
|
<!-- 动不了的-->
|
|
26
|
-
<tbody class="swiper-container"
|
|
27
|
-
<tr class="swiper-slide" v-for="item in noticeList"
|
|
28
|
-
<td v-for="value in item">{{value}}</td
|
|
29
|
-
</tr
|
|
30
|
-
</tbody
|
|
26
|
+
<!-- <tbody class="swiper-container">-->
|
|
27
|
+
<!-- <tr class="swiper-slide" v-for="item in noticeList">-->
|
|
28
|
+
<!-- <td v-for="value in item">{{value}}</td>-->
|
|
29
|
+
<!-- </tr>-->
|
|
30
|
+
<!-- </tbody>-->
|
|
31
31
|
</table>
|
|
32
32
|
</div>
|
|
33
33
|
</template>
|
|
@@ -58,26 +58,9 @@ export default {
|
|
|
58
58
|
});
|
|
59
59
|
})
|
|
60
60
|
},
|
|
61
|
-
// addScroll() {
|
|
62
|
-
// let tBody = document.getElementsByClassName('zyl-tBody');
|
|
63
|
-
// if (tBody) {
|
|
64
|
-
// tBody.addEventListener('scroll', this.handleScroll);
|
|
65
|
-
// }
|
|
66
|
-
//
|
|
67
|
-
// }
|
|
68
61
|
|
|
69
62
|
}
|
|
70
63
|
},
|
|
71
|
-
// ready(){
|
|
72
|
-
// this.show1()
|
|
73
|
-
// },
|
|
74
|
-
// methods:{
|
|
75
|
-
// show1(){
|
|
76
|
-
// let temp = document.getElementsByTagName("template");
|
|
77
|
-
// let clon = temp.content.cloneNode(true);
|
|
78
|
-
// document.body.appendChild(clon);
|
|
79
|
-
// }
|
|
80
|
-
// },
|
|
81
64
|
props:{
|
|
82
65
|
rowSpeed:{
|
|
83
66
|
/* 行数 row 速度 speed */
|
|
@@ -96,9 +79,61 @@ export default {
|
|
|
96
79
|
noticeList:{
|
|
97
80
|
type:Array,
|
|
98
81
|
default:[
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
82
|
+
{
|
|
83
|
+
date: "2022-09-01 10:25:06",
|
|
84
|
+
duration:'2min',
|
|
85
|
+
name:'赵王莉1',
|
|
86
|
+
orderType:'报修',
|
|
87
|
+
address:'建设小区21号112室',
|
|
88
|
+
receptionist:'候倩楠',
|
|
89
|
+
state:'接听'
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
date: "2022-09-01 10:25:06",
|
|
93
|
+
duration:'2min',
|
|
94
|
+
name:'林妹妹1',
|
|
95
|
+
orderType:'报修',
|
|
96
|
+
address:'建设小区21号112室',
|
|
97
|
+
receptionist:'候倩楠',
|
|
98
|
+
state:'接听'
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
date: "2022-09-01 10:25:06",
|
|
102
|
+
duration:'2min',
|
|
103
|
+
name:'赵王莉2',
|
|
104
|
+
orderType:'报修',
|
|
105
|
+
address:'建设小区21号112室',
|
|
106
|
+
receptionist:'候倩楠',
|
|
107
|
+
state:'接听'
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
date: "2022-09-01 10:25:06",
|
|
111
|
+
duration:'2min',
|
|
112
|
+
name:'林妹妹2',
|
|
113
|
+
orderType:'报修',
|
|
114
|
+
address:'建设小区21号112室',
|
|
115
|
+
receptionist:'候倩楠',
|
|
116
|
+
state:'接听'
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
date: "2022-09-01 10:25:06",
|
|
120
|
+
duration:'2min',
|
|
121
|
+
name:'赵王莉3',
|
|
122
|
+
orderType:'报修',
|
|
123
|
+
address:'建设小区21号112室',
|
|
124
|
+
receptionist:'候倩楠',
|
|
125
|
+
state:'接听'
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
date: "2022-09-01 10:25:06",
|
|
129
|
+
duration:'2min',
|
|
130
|
+
name:'林妹妹3',
|
|
131
|
+
orderType:'报修',
|
|
132
|
+
address:'建设小区21号112室',
|
|
133
|
+
receptionist:'候倩楠',
|
|
134
|
+
state:'接听'
|
|
135
|
+
},
|
|
136
|
+
],
|
|
102
137
|
}
|
|
103
138
|
}
|
|
104
139
|
}
|
|
@@ -115,9 +150,7 @@ export default {
|
|
|
115
150
|
/*flex-direction: row;*/
|
|
116
151
|
/*align-items: center;*/
|
|
117
152
|
position: relative;
|
|
118
|
-
/*margin-top: 2.407vh;*/
|
|
119
153
|
text-align: center;
|
|
120
|
-
/*justify-content: space-evenly;*/
|
|
121
154
|
}
|
|
122
155
|
|
|
123
156
|
.userinfo-data {
|
|
@@ -70,7 +70,7 @@ export default {
|
|
|
70
70
|
|
|
71
71
|
<style scoped>
|
|
72
72
|
.time {
|
|
73
|
-
width:
|
|
73
|
+
width: 17.625vw;
|
|
74
74
|
height: 5.222vh;
|
|
75
75
|
position: absolute;
|
|
76
76
|
top: -1.389vh;
|
|
@@ -88,7 +88,7 @@ export default {
|
|
|
88
88
|
line-height: 8.796vh;
|
|
89
89
|
}
|
|
90
90
|
.timeYMD {
|
|
91
|
-
width:
|
|
91
|
+
width: 10vw;
|
|
92
92
|
height: 5.574vh;
|
|
93
93
|
font-size: 1.667vh;
|
|
94
94
|
font-weight: 400;
|