telephone-clients 4.0.0-1-89 → 4.0.0-1-90
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 +2 -2
- package/src/components/pc/MaintenanceWorker.vue +152 -0
- package/src/components/pc/NewRepairPaper.vue +704 -704
- package/src/components/pc/NewRepairTablePaper.vue +442 -442
- package/src/components/pc/WorkHistory.vue +650 -650
- package/src/components/pc/WorkListNew.vue +838 -838
- package/src/components/sendsingle/onlinecharge.vue +424 -424
- package/src/components/workorder/ChangeMeterPageNew.vue +663 -663
- package/src/components/workorder/ChangeMeterUserInfo.vue +130 -130
- package/src/components/workorder/RepairFirstV.vue +736 -736
- package/src/components/workorder/RepairInfo.vue +178 -178
- package/src/components/workorder/RepairOrderT.vue +713 -713
- package/src/components/workorder/oldMeterPage.vue +104 -104
- package/src/components/workorder/repairFirstTable.vue +715 -715
- package/src/filiale/jinhong/android/FaultAll.vue +936 -936
- package/src/filiale/jinhong/android/ZHihuanFirst.vue +540 -540
- package/src/filiale/jinhong/pc/WorkListAllNew.vue +884 -884
- package/src/filiale/jinhong/telephone.js +10 -10
- package/src/filiale/jinhong/telephoneAndroid.js +13 -13
- package/src/filiale/meihekou/android/Othercharge.vue +454 -454
- package/src/filiale/meihekou/android/PhoneStandWorkNew.vue +692 -692
- package/src/filiale/meihekou/android/ServiceOnlineQuery.vue +477 -477
- package/src/filiale/meihekou/pc/WorkListAllNew.vue +925 -901
- package/src/filiale/meihekou/pc/WorkListNew.vue +1103 -1049
- package/src/filiale/meihekou/telephoneAndroid.js +26 -26
- package/src/filiale/xinjiangdexin/telephone.js +16 -16
- package/src/filiale/xinliansihui/android/FaultAll.vue +923 -923
- package/src/filiale/xinliansihui/android/RepairFirstV.vue +734 -734
- package/src/filiale/xinliansihui/android/RepairOrderT.vue +713 -713
- package/src/main.js +1 -1
- package/src/telephone-android.js +425 -425
- package/src/telephone.js +799 -796
|
@@ -1,104 +1,104 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="select-overspread repair-bg auto" style="padding-bottom:5px;">
|
|
3
|
-
<div class="panel panel-default auto repair-info-content">
|
|
4
|
-
<div class="panel-body">
|
|
5
|
-
<div class="auto repair-info-content compatible">
|
|
6
|
-
<div class="row auto">
|
|
7
|
-
<div class="col-xs-12 col-sm-12 col-md-12 form-input-group mg8">
|
|
8
|
-
<label class="lb-left text-justify">气表类型</label>
|
|
9
|
-
<input v-model="meterData.f_meter_type" class="form-control" readonly
|
|
10
|
-
onkeyup="value=value.replace(/[^\d\.]/g,'')" type="text">
|
|
11
|
-
</div>
|
|
12
|
-
<div class="col-xs-12 col-sm-12 col-md-12 form-input-group mg8">
|
|
13
|
-
<label class="lb-left text-justify">气表品牌</label>
|
|
14
|
-
<input v-model="meterData.f_meter_brand" class="form-control"
|
|
15
|
-
onkeyup="value=value.replace(/[^\d\.]/g,'')" readonly type="text">
|
|
16
|
-
</div>
|
|
17
|
-
<div class="col-xs-12 col-sm-12 col-md-12 form-input-group mg8">
|
|
18
|
-
<label class="lb-left text-justify">气表表号</label>
|
|
19
|
-
<input v-model="meterData.f_meternumber" class="form-control"
|
|
20
|
-
onkeyup="value=value.replace(/[^\d\.]/g,'')" readonly type="text">
|
|
21
|
-
</div>
|
|
22
|
-
<div class="col-xs-12 col-sm-12 col-md-12 form-input-group mg8">
|
|
23
|
-
<label class="lb-left text-justify">累计气量</label>
|
|
24
|
-
<input v-model="meterData.f_total_gas " class="form-control" readonly type="text">
|
|
25
|
-
</div>
|
|
26
|
-
<div class="col-xs-12 col-sm-12 col-md-12 form-input-group mg8">
|
|
27
|
-
<label class="lb-left text-justify">累计金额</label>
|
|
28
|
-
<input v-model="meterData.f_total_fee" class="form-control"
|
|
29
|
-
onkeyup="value=value.replace(/[^\d\.]/g,'')" readonly type="text">
|
|
30
|
-
</div>
|
|
31
|
-
<div class="col-xs-12 col-sm-12 col-md-12 form-input-group mg8">
|
|
32
|
-
<label class="lb-left text-justify">气表底数(旧表底数)</label>
|
|
33
|
-
<input v-model="meterData.f_meter_base" class="form-control"
|
|
34
|
-
onkeyup="value=value.replace(/[^\d\.]/g,'')" readonly type="text">
|
|
35
|
-
</div>
|
|
36
|
-
</div>
|
|
37
|
-
</div>
|
|
38
|
-
</div>
|
|
39
|
-
</div>
|
|
40
|
-
</div>
|
|
41
|
-
</template>
|
|
42
|
-
|
|
43
|
-
<script>
|
|
44
|
-
import { HttpResetClass } from "vue-client"
|
|
45
|
-
export default {
|
|
46
|
-
title: '旧表信息',
|
|
47
|
-
props: {
|
|
48
|
-
model: {
|
|
49
|
-
type: Object
|
|
50
|
-
}
|
|
51
|
-
},
|
|
52
|
-
data() {
|
|
53
|
-
return {
|
|
54
|
-
meterData:{}
|
|
55
|
-
}
|
|
56
|
-
},
|
|
57
|
-
methods: {},
|
|
58
|
-
|
|
59
|
-
ready() {
|
|
60
|
-
if (this.model.f_userinfo_id){
|
|
61
|
-
let http = new HttpResetClass()
|
|
62
|
-
http.load('POST', `${this.$androidUtil.getProxyUrl()}/af-telephone/rs/sql/tel_singleTable_OrderBy`, {
|
|
63
|
-
data: {
|
|
64
|
-
items: 'uf.*,gb.f_meter_brand,gb.f_meter_type,gb.f_collection_type',
|
|
65
|
-
tablename: 't_userfiles uf LEFT JOIN t_gasbrand gb on uf.f_gasbrand_id = gb.id',
|
|
66
|
-
condition: `uf.f_userinfo_id = '${this.model.f_userinfo_id}' and uf.f_table_state in ('正常','待开通')`,
|
|
67
|
-
orderitem: 'id'
|
|
68
|
-
}
|
|
69
|
-
}, {resolveMsg: null, rejectMsg: null}).then((res) => {
|
|
70
|
-
this.meterData = res.data[0]
|
|
71
|
-
|
|
72
|
-
})
|
|
73
|
-
}
|
|
74
|
-
},
|
|
75
|
-
watch() {
|
|
76
|
-
|
|
77
|
-
}
|
|
78
|
-
}
|
|
79
|
-
</script>
|
|
80
|
-
<style lang="less" scoped>
|
|
81
|
-
.form-input-group {
|
|
82
|
-
margin-bottom: 15px;
|
|
83
|
-
|
|
84
|
-
label {
|
|
85
|
-
padding-left: 8px;
|
|
86
|
-
border: none;
|
|
87
|
-
border-left: 5px solid #A2C2EB;
|
|
88
|
-
width: 110px;
|
|
89
|
-
text-align: left;
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
input[readonly] {
|
|
93
|
-
background-color: #f5f5f5;
|
|
94
|
-
cursor: not-allowed;
|
|
95
|
-
}
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
.repair-bg {
|
|
99
|
-
background-color: #fff;
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
.repair-info-content {
|
|
103
|
-
}
|
|
104
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="select-overspread repair-bg auto" style="padding-bottom:5px;">
|
|
3
|
+
<div class="panel panel-default auto repair-info-content">
|
|
4
|
+
<div class="panel-body">
|
|
5
|
+
<div class="auto repair-info-content compatible">
|
|
6
|
+
<div class="row auto">
|
|
7
|
+
<div class="col-xs-12 col-sm-12 col-md-12 form-input-group mg8">
|
|
8
|
+
<label class="lb-left text-justify">气表类型</label>
|
|
9
|
+
<input v-model="meterData.f_meter_type" class="form-control" readonly
|
|
10
|
+
onkeyup="value=value.replace(/[^\d\.]/g,'')" type="text">
|
|
11
|
+
</div>
|
|
12
|
+
<div class="col-xs-12 col-sm-12 col-md-12 form-input-group mg8">
|
|
13
|
+
<label class="lb-left text-justify">气表品牌</label>
|
|
14
|
+
<input v-model="meterData.f_meter_brand" class="form-control"
|
|
15
|
+
onkeyup="value=value.replace(/[^\d\.]/g,'')" readonly type="text">
|
|
16
|
+
</div>
|
|
17
|
+
<div class="col-xs-12 col-sm-12 col-md-12 form-input-group mg8">
|
|
18
|
+
<label class="lb-left text-justify">气表表号</label>
|
|
19
|
+
<input v-model="meterData.f_meternumber" class="form-control"
|
|
20
|
+
onkeyup="value=value.replace(/[^\d\.]/g,'')" readonly type="text">
|
|
21
|
+
</div>
|
|
22
|
+
<div class="col-xs-12 col-sm-12 col-md-12 form-input-group mg8">
|
|
23
|
+
<label class="lb-left text-justify">累计气量</label>
|
|
24
|
+
<input v-model="meterData.f_total_gas " class="form-control" readonly type="text">
|
|
25
|
+
</div>
|
|
26
|
+
<div class="col-xs-12 col-sm-12 col-md-12 form-input-group mg8">
|
|
27
|
+
<label class="lb-left text-justify">累计金额</label>
|
|
28
|
+
<input v-model="meterData.f_total_fee" class="form-control"
|
|
29
|
+
onkeyup="value=value.replace(/[^\d\.]/g,'')" readonly type="text">
|
|
30
|
+
</div>
|
|
31
|
+
<div class="col-xs-12 col-sm-12 col-md-12 form-input-group mg8">
|
|
32
|
+
<label class="lb-left text-justify">气表底数(旧表底数)</label>
|
|
33
|
+
<input v-model="meterData.f_meter_base" class="form-control"
|
|
34
|
+
onkeyup="value=value.replace(/[^\d\.]/g,'')" readonly type="text">
|
|
35
|
+
</div>
|
|
36
|
+
</div>
|
|
37
|
+
</div>
|
|
38
|
+
</div>
|
|
39
|
+
</div>
|
|
40
|
+
</div>
|
|
41
|
+
</template>
|
|
42
|
+
|
|
43
|
+
<script>
|
|
44
|
+
import { HttpResetClass } from "vue-client"
|
|
45
|
+
export default {
|
|
46
|
+
title: '旧表信息',
|
|
47
|
+
props: {
|
|
48
|
+
model: {
|
|
49
|
+
type: Object
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
data() {
|
|
53
|
+
return {
|
|
54
|
+
meterData:{}
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
methods: {},
|
|
58
|
+
|
|
59
|
+
ready() {
|
|
60
|
+
if (this.model.f_userinfo_id){
|
|
61
|
+
let http = new HttpResetClass()
|
|
62
|
+
http.load('POST', `${this.$androidUtil.getProxyUrl()}/af-telephone/rs/sql/tel_singleTable_OrderBy`, {
|
|
63
|
+
data: {
|
|
64
|
+
items: 'uf.*,gb.f_meter_brand,gb.f_meter_type,gb.f_collection_type',
|
|
65
|
+
tablename: 't_userfiles uf LEFT JOIN t_gasbrand gb on uf.f_gasbrand_id = gb.id',
|
|
66
|
+
condition: `uf.f_userinfo_id = '${this.model.f_userinfo_id}' and uf.f_table_state in ('正常','待开通')`,
|
|
67
|
+
orderitem: 'id'
|
|
68
|
+
}
|
|
69
|
+
}, {resolveMsg: null, rejectMsg: null}).then((res) => {
|
|
70
|
+
this.meterData = res.data[0]
|
|
71
|
+
|
|
72
|
+
})
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
watch() {
|
|
76
|
+
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
</script>
|
|
80
|
+
<style lang="less" scoped>
|
|
81
|
+
.form-input-group {
|
|
82
|
+
margin-bottom: 15px;
|
|
83
|
+
|
|
84
|
+
label {
|
|
85
|
+
padding-left: 8px;
|
|
86
|
+
border: none;
|
|
87
|
+
border-left: 5px solid #A2C2EB;
|
|
88
|
+
width: 110px;
|
|
89
|
+
text-align: left;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
input[readonly] {
|
|
93
|
+
background-color: #f5f5f5;
|
|
94
|
+
cursor: not-allowed;
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.repair-bg {
|
|
99
|
+
background-color: #fff;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.repair-info-content {
|
|
103
|
+
}
|
|
104
|
+
</style>
|