system-phone 3.0.35 → 3.0.37
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/assets//346/214/202/350/241/250/344/270/212/344/274/240.png +0 -0
- package/src/assets//346/214/202/350/241/250/345/267/262/345/212/236.png +0 -0
- package/src/assets//346/214/202/350/241/250/345/276/205/345/212/236.png +0 -0
- package/src/assets//351/242/204/347/272/246/345/256/211/346/243/200.png +0 -0
- package/src/components/AttendManage.vue +8 -7
- package/src/components/LoginApp.vue +723 -721
- package/src/components/OnlineManage.vue +363 -362
- package/src/components/PhoneChangemeterInfo.vue +116 -116
- package/src/components/PhoneMeterInfo.vue +132 -132
- package/src/components/PhoneUserFind.vue +138 -138
- package/src/components/RightTree.vue +217 -217
- package/src/components/ToolsPage.vue +176 -176
- package/src/components/info/ConfigInfo.vue +122 -122
- package/src/components/info/FindUserInfo.vue +157 -157
- package/src/components/info/InfoTable.vue +37 -37
- package/src/systemphonegrid.js +206 -206
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -7,13 +7,13 @@
|
|
|
7
7
|
<div class="badge"
|
|
8
8
|
v-show="isshowTag&&tab.num&&tab.num>0"
|
|
9
9
|
><div class="badge-content">{{tab.num>99?'99+':tab.num}}</div></div>
|
|
10
|
-
<div class="badge" v-show="tab.name == '抄表待办'">
|
|
10
|
+
<div class="badge" v-show="tab.name == '抄表待办' && isShowRedNum && isShowRedNum == 'true'">
|
|
11
11
|
<div class="badge-content">{{ meterNum?meterNum:0 }}</div>
|
|
12
12
|
</div>
|
|
13
|
-
<div class="badge" v-show="tab.name == '安检待办'">
|
|
13
|
+
<div class="badge" v-show="tab.name == '安检待办' && isShowRedNum && isShowRedNum == 'true'">
|
|
14
14
|
<div class="badge-content">{{ safeckNum?safeckNum:0 }}</div>
|
|
15
15
|
</div>
|
|
16
|
-
<div class="badge" v-show="tab.name == '维修待办'">
|
|
16
|
+
<div class="badge" v-show="tab.name == '维修待办' && isShowRedNum && isShowRedNum == 'true'">
|
|
17
17
|
<div class="badge-content">{{ repairNum?repairNum:0 }}</div>
|
|
18
18
|
</div>
|
|
19
19
|
<p></p>
|
|
@@ -79,6 +79,7 @@
|
|
|
79
79
|
componentName: 'repair-first',
|
|
80
80
|
sourcet: '竖屏',
|
|
81
81
|
meterNum:null,
|
|
82
|
+
isShowRedNum:this.$appdata.getSingleValue('红点'),
|
|
82
83
|
applyType: '', // 报建类型
|
|
83
84
|
// applyTypes:this.$appdata.getParam("手机报建类型"),
|
|
84
85
|
applyTypes: [{label: '散户报建', value: '散户报建'}, {label: '工商户报建', value: '工商户报建'}, {
|
|
@@ -185,7 +186,7 @@
|
|
|
185
186
|
|
|
186
187
|
},
|
|
187
188
|
getRepair(){
|
|
188
|
-
if (this
|
|
189
|
+
if (!this.isShowRedNum || this.isShowRedNum != 'true') {
|
|
189
190
|
return
|
|
190
191
|
}
|
|
191
192
|
var _this = this;
|
|
@@ -207,7 +208,7 @@
|
|
|
207
208
|
}, 100000)
|
|
208
209
|
},
|
|
209
210
|
getSafeCheck(){
|
|
210
|
-
if (this
|
|
211
|
+
if (!this.isShowRedNum || this.isShowRedNum != 'true') {
|
|
211
212
|
return
|
|
212
213
|
}
|
|
213
214
|
var _this = this;
|
|
@@ -229,7 +230,7 @@
|
|
|
229
230
|
}, 100000)
|
|
230
231
|
},
|
|
231
232
|
getZhihuan(){
|
|
232
|
-
if (this
|
|
233
|
+
if (!this.isShowRedNum || this.isShowRedNum != 'true') {
|
|
233
234
|
return
|
|
234
235
|
}
|
|
235
236
|
var _this = this;
|
|
@@ -299,7 +300,7 @@
|
|
|
299
300
|
this.getModelSum()
|
|
300
301
|
},
|
|
301
302
|
getmeterNum() {
|
|
302
|
-
if (this
|
|
303
|
+
if (this.isShowRedNum && this.isShowRedNum != 'true') {
|
|
303
304
|
return
|
|
304
305
|
}
|
|
305
306
|
window.setInterval( ()=> {
|