manage-client 3.2.180 → 3.2.182
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 +8 -2
- package/package.json +1 -1
- package/src/components/sale/businessquery/ArrearsQuery.vue +12 -5
- package/src/components/sale/config/exportConfig.js +1 -1
- package/src/filiale/gehua/ChargeQuery.vue +1309 -0
- package/src/filiale/gehua/sale.js +7 -0
- package/src/filiale/kelai/AreaChargeQuery.vue +1 -1
- package/src/filiale/kelai/exportConfig.js +1 -1
- package/src/filiale/meihekou/YingShouMingXi.vue +3 -3
- package/src/filiale/qianneng/RecordInfoQuery.vue +1287 -0
- package/src/filiale/qianneng/exportConfig.js +22 -0
- package/src/filiale/qianneng/sale.js +3 -1
- package/src/filiale/tongchuan/ChargeQuery.vue +1 -1
- package/src/filiale/tongchuan/config/exportConfig.js +1 -1
- package/src/filiale/zhongyi/FillCardQuery.vue +581 -0
- package/src/filiale/zhongyi/GasStatistics.vue +22 -0
- package/src/filiale/zhongyi/LostContactAnalysisList.vue +650 -0
- package/src/filiale/zhongyi/exportConfig.js +1080 -0
- package/src/filiale/zhongyi/sale.js +2 -3
- package/src/filiale/zhongyi/webmeterManage.js +12 -0
- package/yarn-error.log +0 -7659
package/build/dev-server.js
CHANGED
|
@@ -13,8 +13,8 @@ var compiler = webpack(config)
|
|
|
13
13
|
// var bendi = 'http://127.0.0.1:8089/manage', fuwu = 'http://36.103.224.217:6300/'
|
|
14
14
|
var shaoguan = 'http://119.146.1.106:8300/'
|
|
15
15
|
var qtx= 'http://36.103.222.144:6300/'
|
|
16
|
-
|
|
17
|
-
var bendi = 'http://203.57.101.233:9001'
|
|
16
|
+
var bendi = 'http://220.194.141.253:8600/'
|
|
17
|
+
// var bendi = 'http://203.57.101.233:9001'
|
|
18
18
|
var fuwu = 'http://172.168.1.11:9001/'
|
|
19
19
|
// var fuwu = 'http://203.57.101.233:9001'
|
|
20
20
|
var system = 'http://192.168.50.4:8400'
|
|
@@ -31,6 +31,12 @@ var proxyTable = {
|
|
|
31
31
|
'/rs/sql/BusinessType': {
|
|
32
32
|
target: 'http://localhost:8080/'
|
|
33
33
|
},
|
|
34
|
+
'/rs/logic/getBatchOperaPro': {
|
|
35
|
+
target: 'http://localhost:8080/'
|
|
36
|
+
},
|
|
37
|
+
'/rs/customExport/areaChargeExportExcel': {
|
|
38
|
+
target: 'http://localhost:8080/'
|
|
39
|
+
},
|
|
34
40
|
'/files': {
|
|
35
41
|
target: bendi
|
|
36
42
|
},
|
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
<div class="row">
|
|
9
9
|
<div class="col-sm-2 form-group">
|
|
10
10
|
|
|
11
|
-
<label for="startDate" class="font_normal_body" title="归属日期">开始日期</label>
|
|
11
|
+
<label for="startDate" class="font_normal_body color-red" style="color: red;" title="归属日期">开始日期</label>
|
|
12
12
|
<datepicker id="startDate" placeholder="开始日期" style="width:60%"
|
|
13
13
|
v-model="model.startDate"
|
|
14
14
|
:value.sync="model.startDate"
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
</datepicker>
|
|
19
19
|
</div>
|
|
20
20
|
<div class="col-sm-2 form-group">
|
|
21
|
-
<label for="endDate" class="font_normal_body" title="归属日期">结束日期</label>
|
|
21
|
+
<label for="endDate" class="font_normal_body color-red" style="color: red;" title="归属日期">结束日期</label>
|
|
22
22
|
<datepicker id="endDate" placeholder="结束日期" style="width:60%"
|
|
23
23
|
v-model="model.endDate"
|
|
24
24
|
:value.sync="model.endDate"
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
</div>
|
|
82
82
|
<div class="col-sm-2 form-group">
|
|
83
83
|
|
|
84
|
-
<label for="inputstartDate" class="font_normal_body">抄表日期</label>
|
|
84
|
+
<label for="inputstartDate" class="font_normal_body color-red"style="color: red;">抄表日期</label>
|
|
85
85
|
<datepicker id="inputstartDate" placeholder="开始日期" style="width:60%"
|
|
86
86
|
v-model="model.inputstartDate"
|
|
87
87
|
:value.sync="model.inputstartDate"
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
</datepicker>
|
|
92
92
|
</div>
|
|
93
93
|
<div class="col-sm-2 form-group">
|
|
94
|
-
<label for="inputendDate" class="font_normal_body"> 至 </label>
|
|
94
|
+
<label for="inputendDate" class="font_normal_body color-red" style="color: red;"> 至 </label>
|
|
95
95
|
<datepicker id="inputendDate" placeholder="结束日期" style="width:60%"
|
|
96
96
|
v-model="model.inputendDate"
|
|
97
97
|
:value.sync="model.inputendDate"
|
|
@@ -781,7 +781,9 @@
|
|
|
781
781
|
console.log('开始时间',this.$refs.paged.$refs.cri.model.startDate)
|
|
782
782
|
if (this.$refs.paged.$refs.cri.model.startDate === '' || this.$refs.paged.$refs.cri.model.endDate === ''){
|
|
783
783
|
this.$showAlert('请先选择开始时间、结束时间,再进行查询操作!', 'warning', 3000)
|
|
784
|
-
}
|
|
784
|
+
}else if(this.$refs.paged.$refs.cri.model.inputstartDate === '' || this.$refs.paged.$refs.cri.model.inputendDate === ''){
|
|
785
|
+
this.$showAlert('请先选择抄表开始时间、抄表结束时间,再进行查询操作!', 'warning', 3000)
|
|
786
|
+
}else {
|
|
785
787
|
//小区查询条件
|
|
786
788
|
let f_orgstr = this.orgCondtionStr
|
|
787
789
|
let str='1=1 '
|
|
@@ -937,3 +939,8 @@
|
|
|
937
939
|
}
|
|
938
940
|
}
|
|
939
941
|
</script>
|
|
942
|
+
<style lang="less">
|
|
943
|
+
.color-red {
|
|
944
|
+
color: red;
|
|
945
|
+
}
|
|
946
|
+
</style>
|
|
@@ -173,7 +173,7 @@ export default{
|
|
|
173
173
|
'f_oughtfee_all': '合计欠费金额','f_oughtfee_col': '实际欠费金额', 'f_cost_type': '缴费方式', 'f_meter_type': '气表类型'
|
|
174
174
|
},
|
|
175
175
|
areaChargeQueryConfig: {
|
|
176
|
-
'f_residential_area': '小区','f_price': '单价','
|
|
176
|
+
'f_residential_area': '小区','f_price': '单价','f_gas': '购气方量','f_money': '购气金额'
|
|
177
177
|
},
|
|
178
178
|
arrearsGYConfig: {
|
|
179
179
|
'f_userinfo_code': '客户编号', 'f_user_name': '客户名称', 'f_meternumber': '表号', 'f_residential_area': '小区名称', 'f_address': '客户地址',
|