telephone-clients 3.0.103-97 → 3.0.103-99
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/package.json +1 -1
- package/src/components/pc/RepairsWork.vue +3 -2
- package/src/components/pc/WorkListAll.vue +630 -630
- package/src/components/temp/HandplanInfo.vue +78 -78
- package/src/components/temp/InfoTable.vue +134 -134
- package/src/components/workorder/RepairDetails.vue +613 -613
- package/src/filiale/shexian/pc/QueryVisitHistory.vue +237 -0
- package/src/filiale/shexian/telephone.js +19 -18
- package/src/filiale/wenxi/android/FailureShow.vue +61 -61
- package/src/filiale/wenxi/android/PhoneUpUserinfo.vue +1053 -1053
- package/src/filiale/wenxi/android/RepairInfo.vue +252 -252
- package/src/filiale/wenxi/android/RepairOrderV.vue +805 -805
- package/src/filiale/wenxi/android/RepairUserInfo.vue +532 -532
- package/src/filiale/wenxi/pc/GasWork.vue +747 -747
- package/src/filiale/wenxi/pc/MetereadInfo.vue +82 -82
- package/src/filiale/wenxi/pc/TelFindUser.vue +306 -306
- package/src/filiale/wenxi/telephoneAndroid.js +19 -19
- package/src/filiale/zhongsheng/android/FaultAll.vue +741 -741
- package/src/filiale/zhongsheng/android/RepairUserInfo.vue +559 -559
- package/src/main.js +1 -1
|
@@ -1,78 +1,78 @@
|
|
|
1
|
-
<template >
|
|
2
|
-
<div id="pc-finduser-page">
|
|
3
|
-
<criteria-paged :model="model" v-ref:paged :simple="true" classname="table table-bordered table-hover">
|
|
4
|
-
<!-- <criteria partial='criteria' v-ref:criteria >
|
|
5
|
-
</criteria> -->
|
|
6
|
-
<data-grid :model="model" partial='list' v-ref:grid class="list_area table_sy">
|
|
7
|
-
<template partial='head'>
|
|
8
|
-
<tr>
|
|
9
|
-
<th><nobr>用户编号</nobr></th>
|
|
10
|
-
<th><nobr>用户姓名</nobr></th>
|
|
11
|
-
<th><nobr>表号</nobr></th>
|
|
12
|
-
<th><nobr>表具</nobr></th>
|
|
13
|
-
<th><nobr>上期底数</nobr></th>
|
|
14
|
-
<th><nobr>本期底数</nobr></th>
|
|
15
|
-
<th><nobr>用气量</nobr></th>
|
|
16
|
-
<th><nobr>用气金额</nobr></th>
|
|
17
|
-
<th><nobr>抄表状态</nobr></th>
|
|
18
|
-
<th><nobr>抄表员</nobr></th>
|
|
19
|
-
<th><nobr>是否缴费</nobr></th>
|
|
20
|
-
<th><nobr>抄表日期</nobr></th>
|
|
21
|
-
</tr>
|
|
22
|
-
</template>
|
|
23
|
-
<template partial='body'>
|
|
24
|
-
<td><nobr>{{row.f_userinfo_code}}</nobr></td>
|
|
25
|
-
<td><nobr>{{row.f_user_name}}</nobr></td>
|
|
26
|
-
<td><nobr>{{row.f_meternumber}}</nobr></td>
|
|
27
|
-
<td><nobr>{{row.f_meter_brand}}</nobr></td>
|
|
28
|
-
<td><nobr>{{row.f_last_tablebase}}</nobr></td>
|
|
29
|
-
<td><nobr>{{row.f_tablebase}}</nobr></td>
|
|
30
|
-
<td><nobr>{{row.f_haircut_gas}}</nobr></td>
|
|
31
|
-
<td><nobr>{{row.f_oughtfee}}</nobr></td>
|
|
32
|
-
<td><nobr>{{row.f_meter_state}}</nobr></td>
|
|
33
|
-
<td><nobr>{{row.f_inputtor}}</nobr></td>
|
|
34
|
-
<td><nobr>{{row.f_whether_pay}}</nobr></td>
|
|
35
|
-
<td><nobr>{{row.f_hand_date}}</nobr></td>
|
|
36
|
-
</template>
|
|
37
|
-
</data-grid>
|
|
38
|
-
</criteria-paged>
|
|
39
|
-
</div>
|
|
40
|
-
</template>
|
|
41
|
-
|
|
42
|
-
<script>
|
|
43
|
-
import { PagedList } from 'vue-client'
|
|
44
|
-
export default {
|
|
45
|
-
title: '抄表记录',
|
|
46
|
-
data () {
|
|
47
|
-
return {
|
|
48
|
-
model: new PagedList((this.user && this.user.isphone) ? '${this.$androidUtil.getProxyUrl()}/' : '' + 'rs/sql/tel_singleTable_OrderBy', 8, {items: '"*"', tablename: '"t_handplan with (nolock)"', orderitem: '"id desc"'}),
|
|
49
|
-
show: false,
|
|
50
|
-
row: Object
|
|
51
|
-
}
|
|
52
|
-
},
|
|
53
|
-
props: {
|
|
54
|
-
user: {
|
|
55
|
-
type: Object
|
|
56
|
-
},
|
|
57
|
-
clearflg:0
|
|
58
|
-
},
|
|
59
|
-
methods: {
|
|
60
|
-
},
|
|
61
|
-
watch: {
|
|
62
|
-
'user' (val) {
|
|
63
|
-
if(this.user) {
|
|
64
|
-
this.model.rows = []
|
|
65
|
-
this.model.search(`f_userinfo_id = '${this.user.f_userinfo_id}'`)
|
|
66
|
-
}
|
|
67
|
-
},
|
|
68
|
-
'clearflg'(){
|
|
69
|
-
this.model.rows = []
|
|
70
|
-
}
|
|
71
|
-
},
|
|
72
|
-
ready () {
|
|
73
|
-
if (this.user && this.user.f_userinfo_id) {
|
|
74
|
-
this.model.search(`f_userinfo_id = '${this.user.f_userinfo_id}'`)
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
</script>
|
|
1
|
+
<template >
|
|
2
|
+
<div id="pc-finduser-page">
|
|
3
|
+
<criteria-paged :model="model" v-ref:paged :simple="true" classname="table table-bordered table-hover">
|
|
4
|
+
<!-- <criteria partial='criteria' v-ref:criteria >
|
|
5
|
+
</criteria> -->
|
|
6
|
+
<data-grid :model="model" partial='list' v-ref:grid class="list_area table_sy">
|
|
7
|
+
<template partial='head'>
|
|
8
|
+
<tr>
|
|
9
|
+
<th><nobr>用户编号</nobr></th>
|
|
10
|
+
<th><nobr>用户姓名</nobr></th>
|
|
11
|
+
<th><nobr>表号</nobr></th>
|
|
12
|
+
<th><nobr>表具</nobr></th>
|
|
13
|
+
<th><nobr>上期底数</nobr></th>
|
|
14
|
+
<th><nobr>本期底数</nobr></th>
|
|
15
|
+
<th><nobr>用气量</nobr></th>
|
|
16
|
+
<th><nobr>用气金额</nobr></th>
|
|
17
|
+
<th><nobr>抄表状态</nobr></th>
|
|
18
|
+
<th><nobr>抄表员</nobr></th>
|
|
19
|
+
<th><nobr>是否缴费</nobr></th>
|
|
20
|
+
<th><nobr>抄表日期</nobr></th>
|
|
21
|
+
</tr>
|
|
22
|
+
</template>
|
|
23
|
+
<template partial='body'>
|
|
24
|
+
<td><nobr>{{row.f_userinfo_code}}</nobr></td>
|
|
25
|
+
<td><nobr>{{row.f_user_name}}</nobr></td>
|
|
26
|
+
<td><nobr>{{row.f_meternumber}}</nobr></td>
|
|
27
|
+
<td><nobr>{{row.f_meter_brand}}</nobr></td>
|
|
28
|
+
<td><nobr>{{row.f_last_tablebase}}</nobr></td>
|
|
29
|
+
<td><nobr>{{row.f_tablebase}}</nobr></td>
|
|
30
|
+
<td><nobr>{{row.f_haircut_gas}}</nobr></td>
|
|
31
|
+
<td><nobr>{{row.f_oughtfee}}</nobr></td>
|
|
32
|
+
<td><nobr>{{row.f_meter_state}}</nobr></td>
|
|
33
|
+
<td><nobr>{{row.f_inputtor}}</nobr></td>
|
|
34
|
+
<td><nobr>{{row.f_whether_pay}}</nobr></td>
|
|
35
|
+
<td><nobr>{{row.f_hand_date}}</nobr></td>
|
|
36
|
+
</template>
|
|
37
|
+
</data-grid>
|
|
38
|
+
</criteria-paged>
|
|
39
|
+
</div>
|
|
40
|
+
</template>
|
|
41
|
+
|
|
42
|
+
<script>
|
|
43
|
+
import { PagedList } from 'vue-client'
|
|
44
|
+
export default {
|
|
45
|
+
title: '抄表记录',
|
|
46
|
+
data () {
|
|
47
|
+
return {
|
|
48
|
+
model: new PagedList((this.user && this.user.isphone) ? '${this.$androidUtil.getProxyUrl()}/' : '' + 'rs/sql/tel_singleTable_OrderBy', 8, {items: '"*"', tablename: '"t_handplan with (nolock)"', orderitem: '"id desc"'}),
|
|
49
|
+
show: false,
|
|
50
|
+
row: Object
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
props: {
|
|
54
|
+
user: {
|
|
55
|
+
type: Object
|
|
56
|
+
},
|
|
57
|
+
clearflg:0
|
|
58
|
+
},
|
|
59
|
+
methods: {
|
|
60
|
+
},
|
|
61
|
+
watch: {
|
|
62
|
+
'user' (val) {
|
|
63
|
+
if(this.user) {
|
|
64
|
+
this.model.rows = []
|
|
65
|
+
this.model.search(`f_userinfo_id = '${this.user.f_userinfo_id}'`)
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
'clearflg'(){
|
|
69
|
+
this.model.rows = []
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
ready () {
|
|
73
|
+
if (this.user && this.user.f_userinfo_id) {
|
|
74
|
+
this.model.search(`f_userinfo_id = '${this.user.f_userinfo_id}'`)
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
</script>
|
|
@@ -1,134 +1,134 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<!-- <div class="flex-row flex-over" id="pc-telepage"> -->
|
|
3
|
-
<!-- 话务员控制台 -->
|
|
4
|
-
<div class="span">
|
|
5
|
-
<div class="panel" style="margin-top:5px;">
|
|
6
|
-
<div class="panel-body flex-row" style="padding: 0;">
|
|
7
|
-
<div class="flex flex-over" style="overflow: auto;width:100%">
|
|
8
|
-
<!-- 用户查询,停气公告,话务员统计信息,知识库 -->
|
|
9
|
-
<div class="span no-close">
|
|
10
|
-
<div class="flex foot_tabset">
|
|
11
|
-
<ul class="nav nav-pills" :style="ulstyle" class="nav nav-tabs" >
|
|
12
|
-
<li ><a :style="selectFiled == '购气记录'?'color:#333333!important;':'color:#666666!important;'" :class="{'tel_voiceActive':selectFiled == '购气记录','tel_f_size':selectFiled != '购气记录'}" href="javascript:void(0)" @click="setField('购气记录')">购气记录</a></li>
|
|
13
|
-
<li ><a :style="selectFiled == '抄表记录'?'color:#333333!important;':'color:#666666!important;'" :class="{'tel_voiceActive':selectFiled == '抄表记录','tel_f_size':selectFiled != '抄表记录'}" href="javascript:void(0)" @click="setField('抄表记录')">抄表记录</a></li>
|
|
14
|
-
<li ><a :style="selectFiled == '安检记录'?'color:#333333!important;':'color:#666666!important;'" :class="{'tel_voiceActive':selectFiled == '安检记录','tel_f_size':selectFiled != '安检记录'}" href="javascript:void(0)" @click="setField('安检记录')">安检记录</a></li>
|
|
15
|
-
<li ><a :style="selectFiled == '来电记录'?'color:#333333!important;':'color:#666666!important;'" :class="{'tel_voiceActive':selectFiled == '来电记录','tel_f_size':selectFiled != '来电记录'}" href="javascript:void(0)" @click="setField('来电记录')">来电记录</a></li>
|
|
16
|
-
<li ><a :style="selectFiled == '换表记录'?'color:#333333!important;':'color:#666666!important;'" :class="{'tel_voiceActive':selectFiled == '换表记录','tel_f_size':selectFiled != '换表记录'}" href="javascript:void(0)" @click="setField('换表记录')">换表记录</a></li>
|
|
17
|
-
<li ><a :style="selectFiled == '设备信息'?'color:#333333!important;':'color:#666666!important;'" :class="{'tel_voiceActive':selectFiled == '设备信息','tel_f_size':selectFiled != '设备信息'}" href="javascript:void(0)" @click="setField('设备信息')">设备信息</a></li>
|
|
18
|
-
<li ><a :style="selectFiled == '表具信息'?'color:#333333!important;':'color:#666666!important;'" :class="{'tel_voiceActive':selectFiled == '表具信息','tel_f_size':selectFiled != '表具信息'}" href="javascript:void(0)" @click="setField('表具信息')">表具信息</a></li>
|
|
19
|
-
<li ><a :style="selectFiled == '指令查看'?'color:#333333!important;':'color:#666666!important;'" :class="{'tel_voiceActive':selectFiled == '指令查看','tel_f_size':selectFiled != '指令查看'}" href="javascript:void(0)" @click="setField('指令查看')">指令查看</a></li>
|
|
20
|
-
<li ><a :style="selectFiled == '上报查询'?'color:#333333!important;':'color:#666666!important;'" :class="{'tel_voiceActive':selectFiled == '上报查询','tel_f_size':selectFiled != '上报查询'}" href="javascript:void(0)" @click="setField('上报查询')">上报查询</a></li>
|
|
21
|
-
<li ><a :style="selectFiled == '停用信息'?'color:#333333!important;':'color:#666666!important;'" :class="{'tel_voiceActive':selectFiled == '停用信息','tel_f_size':selectFiled != '停用信息'}" href="javascript:void(0)" @click="setField('停用信息')">停用信息</a></li>
|
|
22
|
-
<li v-if="oldshow"><a :style="selectFiled == '旧单信息'?'color:#333333!important;':'color:#666666!important;'" :class="{'tel_voiceActive':selectFiled == '旧单信息','tel_f_size':selectFiled != '旧单信息'}" href="javascript:void(0)" @click="setField('旧单信息')">旧单信息</a></li>
|
|
23
|
-
</ul>
|
|
24
|
-
<div class="tab-content span">
|
|
25
|
-
<sell-info v-if="selectFiled=='购气记录'" :user="user" :clearflg="clearflg" style="font-size: 12px"></sell-info>
|
|
26
|
-
<handplan-info v-if="selectFiled=='抄表记录'" :user="user" :clearflg="clearflg" style="font-size: 12px"></handplan-info>
|
|
27
|
-
<securitycheck-info v-if="selectFiled=='安检记录'" :user="user" :clearflg="clearflg" style="font-size: 12px"></securitycheck-info>
|
|
28
|
-
<changemeter-info v-if="selectFiled=='换表记录'" :user="user" :clearflg="clearflg" style="font-size: 12px"></changemeter-info>
|
|
29
|
-
<tel-device-info v-if="selectFiled=='设备信息'" :user="user" :clearflg="clearflg" style="font-size: 12px"></tel-device-info>
|
|
30
|
-
<tel-metter-info v-if="selectFiled=='表具信息'" :user="user" :clearflg="clearflg" style="font-size: 12px"></tel-metter-info>
|
|
31
|
-
<tel-instruct-info v-if="selectFiled=='指令查看'" :user="user" :clearflg="clearflg" style="font-size: 12px"></tel-instruct-info>
|
|
32
|
-
<tel-meteread-info v-if="selectFiled=='上报查询'" :user="user" :clearflg="clearflg" style="font-size: 12px"></tel-meteread-info>
|
|
33
|
-
<disable-information v-if="selectFiled=='停用信息'" :user="user" :clearflg="clearflg" style="font-size: 12px"></disable-information>
|
|
34
|
-
<repair-list v-if="selectFiled=='来电记录'" :user="user" :clearflg="clearflg" style="font-size: 12px"></repair-list>
|
|
35
|
-
<old-repair-list v-if="selectFiled=='旧单信息'" :user="user" :clearflg="clearflg" style="font-size: 12px"></old-repair-list>
|
|
36
|
-
</div>
|
|
37
|
-
|
|
38
|
-
</div>
|
|
39
|
-
<!--<tabset v-ref:tabs :close="false" class="tab1">
|
|
40
|
-
<tab header="购气记录">
|
|
41
|
-
<sell-info :user="user" :clearflg="clearflg" style="font-size: 12px"></sell-info>
|
|
42
|
-
</tab>
|
|
43
|
-
<tab header="抄表记录" v-if="user.user_class!=='民用'">
|
|
44
|
-
<handplan-info :user="user" :clearflg="clearflg" style="font-size: 12px"></handplan-info>
|
|
45
|
-
</tab>
|
|
46
|
-
<tab header="安检记录" >
|
|
47
|
-
<securitycheck-info :user="user" :clearflg="clearflg" style="font-size: 12px"></securitycheck-info>
|
|
48
|
-
</tab>
|
|
49
|
-
<tab header="来电记录">
|
|
50
|
-
<repair-list :user="user" :clearflg="clearflg" style="font-size: 12px"></repair-list>
|
|
51
|
-
</tab>
|
|
52
|
-
<tab header="换表记录">
|
|
53
|
-
<changemeter-info :user="user" :clearflg="clearflg" style="font-size: 12px"></changemeter-info>
|
|
54
|
-
</tab>
|
|
55
|
-
<tab header="设备信息">
|
|
56
|
-
<tel-device-info :user="user" :clearflg="clearflg" style="font-size: 12px"></tel-device-info>
|
|
57
|
-
</tab>
|
|
58
|
-
<tab header="表具信息">
|
|
59
|
-
<tel-metter-info :user="user" :clearflg="clearflg" style="font-size: 12px"></tel-metter-info>
|
|
60
|
-
</tab>
|
|
61
|
-
</tabset>-->
|
|
62
|
-
</div>
|
|
63
|
-
</div>
|
|
64
|
-
</div>
|
|
65
|
-
</div>
|
|
66
|
-
</div>
|
|
67
|
-
<!-- </div> -->
|
|
68
|
-
</template>
|
|
69
|
-
<script>
|
|
70
|
-
import * as Util from '../Util'
|
|
71
|
-
export default {
|
|
72
|
-
title: '用户信息',
|
|
73
|
-
props: {
|
|
74
|
-
user:{
|
|
75
|
-
type: Object
|
|
76
|
-
},
|
|
77
|
-
ulstyle: {
|
|
78
|
-
type: String,
|
|
79
|
-
default: 'height:auto;border-bottom: 1px solid #e7e7e7;'
|
|
80
|
-
},
|
|
81
|
-
clearflg:0
|
|
82
|
-
},
|
|
83
|
-
|
|
84
|
-
ready () {
|
|
85
|
-
this.oldshow = this.$appdata.getSingleValue('旧工单信息显示') ? true : false
|
|
86
|
-
//tag
|
|
87
|
-
},
|
|
88
|
-
data () {
|
|
89
|
-
return {
|
|
90
|
-
a:'tabs-one',
|
|
91
|
-
selectFiled:'购气记录',
|
|
92
|
-
oldshow:false
|
|
93
|
-
}
|
|
94
|
-
},
|
|
95
|
-
methods :{
|
|
96
|
-
setField(type){
|
|
97
|
-
this.selectFiled=type
|
|
98
|
-
}
|
|
99
|
-
}
|
|
100
|
-
}
|
|
101
|
-
</script>
|
|
102
|
-
<style scoped>
|
|
103
|
-
.themeOne .binary .foot_tabset > .span > .tab-pane{
|
|
104
|
-
padding: 0px !important;
|
|
105
|
-
}
|
|
106
|
-
.themeOne .system-right .foot_tabset > ul{
|
|
107
|
-
padding-left: 0px;
|
|
108
|
-
}
|
|
109
|
-
.tel_voiceActive{
|
|
110
|
-
font-family: PingFang-SC-Bold;
|
|
111
|
-
font-size: 16px;
|
|
112
|
-
font-weight: normal!important;
|
|
113
|
-
font-stretch: normal!important;
|
|
114
|
-
line-height: 18px;
|
|
115
|
-
letter-spacing: 0px;
|
|
116
|
-
color: #333333!important;
|
|
117
|
-
border-bottom: 3px solid #599fe5;
|
|
118
|
-
padding:10px 10px!important;
|
|
119
|
-
}
|
|
120
|
-
.tel_f_size{
|
|
121
|
-
font-family: PingFang-SC-Medium;
|
|
122
|
-
font-size: 16px;
|
|
123
|
-
font-weight: normal;
|
|
124
|
-
font-stretch: normal;
|
|
125
|
-
line-height: 18px;
|
|
126
|
-
letter-spacing: 0px;
|
|
127
|
-
color: #666666!important;
|
|
128
|
-
border-bottom: 3px solid #fff;
|
|
129
|
-
padding:10px 10px!important;
|
|
130
|
-
}
|
|
131
|
-
.themeOne .system-right .foot_tabset > ul a {
|
|
132
|
-
color: #666666 !important;
|
|
133
|
-
}
|
|
134
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<!-- <div class="flex-row flex-over" id="pc-telepage"> -->
|
|
3
|
+
<!-- 话务员控制台 -->
|
|
4
|
+
<div class="span">
|
|
5
|
+
<div class="panel" style="margin-top:5px;">
|
|
6
|
+
<div class="panel-body flex-row" style="padding: 0;">
|
|
7
|
+
<div class="flex flex-over" style="overflow: auto;width:100%">
|
|
8
|
+
<!-- 用户查询,停气公告,话务员统计信息,知识库 -->
|
|
9
|
+
<div class="span no-close">
|
|
10
|
+
<div class="flex foot_tabset">
|
|
11
|
+
<ul class="nav nav-pills" :style="ulstyle" class="nav nav-tabs" >
|
|
12
|
+
<li ><a :style="selectFiled == '购气记录'?'color:#333333!important;':'color:#666666!important;'" :class="{'tel_voiceActive':selectFiled == '购气记录','tel_f_size':selectFiled != '购气记录'}" href="javascript:void(0)" @click="setField('购气记录')">购气记录</a></li>
|
|
13
|
+
<li ><a :style="selectFiled == '抄表记录'?'color:#333333!important;':'color:#666666!important;'" :class="{'tel_voiceActive':selectFiled == '抄表记录','tel_f_size':selectFiled != '抄表记录'}" href="javascript:void(0)" @click="setField('抄表记录')">抄表记录</a></li>
|
|
14
|
+
<li ><a :style="selectFiled == '安检记录'?'color:#333333!important;':'color:#666666!important;'" :class="{'tel_voiceActive':selectFiled == '安检记录','tel_f_size':selectFiled != '安检记录'}" href="javascript:void(0)" @click="setField('安检记录')">安检记录</a></li>
|
|
15
|
+
<li ><a :style="selectFiled == '来电记录'?'color:#333333!important;':'color:#666666!important;'" :class="{'tel_voiceActive':selectFiled == '来电记录','tel_f_size':selectFiled != '来电记录'}" href="javascript:void(0)" @click="setField('来电记录')">来电记录</a></li>
|
|
16
|
+
<li ><a :style="selectFiled == '换表记录'?'color:#333333!important;':'color:#666666!important;'" :class="{'tel_voiceActive':selectFiled == '换表记录','tel_f_size':selectFiled != '换表记录'}" href="javascript:void(0)" @click="setField('换表记录')">换表记录</a></li>
|
|
17
|
+
<li ><a :style="selectFiled == '设备信息'?'color:#333333!important;':'color:#666666!important;'" :class="{'tel_voiceActive':selectFiled == '设备信息','tel_f_size':selectFiled != '设备信息'}" href="javascript:void(0)" @click="setField('设备信息')">设备信息</a></li>
|
|
18
|
+
<li ><a :style="selectFiled == '表具信息'?'color:#333333!important;':'color:#666666!important;'" :class="{'tel_voiceActive':selectFiled == '表具信息','tel_f_size':selectFiled != '表具信息'}" href="javascript:void(0)" @click="setField('表具信息')">表具信息</a></li>
|
|
19
|
+
<li ><a :style="selectFiled == '指令查看'?'color:#333333!important;':'color:#666666!important;'" :class="{'tel_voiceActive':selectFiled == '指令查看','tel_f_size':selectFiled != '指令查看'}" href="javascript:void(0)" @click="setField('指令查看')">指令查看</a></li>
|
|
20
|
+
<li ><a :style="selectFiled == '上报查询'?'color:#333333!important;':'color:#666666!important;'" :class="{'tel_voiceActive':selectFiled == '上报查询','tel_f_size':selectFiled != '上报查询'}" href="javascript:void(0)" @click="setField('上报查询')">上报查询</a></li>
|
|
21
|
+
<li ><a :style="selectFiled == '停用信息'?'color:#333333!important;':'color:#666666!important;'" :class="{'tel_voiceActive':selectFiled == '停用信息','tel_f_size':selectFiled != '停用信息'}" href="javascript:void(0)" @click="setField('停用信息')">停用信息</a></li>
|
|
22
|
+
<li v-if="oldshow"><a :style="selectFiled == '旧单信息'?'color:#333333!important;':'color:#666666!important;'" :class="{'tel_voiceActive':selectFiled == '旧单信息','tel_f_size':selectFiled != '旧单信息'}" href="javascript:void(0)" @click="setField('旧单信息')">旧单信息</a></li>
|
|
23
|
+
</ul>
|
|
24
|
+
<div class="tab-content span">
|
|
25
|
+
<sell-info v-if="selectFiled=='购气记录'" :user="user" :clearflg="clearflg" style="font-size: 12px"></sell-info>
|
|
26
|
+
<handplan-info v-if="selectFiled=='抄表记录'" :user="user" :clearflg="clearflg" style="font-size: 12px"></handplan-info>
|
|
27
|
+
<securitycheck-info v-if="selectFiled=='安检记录'" :user="user" :clearflg="clearflg" style="font-size: 12px"></securitycheck-info>
|
|
28
|
+
<changemeter-info v-if="selectFiled=='换表记录'" :user="user" :clearflg="clearflg" style="font-size: 12px"></changemeter-info>
|
|
29
|
+
<tel-device-info v-if="selectFiled=='设备信息'" :user="user" :clearflg="clearflg" style="font-size: 12px"></tel-device-info>
|
|
30
|
+
<tel-metter-info v-if="selectFiled=='表具信息'" :user="user" :clearflg="clearflg" style="font-size: 12px"></tel-metter-info>
|
|
31
|
+
<tel-instruct-info v-if="selectFiled=='指令查看'" :user="user" :clearflg="clearflg" style="font-size: 12px"></tel-instruct-info>
|
|
32
|
+
<tel-meteread-info v-if="selectFiled=='上报查询'" :user="user" :clearflg="clearflg" style="font-size: 12px"></tel-meteread-info>
|
|
33
|
+
<disable-information v-if="selectFiled=='停用信息'" :user="user" :clearflg="clearflg" style="font-size: 12px"></disable-information>
|
|
34
|
+
<repair-list v-if="selectFiled=='来电记录'" :user="user" :clearflg="clearflg" style="font-size: 12px"></repair-list>
|
|
35
|
+
<old-repair-list v-if="selectFiled=='旧单信息'" :user="user" :clearflg="clearflg" style="font-size: 12px"></old-repair-list>
|
|
36
|
+
</div>
|
|
37
|
+
|
|
38
|
+
</div>
|
|
39
|
+
<!--<tabset v-ref:tabs :close="false" class="tab1">
|
|
40
|
+
<tab header="购气记录">
|
|
41
|
+
<sell-info :user="user" :clearflg="clearflg" style="font-size: 12px"></sell-info>
|
|
42
|
+
</tab>
|
|
43
|
+
<tab header="抄表记录" v-if="user.user_class!=='民用'">
|
|
44
|
+
<handplan-info :user="user" :clearflg="clearflg" style="font-size: 12px"></handplan-info>
|
|
45
|
+
</tab>
|
|
46
|
+
<tab header="安检记录" >
|
|
47
|
+
<securitycheck-info :user="user" :clearflg="clearflg" style="font-size: 12px"></securitycheck-info>
|
|
48
|
+
</tab>
|
|
49
|
+
<tab header="来电记录">
|
|
50
|
+
<repair-list :user="user" :clearflg="clearflg" style="font-size: 12px"></repair-list>
|
|
51
|
+
</tab>
|
|
52
|
+
<tab header="换表记录">
|
|
53
|
+
<changemeter-info :user="user" :clearflg="clearflg" style="font-size: 12px"></changemeter-info>
|
|
54
|
+
</tab>
|
|
55
|
+
<tab header="设备信息">
|
|
56
|
+
<tel-device-info :user="user" :clearflg="clearflg" style="font-size: 12px"></tel-device-info>
|
|
57
|
+
</tab>
|
|
58
|
+
<tab header="表具信息">
|
|
59
|
+
<tel-metter-info :user="user" :clearflg="clearflg" style="font-size: 12px"></tel-metter-info>
|
|
60
|
+
</tab>
|
|
61
|
+
</tabset>-->
|
|
62
|
+
</div>
|
|
63
|
+
</div>
|
|
64
|
+
</div>
|
|
65
|
+
</div>
|
|
66
|
+
</div>
|
|
67
|
+
<!-- </div> -->
|
|
68
|
+
</template>
|
|
69
|
+
<script>
|
|
70
|
+
import * as Util from '../Util'
|
|
71
|
+
export default {
|
|
72
|
+
title: '用户信息',
|
|
73
|
+
props: {
|
|
74
|
+
user:{
|
|
75
|
+
type: Object
|
|
76
|
+
},
|
|
77
|
+
ulstyle: {
|
|
78
|
+
type: String,
|
|
79
|
+
default: 'height:auto;border-bottom: 1px solid #e7e7e7;'
|
|
80
|
+
},
|
|
81
|
+
clearflg:0
|
|
82
|
+
},
|
|
83
|
+
|
|
84
|
+
ready () {
|
|
85
|
+
this.oldshow = this.$appdata.getSingleValue('旧工单信息显示') ? true : false
|
|
86
|
+
//tag
|
|
87
|
+
},
|
|
88
|
+
data () {
|
|
89
|
+
return {
|
|
90
|
+
a:'tabs-one',
|
|
91
|
+
selectFiled:'购气记录',
|
|
92
|
+
oldshow:false
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
methods :{
|
|
96
|
+
setField(type){
|
|
97
|
+
this.selectFiled=type
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
</script>
|
|
102
|
+
<style scoped>
|
|
103
|
+
.themeOne .binary .foot_tabset > .span > .tab-pane{
|
|
104
|
+
padding: 0px !important;
|
|
105
|
+
}
|
|
106
|
+
.themeOne .system-right .foot_tabset > ul{
|
|
107
|
+
padding-left: 0px;
|
|
108
|
+
}
|
|
109
|
+
.tel_voiceActive{
|
|
110
|
+
font-family: PingFang-SC-Bold;
|
|
111
|
+
font-size: 16px;
|
|
112
|
+
font-weight: normal!important;
|
|
113
|
+
font-stretch: normal!important;
|
|
114
|
+
line-height: 18px;
|
|
115
|
+
letter-spacing: 0px;
|
|
116
|
+
color: #333333!important;
|
|
117
|
+
border-bottom: 3px solid #599fe5;
|
|
118
|
+
padding:10px 10px!important;
|
|
119
|
+
}
|
|
120
|
+
.tel_f_size{
|
|
121
|
+
font-family: PingFang-SC-Medium;
|
|
122
|
+
font-size: 16px;
|
|
123
|
+
font-weight: normal;
|
|
124
|
+
font-stretch: normal;
|
|
125
|
+
line-height: 18px;
|
|
126
|
+
letter-spacing: 0px;
|
|
127
|
+
color: #666666!important;
|
|
128
|
+
border-bottom: 3px solid #fff;
|
|
129
|
+
padding:10px 10px!important;
|
|
130
|
+
}
|
|
131
|
+
.themeOne .system-right .foot_tabset > ul a {
|
|
132
|
+
color: #666666 !important;
|
|
133
|
+
}
|
|
134
|
+
</style>
|