manage-client 3.3.78 → 3.3.79
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 +2 -2
- package/package.json +1 -1
- package/src/components/sale/filesquery/RecordInfoQuery.vue +4 -4
- package/src/components/sale/report/aode/DayReportList.vue +14 -0
- package/src/filiale/rizhao/UserQuery.vue +0 -5
- package/src/filiale/yuansheng/DayReportList.vue +17 -3
- package/src/main.js +3 -3
package/build/dev-server.js
CHANGED
|
@@ -19,9 +19,9 @@ var qtx= 'http://36.103.222.144:6300/'
|
|
|
19
19
|
// var bendi = 'http://203.57.101.233:8400/'
|
|
20
20
|
// var bendi = 'http://121.36.106.17:8400/'
|
|
21
21
|
// var fuwu = 'http://203.57.101.233:9001'
|
|
22
|
-
var bendi = 'http://
|
|
22
|
+
var bendi = 'http://121.36.106.17:8400'
|
|
23
23
|
// var bendi = 'http://119.187.112.234:8400/'
|
|
24
|
-
var wode = 'http://
|
|
24
|
+
var wode = 'http://121.36.106.17:8400'
|
|
25
25
|
// 192.168.
|
|
26
26
|
// var str = 'http://127.0.0.1:8080/manage', str2 = 'http://192.168.50.199:8300'
|
|
27
27
|
// var str = 'http://192.168.10.233:8300', str2 = 'http://192.168.10.14:8300'
|
package/package.json
CHANGED
|
@@ -928,7 +928,7 @@
|
|
|
928
928
|
isSingleUser: null,
|
|
929
929
|
other:[],
|
|
930
930
|
footer:[],
|
|
931
|
-
model: new PagedList('rs/sql/compreQuery', 20,{orderitem: this.orderitem?'"' + this.orderitem + ' "':`'f_residential_area desc,f_building desc,f_unit desc,f_floor desc,f_room desc'`},{f_yiguabiao:0,f_weiguabiao:0}),
|
|
931
|
+
model: new PagedList('rs/sql/compreQuery', 20,{orderitem: this.orderitem?'"' + this.orderitem + ' "':`'f_residential_area desc,f_building desc,f_unit desc,f_floor desc,f_room desc,f_userfiles_id desc'`},{f_yiguabiao:0,f_weiguabiao:0}),
|
|
932
932
|
criteriaShow: false,
|
|
933
933
|
orgCondtionStr:'',
|
|
934
934
|
residentialArea: [],
|
|
@@ -944,7 +944,7 @@
|
|
|
944
944
|
tfoot: '',
|
|
945
945
|
defaultfield: [],
|
|
946
946
|
//排序
|
|
947
|
-
orderitem: 'f_residential_area desc,f_building desc,f_unit desc,f_floor desc,f_room desc',
|
|
947
|
+
orderitem: 'f_residential_area desc,f_building desc,f_unit desc,f_floor desc,f_room desc,f_userfiles_id desc',
|
|
948
948
|
orderFields: {
|
|
949
949
|
f_operate_date: 'no'
|
|
950
950
|
},
|
|
@@ -1141,7 +1141,6 @@
|
|
|
1141
1141
|
} else {
|
|
1142
1142
|
args.condition = `${args.condition}` + this.orgCondtionStr
|
|
1143
1143
|
}
|
|
1144
|
-
this.conditon2 = args.condition
|
|
1145
1144
|
console.log("查看条件",this.conditon2)
|
|
1146
1145
|
if(this.card!=''){
|
|
1147
1146
|
args.condition +=` and f_card_id='${this.card}'`
|
|
@@ -1149,6 +1148,7 @@
|
|
|
1149
1148
|
if(this.IdCardInfo!=''){
|
|
1150
1149
|
args.condition+=` and f_idnumber='${this.IdCardInfo}'`
|
|
1151
1150
|
}
|
|
1151
|
+
this.conditon2 = args.condition
|
|
1152
1152
|
this.model.search(args.condition, args.model)
|
|
1153
1153
|
this.sumsmodel = this.$refs.paged.$refs.grid.model.sums;
|
|
1154
1154
|
this.card=''
|
|
@@ -1305,7 +1305,7 @@
|
|
|
1305
1305
|
if (rule === 'no') {
|
|
1306
1306
|
this.model.paramSource.orderitem = `'${this.orderitem}'`
|
|
1307
1307
|
} else {
|
|
1308
|
-
this.model.paramSource.orderitem = `'${field} ${rule}'`
|
|
1308
|
+
this.model.paramSource.orderitem = `'${field} ${rule},f_userfiles_id desc'`
|
|
1309
1309
|
}
|
|
1310
1310
|
|
|
1311
1311
|
this.search()
|
|
@@ -56,6 +56,17 @@
|
|
|
56
56
|
condition="f_operator {} "
|
|
57
57
|
close-on-select></v-select>
|
|
58
58
|
</div>
|
|
59
|
+
<div :class="$parent.$parent.style">
|
|
60
|
+
<label class="font_normal_body">付款方式</label>
|
|
61
|
+
<v-select id="f_payment"
|
|
62
|
+
v-model="model.f_payment"
|
|
63
|
+
placeholder='请选择'
|
|
64
|
+
condition="f_payment ='{}'"
|
|
65
|
+
:value.sync="model.f_payment"
|
|
66
|
+
:options='$parent.$parent.payments'
|
|
67
|
+
close-on-select clear-button>
|
|
68
|
+
</v-select>
|
|
69
|
+
</div>
|
|
59
70
|
|
|
60
71
|
<div class="button-range" style="float:right;margin-top:10px">
|
|
61
72
|
<button class="button_search button_spacing" @click="search()">查询</button>
|
|
@@ -382,6 +393,9 @@
|
|
|
382
393
|
gasproperties() {
|
|
383
394
|
return [{label: ' 全部 ', value: ''}, ...this.$appdata.getParam('用气性质')]
|
|
384
395
|
},
|
|
396
|
+
payments() {
|
|
397
|
+
return [{label: '全部', value: ''}, ...this.$appdata.getParam('付款方式')]
|
|
398
|
+
},
|
|
385
399
|
sellstate() {
|
|
386
400
|
return [{label: ' 全部 ', value: ''}, ...this.$appdata.getParam('收费状态')]
|
|
387
401
|
}
|
|
@@ -278,11 +278,6 @@
|
|
|
278
278
|
:options='$parent.$parent.hairpin' placeholder='请选择'
|
|
279
279
|
close-on-select></v-select>
|
|
280
280
|
</div>
|
|
281
|
-
<div class="col-sm-2 form-group">
|
|
282
|
-
<label class="font_normal_body">表号</label>
|
|
283
|
-
<input type="text" style="width:60%" class="input_search" v-model="model.f_meternumber"
|
|
284
|
-
condition="f_meternumber = '{}' " placeholder="表号">
|
|
285
|
-
</div>
|
|
286
281
|
<div class="col-sm-2 form-group">
|
|
287
282
|
<label class="font_normal_body">卡号</label>
|
|
288
283
|
<input type="text" style="width:60%" class="input_search" v-model="model.f_card_id"
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
close-on-select></v-select>
|
|
67
67
|
</div>
|
|
68
68
|
<div :class="$parent.$parent.style">
|
|
69
|
-
<label class="font_normal_body"
|
|
69
|
+
<label class="font_normal_body"> 小 区 </label>
|
|
70
70
|
<input @keyup.enter="search" style="width:60%" type="text" class="input_search" v-model="model.f_residential_area"
|
|
71
71
|
placeholder='请输入小区'
|
|
72
72
|
>
|
|
@@ -83,16 +83,27 @@
|
|
|
83
83
|
<div style="float: right" class="button_spacing" :class="{'button_shrink_left':$parent.$parent.criteriaShow,'button_shrink_right':!$parent.$parent.criteriaShow}" @click="$parent.$parent.show()"></div>
|
|
84
84
|
</div>
|
|
85
85
|
<div :class="$parent.$parent.style">
|
|
86
|
-
<label class="font_normal_body"
|
|
86
|
+
<label class="font_normal_body"> 表 号 </label>
|
|
87
87
|
<input type="text" style="width:60%" class="input_search" v-model="model.f_meternumber"
|
|
88
88
|
placeholder="表号">
|
|
89
89
|
<!-- condition="f_meternumber = '{}' " -->
|
|
90
90
|
</div>
|
|
91
91
|
<div :class="$parent.$parent.style">
|
|
92
|
-
<label class="font_normal_body"
|
|
92
|
+
<label class="font_normal_body"> 地 址 </label>
|
|
93
93
|
<input type="text" style="width:60%" class="input_search" v-model="model.f_address"
|
|
94
94
|
condition="f_address like '%{}%'" placeholder='客户地址'>
|
|
95
95
|
</div>
|
|
96
|
+
<div :class="$parent.$parent.style">
|
|
97
|
+
<label class="font_normal_body">付款方式</label>
|
|
98
|
+
<v-select id="f_payment"
|
|
99
|
+
v-model="model.f_payment"
|
|
100
|
+
placeholder='请选择'
|
|
101
|
+
condition="f_payment ='{}'"
|
|
102
|
+
:value.sync="model.f_payment"
|
|
103
|
+
:options='$parent.$parent.payments'
|
|
104
|
+
close-on-select clear-button>
|
|
105
|
+
</v-select>
|
|
106
|
+
</div>
|
|
96
107
|
</div>
|
|
97
108
|
</div>
|
|
98
109
|
</criteria>
|
|
@@ -433,6 +444,9 @@ export default {
|
|
|
433
444
|
gasproperties() {
|
|
434
445
|
return [{label: ' 全部 ', value: ''}, ...this.$appdata.getParam('用气性质')]
|
|
435
446
|
},
|
|
447
|
+
payments() {
|
|
448
|
+
return [{label: '全部', value: ''}, ...this.$appdata.getParam('付款方式')]
|
|
449
|
+
},
|
|
436
450
|
sellstate() {
|
|
437
451
|
return [{label: ' 全部 ', value: ''}, ...this.$appdata.getParam('收费状态')]
|
|
438
452
|
},
|
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 ShanXianWebmeterManage from './filiale/
|
|
9
|
+
import ShanXianSaleManage from './filiale/shanxian/sale'
|
|
10
|
+
import ShanXianWebmeterManage from './filiale/shanxian/webmeterManage'
|
|
11
11
|
import webmeterManage from './webmeterManage'
|
|
12
12
|
import reportManage from './reportManage'
|
|
13
13
|
import newmanage from './newmanage'
|
|
@@ -49,10 +49,10 @@ system(false)
|
|
|
49
49
|
saleManage()
|
|
50
50
|
ShanXianSaleManage()
|
|
51
51
|
webmeterManage()
|
|
52
|
+
ShanXianWebmeterManage()
|
|
52
53
|
ManageHome()
|
|
53
54
|
newmanage()
|
|
54
55
|
reportManage()
|
|
55
|
-
ShanXianWebmeterManage()
|
|
56
56
|
require('system-clients/src/styles/less/bootstrap.less')
|
|
57
57
|
require('./components/qinhua/Style/qinhuaStyle.less')
|
|
58
58
|
// require('./bootstrap/less/manageStyle/manageChile.less')
|