telephone-clients 3.0.102 → 3.0.103
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/App.vue +56 -52
- package/src/components/MaterialsManage/MaterialsBase.vue +177 -177
- package/src/components/Util/RightTreeSafe.vue +346 -346
- package/src/components/pc/NewRepairPaper.vue +370 -370
- package/src/components/pc/SiteSend.vue +281 -281
- package/src/components/pc/WorkCenterList.vue +292 -292
- package/src/components/pc/WorkListAllNew.vue +700 -700
- package/src/components/temp/ChangemeterInfo.vue +87 -87
- package/src/components/temp/DeviceInfo.vue +82 -82
- package/src/components/workorder/FaultAll.vue +826 -826
- package/src/components/workorder/PhoneStandWork.vue +354 -354
- package/src/components/workorder/RepairOrderV.vue +1446 -1446
- package/src/filiale/furuike/pc/ComplainWork.vue +348 -348
- package/src/filiale/furuike/pc/Seekwork.vue +352 -352
- package/src/filiale/gongyi/android/RepairOrderV.vue +1415 -1415
- package/src/filiale/liaoyuan/android/RepairOrderV.vue +831 -831
- package/src/filiale/qianneng/android/FaultAll.vue +883 -883
- package/src/filiale/qianneng/android/MaterIialOne.vue +123 -123
- package/src/filiale/qianneng/android/RepairOrderV.vue +874 -874
- package/src/filiale/qianneng/android/chargesList.vue +161 -161
- package/src/filiale/qianneng/pc/NewRepairPaper.vue +467 -467
- package/src/filiale/qianneng/pc/RepairsWork.vue +982 -982
- package/src/filiale/qianneng/pc/WorkListAllNew.vue +701 -701
- package/src/filiale/shanxian/pc/WorkList.vue +823 -823
- package/src/filiale/shanxian/telephone.js +12 -12
- package/src/filiale/shexian/android/AddMyTask.vue +347 -0
- package/src/filiale/shexian/android/Outlay.vue +249 -249
- package/src/filiale/shexian/pc/WorkList.vue +740 -0
- package/src/filiale/shexian/telephone.js +18 -17
- package/src/filiale/shexian/telephoneAndroid.js +26 -23
- package/src/filiale/tongchuan/pc/UserWork.vue +805 -805
- package/src/filiale/wenxi/android/RepairOrderV.vue +1419 -1419
- package/src/filiale/wuan/android/RepairOrderV.vue +1384 -1384
- package/src/filiale/zhongsheng/android/RepairOrderV.vue +1430 -1430
- package/src/filiale/zhongsheng/pc/RepairsWork.vue +775 -775
- package/src/filiale/zhongsheng/telephone.js +23 -23
- package/src/main.js +1 -1
- package/yarn-error.log +7872 -0
|
@@ -1,87 +1,87 @@
|
|
|
1
|
-
<template >
|
|
2
|
-
<div id="pc-finduser-page">
|
|
3
|
-
<criteria-paged :model="model" v-ref:paged :simple="true">
|
|
4
|
-
<!-- <criteria partial='criteria'>
|
|
5
|
-
</criteria> -->
|
|
6
|
-
<data-grid :model="model" partial='list' v-ref:grid
|
|
7
|
-
class="list_area table_sy">
|
|
8
|
-
<template partial='head'>
|
|
9
|
-
<tr>
|
|
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
|
-
</tr>
|
|
19
|
-
</template>
|
|
20
|
-
<template partial='body'>
|
|
21
|
-
<!--<td><nobr>{{row.f_userinfo_id}}</nobr></td>-->
|
|
22
|
-
<!--<td><nobr>{{row.f_user_name}}</nobr></td>-->
|
|
23
|
-
<td><nobr>{{row.f_newmeternumber}}</nobr></td>
|
|
24
|
-
<td><nobr>{{row.f_meternumber}}</nobr></td>
|
|
25
|
-
<td><nobr>{{row.f_newremanent_gas}}</nobr></td>
|
|
26
|
-
<td><nobr>{{row.f_changemeter_type}}</nobr></td>
|
|
27
|
-
<th><nobr>{{row.f_operator}}</nobr></th>
|
|
28
|
-
<td><nobr>{{row.f_operate_date}}</nobr></td>
|
|
29
|
-
</template>
|
|
30
|
-
<!--<template partial='foot'>
|
|
31
|
-
<td style="text-align:center">汇总</td>
|
|
32
|
-
<td></td>
|
|
33
|
-
<td></td>
|
|
34
|
-
<td >累计购气量:{{model.sums.f_pregas}}</td>
|
|
35
|
-
<td >累计金额:{{model.sums.f_totalcost}}</td>
|
|
36
|
-
<td >共{{model.count}}条</td>
|
|
37
|
-
</template>-->
|
|
38
|
-
</data-grid>
|
|
39
|
-
</criteria-paged>
|
|
40
|
-
</div>
|
|
41
|
-
</template>
|
|
42
|
-
|
|
43
|
-
<script>
|
|
44
|
-
import { PagedList } from 'vue-client'
|
|
45
|
-
export default {
|
|
46
|
-
title: '换表记录',
|
|
47
|
-
data () {
|
|
48
|
-
return {
|
|
49
|
-
model: new PagedList((this.user && this.user.isphone) ? '${this.$androidUtil.getProxyUrl()}/' : '' + 'rs/sql/tel_singleTable_OrderBy', 5, {items: '"*"', tablename: '"t_changemeter"', orderitem: '"f_operate_date desc"'}),
|
|
50
|
-
show: false,
|
|
51
|
-
row: Object
|
|
52
|
-
}
|
|
53
|
-
},
|
|
54
|
-
props: {
|
|
55
|
-
user: {
|
|
56
|
-
type: Object
|
|
57
|
-
},
|
|
58
|
-
clearflg:0
|
|
59
|
-
},
|
|
60
|
-
methods: {
|
|
61
|
-
selected (row) {
|
|
62
|
-
if (this.row === row) {
|
|
63
|
-
this.row = null
|
|
64
|
-
} else {
|
|
65
|
-
this.row = row
|
|
66
|
-
}
|
|
67
|
-
},
|
|
68
|
-
isSelected (row) {
|
|
69
|
-
return this.row === row
|
|
70
|
-
}
|
|
71
|
-
},
|
|
72
|
-
watch: {
|
|
73
|
-
'user' (val) {
|
|
74
|
-
this.model.rows = []
|
|
75
|
-
this.model.search(`f_userinfo_id = '${this.user.f_userinfo_id}'`)
|
|
76
|
-
},
|
|
77
|
-
'clearflg'(){
|
|
78
|
-
this.model.rows = []
|
|
79
|
-
}
|
|
80
|
-
},
|
|
81
|
-
ready () {
|
|
82
|
-
if (this.user && this.user.f_userinfo_id) {
|
|
83
|
-
this.model.search(`f_userinfo_id = '${this.user.f_userinfo_id}'`)
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
</script>
|
|
1
|
+
<template >
|
|
2
|
+
<div id="pc-finduser-page">
|
|
3
|
+
<criteria-paged :model="model" v-ref:paged :simple="true">
|
|
4
|
+
<!-- <criteria partial='criteria'>
|
|
5
|
+
</criteria> -->
|
|
6
|
+
<data-grid :model="model" partial='list' v-ref:grid
|
|
7
|
+
class="list_area table_sy">
|
|
8
|
+
<template partial='head'>
|
|
9
|
+
<tr>
|
|
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
|
+
</tr>
|
|
19
|
+
</template>
|
|
20
|
+
<template partial='body'>
|
|
21
|
+
<!--<td><nobr>{{row.f_userinfo_id}}</nobr></td>-->
|
|
22
|
+
<!--<td><nobr>{{row.f_user_name}}</nobr></td>-->
|
|
23
|
+
<td><nobr>{{row.f_newmeternumber}}</nobr></td>
|
|
24
|
+
<td><nobr>{{row.f_meternumber}}</nobr></td>
|
|
25
|
+
<td><nobr>{{row.f_newremanent_gas}}</nobr></td>
|
|
26
|
+
<td><nobr>{{row.f_changemeter_type}}</nobr></td>
|
|
27
|
+
<th><nobr>{{row.f_operator}}</nobr></th>
|
|
28
|
+
<td><nobr>{{row.f_operate_date}}</nobr></td>
|
|
29
|
+
</template>
|
|
30
|
+
<!--<template partial='foot'>
|
|
31
|
+
<td style="text-align:center">汇总</td>
|
|
32
|
+
<td></td>
|
|
33
|
+
<td></td>
|
|
34
|
+
<td >累计购气量:{{model.sums.f_pregas}}</td>
|
|
35
|
+
<td >累计金额:{{model.sums.f_totalcost}}</td>
|
|
36
|
+
<td >共{{model.count}}条</td>
|
|
37
|
+
</template>-->
|
|
38
|
+
</data-grid>
|
|
39
|
+
</criteria-paged>
|
|
40
|
+
</div>
|
|
41
|
+
</template>
|
|
42
|
+
|
|
43
|
+
<script>
|
|
44
|
+
import { PagedList } from 'vue-client'
|
|
45
|
+
export default {
|
|
46
|
+
title: '换表记录',
|
|
47
|
+
data () {
|
|
48
|
+
return {
|
|
49
|
+
model: new PagedList((this.user && this.user.isphone) ? '${this.$androidUtil.getProxyUrl()}/' : '' + 'rs/sql/tel_singleTable_OrderBy', 5, {items: '"*"', tablename: '"t_changemeter"', orderitem: '"f_operate_date desc"'}),
|
|
50
|
+
show: false,
|
|
51
|
+
row: Object
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
props: {
|
|
55
|
+
user: {
|
|
56
|
+
type: Object
|
|
57
|
+
},
|
|
58
|
+
clearflg:0
|
|
59
|
+
},
|
|
60
|
+
methods: {
|
|
61
|
+
selected (row) {
|
|
62
|
+
if (this.row === row) {
|
|
63
|
+
this.row = null
|
|
64
|
+
} else {
|
|
65
|
+
this.row = row
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
isSelected (row) {
|
|
69
|
+
return this.row === row
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
watch: {
|
|
73
|
+
'user' (val) {
|
|
74
|
+
this.model.rows = []
|
|
75
|
+
this.model.search(`f_userinfo_id = '${this.user.f_userinfo_id}'`)
|
|
76
|
+
},
|
|
77
|
+
'clearflg'(){
|
|
78
|
+
this.model.rows = []
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
ready () {
|
|
82
|
+
if (this.user && this.user.f_userinfo_id) {
|
|
83
|
+
this.model.search(`f_userinfo_id = '${this.user.f_userinfo_id}'`)
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
</script>
|
|
@@ -1,82 +1,82 @@
|
|
|
1
|
-
<template >
|
|
2
|
-
<div id="pc-finduser-page">
|
|
3
|
-
<criteria-paged :model="model" v-ref:paged :simple="true">
|
|
4
|
-
<!-- <criteria partial='criteria'>
|
|
5
|
-
</criteria> -->
|
|
6
|
-
<data-grid :model="model" partial='list' v-ref:grid
|
|
7
|
-
class="list_area table_sy">
|
|
8
|
-
<template partial='head'>
|
|
9
|
-
<tr>
|
|
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
|
-
</tr>
|
|
17
|
-
</template>
|
|
18
|
-
<template partial='body'>
|
|
19
|
-
<!--<td><nobr>{{row.f_user_id}}</nobr></td>-->
|
|
20
|
-
<td><nobr>{{row.f_devices_type}}</nobr></td>
|
|
21
|
-
<td><nobr>{{row.f_brand}}</nobr></td>
|
|
22
|
-
<td><nobr>{{row.f_devices_num}}</nobr></td>
|
|
23
|
-
<td><nobr>{{row.f_devices_state}}</nobr></td>
|
|
24
|
-
<td><nobr>{{row.f_operate_date}}</nobr></td>
|
|
25
|
-
</template>
|
|
26
|
-
</data-grid>
|
|
27
|
-
</criteria-paged>
|
|
28
|
-
</div>
|
|
29
|
-
</template>
|
|
30
|
-
|
|
31
|
-
<script>
|
|
32
|
-
import { PagedList } from 'vue-client'
|
|
33
|
-
import co from 'co'
|
|
34
|
-
let getmodelGen = function * (self, val) {
|
|
35
|
-
yield self.model.search((`f_userinfo_id = '${self.user.f_userinfo_id}'`))
|
|
36
|
-
.then(() => {
|
|
37
|
-
// self.getdata()
|
|
38
|
-
})
|
|
39
|
-
}
|
|
40
|
-
export default {
|
|
41
|
-
title: '设备信息',
|
|
42
|
-
data () {
|
|
43
|
-
return {
|
|
44
|
-
model: new PagedList((this.user && this.user.isphone) ? '${this.$androidUtil.getProxyUrl()}/' : '' + 'rs/sql/tel_singleTable_OrderBy', 8, {items: '"*"', tablename: '"t_devices"', orderitem: '"f_operate_date desc"'}),
|
|
45
|
-
show: false,
|
|
46
|
-
row: Object
|
|
47
|
-
}
|
|
48
|
-
},
|
|
49
|
-
props: {
|
|
50
|
-
user: {
|
|
51
|
-
type: Object
|
|
52
|
-
},
|
|
53
|
-
clearflg:0
|
|
54
|
-
},
|
|
55
|
-
methods: {
|
|
56
|
-
getmodel () {
|
|
57
|
-
let gen = getmodelGen(this)
|
|
58
|
-
co(gen)
|
|
59
|
-
}
|
|
60
|
-
},
|
|
61
|
-
watch: {
|
|
62
|
-
'user' (val) {
|
|
63
|
-
// this.model.search(`card_id = ${this.user.card_id}`)
|
|
64
|
-
if(this.user){
|
|
65
|
-
if (!(this.user.isNuN)) {
|
|
66
|
-
this.model.rows = []
|
|
67
|
-
this.getmodel()
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
},
|
|
71
|
-
'clearflg'(){
|
|
72
|
-
this.model.rows = []
|
|
73
|
-
}
|
|
74
|
-
},
|
|
75
|
-
ready () {
|
|
76
|
-
if (this.user && this.user.f_userinfo_id) {
|
|
77
|
-
// this.model.search(`card_id = ${this.user.card_id}`)
|
|
78
|
-
this.getmodel()
|
|
79
|
-
}
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
</script>
|
|
1
|
+
<template >
|
|
2
|
+
<div id="pc-finduser-page">
|
|
3
|
+
<criteria-paged :model="model" v-ref:paged :simple="true">
|
|
4
|
+
<!-- <criteria partial='criteria'>
|
|
5
|
+
</criteria> -->
|
|
6
|
+
<data-grid :model="model" partial='list' v-ref:grid
|
|
7
|
+
class="list_area table_sy">
|
|
8
|
+
<template partial='head'>
|
|
9
|
+
<tr>
|
|
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
|
+
</tr>
|
|
17
|
+
</template>
|
|
18
|
+
<template partial='body'>
|
|
19
|
+
<!--<td><nobr>{{row.f_user_id}}</nobr></td>-->
|
|
20
|
+
<td><nobr>{{row.f_devices_type}}</nobr></td>
|
|
21
|
+
<td><nobr>{{row.f_brand}}</nobr></td>
|
|
22
|
+
<td><nobr>{{row.f_devices_num}}</nobr></td>
|
|
23
|
+
<td><nobr>{{row.f_devices_state}}</nobr></td>
|
|
24
|
+
<td><nobr>{{row.f_operate_date}}</nobr></td>
|
|
25
|
+
</template>
|
|
26
|
+
</data-grid>
|
|
27
|
+
</criteria-paged>
|
|
28
|
+
</div>
|
|
29
|
+
</template>
|
|
30
|
+
|
|
31
|
+
<script>
|
|
32
|
+
import { PagedList } from 'vue-client'
|
|
33
|
+
import co from 'co'
|
|
34
|
+
let getmodelGen = function * (self, val) {
|
|
35
|
+
yield self.model.search((`f_userinfo_id = '${self.user.f_userinfo_id}'`))
|
|
36
|
+
.then(() => {
|
|
37
|
+
// self.getdata()
|
|
38
|
+
})
|
|
39
|
+
}
|
|
40
|
+
export default {
|
|
41
|
+
title: '设备信息',
|
|
42
|
+
data () {
|
|
43
|
+
return {
|
|
44
|
+
model: new PagedList((this.user && this.user.isphone) ? '${this.$androidUtil.getProxyUrl()}/' : '' + 'rs/sql/tel_singleTable_OrderBy', 8, {items: '"*"', tablename: '"t_devices"', orderitem: '"f_operate_date desc"'}),
|
|
45
|
+
show: false,
|
|
46
|
+
row: Object
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
props: {
|
|
50
|
+
user: {
|
|
51
|
+
type: Object
|
|
52
|
+
},
|
|
53
|
+
clearflg:0
|
|
54
|
+
},
|
|
55
|
+
methods: {
|
|
56
|
+
getmodel () {
|
|
57
|
+
let gen = getmodelGen(this)
|
|
58
|
+
co(gen)
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
watch: {
|
|
62
|
+
'user' (val) {
|
|
63
|
+
// this.model.search(`card_id = ${this.user.card_id}`)
|
|
64
|
+
if(this.user){
|
|
65
|
+
if (!(this.user.isNuN)) {
|
|
66
|
+
this.model.rows = []
|
|
67
|
+
this.getmodel()
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
'clearflg'(){
|
|
72
|
+
this.model.rows = []
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
ready () {
|
|
76
|
+
if (this.user && this.user.f_userinfo_id) {
|
|
77
|
+
// this.model.search(`card_id = ${this.user.card_id}`)
|
|
78
|
+
this.getmodel()
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
</script>
|