manage-client 3.2.289 → 3.2.290-2
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 +3 -3
- package/lib/package_2022-12-01-14-30-50.json +109 -0
- package/package.json +1 -1
- package/src/components/sale/businessquery/NewAreaGeneralQuery.vue +1 -1
- package/src/components/webmeter/DrillData/UserLostContactAnalysis.vue +585 -583
- package/src/components/webmeter/gasStatistics/NewGasStatistics.vue +511 -511
- package/src/filiale/ancheng/businessquery/ChargeQuery.vue +1344 -1344
- package/src/filiale/ancheng/sale.js +9 -9
- package/src/filiale/kelai/CollectManage.vue +158 -158
- package/src/filiale/kelai/NewAccountQuery.vue +409 -409
- package/src/filiale/kelai/sale.js +13 -13
- package/src/filiale/rongcheng/AreaBuildingInfoSummary.vue +3 -3
- package/src/filiale/wenxi/GasDeviceQuery.vue +987 -987
- package/src/filiale/wenxi/ManageUserTypeSell.vue +11 -1
- package/src/main.js +2 -2
- package/.gradle/4.4/fileChanges/last-build.bin +0 -0
- package/.gradle/6.1/executionHistory/executionHistory.bin +0 -0
- package/.gradle/6.1/executionHistory/executionHistory.lock +0 -0
- package/.gradle/6.1/fileChanges/last-build.bin +0 -0
- package/.gradle/6.1/fileHashes/fileHashes.bin +0 -0
- package/.gradle/6.1/fileHashes/fileHashes.lock +0 -0
|
@@ -45,6 +45,14 @@
|
|
|
45
45
|
:initresid='queryData.operatorid'>
|
|
46
46
|
</res-select>
|
|
47
47
|
</div>
|
|
48
|
+
<div class="col-sm-3 form-group">
|
|
49
|
+
<label class="font_normal_body" for="oper">pos收费: </label>
|
|
50
|
+
<v-select :value.sync="queryData.f_payment"
|
|
51
|
+
v-model="queryData.f_payment"
|
|
52
|
+
:options='f_payents' placeholder='请选择'
|
|
53
|
+
condition="f_bank_name = '{}'"
|
|
54
|
+
close-on-select></v-select>
|
|
55
|
+
</div>
|
|
48
56
|
<div class="col-sm-2 form-group" style="float:right;">
|
|
49
57
|
<button class="button_search" @click="searchData()">查询</button>
|
|
50
58
|
<div style="float: right" class="button_spacing" :class="{'button_shrink_top':criteriaShow,
|
|
@@ -75,7 +83,8 @@ export default {
|
|
|
75
83
|
queryData: {
|
|
76
84
|
f_orgid: [],
|
|
77
85
|
f_depid: [],
|
|
78
|
-
f_operatorid: []
|
|
86
|
+
f_operatorid: [],
|
|
87
|
+
f_payment: []
|
|
79
88
|
},
|
|
80
89
|
orgname: '',
|
|
81
90
|
depresid: [],
|
|
@@ -84,6 +93,7 @@ export default {
|
|
|
84
93
|
operatorname: '',
|
|
85
94
|
operatorid: [],
|
|
86
95
|
depid: [],
|
|
96
|
+
f_payents: [{label: 'pos收费', value: '在线支付'}],
|
|
87
97
|
criteriaShow: false
|
|
88
98
|
}
|
|
89
99
|
},
|
package/src/main.js
CHANGED
|
@@ -6,9 +6,9 @@ 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 kelaisaleManage from './filiale/macheng/sale'
|
|
9
10
|
import webmeterManage from './webmeterManage'
|
|
10
11
|
import reportManage from './reportManage'
|
|
11
|
-
import reportManageF from './filiale/xinkang/reportManage'
|
|
12
12
|
import newmanage from './newmanage'
|
|
13
13
|
import ManageHome from './ManageHome'
|
|
14
14
|
import echarts from 'echarts'
|
|
@@ -46,11 +46,11 @@ ldap()
|
|
|
46
46
|
system(false)
|
|
47
47
|
|
|
48
48
|
saleManage()
|
|
49
|
+
kelaisaleManage()
|
|
49
50
|
webmeterManage()
|
|
50
51
|
ManageHome()
|
|
51
52
|
newmanage()
|
|
52
53
|
reportManage()
|
|
53
|
-
reportManageF()
|
|
54
54
|
require('system-clients/src/styles/less/bootstrap.less')
|
|
55
55
|
require('./components/qinhua/Style/qinhuaStyle.less')
|
|
56
56
|
// require('./bootstrap/less/manageStyle/manageChile.less')
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|