manage-client 4.0.42 → 4.0.44

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.
@@ -632,7 +632,14 @@ export default {
632
632
  'f_devices_type': '灶具信息',
633
633
  'f_network_valve': '自动阀控',
634
634
  'f_defendcard': '防盗卡号',
635
- 'f_factory_date': '生产年月'
635
+ 'f_factory_date': '生产年月',
636
+ 'f_isalarm': '有无报警器',
637
+ 'f_alarm_manufacturers': '报警器厂家',
638
+ 'f_alarms_number': '报警器个数',
639
+ 'f_isfan': '有无风机',
640
+ 'f_fan_model': '风机规格型号',
641
+ 'f_is_control_cut_valve': '有无控制切断阀',
642
+ 'f_control_cut_valve_model': '切断阀规格型号'
636
643
  },
637
644
 
638
645
  compreConfigGY: {
@@ -796,6 +803,18 @@ export default {
796
803
  'f_orgname': '公司',
797
804
  'f_meternumber': '表号'
798
805
  },
806
+ otherchargeExportConfig: {
807
+ 'f_user_name': '客户名称',
808
+ 'f_address': '客户地址',
809
+ 'f_brand_spec': '收费类型',
810
+ 'f_typename': '品名规格',
811
+ 'f_typenumber': '型号',
812
+ 'f_number': '数量',
813
+ 'f_money': '收款',
814
+ 'f_payment': '付款方式',
815
+ 'f_operate_date': '收费日期',
816
+ 'f_operator': '操作员'
817
+ },
799
818
 
800
819
  otherchargenopayConfig: {
801
820
  'f_userinfo_code': '客户编号',
@@ -5,4 +5,12 @@ export default function () {
5
5
  Vue.component('charge-query', (resolve) => { require(['./ChargeQuery'], resolve) })
6
6
  // 打印
7
7
  Vue.component('print-table', (resolve) => { require(['./PrintTableManage'], resolve) })
8
+ // 其他收费查询
9
+ Vue.component('other-charge-query', (resolve) => {
10
+ require(['./OtherChargeQuery'], resolve)
11
+ })
12
+ // 综合档案信息查询
13
+ Vue.component('record-info-query', (resolve) => {
14
+ require(['./RecordInfoQuery'], resolve)
15
+ })
8
16
  }
@@ -135,6 +135,7 @@
135
135
  show:false,
136
136
  other:[],
137
137
  footer:[],
138
+ condition: ' 1=1 ',
138
139
  model: new PagedList('api/af-revenue/sql/areaGeneralQuery', 20, {startDate: 'this.model.startDate', endDate: 'this.model.endDate'}),
139
140
  criteriaShow: false,
140
141
  //小区
@@ -185,6 +186,7 @@
185
186
  this.getorg([this.$login.f.orgid])
186
187
  }
187
188
  args.condition = `${args.condition} and a.f_filialeid = '${this.f_filialeids}'`
189
+ this.condition = args.condition
188
190
  this.model.search(args.condition, args.model)
189
191
  }
190
192
  },
@@ -216,7 +218,7 @@
216
218
  return {
217
219
  startDate: this.$refs.paged.$refs.cri.model.startDate,
218
220
  endDate: this.$refs.paged.$refs.cri.model.endDate,
219
- condition: `${this.$refs.paged.$refs.cri.condition}` + this.orgCondtionStr,
221
+ condition: this.condition,
220
222
  condValue: `${this.model.condValue}`
221
223
  }
222
224
  },
@@ -268,7 +268,20 @@
268
268
  <input type="text" style="width:60%" class="input_search" v-model="model.f_street"
269
269
  condition="f_street like '%{}%'" placeholder='街道'>
270
270
  </div>
271
-
271
+ <div class="col-sm-2 form-group">
272
+ <label class="font_normal_body">充值金额</label>
273
+ <input type="text" style="width:30%" class="input_search" title="大于等于" v-model="model.f_collection_small"
274
+ condition="f_collection >= '{}' " placeholder="大于等于">
275
+ <input type="text" style="width:30%" class="input_search" title="小于等于" v-model="model.f_collection_big"
276
+ condition="f_collection <= '{}' " placeholder="小于等于">
277
+ </div>
278
+ <div class="col-sm-2 form-group">
279
+ <label class="font_normal_body">充值气量</label>
280
+ <input type="text" style="width:30%" class="input_search" title="大于等于" v-model="model.f_pregas_small"
281
+ condition="f_pregas >= '{}' " placeholder="大于等于">
282
+ <input type="text" style="width:30%" class="input_search" title="小于等于" v-model="model.f_pregas_big"
283
+ condition="f_pregas <= '{}' " placeholder="小于等于">
284
+ </div>
272
285
  </div>
273
286
  </div>
274
287
  </criteria>
@@ -6,24 +6,24 @@
6
6
  <criteria partial='criteria' @condition-changed='$parent.selfSearch' v-ref:cri>
7
7
  <div novalidate class="form-horizontal select-overspread container-fluid auto" partial >
8
8
  <div class="row">
9
- <!-- <div class="col-sm-2 form-group">-->
10
- <!-- <label for="startDate" class="font_normal_body">开始日期</label>-->
11
- <!-- <datepicker id="startDate" placeholder="开始日期" style="width:60%"-->
12
- <!-- v-model="model.startDate"-->
13
- <!-- :value.sync="model.startDate"-->
14
- <!-- :format="'yyyy-MM-dd 00:00:00'"-->
15
- <!-- :show-reset-button="true">-->
16
- <!-- </datepicker>-->
17
- <!-- </div>-->
18
- <!-- <div class="col-sm-2 form-group">-->
19
- <!-- <label for="endDate" class="font_normal_body">结束日期</label>-->
20
- <!-- <datepicker id="endDate" placeholder="结束日期" style="width:60%"-->
21
- <!-- v-model="model.endDate"-->
22
- <!-- :value.sync="model.endDate"-->
23
- <!-- :format="'yyyy-MM-dd 23:59:59'"-->
24
- <!-- :show-reset-button="true">-->
25
- <!-- </datepicker>-->
26
- <!-- </div>-->
9
+ <div class="col-sm-2 form-group">
10
+ <label for="startDate" class="font_normal_body">开始日期</label>
11
+ <datepicker id="startDate" placeholder="开始日期" style="width:60%"
12
+ v-model="model.startDate"
13
+ :value.sync="model.startDate"
14
+ :format="'yyyy-MM-dd 00:00:00'"
15
+ :show-reset-button="true">
16
+ </datepicker>
17
+ </div>
18
+ <div class="col-sm-2 form-group">
19
+ <label for="endDate" class="font_normal_body">结束日期</label>
20
+ <datepicker id="endDate" placeholder="结束日期" style="width:60%"
21
+ v-model="model.endDate"
22
+ :value.sync="model.endDate"
23
+ :format="'yyyy-MM-dd 23:59:59'"
24
+ :show-reset-button="true">
25
+ </datepicker>
26
+ </div>
27
27
  <div class="col-sm-2 form-group">
28
28
  <label class="font_normal_body">&nbsp;&nbsp;&nbsp;公司&nbsp;&nbsp;&nbsp; </label>
29
29
  <right-tree @re-res="$parent.$parent.getRes"></right-tree>
@@ -55,10 +55,10 @@
55
55
  :footer="$parent.$parent.footer"
56
56
  sqlurl="api/af-revenue/logic/openapi/exportfile"
57
57
  sql-name="manageBrandHouseCount"
58
- template-name='用户查询报表'
58
+ template-name='用户报表'
59
59
  :choose-col="true"></export-excel>
60
60
  <print-data :sum-field="$parent.$parent.getfield" :model="$parent.model" :field="$parent.$parent.getfield"
61
- titletable="用户查询" :starthead="$parent.$parent.startDate" :defaultfield="$parent.$parent.defaultfield"
61
+ titletable="用户报表" :starthead="$parent.$parent.startDate" :defaultfield="$parent.$parent.defaultfield"
62
62
  :sumsmodel="$parent.$parent.sumsmodel"></print-data>
63
63
  </div>
64
64
  </div>
@@ -153,12 +153,8 @@ import defaultPrint from '../../components/sale/config/DefaultPrint'
153
153
  import exportConfig from './exportConfig'
154
154
  import PrintDataSelf from '../../components/sale/common/PrintDataSelf'
155
155
 
156
- let readySomething = async function (self) {
157
- self.$refs.paged.$refs.cri.model.startDate = self.$login.toStandardDateString() + ' 00:00:00'
158
- self.$refs.paged.$refs.cri.model.endDate = self.$login.toStandardDateString() + ' 23:59:59'
159
- }
160
156
  export default {
161
- title: '用户查询',
157
+ title: '用户报表',
162
158
  data() {
163
159
  return {
164
160
  depresid: [],
@@ -166,6 +162,7 @@ export default {
166
162
  f_orgid: this.$login.f.orgid,
167
163
  f_depid: this.$login.f.depids,
168
164
  f_operatorid: this.$login.f.id,
165
+ userstates:this.$appdata.getParam('用户状态') ? [{label: '全部', value: ''}, ...this.$appdata.getParam('用户状态')] : [],
169
166
  operatorid: [],
170
167
  depid: [],
171
168
  orgname: '',
@@ -175,7 +172,7 @@ export default {
175
172
  data: {},
176
173
  other:[],
177
174
  footer:[],
178
- model: new PagedList('api/af-revenue/sql/manageBrandHouseCount', 20, { f_orgid: 'this.model.f_orgid'},{
175
+ model: new PagedList('api/af-revenue/sql/manageBrandHouseCount', 20, { startDate: 'this.model.startDate', endDate: 'this.model.endDate', f_orgid: 'this.model.f_orgid'},{
179
176
  f_total_users: 0,
180
177
  f_civilian_users: 0,
181
178
  f_non_civilian_users: 0,
@@ -201,11 +198,6 @@ export default {
201
198
  }
202
199
  },
203
200
  ready() {
204
- readySomething(this).then(() => {
205
- this.$emit('ready')
206
- }).catch((error) => {
207
- this.$emit('error', error)
208
- })
209
201
  },
210
202
  methods: {
211
203
  getotherfooter(){