sale-client 3.5.284 → 3.5.285-2

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.
Files changed (38) hide show
  1. package/.gradle/5.2.1/executionHistory/executionHistory.bin +0 -0
  2. package/.gradle/5.2.1/executionHistory/executionHistory.lock +0 -0
  3. package/.gradle/5.2.1/fileChanges/last-build.bin +0 -0
  4. package/.gradle/5.2.1/fileContent/fileContent.lock +0 -0
  5. package/.gradle/5.2.1/fileHashes/fileHashes.lock +0 -0
  6. package/.gradle/5.2.1/gc.properties +0 -0
  7. package/.gradle/7.5.1/checksums/checksums.lock +0 -0
  8. package/.gradle/7.5.1/dependencies-accessors/dependencies-accessors.lock +0 -0
  9. package/.gradle/7.5.1/dependencies-accessors/gc.properties +0 -0
  10. package/.gradle/7.5.1/executionHistory/executionHistory.bin +0 -0
  11. package/.gradle/7.5.1/executionHistory/executionHistory.lock +0 -0
  12. package/.gradle/7.5.1/fileChanges/last-build.bin +0 -0
  13. package/.gradle/7.5.1/fileHashes/fileHashes.bin +0 -0
  14. package/.gradle/7.5.1/fileHashes/fileHashes.lock +0 -0
  15. package/.gradle/7.5.1/gc.properties +0 -0
  16. package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
  17. package/.gradle/buildOutputCleanup/cache.properties +2 -0
  18. package/.gradle/file-system.probe +0 -0
  19. package/.gradle/vcs-1/gc.properties +0 -0
  20. package/build/dev-server.js +1 -1
  21. package/package.json +3 -3
  22. package/src/components/FilesManage/FileAddressManage.vue +1 -1
  23. package/src/components/FilesManage/UserEssentialInfoTest.vue +1 -1
  24. package/src/components/FilesManage/UserGeneralInfoTest.vue +1 -1
  25. package/src/components/revenue/base/leftview/otherinfo.vue +2 -2
  26. package/src/components/revenue/machineHandManage/machineHandAudit.vue +9 -21
  27. package/src/filiale/gehua/MeterinfoTest.vue +963 -963
  28. package/src/filiale/huayin/base/otherinfo.vue +2 -2
  29. package/src/filiale/qianneng/eticket/EticketPrint.vue +6 -8
  30. package/src/filiale/rizhao/UserBaseInfoNew.vue +5 -1
  31. package/src/filiale/rizhao/otherinfo.vue +2 -2
  32. package/src/filiale/rongcheng/FileAddressManage.vue +1 -1
  33. package/src/filiale/rongcheng/RecordCancel.vue +314 -314
  34. package/src/filiale/shanxian/components/FilesManage/FileAddressList.vue +2 -2
  35. package/src/filiale/tongchuan/base/otherinfo.vue +2 -2
  36. package/src/filiale/yuansheng/meterinfodetail.vue +255 -255
  37. package/src/main.js +1 -1
  38. package/yarn-error.log +0 -9224
File without changes
File without changes
@@ -0,0 +1,2 @@
1
+ #Tue Jun 06 10:14:00 CST 2023
2
+ gradle.version=5.2.1
Binary file
File without changes
@@ -1,5 +1,5 @@
1
1
  var path = require('path')
2
- const [localUrl, serverRul] = ['http://121.36.106.17:8400/', 'http://121.36.106.17:8400/']
2
+ const [localUrl, serverRul] = ['http://192.168.50.4:8400/', 'http://192.168.50.4:8400/']
3
3
  var merge = require('webpack-merge')
4
4
  var baseConfig = require('./webpack.dev.conf')
5
5
  var devConfig = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sale-client",
3
- "version": "3.5.284",
3
+ "version": "3.5.285-2",
4
4
  "description": "收费模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -74,7 +74,7 @@
74
74
  "karma-sourcemap-loader": "^0.3.7",
75
75
  "karma-spec-reporter": "0.0.31",
76
76
  "karma-webpack": "^2.0.2",
77
- "ldap-clients": "3.0.62",
77
+ "ldap-clients": "3.0.7",
78
78
  "less": "^2.7.3",
79
79
  "manage-client": "3.1.8-88",
80
80
  "mkdirp": "^0.5.1",
@@ -89,7 +89,7 @@
89
89
  "sinon-chai": "^2.8.0",
90
90
  "style": "0.0.3",
91
91
  "style-loader": "^0.20.3",
92
- "system-clients": "3.2.64",
92
+ "system-clients": "3.2.55",
93
93
  "url-loader": "^0.5.7",
94
94
  "vue-client": "1.24.79",
95
95
  "vue-clipboard2": "0.3.1",
@@ -3,7 +3,7 @@
3
3
  <div :class="{'basic-main':!useraddressShow,'binary-left':useraddressShow}" v-show="isSelect">
4
4
  <file-address-list @select-changed="selected" v-ref:addresslist :style="style" :select=select :company=company :f_filialeids.sync="f_filialeids"></file-address-list>
5
5
  </div>
6
- <div v-show="useraddressShow" :class="{'basic-main':!isSelect, 'binary-right': isSelect}" style="width:60%">
6
+ <div v-show="useraddressShow" :class="{'basic-main':!isSelect, 'binary-right': isSelect}">
7
7
  <div class="flex">
8
8
  <file-user-address :f_filialeids.sync="f_filialeids" :is_pecial="isSpecial" :isedit="isSelect" :row="row" v-ref:fileuseraddress></file-user-address>
9
9
 
@@ -205,7 +205,7 @@
205
205
  </div>
206
206
  </form>
207
207
  </validator>
208
- <modal v-if="showselectaddress" :show.sync="showselectaddress" width="70%" height="80%" title="地址信息" v-ref:modal large backdrop="false">
208
+ <modal v-if="showselectaddress" :show.sync="showselectaddress" width="50%" height="80%" title="地址信息" v-ref:modal large backdrop="false">
209
209
  <article slot="modal-body" class="modal-body" style="height: 700px;padding: 0!important;">
210
210
  <file-address-manage :is-select="isSelect" :fileinfo="addressinfo"
211
211
  @address-valid="doNothing" :showselectaddress.sync="showselectaddress" v-ref:fileaddress ></file-address-manage>
@@ -93,7 +93,7 @@
93
93
  </div>
94
94
  <div class="row">
95
95
  <div class="col-sm-2"></div>
96
- <input v-if="fileSaveData.reason ==='其他'" class="input_search" style="width:60%" placeholder='修改原因' v-model="fileSaveData.modifyReason"/>
96
+ <input v-if="fileSaveData.reason==='其他'" class="input_search" style="width:60%" placeholder='修改原因' v-model="fileSaveData.modifyReason"/>
97
97
  </div>
98
98
  </article>
99
99
  <footer slot="modal-footer" class="modal-footer">
@@ -1,7 +1,7 @@
1
1
  <template>
2
2
  <div class="flex" style="height: 90%;overflow-y: scroll">
3
- <mix-price-info :data="data" v-if="data.f_meter_type && data.f_price_type === '固定气价'"></mix-price-info>
4
- <stairinfo :data="data" v-if="data.f_meter_type && data.f_price_type === '阶梯气价'"></stairinfo>
3
+ <mix-price-info :data="data" v-if="data.f_price_type === '固定气价'"></mix-price-info>
4
+ <stairinfo :data="data" v-if="data.f_price_type === '阶梯气价'"></stairinfo>
5
5
  <bill-message @setstate="setstate" :state="state" :data="data"></bill-message>
6
6
  <valueaddinfo :data="data" v-ref:valueaddinfo></valueaddinfo>
7
7
  <safe-check :data="data"></safe-check>
@@ -394,7 +394,7 @@
394
394
  import * as Util from '../../../Util'
395
395
 
396
396
  let readyGen = async function (self) {
397
- self.$refs.paged.$refs.cri.model.startDate = self.$login.toStartAndEndDateString()[0]
397
+ self.$refs.paged.$refs.cri.model.startDate = self.$login.toStartAndEndDateString()[0]
398
398
  self.$refs.paged.$refs.cri.model.endDate = self.$login.toStandardDateString()
399
399
  await self.$LoadParams.loadMeterBook(self.f_filialeid)
400
400
  self.loadMeterBooks()
@@ -414,13 +414,12 @@
414
414
  dep: [],
415
415
  user: []
416
416
  },
417
- config: {
418
- examine: false
417
+ config:{
418
+ examine: false,
419
419
  },
420
420
  imgfilename: '',
421
421
  // 小区
422
422
  residentialArea: [],
423
- inputtouPerson: [],
424
423
  imgshow: false,
425
424
  criteriaShow: false,
426
425
  orgCondtionStr: '',
@@ -445,8 +444,8 @@
445
444
  'f_adjustable_name': '调压箱名称',
446
445
  'f_inputtor': '抄表员'
447
446
  },
448
- auditState: [{label: '全部', value: ''}, {label: '已审核', value: '已抄表'}, {label: '未审核', value: '待审核'}],
449
- auditState1: [{label: '全部', value: ''}, {label: '审核失败', value: '审核失败'}],
447
+ auditState:[{label: '全部', value: ''}, {label: '已审核', value: '已抄表'}, {label: '未审核', value: '待审核'}],
448
+ auditState1:[{label: '全部', value: ''}, {label: '审核失败', value: '审核失败'}],
450
449
  meters: [{label: '全部', value: ''}, {label: '机表', value: '机表'}, {label: '物联网表', value: '物联网表'}],
451
450
  resultstate: this.$appdata.getParam('抄表结果状态'),
452
451
  meterstates: this.$appdata.getParam('抄表状态') ? [{
@@ -476,7 +475,7 @@
476
475
  methods: {
477
476
  // 修正本期底数
478
477
  amend (row) {
479
- let tablebase = window.prompt('请输入你要修正的底数值,上期底数:' + row.f_meter_base)
478
+ let tablebase = window.prompt('请输入你要修正的底数值,上期底数:'+ row.f_meter_base)
480
479
  if (!tablebase) return
481
480
  if (tablebase < 0) {
482
481
  this.$showAlert(`底数不能小于0,请注意!`, 'warning', 2000)
@@ -597,9 +596,9 @@
597
596
  this.imgshow = false
598
597
  },
599
598
  imgShow (val) {
600
- console.log('-----------val2:', val)
599
+ console.log("-----------val2:",val)
601
600
  this.imgfilename = `rs/image/file/` + val
602
- console.log('-----------imgfilename2:', this.imgfilename)
601
+ console.log("-----------imgfilename2:",this.imgfilename)
603
602
  this.imgshow = true
604
603
  },
605
604
  async getaddress () {
@@ -633,17 +632,6 @@
633
632
  } else {
634
633
  args.condition = `${args.condition}` + this.orgCondtionStr
635
634
  }
636
- // 抄表员查询条件
637
- this.inputtouPerson = this.$refs.paged.$refs.cri.model.f_inputtor
638
- if (this.inputtouPerson.length !== 0) {
639
- let str = JSON.stringify(this.inputtouPerson)
640
- str = str.replace(/"/g, `'`)
641
- str = str.replace(/\[/g, ``)
642
- str = str.replace(/\]/g, ``)
643
- console.log('=====抄表员model22222222222绑定====', str)
644
- // 查询多个抄表员时条件
645
- args.condition += ` and f_inputtor in ( ${str} )`
646
- }
647
635
  this.excelCondition = args.condition
648
636
  this.$refs.paged.$refs.grid.selectInit()
649
637
  this.model.search(args.condition, args.model)
@@ -708,7 +696,7 @@
708
696
  },
709
697
  loadMeterBooks () {
710
698
  this.meterbooks = this.$GetSaleParam.getMeterBooks()
711
- }
699
+ },
712
700
 
713
701
  },
714
702
  computed: {