manage-client 4.1.55 → 4.1.57

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "manage-client",
3
- "version": "4.1.55",
3
+ "version": "4.1.57",
4
4
  "description": "经营管控模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "directories": {
@@ -234,9 +234,9 @@
234
234
  }
235
235
  },
236
236
  computed: {
237
- payment() {
237
+ payment () {
238
238
  return [...this.$appdata.getParam('付款方式查询')]
239
- },
239
+ }
240
240
  }
241
241
  }
242
242
  </script>
@@ -0,0 +1,186 @@
1
+ <template>
2
+ <div class="basic-main" style="height: 100%">
3
+ <criteria-paged :model="model" :pager='false' v-ref:paged>
4
+ <criteria partial='criteria' @condition-changed='$parent.selfSearch' v-ref:criteria>
5
+ <div novalidate class="form-horizontal select-overspread container-fluid auto" partial >
6
+ <div class="row">
7
+ <div class="col-sm-2 form-group" >
8
+ <label class="font_normal_body" for="startDate">开始日期:</label>
9
+ <datepicker id="startDate" placeholder="开始日期" style="width: 60%"
10
+ v-model="model.startDate"
11
+ :value.sync="model.startDate"
12
+ :disabled-days-of-Week="[]"
13
+ :format="'yyyy-MM-dd'"
14
+ :show-reset-button="reset">
15
+ </datepicker>
16
+ </div>
17
+ <div class="col-sm-2 form-group" >
18
+ <label class="font_normal_body" for="endDate">结束日期:</label>
19
+ <datepicker id="endDate" placeholder="结束日期" style="width: 60%"
20
+ v-model="model.endDate"
21
+ :value.sync="model.endDate"
22
+ :disabled-days-of-Week="[]"
23
+ :format="'yyyy-MM-dd'"
24
+ :show-reset-button="reset">
25
+ </datepicker>
26
+ </div>
27
+ <div class="col-sm-2 form-group">
28
+ <label class="font_normal_body" title="参数:票据类型">票据类型</label>
29
+ <v-select :value.sync="model.f_bill_type" multiple
30
+ v-model="model.f_bill_type"
31
+ :options='$parent.$parent.billType' placeholder='请选择'
32
+ condition="f_bill_type in {}"
33
+ close-on-select></v-select>
34
+ </div>
35
+ <res-select-group :show-component="$parent.$parent.resshow"
36
+ :selectin="true" :initres="$parent.$parent.initres"
37
+ :cascade =true @re-res="$parent.$parent.getRes"
38
+ v-ref:sel>
39
+ </res-select-group>
40
+ </div>
41
+ <div class="span" style = "float:right;">
42
+ <button class="button_search" @click="$parent.$parent.searchData()">查询</button>
43
+ <report-print id='gasprice' top='3cm' left='0' width='100%' height='100%' :preview="true"></report-print>
44
+ <report-excel id='gasprice'></report-excel>
45
+ </div>
46
+ </div>
47
+ </criteria>
48
+ <div partial='list' v-el:handcollect id='gasprice' style="overflow-y: scroll">
49
+ <table class='tableprint' style="margin: 0px auto">
50
+ <thead>
51
+ <tr>
52
+ <th :colspan='$parent.spans' style="font-weight: normal; text-align: left;">
53
+ <h3 style="text-align: center">操作员结账报表</h3>
54
+ </th>
55
+ </tr>
56
+ <tr>
57
+ <th :colspan='$parent.spans' style="font-weight: normal; text-align: center;">
58
+ 开始时间:{{model.model.startDate}}&nbsp;&nbsp;&nbsp;
59
+ 结束时间:{{ model.model.endDate }}&nbsp;&nbsp;<br/>
60
+ <!--收费员:{{// $parent.operatorname}}-->
61
+ </th>
62
+ </tr>
63
+ <tr >
64
+ <th v-if="false" :colspan='$parent.spans' style="font-weight: normal; text-align: center;">
65
+ <div>
66
+ <span style="font-weight: normal;text-align: center;margin:5px 15px" v-show="$parent.orgname">公司:{{$parent.orgname}}</span>
67
+ <span v-show="$parent.depname"> 部门:{{$parent.depname}}</span>
68
+ <span style="font-weight: normal;text-align: center;margin:5px 15px" v-show="$parent.operatorname">人员:{{$parent.operatorname}}</span>
69
+ </div>
70
+ </th>
71
+ </tr>
72
+ </thead>
73
+ <tr>
74
+ <td :colspan='$parent.spans' class="noborder">
75
+ {{{ model.data.substring(26,model.data.length-8) }}}
76
+ </td>
77
+ </tr>
78
+ <tfoot>
79
+ <!-- <tr style="text-align: left">-->
80
+ <!-- <th :colspan='Math.floor($parent.spans/3)'>财务审核:</th>-->
81
+ <!-- <th :colspan='Math.floor($parent.spans/3)'>收款审核:</th>-->
82
+ <!-- <th :colspan='Math.floor($parent.spans/3)'>收款员:</th>-->
83
+ <!-- </tr>-->
84
+ </tfoot>
85
+ </table>
86
+ {{{ $parent.reportStr}}}
87
+ </div>
88
+ </criteria-paged>
89
+ </div>
90
+ </template>
91
+
92
+ <script>
93
+ import { DataModel } from 'vue-client'
94
+ import co from 'co'
95
+ export default {
96
+ title: '操作员结账报表',
97
+ props: ['data'],
98
+ data () {
99
+ return {
100
+ printTime: this.$login.toStandardTimeString(),
101
+ depresid: [],
102
+ userresid: [],
103
+ f_orgid: this.$login.f.orgid,
104
+ f_depid: this.$login.f.depids,
105
+ // f_operatorid: this.$login.f.id,
106
+ operatorid: [],
107
+ depid: [],
108
+ orgname: '',
109
+ depname: '',
110
+ criteriaShow: false,
111
+ operatorname: '',
112
+ orgCondtionStr: '1=1',
113
+ f_user_type: '',
114
+ f_state: ['有效'],
115
+ model: new DataModel('api/af-revenue/report/hy_get_summary', {startDate: 'this.model.startDate', endDate: 'this.model.endDate',
116
+ f_orgid: 'this.model.f_orgid'}),
117
+ reportStr: null,
118
+ resshow: ['company', 'department', 'operator'],
119
+ spans: 0,
120
+ initres: {
121
+ org: [this.$login.f.orgid],
122
+ dep: [],
123
+ user: []
124
+ }
125
+ }
126
+ },
127
+ ready () {
128
+ this.$refs.paged.$refs.criteria.model.startDate = this.$login.toStandardDateString()
129
+ this.$refs.paged.$refs.criteria.model.endDate = this.$login.toStandardDateString()
130
+ },
131
+ methods: {
132
+ searchData () {
133
+ this.$refs.paged.$refs.criteria.search()
134
+ },
135
+ selfSearch (args) {
136
+ this.printTime = this.$login.toStandardTimeString()
137
+ let orgcondition = '1=1'
138
+ let orgstr = this.orgCondtionStr
139
+ orgcondition = orgcondition + orgstr
140
+ this.$refs.paged.$refs.criteria.model.f_orgid = orgcondition
141
+ this.$refs.paged.search(args)
142
+ },
143
+
144
+ hidden () {
145
+ this.criteriaShow = !this.criteriaShow
146
+ },
147
+ getRes (condition, obj) {
148
+ this.orgCondtionStr = condition
149
+ this.orgname = obj.orgnames[0]
150
+ this.depname = obj.depnames[0]
151
+ this.operatorname = obj.operatornames[0]
152
+ },
153
+ getdep (obj, val) {
154
+ this.depname = val[0]
155
+ this.userresid = obj
156
+ this.f_depid = obj
157
+ },
158
+ getuser ( obj, val) {
159
+ this.operatorname = val[0]
160
+ this.f_operatorid = obj
161
+ }
162
+ },
163
+ watch: {
164
+ 'model.data' (val) {
165
+ let len=0
166
+ let a=val.split('</tr>')
167
+ for(let i=0;i<a.length;i++){
168
+ if(a[i].split('</td>').length-1>len){
169
+ len=a[i].split('</td>').length-1
170
+ }
171
+ }
172
+ this.spans = len
173
+ }
174
+ },
175
+ computed: {
176
+ billType () {
177
+ return [...this.$appdata.getParam('票据类型')]
178
+ }
179
+ }
180
+ }
181
+ </script>
182
+ <style scoped>
183
+ .noborder{
184
+ border: none;
185
+ }
186
+ </style>
@@ -0,0 +1,186 @@
1
+ <template>
2
+ <div class="basic-main" style="height: 100%">
3
+ <criteria-paged :model="model" :pager='false' v-ref:paged>
4
+ <criteria partial='criteria' @condition-changed='$parent.selfSearch' v-ref:criteria>
5
+ <div novalidate class="form-horizontal select-overspread container-fluid auto" partial >
6
+ <div class="row">
7
+ <div class="col-sm-2 form-group" >
8
+ <label class="font_normal_body" for="startDate">开始日期:</label>
9
+ <datepicker id="startDate" placeholder="开始日期" style="width: 60%"
10
+ v-model="model.startDate"
11
+ :value.sync="model.startDate"
12
+ :disabled-days-of-Week="[]"
13
+ :format="'yyyy-MM-dd'"
14
+ :show-reset-button="reset">
15
+ </datepicker>
16
+ </div>
17
+ <div class="col-sm-2 form-group" >
18
+ <label class="font_normal_body" for="endDate">结束日期:</label>
19
+ <datepicker id="endDate" placeholder="结束日期" style="width: 60%"
20
+ v-model="model.endDate"
21
+ :value.sync="model.endDate"
22
+ :disabled-days-of-Week="[]"
23
+ :format="'yyyy-MM-dd'"
24
+ :show-reset-button="reset">
25
+ </datepicker>
26
+ </div>
27
+ <div class="col-sm-2 form-group">
28
+ <label class="font_normal_body" title="参数:核算区域">核算区域</label>
29
+ <v-select :value.sync="model.f_accounting_area" multiple
30
+ v-model="model.f_accounting_area"
31
+ :options='$parent.$parent.Accounting' placeholder='请选择'
32
+ condition="f_accounting_area in {}"
33
+ close-on-select></v-select>
34
+ </div>
35
+ <res-select-group :show-component="$parent.$parent.resshow"
36
+ :selectin="true" :initres="$parent.$parent.initres"
37
+ :cascade =true @re-res="$parent.$parent.getRes"
38
+ v-ref:sel>
39
+ </res-select-group>
40
+ </div>
41
+ <div class="span" style = "float:right;">
42
+ <button class="button_search" @click="$parent.$parent.searchData()">查询</button>
43
+ <report-print id='gasprice' top='3cm' left='0' width='100%' height='100%' :preview="true"></report-print>
44
+ <report-excel id='gasprice'></report-excel>
45
+ </div>
46
+ </div>
47
+ </criteria>
48
+ <div partial='list' v-el:handcollect id='gasprice' style="overflow-y: scroll">
49
+ <table class='tableprint' style="margin: 0px auto">
50
+ <thead>
51
+ <tr>
52
+ <th :colspan='$parent.spans' style="font-weight: normal; text-align: left;">
53
+ <h3 style="text-align: center">抄表情况统计表</h3>
54
+ </th>
55
+ </tr>
56
+ <tr>
57
+ <th :colspan='$parent.spans' style="font-weight: normal; text-align: center;">
58
+ 开始时间:{{model.model.startDate}}&nbsp;&nbsp;&nbsp;
59
+ 结束时间:{{ model.model.endDate }}&nbsp;&nbsp;<br/>
60
+ <!--收费员:{{// $parent.operatorname}}-->
61
+ </th>
62
+ </tr>
63
+ <tr >
64
+ <th v-if="false" :colspan='$parent.spans' style="font-weight: normal; text-align: center;">
65
+ <div>
66
+ <span style="font-weight: normal;text-align: center;margin:5px 15px" v-show="$parent.orgname">公司:{{$parent.orgname}}</span>
67
+ <span v-show="$parent.depname"> 部门:{{$parent.depname}}</span>
68
+ <span style="font-weight: normal;text-align: center;margin:5px 15px" v-show="$parent.operatorname">人员:{{$parent.operatorname}}</span>
69
+ </div>
70
+ </th>
71
+ </tr>
72
+ </thead>
73
+ <tr>
74
+ <td :colspan='$parent.spans' class="noborder">
75
+ {{{ model.data.substring(26,model.data.length-8) }}}
76
+ </td>
77
+ </tr>
78
+ <tfoot>
79
+ <!-- <tr style="text-align: left">-->
80
+ <!-- <th :colspan='Math.floor($parent.spans/3)'>财务审核:</th>-->
81
+ <!-- <th :colspan='Math.floor($parent.spans/3)'>收款审核:</th>-->
82
+ <!-- <th :colspan='Math.floor($parent.spans/3)'>收款员:</th>-->
83
+ <!-- </tr>-->
84
+ </tfoot>
85
+ </table>
86
+ {{{ $parent.reportStr}}}
87
+ </div>
88
+ </criteria-paged>
89
+ </div>
90
+ </template>
91
+
92
+ <script>
93
+ import { DataModel } from 'vue-client'
94
+ import co from 'co'
95
+ export default {
96
+ title: '抄表情况统计表',
97
+ props: ['data'],
98
+ data () {
99
+ return {
100
+ printTime: this.$login.toStandardTimeString(),
101
+ depresid: [],
102
+ userresid: [],
103
+ f_orgid: this.$login.f.orgid,
104
+ f_depid: this.$login.f.depids,
105
+ // f_operatorid: this.$login.f.id,
106
+ operatorid: [],
107
+ depid: [],
108
+ orgname: '',
109
+ depname: '',
110
+ criteriaShow: false,
111
+ operatorname: '',
112
+ orgCondtionStr: '1=1',
113
+ f_user_type: '',
114
+ f_state: ['有效'],
115
+ model: new DataModel('api/af-revenue/report/hy_meter_bill', {startDate: 'this.model.startDate', endDate: 'this.model.endDate',
116
+ f_orgid: 'this.model.f_orgid'}),
117
+ reportStr: null,
118
+ resshow: ['company', 'department', 'operator'],
119
+ spans: 0,
120
+ initres: {
121
+ org: [this.$login.f.orgid],
122
+ dep: [],
123
+ user: []
124
+ }
125
+ }
126
+ },
127
+ ready () {
128
+ this.$refs.paged.$refs.criteria.model.startDate = this.$login.toStandardDateString()
129
+ this.$refs.paged.$refs.criteria.model.endDate = this.$login.toStandardDateString()
130
+ },
131
+ methods: {
132
+ searchData () {
133
+ this.$refs.paged.$refs.criteria.search()
134
+ },
135
+ selfSearch (args) {
136
+ this.printTime = this.$login.toStandardTimeString()
137
+ let orgcondition = '1=1'
138
+ let orgstr = this.orgCondtionStr
139
+ orgcondition = orgcondition + orgstr
140
+ this.$refs.paged.$refs.criteria.model.f_orgid = orgcondition
141
+ this.$refs.paged.search(args)
142
+ },
143
+
144
+ hidden () {
145
+ this.criteriaShow = !this.criteriaShow
146
+ },
147
+ getRes (condition, obj) {
148
+ this.orgCondtionStr = condition
149
+ this.orgname = obj.orgnames[0]
150
+ this.depname = obj.depnames[0]
151
+ this.operatorname = obj.operatornames[0]
152
+ },
153
+ getdep (obj, val) {
154
+ this.depname = val[0]
155
+ this.userresid = obj
156
+ this.f_depid = obj
157
+ },
158
+ getuser ( obj, val) {
159
+ this.operatorname = val[0]
160
+ this.f_operatorid = obj
161
+ }
162
+ },
163
+ watch: {
164
+ 'model.data' (val) {
165
+ let len=0
166
+ let a=val.split('</tr>')
167
+ for(let i=0;i<a.length;i++){
168
+ if(a[i].split('</td>').length-1>len){
169
+ len=a[i].split('</td>').length-1
170
+ }
171
+ }
172
+ this.spans = len
173
+ }
174
+ },
175
+ computed: {
176
+ Accounting () {
177
+ return [...this.$appdata.getParam('核算区域')]
178
+ }
179
+ }
180
+ }
181
+ </script>
182
+ <style scoped>
183
+ .noborder{
184
+ border: none;
185
+ }
186
+ </style>
@@ -0,0 +1,175 @@
1
+ <template>
2
+ <div class="basic-main" style="height: 100%">
3
+ <criteria-paged :model="model" :pager='false' v-ref:paged>
4
+ <criteria partial='criteria' @condition-changed='$parent.selfSearch' v-ref:criteria>
5
+ <div novalidate class="form-horizontal select-overspread container-fluid auto" partial >
6
+ <div class="row">
7
+ <div class="col-sm-2 form-group" >
8
+ <label class="font_normal_body" for="startDate">开始日期:</label>
9
+ <datepicker id="startDate" placeholder="开始日期" style="width: 60%"
10
+ v-model="model.startDate"
11
+ :value.sync="model.startDate"
12
+ :disabled-days-of-Week="[]"
13
+ :format="'yyyy-MM-dd'"
14
+ :show-reset-button="reset">
15
+ </datepicker>
16
+ </div>
17
+ <div class="col-sm-2 form-group" >
18
+ <label class="font_normal_body" for="endDate">结束日期:</label>
19
+ <datepicker id="endDate" placeholder="结束日期" style="width: 60%"
20
+ v-model="model.endDate"
21
+ :value.sync="model.endDate"
22
+ :disabled-days-of-Week="[]"
23
+ :format="'yyyy-MM-dd'"
24
+ :show-reset-button="reset">
25
+ </datepicker>
26
+ </div>
27
+ <res-select-group :show-component="$parent.$parent.resshow"
28
+ :selectin="true" :initres="$parent.$parent.initres"
29
+ :cascade =true @re-res="$parent.$parent.getRes"
30
+ v-ref:sel>
31
+ </res-select-group>
32
+ </div>
33
+ <div class="span" style = "float:right;">
34
+ <button class="button_search" @click="$parent.$parent.searchData()">查询</button>
35
+ <report-print id='gasprice' top='3cm' left='0' width='100%' height='100%' :preview="true"></report-print>
36
+ <report-excel id='gasprice'></report-excel>
37
+ </div>
38
+ </div>
39
+ </criteria>
40
+ <div partial='list' v-el:handcollect id='gasprice' style="overflow-y: scroll">
41
+ <table class='tableprint' style="margin: 0px auto">
42
+ <thead>
43
+ <tr>
44
+ <th :colspan='$parent.spans' style="font-weight: normal; text-align: left;">
45
+ <h3 style="text-align: center">预收款余额统计表</h3>
46
+ </th>
47
+ </tr>
48
+ <tr>
49
+ <th :colspan='$parent.spans' style="font-weight: normal; text-align: center;">
50
+ 开始时间:{{model.model.startDate}}&nbsp;&nbsp;&nbsp;
51
+ 结束时间:{{ model.model.endDate }}&nbsp;&nbsp;<br/>
52
+ <!--收费员:{{// $parent.operatorname}}-->
53
+ </th>
54
+ </tr>
55
+ <tr >
56
+ <th v-if="false" :colspan='$parent.spans' style="font-weight: normal; text-align: center;">
57
+ <div>
58
+ <span style="font-weight: normal;text-align: center;margin:5px 15px" v-show="$parent.orgname">公司:{{$parent.orgname}}</span>
59
+ <span v-show="$parent.depname"> 部门:{{$parent.depname}}</span>
60
+ <span style="font-weight: normal;text-align: center;margin:5px 15px" v-show="$parent.operatorname">人员:{{$parent.operatorname}}</span>
61
+ </div>
62
+ </th>
63
+ </tr>
64
+ </thead>
65
+ <tr>
66
+ <td :colspan='$parent.spans' class="noborder">
67
+ {{{ model.data.substring(26,model.data.length-8) }}}
68
+ </td>
69
+ </tr>
70
+ <tfoot>
71
+ <!-- <tr style="text-align: left">-->
72
+ <!-- <th :colspan='Math.floor($parent.spans/3)'>财务审核:</th>-->
73
+ <!-- <th :colspan='Math.floor($parent.spans/3)'>收款审核:</th>-->
74
+ <!-- <th :colspan='Math.floor($parent.spans/3)'>收款员:</th>-->
75
+ <!-- </tr>-->
76
+ </tfoot>
77
+ </table>
78
+ {{{ $parent.reportStr}}}
79
+ </div>
80
+ </criteria-paged>
81
+ </div>
82
+ </template>
83
+
84
+ <script>
85
+ import { DataModel } from 'vue-client'
86
+ import co from 'co'
87
+ export default {
88
+ title: '预收款余额统计表',
89
+ props: ['data'],
90
+ data () {
91
+ return {
92
+ printTime: this.$login.toStandardTimeString(),
93
+ depresid: [],
94
+ userresid: [],
95
+ f_orgid: this.$login.f.orgid,
96
+ f_depid: this.$login.f.depids,
97
+ // f_operatorid: this.$login.f.id,
98
+ operatorid: [],
99
+ depid: [],
100
+ orgname: '',
101
+ depname: '',
102
+ criteriaShow: false,
103
+ operatorname: '',
104
+ orgCondtionStr: '1=1',
105
+ f_user_type: '',
106
+ f_state: ['有效'],
107
+ model: new DataModel('api/af-revenue/report/hy_yushou_bill', {startDate: 'this.model.startDate', endDate: 'this.model.endDate',
108
+ f_orgid: 'this.model.f_orgid'}),
109
+ reportStr: null,
110
+ resshow: ['company', 'department', 'operator'],
111
+ spans: 0,
112
+ initres: {
113
+ org: [this.$login.f.orgid],
114
+ dep: [],
115
+ user: []
116
+ }
117
+ }
118
+ },
119
+ ready () {
120
+ this.$refs.paged.$refs.criteria.model.startDate = this.$login.toStandardDateString()
121
+ this.$refs.paged.$refs.criteria.model.endDate = this.$login.toStandardDateString()
122
+ },
123
+ methods: {
124
+ searchData () {
125
+ this.$refs.paged.$refs.criteria.search()
126
+ },
127
+ selfSearch (args) {
128
+ this.printTime = this.$login.toStandardTimeString()
129
+ let orgcondition = '1=1'
130
+ let orgstr = this.orgCondtionStr
131
+ orgcondition = orgcondition + orgstr
132
+ this.$refs.paged.$refs.criteria.model.f_orgid = orgcondition
133
+ this.$refs.paged.search(args)
134
+ },
135
+
136
+ hidden () {
137
+ this.criteriaShow = !this.criteriaShow
138
+ },
139
+ getRes (condition, obj) {
140
+ this.orgCondtionStr = condition
141
+ this.orgname = obj.orgnames[0]
142
+ this.depname = obj.depnames[0]
143
+ this.operatorname = obj.operatornames[0]
144
+ },
145
+ getdep (obj, val) {
146
+ this.depname = val[0]
147
+ this.userresid = obj
148
+ this.f_depid = obj
149
+ },
150
+ getuser ( obj, val) {
151
+ this.operatorname = val[0]
152
+ this.f_operatorid = obj
153
+ }
154
+ },
155
+ watch: {
156
+ 'model.data' (val) {
157
+ let len=0
158
+ let a=val.split('</tr>')
159
+ for(let i=0;i<a.length;i++){
160
+ if(a[i].split('</td>').length-1>len){
161
+ len=a[i].split('</td>').length-1
162
+ }
163
+ }
164
+ this.spans = len
165
+ }
166
+ },
167
+ computed: {
168
+ }
169
+ }
170
+ </script>
171
+ <style scoped>
172
+ .noborder{
173
+ border: none;
174
+ }
175
+ </style>
@@ -0,0 +1,175 @@
1
+ <template>
2
+ <div class="basic-main" style="height: 100%">
3
+ <criteria-paged :model="model" :pager='false' v-ref:paged>
4
+ <criteria partial='criteria' @condition-changed='$parent.selfSearch' v-ref:criteria>
5
+ <div novalidate class="form-horizontal select-overspread container-fluid auto" partial >
6
+ <div class="row">
7
+ <div class="col-sm-2 form-group" >
8
+ <label class="font_normal_body" for="startDate">开始日期:</label>
9
+ <datepicker id="startDate" placeholder="开始日期" style="width: 60%"
10
+ v-model="model.startDate"
11
+ :value.sync="model.startDate"
12
+ :disabled-days-of-Week="[]"
13
+ :format="'yyyy-MM-dd'"
14
+ :show-reset-button="reset">
15
+ </datepicker>
16
+ </div>
17
+ <div class="col-sm-2 form-group" >
18
+ <label class="font_normal_body" for="endDate">结束日期:</label>
19
+ <datepicker id="endDate" placeholder="结束日期" style="width: 60%"
20
+ v-model="model.endDate"
21
+ :value.sync="model.endDate"
22
+ :disabled-days-of-Week="[]"
23
+ :format="'yyyy-MM-dd'"
24
+ :show-reset-button="reset">
25
+ </datepicker>
26
+ </div>
27
+ <res-select-group :show-component="$parent.$parent.resshow"
28
+ :selectin="true" :initres="$parent.$parent.initres"
29
+ :cascade =true @re-res="$parent.$parent.getRes"
30
+ v-ref:sel>
31
+ </res-select-group>
32
+ </div>
33
+ <div class="span" style = "float:right;">
34
+ <button class="button_search" @click="$parent.$parent.searchData()">查询</button>
35
+ <report-print id='gasprice' top='3cm' left='0' width='100%' height='100%' :preview="true"></report-print>
36
+ <report-excel id='gasprice'></report-excel>
37
+ </div>
38
+ </div>
39
+ </criteria>
40
+ <div partial='list' v-el:handcollect id='gasprice' style="overflow-y: scroll">
41
+ <table class='tableprint' style="margin: 0px auto">
42
+ <thead>
43
+ <tr>
44
+ <th :colspan='$parent.spans' style="font-weight: normal; text-align: left;">
45
+ <h3 style="text-align: center">小区换表汇总报表</h3>
46
+ </th>
47
+ </tr>
48
+ <tr>
49
+ <th :colspan='$parent.spans' style="font-weight: normal; text-align: center;">
50
+ 开始时间:{{model.model.startDate}}&nbsp;&nbsp;&nbsp;
51
+ 结束时间:{{ model.model.endDate }}&nbsp;&nbsp;<br/>
52
+ <!--收费员:{{// $parent.operatorname}}-->
53
+ </th>
54
+ </tr>
55
+ <tr >
56
+ <th v-if="false" :colspan='$parent.spans' style="font-weight: normal; text-align: center;">
57
+ <div>
58
+ <span style="font-weight: normal;text-align: center;margin:5px 15px" v-show="$parent.orgname">公司:{{$parent.orgname}}</span>
59
+ <span v-show="$parent.depname"> 部门:{{$parent.depname}}</span>
60
+ <span style="font-weight: normal;text-align: center;margin:5px 15px" v-show="$parent.operatorname">人员:{{$parent.operatorname}}</span>
61
+ </div>
62
+ </th>
63
+ </tr>
64
+ </thead>
65
+ <tr>
66
+ <td :colspan='$parent.spans' class="noborder">
67
+ {{{ model.data.substring(26,model.data.length-8) }}}
68
+ </td>
69
+ </tr>
70
+ <tfoot>
71
+ <!-- <tr style="text-align: left">-->
72
+ <!-- <th :colspan='Math.floor($parent.spans/3)'>财务审核:</th>-->
73
+ <!-- <th :colspan='Math.floor($parent.spans/3)'>收款审核:</th>-->
74
+ <!-- <th :colspan='Math.floor($parent.spans/3)'>收款员:</th>-->
75
+ <!-- </tr>-->
76
+ </tfoot>
77
+ </table>
78
+ {{{ $parent.reportStr}}}
79
+ </div>
80
+ </criteria-paged>
81
+ </div>
82
+ </template>
83
+
84
+ <script>
85
+ import { DataModel } from 'vue-client'
86
+ import co from 'co'
87
+ export default {
88
+ title: '小区换表汇总报表',
89
+ props: ['data'],
90
+ data () {
91
+ return {
92
+ printTime: this.$login.toStandardTimeString(),
93
+ depresid: [],
94
+ userresid: [],
95
+ f_orgid: this.$login.f.orgid,
96
+ f_depid: this.$login.f.depids,
97
+ // f_operatorid: this.$login.f.id,
98
+ operatorid: [],
99
+ depid: [],
100
+ orgname: '',
101
+ depname: '',
102
+ criteriaShow: false,
103
+ operatorname: '',
104
+ orgCondtionStr: '1=1',
105
+ f_user_type: '',
106
+ f_state: ['有效'],
107
+ model: new DataModel('api/af-revenue/report/xk_area_meter', {startDate: 'this.model.startDate', endDate: 'this.model.endDate',
108
+ f_orgid: 'this.model.f_orgid'}),
109
+ reportStr: null,
110
+ resshow: ['company', 'department', 'operator'],
111
+ spans: 0,
112
+ initres: {
113
+ org: [this.$login.f.orgid],
114
+ dep: [],
115
+ user: []
116
+ }
117
+ }
118
+ },
119
+ ready () {
120
+ this.$refs.paged.$refs.criteria.model.startDate = this.$login.toStandardDateString()
121
+ this.$refs.paged.$refs.criteria.model.endDate = this.$login.toStandardDateString()
122
+ },
123
+ methods: {
124
+ searchData () {
125
+ this.$refs.paged.$refs.criteria.search()
126
+ },
127
+ selfSearch (args) {
128
+ this.printTime = this.$login.toStandardTimeString()
129
+ let orgcondition = '1=1'
130
+ let orgstr = this.orgCondtionStr
131
+ orgcondition = orgcondition + orgstr
132
+ this.$refs.paged.$refs.criteria.model.f_orgid = orgcondition
133
+ this.$refs.paged.search(args)
134
+ },
135
+
136
+ hidden () {
137
+ this.criteriaShow = !this.criteriaShow
138
+ },
139
+ getRes (condition, obj) {
140
+ this.orgCondtionStr = condition
141
+ this.orgname = obj.orgnames[0]
142
+ this.depname = obj.depnames[0]
143
+ this.operatorname = obj.operatornames[0]
144
+ },
145
+ getdep (obj, val) {
146
+ this.depname = val[0]
147
+ this.userresid = obj
148
+ this.f_depid = obj
149
+ },
150
+ getuser ( obj, val) {
151
+ this.operatorname = val[0]
152
+ this.f_operatorid = obj
153
+ }
154
+ },
155
+ watch: {
156
+ 'model.data' (val) {
157
+ let len=0
158
+ let a=val.split('</tr>')
159
+ for(let i=0;i<a.length;i++){
160
+ if(a[i].split('</td>').length-1>len){
161
+ len=a[i].split('</td>').length-1
162
+ }
163
+ }
164
+ this.spans = len
165
+ }
166
+ },
167
+ computed: {
168
+ }
169
+ }
170
+ </script>
171
+ <style scoped>
172
+ .noborder{
173
+ border: none;
174
+ }
175
+ </style>
@@ -931,4 +931,20 @@ export default function () {
931
931
  Vue.component('depment-payment-report', (resolve) => {
932
932
  require(['./components/SellReport/ruihua/DepmentPaymentReport'], resolve)
933
933
  })
934
+ // 新康小区换表汇总报表
935
+ Vue.component('area-meter-report', (resolve) => {
936
+ require(['./components/SellReport/xinkang/AreaMeterReport'], resolve)
937
+ })
938
+ // 洪雅操作员日结账报表
939
+ Vue.component('hy-get-summary', (resolve) => {
940
+ require(['./components/SellReport/hongya/HyGetSummary'], resolve)
941
+ })
942
+ // 洪雅预收款余额统计表
943
+ Vue.component('hy-yushou-bill', (resolve) => {
944
+ require(['./components/SellReport/hongya/HyYushouBill'], resolve)
945
+ })
946
+ // 洪雅抄表情况统计表
947
+ Vue.component('hy-meter-bill', (resolve) => {
948
+ require(['./components/SellReport/hongya/HyMeterBill'], resolve)
949
+ })
934
950
  }