manage-client 3.3.180 → 3.3.181

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.180",
3
+ "version": "3.3.181",
4
4
  "description": "经营管控模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "directories": {
@@ -374,6 +374,9 @@
374
374
  <th>
375
375
  <nobr>客户名称</nobr>
376
376
  </th>
377
+ <th>
378
+ <nobr>客户电话</nobr>
379
+ </th>
377
380
  <th>
378
381
  <nobr>身份证号</nobr>
379
382
  </th>
@@ -591,6 +594,9 @@
591
594
  <td style="text-align: center;">
592
595
  <nobr>{{row.f_user_name}}</nobr>
593
596
  </td>
597
+ <td style="text-align: center;">
598
+ <nobr>{{row.f_user_phone}}</nobr>
599
+ </td>
594
600
  <td style="text-align: center;">
595
601
  <nobr>{{row.f_idnumber}}</nobr>
596
602
  </td>
@@ -519,7 +519,9 @@
519
519
  getCondition() {
520
520
  let condition=this.$refs.paged.$refs.cri.condition + this.orgCondtionStr
521
521
  return {
522
- condition: condition
522
+ condition: condition,
523
+ startDate: this.$refs.paged.$refs.cri.model.startDate,
524
+ endDate: this.$refs.paged.$refs.cri.model.endDate
523
525
  }
524
526
  },
525
527
  usertypes() {
@@ -493,6 +493,18 @@
493
493
  <input type="text" style="width:60%" class="input_search" v-model="model.f_comments"
494
494
  condition="f_comments like '%{}%'" placeholder='备注信息'>
495
495
  </div>
496
+ <div class="col-sm-2 form-group">
497
+ <label class="font_normal_body">有无备注</label>
498
+ <v-select
499
+ placeholder='有无备注'
500
+ :value.sync="$parent.$parent.f_hasComments"
501
+ style="width:60%"
502
+ :value-single="true"
503
+ v-model="$parent.$parent.f_hasComments"
504
+ :options='$parent.$parent.hasComments'
505
+ close-on-select>
506
+ </v-select>
507
+ </div>
496
508
  </div>
497
509
  </div>
498
510
  </criteria>
@@ -512,7 +524,7 @@
512
524
  <th colspan="6">
513
525
  <nobr>燃气表</nobr>
514
526
  </th>
515
- <th colspan="62">
527
+ <th colspan="63">
516
528
  <nobr>其他</nobr>
517
529
  </th>
518
530
  </tr>
@@ -972,6 +984,7 @@
972
984
  dep:[],
973
985
  user:[],
974
986
  },
987
+ f_hasComments: '',
975
988
  // 合计数据
976
989
  sumsmodel: {},
977
990
  //表册片区
@@ -979,6 +992,7 @@
979
992
  meterStyle:[{label: '全部',value: ''}],
980
993
  pricenames:[],
981
994
  dypayment:[{label:"全部",value:""},{label:"银行代扣",value:"银行代扣",},{label:"现金缴费",value:"现金缴费",}],
995
+ hasComments:[{label:"全部",value:""},{label:"有",value:"有",},{label:"无",value:"无",}],
982
996
  networkvalves: this.$appdata.getParam('自动阀控') ? [{label: '全部', value: ''}, ...this.$appdata.getParam('自动阀控')] : [],
983
997
  }
984
998
  },
@@ -1150,6 +1164,13 @@
1150
1164
  args.condition = `${args.condition}` + this.orgCondtionStr
1151
1165
  }
1152
1166
  console.log("查看条件",this.conditon2)
1167
+ if (this.f_hasComments) {
1168
+ if (this.f_hasComments === '有') {
1169
+ args.condition +=` and f_comments != '' and f_comments is not null`
1170
+ } else {
1171
+ args.condition +=` and (f_comments = '' or f_comments is null)`
1172
+ }
1173
+ }
1153
1174
  if(this.card!=''){
1154
1175
  args.condition +=` and f_card_id='${this.card}'`
1155
1176
  }