manage-client 3.3.203 → 3.3.204
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/.npmignore +10 -0
- package/build/.npmignore +1 -0
- package/package-lock.json +28484 -0
- package/package.json +1 -1
- package/src/filiale/ningjin/MeterExceptionList.vue +2 -2
package/package.json
CHANGED
|
@@ -444,10 +444,10 @@
|
|
|
444
444
|
},
|
|
445
445
|
getorg(obj) {
|
|
446
446
|
if (obj.resids.length>0) {
|
|
447
|
-
this.orgCondtionStr = " and f_orgid in " + plugin.convertToIn(obj.resids)
|
|
447
|
+
this.orgCondtionStr = " and f_orgid in " + plugin.convertToIn(obj.resids) + " and f_error_type IS NOT NULL and f_error_level IS NOT NULL "
|
|
448
448
|
}else
|
|
449
449
|
{
|
|
450
|
-
this.orgCondtionStr = " and f_orgid = " + this.$login.f.orgid
|
|
450
|
+
this.orgCondtionStr = " and f_orgid = " + this.$login.f.orgid + " and f_error_type IS NOT NULL and f_error_level IS NOT NULL "
|
|
451
451
|
}
|
|
452
452
|
},
|
|
453
453
|
initParams () {
|