telephone-clients 3.0.104-1 → 3.0.104-11
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 +54 -54
- package/src/components/guoxin/Console.vue +9 -0
- package/src/components/pc/NewRepairPaper.vue +370 -370
- package/src/components/pc/RepairsWork.vue +1 -0
- package/src/components/pc/VisitInfo.vue +44 -7
- package/src/components/pc/WorkListNew.vue +712 -712
- package/src/components/temp/HandplanInfo.vue +12 -1
- package/src/filiale/furuike/pc/WorkHistory.vue +576 -576
- package/src/filiale/hanzhong/telephone.js +1 -1
- package/src/filiale/qianneng/android/TemporarySingle.vue +537 -537
- package/src/filiale/qianneng/pc/MaterialDetailed.vue +260 -260
- package/src/filiale/qianneng/pc/NewRepairPaper.vue +467 -467
- package/src/filiale/qianneng/pc/RepairsWork.vue +992 -992
- package/src/filiale/qianneng/pc/changetable.vue +273 -273
- package/src/filiale/qianneng/telephone.js +22 -22
- package/src/filiale/rizhao/telephone.js +1 -1
- package/src/filiale/tongchuan/android/RepairDetails.vue +623 -0
- package/src/filiale/tongchuan/telephone.js +52 -52
- package/src/filiale/tongchuan/telephoneAndroid.js +23 -22
- package/src/filiale/wenxi/pc/WorkListAll.vue +698 -0
- package/src/filiale/wenxi/telephone.js +1 -0
- package/src/filiale/wuhai/telephone.js +1 -1
- package/src/main.js +1 -1
- package/src/telephone.js +1 -1
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
title: '抄表记录',
|
|
46
46
|
data () {
|
|
47
47
|
return {
|
|
48
|
-
model: new PagedList((this.user && this.user.isphone) ? '${this.$androidUtil.getProxyUrl()}/' : '' + 'rs/sql/tel_singleTable_OrderBy', 8, {items: '"*"', tablename: '
|
|
48
|
+
model: new PagedList((this.user && this.user.isphone) ? '${this.$androidUtil.getProxyUrl()}/' : '' + 'rs/sql/tel_singleTable_OrderBy', 8, {items: '"*"', tablename: 'this.tablename', orderitem: '"id desc"'}),
|
|
49
49
|
show: false,
|
|
50
50
|
row: Object
|
|
51
51
|
}
|
|
@@ -62,6 +62,11 @@
|
|
|
62
62
|
'user' (val) {
|
|
63
63
|
if(this.user) {
|
|
64
64
|
this.model.rows = []
|
|
65
|
+
if(val.f_meter_classify == '物联网表'){
|
|
66
|
+
this.model.tablename = 't_web_handplan with (nolock)'
|
|
67
|
+
}else{
|
|
68
|
+
this.model.tablename = 't_handplan with (nolock)'
|
|
69
|
+
}
|
|
65
70
|
this.model.search(`f_userinfo_id = '${this.user.f_userinfo_id}'`)
|
|
66
71
|
}
|
|
67
72
|
},
|
|
@@ -71,6 +76,12 @@
|
|
|
71
76
|
},
|
|
72
77
|
ready () {
|
|
73
78
|
if (this.user && this.user.f_userinfo_id) {
|
|
79
|
+
if(this.user.f_meter_classify == '物联网表'){
|
|
80
|
+
debugger
|
|
81
|
+
this.model.tablename = 't_web_handplan with (nolock)'
|
|
82
|
+
}else{
|
|
83
|
+
this.model.tablename = 't_handplan with (nolock)'
|
|
84
|
+
}
|
|
74
85
|
this.model.search(`f_userinfo_id = '${this.user.f_userinfo_id}'`)
|
|
75
86
|
}
|
|
76
87
|
}
|