manage-client 4.0.28 → 4.0.29

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.0.28",
3
+ "version": "4.0.29",
4
4
  "description": "经营管控模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "directories": {
@@ -9,7 +9,7 @@
9
9
  <label class="font_normal_body">客户编号</label>
10
10
  <input @keyup.enter="search" style="width:60%" type="text" class="input_search"
11
11
  v-model="model.f_userinfo_code" placeholder='客户编号'
12
- condition="f_userinfo_code like '%{}%'" v-el:xq v-next-el='userinfocode' v-el:username
12
+ condition="f_userinfo_code = '{}'" v-el:xq v-next-el='userinfocode' v-el:username
13
13
  >
14
14
  </div>
15
15
  <div class="col-sm-2 form-group">
@@ -30,7 +30,7 @@
30
30
  <label class="font_normal_body">&nbsp;&nbsp;&nbsp;表号&nbsp;&nbsp;&nbsp;</label>
31
31
  <input @keyup.enter="search" style="width:60%" type="text" class="input_search"
32
32
  v-model="model.f_meternumber" placeholder='表号'
33
- condition="f_meternumber like '%{}%'" v-next-el='meternumber' v-el:meternumber
33
+ condition="f_meternumber = '{}'" v-next-el='meternumber' v-el:meternumber
34
34
  >
35
35
  </div>
36
36
  <div style="float:right">
@@ -493,6 +493,14 @@
493
493
  condition="f_network_valve='{}'">
494
494
  </v-select>
495
495
  </div>
496
+ <div class="col-sm-2 form-group">
497
+ <label class="font_normal_body">调&ensp;压&ensp;箱</label>
498
+ <v-select :options='$parent.$parent.adjustables'
499
+ :value.sync="model.f_adjustable_id"
500
+ close-on-select
501
+ condition="f_adjustable_id = '{}'" placeholder='调压箱'
502
+ v-model='model.f_adjustable_id'></v-select>
503
+ </div>
496
504
  </div>
497
505
  </div>
498
506
  </criteria>
@@ -710,6 +718,12 @@
710
718
  <th>
711
719
  <nobr>灶具信息</nobr>
712
720
  </th>
721
+ <th>
722
+ <nobr>调压箱编号</nobr>
723
+ </th>
724
+ <th>
725
+ <nobr>调压箱名称</nobr>
726
+ </th>
713
727
  <th>
714
728
  <nobr>备注</nobr>
715
729
  </th>
@@ -842,6 +856,8 @@
842
856
  <td style="text-align: center;"><nobr>{{row.f_alarm_code}}</nobr></td>
843
857
  <td style="text-align: center;"><nobr>{{row.f_maxdate}}</nobr></td>
844
858
  <td style="text-align: center;"><nobr>{{row.f_devices_type}}</nobr></td>
859
+ <td style="text-align: center;"><nobr>{{row.f_adjustable_id}}</nobr></td>
860
+ <td style="text-align: center;"><nobr>{{row.f_adjustable_name}}</nobr></td>
845
861
  <td style="text-align: center;"><nobr>{{row.f_comments}}</nobr></td>
846
862
  </template>
847
863
  <template partial='foot'>
@@ -930,6 +946,9 @@
930
946
  // self.$refs.paged.$refs.cri.model.endDate = self.$login.toStandardDateString()
931
947
  // await self.$refs.paged.$refs.cri.search()
932
948
  }
949
+
950
+
951
+
933
952
  export default {
934
953
  title: '综合档案信息查询',
935
954
  data() {
@@ -954,6 +973,7 @@
954
973
  thead: '',
955
974
  tfoot: '',
956
975
  defaultfield: [],
976
+ adjustables: [],
957
977
  //排序
958
978
  orderitem: 'f_residential_area desc,f_building desc,f_unit desc,f_floor desc,f_room desc,f_userfiles_id desc',
959
979
  orderFields: {
@@ -995,6 +1015,7 @@
995
1015
  })
996
1016
  },
997
1017
  methods: {
1018
+
998
1019
  recombine (param) {
999
1020
  // 条件拼接数据,多用于in ()。将数组转成字符串时加上单引号处理
1000
1021
  let str = ''
@@ -1096,6 +1117,16 @@
1096
1117
  this.meterbrands = [{label: '全部', value: ''}, ...brandArr]
1097
1118
  //初始化气表价格
1098
1119
  this.prices = this.$MagGetSaleParam.getPrices();
1120
+ console.log('初始化调压箱', this.$MagGetSaleParam)
1121
+ let arr = []
1122
+ let filter = this.$login.f.orgid
1123
+ this.$MagGetSaleParam.getAdjustable(filter).forEach((item) => {
1124
+ let temp = {}
1125
+ temp.label = `[${item.value.f_adjustable_id}]-${item.label}`
1126
+ temp.value = `${item.value.id}`
1127
+ arr.push(temp)
1128
+ })
1129
+ this.adjustables = [{label: '全部', value: ''}, ...arr]
1099
1130
  },
1100
1131
  async getaddress(){
1101
1132
  console.log('开始获取小区')
@@ -673,7 +673,9 @@ export default {
673
673
  'f_devices_type': '灶具信息',
674
674
  'f_network_valve': '自动阀控',
675
675
  'f_defendcard': '防盗卡号',
676
- 'f_factory_date': '生产年月'
676
+ 'f_factory_date': '生产年月',
677
+ 'f_adjustable_id': '调压箱编号',
678
+ 'f_adjustable_name': '调压箱名称'
677
679
  },
678
680
 
679
681
  compreConfigGY: {
@@ -38,7 +38,7 @@
38
38
  <button class="button_clear button_spacing" @click="clear">清空</button>
39
39
  <export-excel :data="$parent.$parent.getCondition" class="button_export button_spacing"
40
40
  :field="$parent.$parent.getfield" :sumname="$parent.$parent.sumName"
41
- sqlurl="api/af-revenue/logic/openapi/exportfile" sql-name="webmeter_getNoMetereadData" template-name='未上报查询'
41
+ sqlurl="api/af-revenue/logic/openapi/exportfile" sql-name="webmeter_getNoMetereadData" template-name='未用气查询'
42
42
  :choose-col="true"></export-excel>
43
43
 
44
44
  <div style="float: right" class="button_spacing" :class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}" @click="$parent.$parent.hidden()"></div>
@@ -240,7 +240,7 @@ import {HttpResetClass, PagedList} from 'vue-client'
240
240
  self.$refs.paged.$refs.cri.model.endDate = Util.toStandardDateString() + ' 23:59:59'
241
241
  }
242
242
  export default {
243
- title: '未上报查询',
243
+ title: '未用气查询',
244
244
  props: ['data'],
245
245
  data() {
246
246
  return {
@@ -0,0 +1,609 @@
1
+ <template >
2
+ <div class="flex-row">
3
+ <div @keyup.enter="search1" class="basic-main">
4
+ <criteria-paged :model="model" v-ref:paged>
5
+ <criteria @condition-changed='$parent.search' partial='criteria' v-ref:criteria>
6
+ <div class="form-horizontal select-overspread container-fluid auto" novalidate partial>
7
+ <div class="row">
8
+ <div class="col-sm-2">
9
+ <res-select-group :show-component="['company']" :initres="$parent.$parent.org" @re-res="$parent.$parent.getorg" style="width:60%"></res-select-group>
10
+ </div>
11
+ <div class="col-sm-2 form-group ">
12
+ <label class="font_normal_body">客户编号</label>
13
+ <input
14
+ class="input_search" condition="f_userinfo_code = '{}'"
15
+ placeholder='客户编号'
16
+ style="width:60%"
17
+ type="text"
18
+ v-model="model.f_userinfo_code">
19
+ </div>
20
+
21
+ <div class="col-sm-2 form-group">
22
+ <label class="font_normal_body">客户名称</label>
23
+ <input
24
+ class="input_search" condition="f_user_name like '%{}%'"
25
+ placeholder='客户名称'
26
+ style="width:60%"
27
+ type="text"
28
+ v-model="model.f_user_name"
29
+ >
30
+ </div>
31
+ <div class="col-sm-2 form-group">
32
+ <label class="font_normal_body">客户地址</label>
33
+ <input class="input_search"
34
+ condition="f_address like '%{}%'"
35
+ placeholder='客户地址'
36
+ style="width:60%"
37
+ type="text"
38
+ v-model="model.f_address"
39
+ >
40
+ </div>
41
+
42
+ <div style="float:right">
43
+ <button @click="search()" class="button_search" v-el:cba>查询</button>
44
+ <button @click="$parent.$parent.clearmsg" class="button_clear">清空</button>
45
+ <export-excel
46
+ :choose-col="true"
47
+ :data="{condition: $parent.$parent.condition,
48
+ f_orgid: $parent.$parent.f_orgid,
49
+ f_start_date: $parent.$parent.f_start_date,
50
+ f_end_date: $parent.$parent.f_end_date
51
+ }"
52
+ :header="$parent.$parent.other"
53
+ :field="$parent.$parent.getfield" sql-name="manage_getNewQueryInstruct" sqlurl="api/af-revenue/logic/openapi/exportfile"
54
+ template-name='指令查看'></export-excel>
55
+ <div
56
+ :class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}"
57
+ @click="$parent.$parent.hidden()" class="button_spacing" style="float: right"></div>
58
+ </div>
59
+ </div>
60
+ <div class="row" v-show="$parent.$parent.criteriaShow">
61
+
62
+ <!-- <div class="col-sm-2">-->
63
+ <!-- <label class="font_normal_body">组织机构</label>-->
64
+ <!-- <res-select :initresid="$parent.$parent.org"-->
65
+ <!-- style="width:60%"-->
66
+ <!-- @res-select="$parent.$parent.getorg"-->
67
+ <!-- restype='organization'>-->
68
+ <!-- </res-select>-->
69
+
70
+ <!-- </div>-->
71
+
72
+ <!-- <div class="col-sm-2 form-group">-->
73
+ <!-- <label class="font_normal_body">客户类型</label>-->
74
+ <!-- <v-select style="width:60%" :value.sync="model.f_user_type" v-model="model.f_user_type"-->
75
+ <!-- placeholder='客户类型'-->
76
+ <!-- value-single="true"-->
77
+ <!-- :options='$parent.$parent.userType'-->
78
+ <!-- close-on-select-->
79
+ <!-- condition="f_user_type ='{}'"-->
80
+ <!-- ></v-select>-->
81
+ <!-- </div>-->
82
+ <div class="col-sm-2 form-group">
83
+ <label class="font_normal_body">用气性质</label>
84
+ <v-select style="width:60%" :value.sync="model.f_gasproperties" v-model="model.f_gasproperties"
85
+ placeholder='用气性质'
86
+ value-single="true"
87
+ :options='$parent.$parent.Gasproperties'
88
+ close-on-select
89
+ condition="f_gasproperties = '{}'"
90
+ ></v-select>
91
+ </div>
92
+ <div class="col-sm-2 form-group">
93
+ <label class="font_normal_body">表&ensp;&ensp;&ensp;&ensp;号</label>
94
+ <input
95
+ class="input_search" condition="f_meternumber = '{}'"
96
+ placeholder='表号'
97
+ style="width:60%"
98
+ type="text"
99
+ v-model="model.f_meternumber">
100
+ </div>
101
+ <div class="col-sm-2 form-group">
102
+ <label class="font_normal_body">气表品牌</label>
103
+ <v-select
104
+ :options='$parent.$parent.meterbrand'
105
+
106
+ :value.sync="model.f_gasbrand"
107
+ close-on-select
108
+ condition="f_meter_brand='{}'"
109
+ placeholder='气表品牌'
110
+ style="width:60%"
111
+ v-model="model.f_gasbrand">
112
+ </v-select>
113
+ </div>
114
+ <div class="col-sm-2 form-group">
115
+ <label class="font_normal_body">指令类型</label>
116
+ <v-select :options='$parent.$parent.instructtype' :value.sync="model.f_instruct_type" close-on-select
117
+ condition="f_instruct_type='{}'"
118
+ placeholder='指令类型'
119
+ style="width:60%"
120
+ v-model="model.f_instruct_type"></v-select>
121
+ </div>
122
+ <div class="col-sm-2 form-group">
123
+ <label class="font_normal_body">执行状态</label>
124
+ <v-select :options='$parent.$parent.instructstate' :value.sync="model.f_instruct_state" close-on-select
125
+ condition="f_instruct_state='{}'"
126
+ placeholder='执行状态'
127
+ style="width:60%"
128
+ v-model="model.f_instruct_state"
129
+ ></v-select>
130
+ </div>
131
+
132
+ <div class="col-sm-2 form-group">
133
+ <label class="font_normal_body">指令时间</label>
134
+ <datepicker :format="'yyyy-MM-dd HH:mm:ss'" :value.sync="model.f_start_date"
135
+ condition="f_instruct_date >= '{}'"
136
+ placeholder="起始时间"
137
+ style="width:60%"
138
+ v-model="model.f_start_date"
139
+ ></datepicker>
140
+ </div>
141
+ <div class="col-sm-2 form-group">
142
+ <label class="font_normal_body">&emsp;&emsp;至&emsp;</label>
143
+ <datepicker :format="'yyyy-MM-dd HH:mm:ss'" :value.sync="model.f_end_date"
144
+ condition="f_instruct_date <= '{}'"
145
+ placeholder="结束时间"
146
+ style="width:60%"
147
+ v-model="model.f_end_date"
148
+ ></datepicker>
149
+ </div>
150
+ <div class="col-sm-2 form-group">
151
+ <label class="font_normal_body">指令标题</label>
152
+ <v-select :options='$parent.$parent.instructHead' :value.sync="model.f_instruct_title" close-on-select
153
+ condition="f_instruct_title='{}'"
154
+ placeholder='指令标题'
155
+ style="width:60%"
156
+ v-model="model.f_instruct_title"></v-select>
157
+ </div>
158
+
159
+ <div class="col-sm-2 form-group">
160
+ <label class="font_normal_body">操&nbsp;作&nbsp;人</label>
161
+ <v-select :options='$parent.$parent.operators' :value.sync="model.f_operator" close-on-select
162
+ condition="f_operator='{}'"
163
+ placeholder='操作人'
164
+ style="width:60%"
165
+ v-model="model.f_operator"></v-select>
166
+ </div>
167
+ </div>
168
+ </div>
169
+ </criteria>
170
+ <data-grid :model="model" class="list_area table_sy" id="queryinstruct" partial='list' :modelval="$parent.$parent.modelval" v-ref:grid>
171
+ <template partial='head'>
172
+ <tr>
173
+ <th style="text-align:center">
174
+ <nobr>序号</nobr>
175
+ </th>
176
+ <th style="text-align:center">
177
+ <nobr>客户编号</nobr>
178
+ </th>
179
+ <th style="text-align:center">
180
+ <nobr>客户名称</nobr>
181
+ </th>
182
+ <th style="text-align:center">
183
+ <nobr>客户地址</nobr>
184
+ </th>
185
+ <th style="text-align:center">
186
+ <nobr>表号</nobr>
187
+ </th>
188
+ <th style="text-align:center">
189
+ <nobr>气表品牌</nobr>
190
+ </th>
191
+ <th style="text-align:center">
192
+ <nobr>指令类型</nobr>
193
+ </th>
194
+ <th style="text-align:center">
195
+ <nobr>指令标题</nobr>
196
+ </th>
197
+ <th style="text-align:center">
198
+ <nobr>执行状态</nobr>
199
+ </th>
200
+ <th style="text-align:center"><nobr>执行结果</nobr></th>
201
+ <th style="text-align:center"><nobr>指令生成人</nobr></th>
202
+ <th style="text-align:center"><nobr>指令生成时间</nobr></th>
203
+ <th style="text-align:center"><nobr>指令发送时间</nobr></th>
204
+ <th style="text-align:center"><nobr>上表时间</nobr></th>
205
+ <th style="text-align:center">
206
+ <nobr>充值金额</nobr>
207
+ </th>
208
+ <th style="text-align:center">
209
+ <nobr>操作内容</nobr>
210
+ </th>
211
+ <th style="text-align:center">
212
+ <nobr>操作原因</nobr>
213
+ </th>
214
+ <th style="text-align:center">
215
+ <nobr>操作人(记录)</nobr>
216
+ </th>
217
+ <th style="text-align:center">
218
+ <nobr>操作时间(记录)</nobr>
219
+ </th>
220
+ <th style="text-align:center">
221
+ <nobr>操作类型</nobr>
222
+ </th>
223
+ <th style="text-align:center">
224
+ <nobr>记录状态</nobr>
225
+ </th>
226
+ <th style="text-align:center">
227
+ <nobr>组织机构</nobr>
228
+ </th>
229
+ <th style="text-align:center;">
230
+ <nobr>指令内容</nobr>
231
+ </th>
232
+ <th style="text-align:center">
233
+ <nobr>指令详情</nobr>
234
+ </th>
235
+ </tr>
236
+ </template>
237
+ <template partial='body'>
238
+ <tr>
239
+ <td style="text-align:center">
240
+ <nobr>{{$index+1}}</nobr>
241
+ </td>
242
+ <td style="text-align:center">
243
+ <span @click="$parent.$parent.$parent.dealmsg(row)"><a>{{row.f_userinfo_code}}</a></span>
244
+ </td>
245
+ <td style="text-align:center">
246
+ <nobr>{{row.f_user_name}}</nobr>
247
+ </td>
248
+ <td style="text-align:center">
249
+ <nobr>{{row.f_address}}</nobr>
250
+ </td>
251
+ <td style="text-align:center">
252
+ <nobr>{{row.f_meternumber}}</nobr>
253
+ </td>
254
+ <td style="text-align:center">
255
+ <nobr>{{row.f_meter_brand}}</nobr>
256
+ </td>
257
+
258
+ <td style="text-align:center">
259
+ <nobr>{{row.f_instruct_type}}</nobr>
260
+ </td>
261
+ <td style="text-align:center">
262
+ <nobr>{{row.f_instruct_title}}</nobr>
263
+ </td>
264
+ <td style="text-align:center">
265
+ <nobr>{{row.f_instruct_state}}</nobr>
266
+ </td>
267
+ <td style="text-align:center">
268
+ <nobr>{{row.f_receive_state}}</nobr>
269
+ </td>
270
+ <td style="text-align:center">
271
+ <nobr>{{row.f_inputtor}}</nobr>
272
+ </td>
273
+ <td style="text-align:center">
274
+ <nobr>{{row.f_instruct_date}}</nobr>
275
+ </td>
276
+ <td style="text-align:center"><nobr>{{row.f_send_date}}</nobr></td>
277
+ <td style="text-align:center"><nobr>{{row.f_callback_date}}</nobr></td>
278
+ <td style="text-align:center">
279
+ <nobr>{{row.f_collection}}</nobr>
280
+ </td>
281
+ <td style="text-align:center">
282
+ <nobr>{{row.note}}</nobr>
283
+ </td>
284
+ <td style="text-align:center">
285
+ <nobr>{{row.f_info}}</nobr>
286
+ </td>
287
+ <td style="text-align:center">
288
+ <nobr>{{row.f_operator}}</nobr>
289
+ </td>
290
+ <td style="text-align:center">
291
+ <nobr>{{row.f_operate_date}}</nobr>
292
+ </td>
293
+ <td style="text-align:center">
294
+ <nobr>{{row.f_operate_type}}</nobr>
295
+ </td>
296
+ <td style="text-align:center">
297
+ <nobr>{{row.f_state}}</nobr>
298
+ </td>
299
+ <td style="text-align:center">
300
+ <nobr>{{row.f_orgname}}</nobr>
301
+ </td>
302
+ <td style="text-align:center;">
303
+ <nobr>{{row.f_instruct_content}}</nobr>
304
+ </td>
305
+ <td style="text-align:center">
306
+ <button style=" height: 28px;line-height: 16px;" class="button_search button_spacing width-60" @click.stop="$parent.$parent.$parent.instructDetail(row)">指令详情</button>
307
+ </td>
308
+ </tr>
309
+ </template>
310
+ </data-grid>
311
+ </criteria-paged>
312
+ </div>
313
+ <modal :show.sync="detailShow" v-if="detailShow" width="40%" style="width:auto;" v-ref:modal middle backdrop="false">
314
+ <article slot="modal-body">
315
+ <p class="text-center" style="font-size: 15px" v-html="f_instruct_content"></p>
316
+ </article>
317
+ <footer slot="modal-footer" class="modal-footer">
318
+ </footer>
319
+ </modal>
320
+ </div>
321
+ </template>
322
+ <script>
323
+ import {PagedList} from 'vue-client'
324
+ import co from 'co'
325
+ import * as Util from '../../Util'
326
+ import getLodop from '../../plugins/LodopFuncs'
327
+ import {HttpResetClass} from 'vue-client'
328
+ import plugins from '../../plugins/GetLoginInfoService'
329
+
330
+ let readyGen = async function (self) {
331
+ await self.$MagLoadParams.loadParam()
332
+ await self.$MagGetSaleParam.initinputtor()
333
+ self.initQueryParam()
334
+ self.getinstructtype()
335
+ self.getinstructtitle()
336
+ self.getinstructstate()
337
+ await self.$getConfig(self, 'NewQueryInstruct')
338
+ console.log('指令查看config', self.config)
339
+ self.getfield = self.config.excelHeaders
340
+ self.getOperators(self.$login.f.orgid)
341
+ self.sumsmodel = self.$refs.paged.$refs.grid.model.sums;
342
+ // self.reflash()
343
+ }
344
+ export default {
345
+ title: '指令查看',
346
+ data () {
347
+ return {
348
+ model: new PagedList('api/af-revenue/sql/manage_getNewQueryInstruct', 50),
349
+ row: null,
350
+ isLoading: true,
351
+ searchshow: true,
352
+ criteriaShow:false,
353
+ Gasproperties:[],
354
+ meterbrand: [],
355
+ operators:[],
356
+ other: [],
357
+ sumsmodel: {},
358
+ userType:[],
359
+ instructtype:[],
360
+ instructstate:[],
361
+ org:{
362
+ org:[this.$login.f.orgid],
363
+ dep:[],
364
+ user:[],
365
+ },
366
+ orgcondition:'',
367
+ show: false,
368
+ condition:'',
369
+ f_orgid:'',
370
+ f_start_date:'',
371
+ f_end_date:'',
372
+ getfield: {},
373
+ config: {
374
+ excelHeaders: {
375
+ 'f_userinfo_code': '客户编号','f_address': '客户地址','f_user_name': '客户姓名',
376
+ 'f_meternumber': '表号','f_meter_brand': '气表品牌','f_instruct_type': '指令类型',
377
+ 'f_instruct_state': '执行状态','f_receive_state': '执行结果','f_inputtor': '指令生成人','f_instruct_date': '指令时间',
378
+ 'note':'操作内容','f_info':'操作原因','f_operator':'操作人(记录)','f_operate_date':'操作时间(记录)','f_operate_type':'操作类型','f_state':'操作状态',
379
+ 'f_orgname': '组织机构', 'f_instruct_title': '指令标题'
380
+ }
381
+ },
382
+ instructtitle: [],
383
+ detailShow: false,
384
+ f_instruct_content: '',
385
+ modelval: [
386
+ '序号','客户编号','客户名称','客户地址','表号','气表品牌','指令类型','指令标题','执行状态','执行结果','指令生成人','指令生成时间',
387
+ '指令发送时间','上表时间','充值金额','操作内容','操作原因','操作人(记录)','操作时间(记录)','操作类型','记录状态','组织机构'
388
+ ]
389
+ }
390
+ },
391
+ ready () {
392
+ readyGen(this)
393
+ this.$refs.paged.$refs.criteria.model.f_start_date = Util.toStandardDateString() + ' 00:00:00'
394
+ this.$refs.paged.$refs.criteria.model.f_end_date = Util.toStandardDateString() + ' 23:59:59'
395
+ this.$refs.paged.$refs.grid.modelval = this.modelval
396
+ //this.$refs.paged.$refs.criteria.search()
397
+ },
398
+ methods: {
399
+ instructDetail(row){
400
+ if (row.f_instruct_content != '{}') {
401
+ let data = JSON.parse(row.f_instruct_content)
402
+ console.log('看下具体的指令详情===>',data)
403
+ let str = ''
404
+ if (data.hasOwnProperty("Data")) {
405
+ console.log('看下具体的指令详情2===>',data.Data)
406
+ console.log('看下具体的指令详情2===>',typeof data.Data)
407
+ for (let key in data.Data) {
408
+ str = str + key + ':' + data.Data[key] + '</br>'
409
+ }
410
+ }
411
+ for (let key in data) {
412
+ if (key != 'Data'){
413
+ str = str + key + ':' + data[key] + '</br>'
414
+ }
415
+ }
416
+ this.f_instruct_content = str
417
+ this.detailShow = true
418
+ }else{
419
+ this.$showMessage('当前指令没有内容!!!', ['confirm'])
420
+ }
421
+ },
422
+ hidden(){
423
+ this.criteriaShow = !this.criteriaShow
424
+ },
425
+ getorg(condition,obj) {
426
+ this.orgcondition = condition.replace('f_orgid','f_orgid')
427
+ this.orgcondition = this.orgcondition.replace('f_depid','f_depid')
428
+ this.orgname = obj.orgnames[0]
429
+ },
430
+ initQueryParam () {
431
+ let arr = []
432
+ this.$MagGetSaleParam.getGasbrand().forEach((item) => {
433
+ let temp = {}
434
+ if(item.value.f_meter_type==='物联网表'){
435
+ temp.label = item.label
436
+ temp.value = item.value.f_meter_brand
437
+ arr.push(temp )
438
+ }
439
+
440
+ })
441
+ this.meterbrand = [{label: '全部', value: ''}, ...arr]
442
+ },
443
+ //获取资源数据
444
+ getOperators(orgid) {
445
+ this.operators = []
446
+ this.$MagGetSaleParam.inputtors.forEach((res) => {
447
+ if(res.rolestr != null && res.rolestr!='' ){
448
+ if( res.f_orgid == orgid) {
449
+ let temp = {
450
+ label :res.name,
451
+ value:res.name,
452
+ }
453
+ this.operators.push(temp)
454
+ }
455
+ }
456
+ })
457
+ },
458
+ getinstructtype(){
459
+ this.instructtype=[]
460
+ let load = new HttpResetClass()
461
+ load.load('POST', 'api/af-revenue/sql/singleTableParam', {
462
+ data: {
463
+ items:'f_instruct_type',
464
+ tablename:'t_instruct',
465
+ condition:'f_instruct_type is not null group by f_instruct_type'
466
+ }
467
+ },{warnMsg:null,resolveMsg:null}).then((res) => {
468
+ this.instructtype.push({label: '全部', value: ''})
469
+ res.data.forEach((item) => {
470
+ this.instructtype.push({label: item.f_instruct_type, value: item.f_instruct_type})
471
+ })
472
+ })
473
+
474
+ },
475
+ getinstructtitle(){
476
+ this.instructtype=[]
477
+ let load = new HttpResetClass()
478
+ load.load('POST', 'api/af-revenue/sql/singleTableParam', {
479
+ data: {
480
+ items:'f_instruct_title',
481
+ tablename:'t_instruct',
482
+ condition:'f_instruct_title is not null group by f_instruct_title'
483
+ }
484
+ },{warnMsg:null,resolveMsg:null}).then((res) => {
485
+ this.instructtitle.push({label: '全部', value: ''})
486
+ res.data.forEach((item) => {
487
+ this.instructtitle.push({label: item.f_instruct_title, value: item.f_instruct_title})
488
+ })
489
+ })
490
+
491
+ },
492
+ getinstructstate(){
493
+ this.instructstate=[]
494
+ let load = new HttpResetClass()
495
+ load.load('POST', 'api/af-revenue/sql/singleTableParam', {
496
+ data: {
497
+ items:'f_instruct_state',
498
+ tablename:'t_instruct',
499
+ condition:'f_instruct_state is not null group by f_instruct_state'
500
+ }
501
+ },{warnMsg:null,resolveMsg:null}).then((res) => {
502
+ this.instructstate.push({label: '全部', value: ''})
503
+ res.data.forEach((item) => {
504
+ this.instructstate.push({label: item.f_instruct_state, value: item.f_instruct_state})
505
+ })
506
+ })
507
+
508
+ },
509
+ clearmsg () {
510
+ this.$refs.paged.$refs.criteria.model = {}
511
+ },
512
+ clickshow () {
513
+ this.searchshow = !this.searchshow
514
+ },
515
+ dealmsg (val) {
516
+ val.model = this.model.model
517
+ this.$emit('deal-msg', val)
518
+ },
519
+ async search (args) {
520
+ // this.obj.resids = this.obj.resids.replace(/\./g, ''),
521
+ args.condition = `${args.condition}`+this.orgcondition
522
+ console.log(args.condition+"args.condition")
523
+ this.condition = args.condition
524
+ if( this.$refs.paged.$refs.criteria.model.f_start_date!=null && this.$refs.paged.$refs.criteria.model.f_start_date!=''){
525
+ this.model.params.f_start_date = `'${this.$refs.paged.$refs.criteria.model.f_start_date}'`;
526
+ this.f_start_date = `'${this.$refs.paged.$refs.criteria.model.f_start_date}'`;
527
+ }else{
528
+ this.model.params.f_start_date = '';
529
+ this.f_start_date = '';
530
+ }
531
+ if( this.$refs.paged.$refs.criteria.model.f_end_date!=null && this.$refs.paged.$refs.criteria.model.f_end_date!=''){
532
+ this.model.params.f_end_date = `'${this.$refs.paged.$refs.criteria.model.f_end_date}'`;
533
+ this.f_end_date = `'${this.$refs.paged.$refs.criteria.model.f_end_date}'`;
534
+ }else{
535
+ this.model.params.f_end_date = "";
536
+ this.f_end_date = "";
537
+ }
538
+ if(this.f_orgid_new == '' || this.f_orgid_new == null){
539
+ this.model.params.f_orgid = `'${this.$login.f.orgid}'`;
540
+ this.f_orgid = `${this.$login.f.orgid}`;
541
+ //await this.$LoadParams.loadParam(this.$login.f.orgid)
542
+ }else{
543
+ this.model.params.f_orgid = `'${this.f_orgid_new}'`;
544
+ this.f_orgid = `${this.f_orgid_new}`;
545
+ //await this.$LoadParams.loadParam(this.f_orgid_new)
546
+ }
547
+ await this.model.search(args.condition, args.model)
548
+ await this.initQueryParam();
549
+ await this.$refs.paged.$refs.grid.InitializedData()
550
+ await this.$refs.paged.$refs.grid.displayColumnSettings(undefined)
551
+
552
+ },
553
+ getotherfooter() {
554
+ this.other = [];
555
+
556
+ let firstLine = [`导出时间: ${this.$login.toStandardTimeString()}`];
557
+
558
+
559
+ let secondLine = [
560
+ `开始时间: ${this.$refs.paged.$refs.criteria.model.f_start_date}`,
561
+ `结束时间: ${this.$refs.paged.$refs.criteria.model.f_end_date}`
562
+ ];
563
+
564
+ this.other.push(firstLine);
565
+ this.other.push(secondLine);
566
+
567
+ console.log('Header Data:', this.other);
568
+ },
569
+
570
+ },
571
+ watch:{
572
+ sumsmodel:{
573
+ handler: function(val) {
574
+ this.getotherfooter();
575
+ },
576
+ deep: true
577
+ },
578
+ },
579
+ computed: {
580
+ userType () {
581
+ return [{label: '全部', value: ''}, ...this.$appdata.getParam('用户类型')]
582
+ },
583
+ Gasproperties () {
584
+ return [{label: '全部', value: ''}, ...this.$appdata.getParam('用气性质')]
585
+ },
586
+ instructHead () {
587
+ return [{label: '全部', value: ''}, ...this.$appdata.getParam('指令标题')]
588
+ },
589
+ mounted() {
590
+ this.getotherfooter();
591
+ }
592
+
593
+
594
+ }
595
+ }
596
+ </script>
597
+ <style>
598
+ .form-input-group label {
599
+ text-align: right;
600
+ width: auto;
601
+ }
602
+ .datapanel {
603
+ color: #333;
604
+ background-color: white;
605
+ box-shadow: darkgrey 0.5px 0.5px 0.5px 0.5px ;
606
+ padding: 10px 30px 10px 30px;
607
+ border-radius:15px;
608
+ }
609
+ </style>
@@ -12,4 +12,6 @@ export default function () {
12
12
  Vue.component('user-lost-contact-analysis', (resolve) => { require(['./UserLostContactAnalysis'], resolve) })
13
13
  // 未上报查询
14
14
  Vue.component('get-no-meteread-query', (resolve) => { require(['./GetNoMetereadData'], resolve) })
15
+ // 指令查询
16
+ Vue.component('new-query-instruct', (resolve) => { require(['./NewQueryInstruct'], resolve) })
15
17
  }