manage-client 3.3.219 → 3.3.221

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": "3.3.219",
3
+ "version": "3.3.221",
4
4
  "description": "经营管控模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "directories": {
@@ -1890,7 +1890,7 @@ export default {
1890
1890
  'f_meter_classify': '表具类型',
1891
1891
  'f_meter_title': '表描述',
1892
1892
  'f_price_name': '气价名称',
1893
- 'f_user_nature': '用气类型',
1893
+ 'f_user_type': '用户类型',
1894
1894
  'f_gasproperties': '用气性质',
1895
1895
  'f_balance': '期初余额',
1896
1896
  'f_last_tablebase': '起方',
@@ -39,7 +39,7 @@
39
39
  <input style="width:60%" type="text" class="input_search"
40
40
  v-model="model.f_meternumber" placeholder='表号'
41
41
  @keyup.enter="search"
42
- condition="f_meternumber like '%{}%'"
42
+ condition="f_meternumber = '{}'"
43
43
  v-next-el='meternumber' v-el:meternumber>
44
44
  </div>
45
45
  <div style="float:right">
@@ -312,6 +312,11 @@
312
312
  startDate: '',
313
313
  endDate: '',
314
314
  meterbrands: [],
315
+ initres: {
316
+ org:[this.$login.f.orgid],
317
+ dep:[],
318
+ user:[],
319
+ },
315
320
  other: [],
316
321
  sumsmodel: {},
317
322
  f_error_type:'',
@@ -427,14 +432,14 @@
427
432
  this.startDate = this.$refs.paged.$refs.cri.model.startDate
428
433
  this.endDate = this.$refs.paged.$refs.cri.model.endDate
429
434
  this.f_error_type=this.$refs.paged.$refs.cri.model.f_error_type
430
- console.log('1231321312312321')
431
435
  /* if (this.endDate == '' || this.startDate == '') {
432
436
  return this.$showMessage("时间区间的开始和结束时间不能为空!")
433
437
  }*/
434
- this.condition = this.$refs.paged.$refs.cri.condition + this.orgCondtionStr
435
-
436
- args.condition = this.condition
437
- this.model.search(args.condition, args.model)
438
+ if (this.orgCondtionStr){
439
+ args.condition = `${args.condition}` + this.orgCondtionStr
440
+ }
441
+ this.condition = args.condition
442
+ this.model.search(args.condition, args.model)
438
443
  },
439
444
  SaveAsFile(str) {
440
445
  this.$showMessage('您是否需要导出本页数据?', ['confirm', 'cancel']).then((res) => {
@@ -39,7 +39,7 @@
39
39
  <input style="width:60%" type="text" class="input_search"
40
40
  v-model="model.f_meternumber" placeholder='表号'
41
41
  @keyup.enter="search"
42
- condition="f_meternumber like '%{}%'"
42
+ condition="f_meternumber = '{}'"
43
43
  v-next-el='meternumber' v-el:meternumber>
44
44
  </div>
45
45
  <div style="float:right">
@@ -73,7 +73,6 @@
73
73
  <label class="font_normal_body">气价类型</label>
74
74
  <v-select :value.sync="model.pricetype" v-model="model.pricetype"
75
75
  placeholder='气价类型' :options="$parent.$parent.pricetypes"
76
- condition="ss.f_price_type = '{}'"
77
76
  close-on-select>
78
77
  </v-select>
79
78
  </div>
@@ -310,7 +309,7 @@ let readySomething = async function (self) {
310
309
  self.sumsmodel = self.$refs.paged.$refs.grid.model.sums;
311
310
  }
312
311
  export default {
313
- title: '用气量统计表',
312
+ title: '新用气分析',
314
313
  data () {
315
314
  return {
316
315
  show:false,
@@ -39,7 +39,7 @@
39
39
  <input style="width:60%" type="text" class="input_search"
40
40
  v-model="model.f_meternumber" placeholder='表号'
41
41
  @keyup.enter="search"
42
- condition="f_meternumber like '%{}%'"
42
+ condition="f_meternumber = '{}'"
43
43
  v-next-el='meternumber' v-el:meternumber>
44
44
  </div>
45
45
  <div style="float:right">
@@ -234,6 +234,20 @@
234
234
  <input type="text" style="width:60%" class="input_search" v-model="model.f_balance_amount"
235
235
  condition="f_balance_amount < '{}'" placeholder='余额小于'>
236
236
  </div>
237
+ <div class="col-sm-2 form-group">
238
+ <label for="checkstartDate" class="font_normal_body">校验日期</label>
239
+ <datepicker id="checkstartDate" placeholder="开始日期" style="width:60%" v-model="model.checkstartDate"
240
+ :value.sync="model.checkstartDate" :format="'yyyy-MM-dd'" :show-reset-button="true"
241
+ condition="f_check_time >= '{} 00:00:00'">
242
+ </datepicker>
243
+ </div>
244
+ <div class="col-sm-2 form-group">
245
+ <label for="checkendDate" class="font_normal_body">校验日期</label>
246
+ <datepicker id="checkendDate" placeholder="结束日期" style="width:60%" v-model="model.checkendDate"
247
+ :value.sync="model.checkendDate" :format="'yyyy-MM-dd'" :show-reset-button="true"
248
+ condition="f_check_time <= '{} 23:59:59'">
249
+ </datepicker>
250
+ </div>
237
251
  </div>
238
252
  </div>
239
253
  </criteria>
@@ -323,6 +337,11 @@
323
337
  <data-order field="f_input_date" name="建表时间"
324
338
  :order.sync="$parent.$parent.$parent.orderFields.f_input_date"></data-order>
325
339
  </th>
340
+ <th>
341
+ <!--<nobr>建表时间</nobr>-->
342
+ <data-order field="f_check_time" name="校验日期"
343
+ :order.sync="$parent.$parent.$parent.orderFields.f_check_time"></data-order>
344
+ </th>
326
345
  <th>
327
346
  <nobr>气表状态</nobr>
328
347
  </th>
@@ -416,6 +435,9 @@
416
435
  <td :class="row.f_table_state !== '正常' ? 'back-red' : 'back-blue'" style="text-align: center;">
417
436
  <nobr>{{ row.f_input_date }}</nobr>
418
437
  </td>
438
+ <td :class="row.f_table_state !== '正常' ? 'back-red' : 'back-blue'" style="text-align: center;">
439
+ <nobr>{{ row.f_check_time }}</nobr>
440
+ </td>
419
441
  <td :class="row.f_table_state !== '正常' ? 'back-red' : 'back-blue'" style="text-align: center;">
420
442
  <nobr>{{ row.f_table_state }}</nobr>
421
443
  </td>
@@ -157,6 +157,7 @@ export default {
157
157
  'f_gas_person': '通气人',
158
158
  'f_gas_date': '通气时间',
159
159
  'f_input_date': '建表时间',
160
+ 'f_check_time': '校验日期',
160
161
  'f_table_state': '气表状态',
161
162
  'isbgl': '是否壁挂炉',
162
163
  'f_valve_state': '阀门状态',
package/src/main.js CHANGED
@@ -46,11 +46,11 @@ ldap()
46
46
  system(false)
47
47
 
48
48
  saleManage()
49
- ShanXianSaleManage()
50
49
  webmeterManage()
51
50
  ManageHome()
52
51
  newmanage()
53
52
  reportManage()
53
+ ShanXianSaleManage()
54
54
  require('system-clients/src/styles/less/bootstrap.less')
55
55
  require('./components/qinhua/Style/qinhuaStyle.less')
56
56
  // require('./bootstrap/less/manageStyle/manageChile.less')