sale-client 3.5.123 → 3.5.126

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.
@@ -13,7 +13,7 @@ var compiler = webpack(config)
13
13
  var bendi = 'http://121.36.106.17:8400', bendi1 = 'http://121.36.106.17:8400/'
14
14
  // 公司测试服务
15
15
  // var fuwu = 'http://192.168.50.4:8400'
16
- var fuwu = 'http://121.36.106.17:8400'
16
+ var fuwu = 'http://192.168.50.4:8400'
17
17
  // var fuwu = 'http://121.36.106.17:8400/'
18
18
  // 铜川正式
19
19
  // var fuwu = 'http://61.134.55.234:9999/'
@@ -184,7 +184,7 @@ app.use(hotMiddleware)
184
184
  // serve pure static assets
185
185
  app.use('/static', express.static('./static'))
186
186
 
187
- module.exports = app.listen(8089, function (err) {
187
+ module.exports = app.listen(8085, function (err) {
188
188
  if (err) {
189
189
  console.log(err)
190
190
  return
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sale-client",
3
- "version": "3.5.123",
3
+ "version": "3.5.126",
4
4
  "description": "收费模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -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,149 +1,151 @@
1
- <template>
2
- <div id='PaymentCode'>
3
- <modal :show.sync="paymentCodeShow" backdrop="false">
4
- <header slot="modal-header" class="modal-header">
5
- <h4 class="modal-title">请扫描用户付款码</h4>
6
- </header>
7
- <article slot="modal-body" class="modal-body">
8
- <div class="form-horizontal">
9
- <div class="form-group">
10
- <input type="text" class="form-control" @keyup.enter="ConfirmCode" @blur="paycodefocus"
11
- v-model="paymentCode" placeholder="请扫描用户付款码" v-el:paycode>
12
- </div>
13
- </div>
14
- </article>
15
- <footer slot="modal-footer" class="modal-footer">
16
- <button type="button" class="btn btn-default" @click='closeCode'>取消</button>
17
- </footer>
18
- </modal>
19
- </div>
20
- </template>
21
-
22
- <script>
23
- export default {
24
- name: 'PaymentCode',
25
- props: {
26
- // 付款方式
27
- payment: {},
28
- // 用户信息
29
- row: {},
30
- // 付款金额
31
- money: {}
32
- },
33
- data () {
34
- return {
35
- // 付款码弹框显示
36
- paymentCodeShow: false,
37
- // 付款码值
38
- paymentCode: null,
39
- // 付款码流程控制
40
- paycoderesolve: null,
41
- // 付款码返回数据
42
- paymentCodeReturnData: {},
43
- // 定时器
44
- timer: null,
45
- // 收费成功id
46
- sellinggasId: null
47
- }
48
- },
49
- created () {
50
- },
51
- ready () {
52
- },
53
- methods: {
54
- // 返回结果为true意味着可以通行
55
- flowPath () {
56
- return new Promise((resolve) => {
57
- this.paycoderesolve = resolve
58
- // 如果是付款码支付则显示界面扫用户付款码收钱
59
- if (this.payment.toString().indexOf('&') !== -1) {
60
- this.paymentCodeShow = true
61
- this.paycodefocus()
62
- } else {
63
- this.paycoderesolve({msg: '不是付款码支付', result: true})
64
- }
65
- })
66
- },
67
- // 付款码框获得焦点
68
- paycodefocus () {
69
- this.$nextTick(() => {
70
- this.$els.paycode.focus()
71
- })
72
- },
73
- // 付款码支付流程
74
- async ConfirmCode () {
75
- let data = {
76
- f_userinfo_id: this.row ? this.row.f_userinfo_id : null,
77
- f_user_id: this.row ? this.row.f_user_id : null,
78
- f_userfiles_id: this.row ? this.row.f_userfiles_id : null,
79
- money: this.money,
80
- f_payment: this.payment,
81
- auth_code: this.paymentCode,
82
- filiale: this.$login.f.orgid,
83
- body: this.$login.f.orgs
84
- }
85
- let res = await this.$resetpost('rs/logic/WeiXinPay', data, {resolveMsg: null, rejectMsg: '服务器内部出错,'})
86
- this.paymentCodeReturnData = res = res.data
87
- if (res.result_msg == '支付确认成功') {
88
- this.paycoderesolve({msg: '支付完成', result: true})
89
- this.$closeAlert()
90
- } else if (res.result_msg == '支付结果未知') {
91
- // 支付结果未知, 根据商户订单号继续查询
92
- this.$showAlert(`正在查询用户付款状态,请勿进行任何操作,耐心等待,如长时间未响应可手动取消`, 'warning')
93
- let self = this
94
- // 启动定时器之前先关闭定时器,防止之前的定时器未关闭
95
- if (this.timer) {
96
- this.closeTimer()
97
- }
98
- let times = 1
99
- this.timer = setInterval(async () => {
100
- times++
101
- let res1 = await self.$resetpost('rs/logic/WeiXinPayStatus', res, {resolveMsg: null, rejectMsg: '付款码支付查询出错,'})
102
- res1 = res1.data
103
- // 支付成功关闭定时器
104
- if (res1.result_msg == '支付确认成功') {
105
- self.paycoderesolve({msg: '支付完成', result: true})
106
- self.closeTimer()
107
- return
108
- }
109
- if (times > 24) {
110
- self.$showAlert(`多次查询未成功,请重新扫描用户付款码`, 'danger')
111
- self.closeTimer()
112
- }
113
- }, 5000)
114
- } else {
115
- this.$showAlert(`${res.result_msg}, 请重新扫描用户付款码`, 'danger')
116
- }
117
- // 清空付款码
118
- this.paymentCode = ''
119
- },
120
- // 付款成功更新收费记录订单号
121
- async updateSellinggas () {
122
- if (this.payment.toString().indexOf('&') !== -1) {
123
- let sqldata = `update t_sellinggas set f_serial_id = '${this.paymentCodeReturnData.f_out_trade_no}' where id = '${this.sellinggasId}'`
124
- await this.$resetpost('rs/logic/runSQL', {data: {sql: sqldata}}, {resolveMsg: null, rejectMsg: '更新收费记录订单号失败'})
125
- }
126
- },
127
- // 关闭定时器
128
- closeTimer () {
129
- console.log('关闭定时器')
130
- clearInterval(this.timer)
131
- this.timer = null
132
- },
133
- closeCode () {
134
- this.$showMessage('取消后无法继续收款,确定取消吗?', ['confirm', 'cancel']).then((res) => {
135
- if (res == 'confirm') {
136
- this.paymentCodeShow = false
137
- this.$closeAlert()
138
- this.paycoderesolve({msg: '支付取消', result: false})
139
- this.closeTimer()
140
- }
141
- })
142
- }
143
- }
144
- }
145
- </script>
146
-
147
- <style lang="less">
148
-
149
- </style>
1
+ <template>
2
+ <div id='PaymentCode'>
3
+ <modal :show.sync="paymentCodeShow" backdrop="false">
4
+ <header slot="modal-header" class="modal-header">
5
+ <h4 class="modal-title">请扫描用户付款码</h4>
6
+ </header>
7
+ <article slot="modal-body" class="modal-body">
8
+ <div class="form-horizontal">
9
+ <div class="form-group">
10
+ <input type="text" class="form-control" @keyup.enter="ConfirmCode" @blur="paycodefocus"
11
+ v-model="paymentCode" placeholder="请扫描用户付款码" v-el:paycode>
12
+ </div>
13
+ </div>
14
+ </article>
15
+ <footer slot="modal-footer" class="modal-footer">
16
+ <button type="button" class="btn btn-default" @click='closeCode'>取消</button>
17
+ </footer>
18
+ </modal>
19
+ </div>
20
+ </template>
21
+
22
+ <script>
23
+ export default {
24
+ name: 'PaymentCode',
25
+ props: {
26
+ // 付款方式
27
+ payment: {},
28
+ // 用户信息
29
+ row: {},
30
+ // 付款金额
31
+ money: {}
32
+ },
33
+ data () {
34
+ return {
35
+ // 付款码弹框显示
36
+ paymentCodeShow: false,
37
+ // 付款码值
38
+ paymentCode: null,
39
+ // 付款码流程控制
40
+ paycoderesolve: null,
41
+ // 付款码返回数据
42
+ paymentCodeReturnData: {},
43
+ // 定时器
44
+ timer: null,
45
+ // 收费成功id
46
+ sellinggasId: null
47
+ }
48
+ },
49
+ created () {
50
+ },
51
+ ready () {
52
+ },
53
+ methods: {
54
+ // 返回结果为true意味着可以通行
55
+ flowPath () {
56
+ return new Promise((resolve) => {
57
+ this.paycoderesolve = resolve
58
+ // 如果是付款码支付则显示界面扫用户付款码收钱
59
+ if (this.payment.toString().indexOf('&') !== -1) {
60
+ this.paymentCodeShow = true
61
+ this.paycodefocus()
62
+ } else {
63
+ this.paycoderesolve({msg: '不是付款码支付', result: true})
64
+ }
65
+ })
66
+ },
67
+ // 付款码框获得焦点
68
+ paycodefocus () {
69
+ this.$nextTick(() => {
70
+ this.$els.paycode.focus()
71
+ })
72
+ },
73
+ // 付款码支付流程
74
+ async ConfirmCode () {
75
+ // 扫完一次码之后失去焦点,避免重复扫码
76
+ this.paymentCodeShow = false
77
+ let data = {
78
+ f_userinfo_id: this.row ? this.row.f_userinfo_id : null,
79
+ f_user_id: this.row ? this.row.f_user_id : null,
80
+ f_userfiles_id: this.row ? this.row.f_userfiles_id : null,
81
+ money: this.money,
82
+ f_payment: this.payment,
83
+ auth_code: this.paymentCode,
84
+ filiale: this.$login.f.orgid,
85
+ body: this.$login.f.orgs
86
+ }
87
+ let res = await this.$resetpost('rs/logic/WeiXinPay', data, {resolveMsg: null, rejectMsg: '服务器内部出错,'})
88
+ this.paymentCodeReturnData = res = res.data
89
+ if (res.result_msg == '支付确认成功') {
90
+ this.paycoderesolve({msg: '支付完成', result: true})
91
+ this.$closeAlert()
92
+ } else if (res.result_msg == '支付结果未知') {
93
+ // 支付结果未知, 根据商户订单号继续查询
94
+ this.$showAlert(`正在查询用户付款状态,请勿进行任何操作,耐心等待,如长时间未响应可手动取消`, 'warning')
95
+ let self = this
96
+ // 启动定时器之前先关闭定时器,防止之前的定时器未关闭
97
+ if (this.timer) {
98
+ this.closeTimer()
99
+ }
100
+ let times = 1
101
+ this.timer = setInterval(async () => {
102
+ times++
103
+ let res1 = await self.$resetpost('rs/logic/WeiXinPayStatus', res, {resolveMsg: null, rejectMsg: '付款码支付查询出错,'})
104
+ res1 = res1.data
105
+ // 支付成功关闭定时器
106
+ if (res1.result_msg == '支付确认成功') {
107
+ self.paycoderesolve({msg: '支付完成', result: true})
108
+ self.closeTimer()
109
+ return
110
+ }
111
+ if (times > 24) {
112
+ self.$showAlert(`多次查询未成功,请重新扫描用户付款码`, 'danger')
113
+ self.closeTimer()
114
+ }
115
+ }, 5000)
116
+ } else {
117
+ this.$showAlert(`${res.result_msg}, 请重新扫描用户付款码`, 'danger')
118
+ }
119
+ // 清空付款码
120
+ this.paymentCode = ''
121
+ },
122
+ // 付款成功更新收费记录订单号
123
+ async updateSellinggas () {
124
+ if (this.payment.toString().indexOf('&') !== -1) {
125
+ let sqldata = `update t_sellinggas set f_serial_id = '${this.paymentCodeReturnData.f_out_trade_no}' where id = '${this.sellinggasId}'`
126
+ await this.$resetpost('rs/logic/runSQL', {data: {sql: sqldata}}, {resolveMsg: null, rejectMsg: '更新收费记录订单号失败'})
127
+ }
128
+ },
129
+ // 关闭定时器
130
+ closeTimer () {
131
+ console.log('关闭定时器')
132
+ clearInterval(this.timer)
133
+ this.timer = null
134
+ },
135
+ closeCode () {
136
+ this.$showMessage('取消后无法继续收款,确定取消吗?', ['confirm', 'cancel']).then((res) => {
137
+ if (res == 'confirm') {
138
+ this.paymentCodeShow = false
139
+ this.$closeAlert()
140
+ this.paycoderesolve({msg: '支付取消', result: false})
141
+ this.closeTimer()
142
+ }
143
+ })
144
+ }
145
+ }
146
+ }
147
+ </script>
148
+
149
+ <style lang="less">
150
+
151
+ </style>
@@ -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: {
@@ -237,9 +237,11 @@
237
237
  </div>
238
238
  </article>
239
239
  <footer slot="modal-footer" class="modal-footer">
240
- <button type="button" class="button_search btn-ln fr" @click='valveoperate(true)'>开阀</button>
240
+ <button type="button" class="btn btn-info btn-ln fr" @click='valveoperate("权限关阀")'>权限关阀</button>
241
241
  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
242
- <button type="button" class="btn btn-info btn-ln fr" @click='valveoperate(false)'>关阀</button>
242
+ <button type="button" class="button_search btn-ln fr" @click='valveoperate("开阀")'>开阀</button>
243
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
244
+ <button type="button" class="btn btn-info btn-ln fr" @click='valveoperate("关阀")'>关阀</button>
243
245
  </footer>
244
246
  </modal>
245
247
  <!-- 销户-->
@@ -410,18 +412,31 @@
410
412
  },
411
413
  // 开关阀操作
412
414
  async valveoperate (oper) {
413
- let msg = oper ? '开阀' : '关阀'
415
+ console.log('oper----------------',oper)
416
+ let msg = ''
417
+ let nnum
418
+ if (oper === '权限关阀'){
419
+ msg = '权限关阀'
420
+ nnum = 2
421
+ } else if (oper === '关阀') {
422
+ msg = '手动关阀'
423
+ nnum = 0
424
+ }else {
425
+ msg = '手动开阀'
426
+ nnum = 1
427
+ }
414
428
  let datas = {
415
429
  instructType: '阀门控制',
416
- instructTitle: `手动${msg}`,
430
+ instructTitle: `${msg}`,
417
431
  condition: `t_userfiles.f_userfiles_id='${this.row.f_userfiles_id}'`,
418
432
  meterBrandName: this.row.f_alias,
419
433
  f_instruct_state: '待发送',
420
434
  inputtor: Vue.$login.f.name,
421
435
  reasonInfo: this.operateReason,
422
436
  meternumberf: this.row.f_meternumber,
423
- contentData: {isOpen: oper ? 1 : 0}
437
+ contentData: {isOpen: nnum}
424
438
  }
439
+ console.log('-------------------->{data}',datas)
425
440
  await this.$resetpost('rs/logic/iot_saveInstruct', {data: datas},
426
441
  {warnMsg: `确定要进行${msg}操作吗?`, resolveMsg: `${msg}成功`, rejectMsg: `${msg}失败`}).then(res => {
427
442
  this.valve = false