manage-client 4.1.151 → 4.1.152
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/build/dev-server.js +11 -11
- package/package.json +1 -1
- package/src/filiale/jinbin/exportConfig.js +1110 -0
- package/src/filiale/jinbin/sale/businessquery/ChargeQuery.vue +1372 -0
- package/src/filiale/jinbin/sale.js +7 -0
- package/src/filiale/wenxi/MeterExceptionList.vue +3 -1
- package/src/main.js +2 -3
|
@@ -540,7 +540,9 @@
|
|
|
540
540
|
},
|
|
541
541
|
clearmsg() {
|
|
542
542
|
Object.keys(this.$refs.paged.$refs.criteria.model).forEach((key) => {
|
|
543
|
-
|
|
543
|
+
if(key !== 'f_error_level'){
|
|
544
|
+
this.$refs.paged.$refs.criteria.model[key] = []
|
|
545
|
+
}
|
|
544
546
|
})
|
|
545
547
|
},
|
|
546
548
|
close() {
|
package/src/main.js
CHANGED
|
@@ -6,8 +6,8 @@ import { all } from 'vue-client'
|
|
|
6
6
|
import { system } from 'system-clients'
|
|
7
7
|
import { ldap } from 'ldap-clients'
|
|
8
8
|
import saleManage from './saleManage'
|
|
9
|
-
import ShanXianSaleManage from './filiale/
|
|
10
|
-
import ShanXianwebSaleManage from './filiale/
|
|
9
|
+
import ShanXianSaleManage from './filiale/xinjiangdexin/sale'
|
|
10
|
+
// import ShanXianwebSaleManage from './filiale/rongcheng/webmeterManage'
|
|
11
11
|
import webmeterManage from './webmeterManage'
|
|
12
12
|
import reportManage from './reportManage'
|
|
13
13
|
import newmanage from './newmanage'
|
|
@@ -50,7 +50,6 @@ webmeterManage()
|
|
|
50
50
|
ManageHome()
|
|
51
51
|
newmanage()
|
|
52
52
|
ShanXianSaleManage()
|
|
53
|
-
ShanXianwebSaleManage()
|
|
54
53
|
reportManage()
|
|
55
54
|
// ShanXianSaleManage()
|
|
56
55
|
require('system-clients/src/styles/less/bootstrap.less')
|