sale-client 3.5.148-2 → 3.5.150

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.
@@ -1,196 +1,195 @@
1
- var express = require('express')
2
- var webpack = require('webpack')
3
- var config = require('./webpack.dev.conf')
4
- var proxyMiddleware = require('http-proxy-middleware')
5
- // var httpProxy = require('http-proxy')
6
-
7
- var app = express()
8
- var compiler = webpack(config)
9
- // var proxy = httpProxy.createProxyServer()
10
-
11
- // Define HTTP proxies to your custom API backend
12
- // https://github.com/chimurai/http-proxy-middleware
13
- var bendi = 'http://121.36.106.17:8400', bendi1 = 'http://121.36.106.17:8400/'
14
- // 公司测试服务
15
- // var fuwu = 'http://192.168.50.4:8400'
16
- // 中邑
17
- var fuwu = 'http://47.93.217.125:8400'
18
- // var fuwu = 'http://39.108.82.124:8400'
19
- // var fuwu = 'http://47.93.217.125:8400'
20
- // var fuwu = 'http://121.36.106.17:8400/'
21
- // 铜川正式
22
- // var fuwu = 'http://61.134.55.234:9999/'
23
- // 铜川测试
24
- // var fuwu = 'http://61.134.55.234:9999/'
25
- // var fuwu = 'http://60.222.250.39:8300/'
26
- // 韶关
27
- // var fuwu = 'http://119.146.1.106:8300/'
28
- // 巩义测试服务
29
- // var fuwu = 'http://192.168.0.227:8400'
30
- // 燎原测试服务
31
- // var fuwu = 'http://121.41.19.238:8400 '
32
- // var fuwu = 'http://121.41.19.238:9001/'
33
-
34
- // var fuwu = 'http://139.214.92.34:8301/'
35
-
36
- var proxyTable = {
37
- // '/'
38
- // '/rs/logic/stopBasicLivingNew':{
39
- // target:'http://127.0.0.1:8080'
40
- // },
41
- // '/rs/logic/getBatchOperaPro':{
42
- // target:'http://127.0.0.1:8080'
43
- // },
44
- // '/rs/sql/sale_getUser':{
45
- // target:'http://127.0.0.1:8080'
46
- // },
47
- // '/rs/logic/getOperBtns':{
48
- // target:'http://127.0.0.1:8080'
49
- // },
50
- // '/rs/file/uploadFile':{
51
- // target:'http://127.0.0.1:8080'
52
- // },
53
- // '/rs/business/batchRunExcelDefault/filemanage_fileSave/newSettleFileImport':{
54
- // target:'http://127.0.0.1:8080'
55
- // },
56
- // '/rs/business/batchRunNew/BatchmachineDownHand/machineDownHand':{
57
- // target:'http:127.0.0.1:8080'
58
- // },
59
- // '/rs/sql/getDownPlan':{
60
- // target:'http:127.0.0.1:8080'
61
- // },
62
- // '/rs/logic/saleExport': {
63
- // target: fuwu
64
- // },
65
- // '/rs/logic/saleGetExportProgress': {
66
- // target: fuwu
67
- // },
68
- // '/rs/logic/getWarningMsg': {
69
- // target: 'http://localhost:8080/'
70
- // },
71
- '/rs/file': {
72
- target: fuwu
73
- },
74
- '/files': {
75
- target: fuwu
76
- },
77
- // 查找资源服务数据
78
- '/rs/search': {
79
- target: fuwu
80
- },
81
- // 查找资源服务数据
82
- '/rs/logic/getLogin': {
83
- target: fuwu
84
- },
85
- // 查找资源服务数据
86
- '/rs/logic/getInitData': {
87
- target: fuwu
88
- },
89
- '/rs/logic/getSaleInitData': {
90
- target: fuwu
91
- },
92
- '/invoice': {
93
- target: fuwu
94
- },
95
- // 用户登录服务地址
96
- '/rs/user': {
97
- target: fuwu
98
- },
99
- '/rs/path/getParams': {
100
- target: fuwu
101
- },
102
- '/rs/data': {
103
- target: fuwu
104
- },
105
- '/rs/license': {
106
- target: fuwu
107
- },
108
- '/rs/db': {
109
- target: fuwu
110
- },
111
- '/excel': {
112
- target: fuwu
113
- },
114
- '/rs/config': {
115
- target: fuwu
116
- },
117
- '/rs/sql/getLicenseById': {
118
- target: fuwu
119
- },
120
- '/rs/sql/manage_getarealist': {
121
- target: fuwu
122
- },
123
- '/rs/sql/manage_getstreetlist': {
124
- target: fuwu
125
- },
126
- '/rs/report': {
127
- target: 'http://121.36.106.17:8400/'
128
- },
129
- '/rs/vue': {
130
- target: fuwu
131
- },
132
- '/webmeter': {
133
- target: 'http://192.168.50.4:8450'
134
- },
135
- '/rs': {
136
- // target: 'http://192.168.30.63:8081/'
137
- // target: 'http://121.36.106.17:8400/'
138
- target: fuwu
139
- }
140
- }
141
-
142
- var devMiddleware = require('webpack-dev-middleware')(compiler, {
143
- publicPath: config.output.publicPath,
144
- stats: {
145
- colors: true,
146
- chunks: false
147
- }
148
- })
149
-
150
- var hotMiddleware = require('webpack-hot-middleware')(compiler)
151
- // force page reload when html-webpack-plugin template changes
152
- compiler.plugin('compilation', function (compilation) {
153
- compilation.plugin('html-webpack-plugin-after-emit', function (data, cb) {
154
- hotMiddleware.publish({action: 'reload'})
155
- cb()
156
- })
157
- })
158
-
159
- // proxy api requests
160
- Object.keys(proxyTable).forEach(function (context) {
161
- var options = proxyTable[context]
162
- if (typeof options === 'string') {
163
- options = {target: options}
164
- }
165
- app.use(proxyMiddleware(context, options))
166
- })
167
-
168
- // handle fallback for HTML5 history API
169
- app.use(require('connect-history-api-fallback')())
170
- // app.use(function (req, res, next) {
171
- // res.header('Access-Control-Allow-Origin', '*')
172
- // res.header('Access-Control-Allow-Headers', 'X-Requested-With')
173
- // res.header('Access-Control-Allow-Methods', 'PUT, POST, GET,DELETE, OPTIONS')
174
- // res.header('X-Powered-By', '3,2,1')
175
- // res.header('Access-Control-Allow-Credentials', 'true')
176
- // res.header('Content-Type', 'application/json;charset=utf-8')
177
- // next()
178
- // })
179
-
180
- // serve webpack bundle output
181
- app.use(devMiddleware)
182
-
183
- // enable hot-reload and state-preserving
184
- // compilation error display
185
- app.use(hotMiddleware)
186
-
187
- // serve pure static assets
188
- app.use('/static', express.static('./static'))
189
-
190
- module.exports = app.listen(8089, function (err) {
191
- if (err) {
192
- console.log(err)
193
- return
194
- }
195
- console.log('Listening at http://localhost:8089')
196
- })
1
+ var express = require('express')
2
+ var webpack = require('webpack')
3
+ var config = require('./webpack.dev.conf')
4
+ var proxyMiddleware = require('http-proxy-middleware')
5
+ // var httpProxy = require('http-proxy')
6
+
7
+ var app = express()
8
+ var compiler = webpack(config)
9
+ // var proxy = httpProxy.createProxyServer()
10
+
11
+ // Define HTTP proxies to your custom API backend
12
+ // https://github.com/chimurai/http-proxy-middleware
13
+ var bendi = 'http://121.36.106.17:8400', bendi1 = 'http://121.36.106.17:8400/'
14
+ // 公司测试服务
15
+ // var fuwu = 'http://192.168.50.4:8400'
16
+ // var fuwu = 'http://39.99.85.14:8400'
17
+ var fuwu = 'http://39.108.82.124:8400'
18
+ // var fuwu = 'http://47.93.217.125:8400'
19
+ // var fuwu = 'http://121.36.106.17:8400/'
20
+ // 铜川正式
21
+ // var fuwu = 'http://61.134.55.234:9999/'
22
+ // 铜川测试
23
+ // var fuwu = 'http://61.134.55.234:9999/'
24
+ // var fuwu = 'http://60.222.250.39:8300/'
25
+ // 韶关
26
+ // var fuwu = 'http://119.146.1.106:8300/'
27
+ // 巩义测试服务
28
+ // var fuwu = 'http://192.168.0.227:8400'
29
+ // 燎原测试服务
30
+ // var fuwu = 'http://121.41.19.238:8400 '
31
+ // var fuwu = 'http://121.41.19.238:9001/'
32
+
33
+ // var fuwu = 'http://139.214.92.34:8301/'
34
+
35
+ var proxyTable = {
36
+ // '/'
37
+ // '/rs/logic/stopBasicLivingNew':{
38
+ // target:'http://127.0.0.1:8080'
39
+ // },
40
+ // '/rs/logic/getBatchOperaPro':{
41
+ // target:'http://127.0.0.1:8080'
42
+ // },
43
+ // '/rs/sql/sale_getUser':{
44
+ // target:'http://127.0.0.1:8080'
45
+ // },
46
+ // '/rs/logic/getOperBtns':{
47
+ // target:'http://127.0.0.1:8080'
48
+ // },
49
+ // '/rs/file/uploadFile':{
50
+ // target:'http://127.0.0.1:8080'
51
+ // },
52
+ // '/rs/business/batchRunExcelDefault/filemanage_fileSave/newSettleFileImport':{
53
+ // target:'http://127.0.0.1:8080'
54
+ // },
55
+ // '/rs/business/batchRunNew/BatchmachineDownHand/machineDownHand':{
56
+ // target:'http:127.0.0.1:8080'
57
+ // },
58
+ // '/rs/sql/getDownPlan':{
59
+ // target:'http:127.0.0.1:8080'
60
+ // },
61
+ // '/rs/logic/saleExport': {
62
+ // target: fuwu
63
+ // },
64
+ // '/rs/logic/saleGetExportProgress': {
65
+ // target: fuwu
66
+ // },
67
+ // '/rs/logic/getWarningMsg': {
68
+ // target: 'http://localhost:8080/'
69
+ // },
70
+ '/rs/file': {
71
+ target: fuwu
72
+ },
73
+ '/files': {
74
+ target: fuwu
75
+ },
76
+ // 查找资源服务数据
77
+ '/rs/search': {
78
+ target: fuwu
79
+ },
80
+ // 查找资源服务数据
81
+ '/rs/logic/getLogin': {
82
+ target: fuwu
83
+ },
84
+ // 查找资源服务数据
85
+ '/rs/logic/getInitData': {
86
+ target: fuwu
87
+ },
88
+ '/rs/logic/getSaleInitData': {
89
+ target: fuwu
90
+ },
91
+ '/invoice': {
92
+ target: fuwu
93
+ },
94
+ // 用户登录服务地址
95
+ '/rs/user': {
96
+ target: fuwu
97
+ },
98
+ '/rs/path/getParams': {
99
+ target: fuwu
100
+ },
101
+ '/rs/data': {
102
+ target: fuwu
103
+ },
104
+ '/rs/license': {
105
+ target: fuwu
106
+ },
107
+ '/rs/db': {
108
+ target: fuwu
109
+ },
110
+ '/excel': {
111
+ target: fuwu
112
+ },
113
+ '/rs/config': {
114
+ target: fuwu
115
+ },
116
+ '/rs/sql/getLicenseById': {
117
+ target: fuwu
118
+ },
119
+ '/rs/sql/manage_getarealist': {
120
+ target: fuwu
121
+ },
122
+ '/rs/sql/manage_getstreetlist': {
123
+ target: fuwu
124
+ },
125
+ '/rs/report': {
126
+ target: 'http://121.36.106.17:8400/'
127
+ },
128
+ '/rs/vue': {
129
+ target: fuwu
130
+ },
131
+ '/webmeter': {
132
+ target: 'http://192.168.50.4:8450'
133
+ },
134
+ '/rs': {
135
+ // target: 'http://192.168.30.63:8081/'
136
+ // target: 'http://121.36.106.17:8400/'
137
+ target: fuwu
138
+ }
139
+ }
140
+
141
+ var devMiddleware = require('webpack-dev-middleware')(compiler, {
142
+ publicPath: config.output.publicPath,
143
+ stats: {
144
+ colors: true,
145
+ chunks: false
146
+ }
147
+ })
148
+
149
+ var hotMiddleware = require('webpack-hot-middleware')(compiler)
150
+ // force page reload when html-webpack-plugin template changes
151
+ compiler.plugin('compilation', function (compilation) {
152
+ compilation.plugin('html-webpack-plugin-after-emit', function (data, cb) {
153
+ hotMiddleware.publish({action: 'reload'})
154
+ cb()
155
+ })
156
+ })
157
+
158
+ // proxy api requests
159
+ Object.keys(proxyTable).forEach(function (context) {
160
+ var options = proxyTable[context]
161
+ if (typeof options === 'string') {
162
+ options = {target: options}
163
+ }
164
+ app.use(proxyMiddleware(context, options))
165
+ })
166
+
167
+ // handle fallback for HTML5 history API
168
+ app.use(require('connect-history-api-fallback')())
169
+ // app.use(function (req, res, next) {
170
+ // res.header('Access-Control-Allow-Origin', '*')
171
+ // res.header('Access-Control-Allow-Headers', 'X-Requested-With')
172
+ // res.header('Access-Control-Allow-Methods', 'PUT, POST, GET,DELETE, OPTIONS')
173
+ // res.header('X-Powered-By', '3,2,1')
174
+ // res.header('Access-Control-Allow-Credentials', 'true')
175
+ // res.header('Content-Type', 'application/json;charset=utf-8')
176
+ // next()
177
+ // })
178
+
179
+ // serve webpack bundle output
180
+ app.use(devMiddleware)
181
+
182
+ // enable hot-reload and state-preserving
183
+ // compilation error display
184
+ app.use(hotMiddleware)
185
+
186
+ // serve pure static assets
187
+ app.use('/static', express.static('./static'))
188
+
189
+ module.exports = app.listen(8089, function (err) {
190
+ if (err) {
191
+ console.log(err)
192
+ return
193
+ }
194
+ console.log('Listening at http://localhost:8089')
195
+ })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sale-client",
3
- "version": "3.5.148-2",
3
+ "version": "3.5.150",
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">
@@ -652,7 +652,7 @@ export default {
652
652
  f_depid: this.$login.f.depids,
653
653
  f_depname: this.$login.f.deps,
654
654
  f_perform_date: this.newinfo.f_perform_date,
655
- f_change_reason: ''
655
+ f_change_reason: '换表调价'
656
656
  }
657
657
 
658
658
  await this.$resetpost('rs/logic/user_pricechange', {data: param}, {resolveMsg: '更新气价成功', rejectMsg: '更新气价失败'})
@@ -656,7 +656,7 @@ export default {
656
656
  f_depid: this.$login.f.depids,
657
657
  f_depname: this.$login.f.deps,
658
658
  f_perform_date: this.newinfo.f_perform_date,
659
- f_change_reason: ''
659
+ f_change_reason: '换表调价'
660
660
  }
661
661
 
662
662
  await this.$resetpost('rs/logic/user_pricechange', {data: param}, {resolveMsg: '更新气价成功', rejectMsg: '更新气价失败'})
@@ -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,12 +414,13 @@
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: [],
423
424
  imgshow: false,
424
425
  criteriaShow: false,
425
426
  orgCondtionStr: '',
@@ -444,8 +445,8 @@
444
445
  'f_adjustable_name': '调压箱名称',
445
446
  'f_inputtor': '抄表员'
446
447
  },
447
- auditState:[{label: '全部', value: ''}, {label: '已审核', value: '已抄表'}, {label: '未审核', value: '待审核'}],
448
- auditState1:[{label: '全部', value: ''}, {label: '审核失败', value: '审核失败'}],
448
+ auditState: [{label: '全部', value: ''}, {label: '已审核', value: '已抄表'}, {label: '未审核', value: '待审核'}],
449
+ auditState1: [{label: '全部', value: ''}, {label: '审核失败', value: '审核失败'}],
449
450
  meters: [{label: '全部', value: ''}, {label: '机表', value: '机表'}, {label: '物联网表', value: '物联网表'}],
450
451
  resultstate: this.$appdata.getParam('抄表结果状态'),
451
452
  meterstates: this.$appdata.getParam('抄表状态') ? [{
@@ -475,7 +476,7 @@
475
476
  methods: {
476
477
  // 修正本期底数
477
478
  amend (row) {
478
- let tablebase = window.prompt('请输入你要修正的底数值,上期底数:'+ row.f_meter_base)
479
+ let tablebase = window.prompt('请输入你要修正的底数值,上期底数:' + row.f_meter_base)
479
480
  if (!tablebase) return
480
481
  if (tablebase < 0) {
481
482
  this.$showAlert(`底数不能小于0,请注意!`, 'warning', 2000)
@@ -596,9 +597,9 @@
596
597
  this.imgshow = false
597
598
  },
598
599
  imgShow (val) {
599
- console.log("-----------val2:",val)
600
+ console.log('-----------val2:', val)
600
601
  this.imgfilename = `rs/image/file/` + val
601
- console.log("-----------imgfilename2:",this.imgfilename)
602
+ console.log('-----------imgfilename2:', this.imgfilename)
602
603
  this.imgshow = true
603
604
  },
604
605
  async getaddress () {
@@ -632,6 +633,17 @@
632
633
  } else {
633
634
  args.condition = `${args.condition}` + this.orgCondtionStr
634
635
  }
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
+ }
635
647
  this.excelCondition = args.condition
636
648
  this.$refs.paged.$refs.grid.selectInit()
637
649
  this.model.search(args.condition, args.model)
@@ -696,7 +708,7 @@
696
708
  },
697
709
  loadMeterBooks () {
698
710
  this.meterbooks = this.$GetSaleParam.getMeterBooks()
699
- },
711
+ }
700
712
 
701
713
  },
702
714
  computed: {
@@ -660,7 +660,7 @@ export default {
660
660
  f_depid: this.$login.f.depids,
661
661
  f_depname: this.$login.f.deps,
662
662
  f_perform_date: this.newinfo.f_perform_date,
663
- f_change_reason: ''
663
+ f_change_reason: '换表调价'
664
664
  }
665
665
 
666
666
  await this.$resetpost('rs/logic/user_pricechange', {data: param}, {resolveMsg: '更新气价成功', rejectMsg: '更新气价失败'})
@@ -665,7 +665,7 @@ export default {
665
665
  f_depid: this.$login.f.depids,
666
666
  f_depname: this.$login.f.deps,
667
667
  f_perform_date: this.newinfo.f_perform_date,
668
- f_change_reason: ''
668
+ f_change_reason: '换表调价'
669
669
  }
670
670
 
671
671
  await this.$resetpost('rs/logic/user_pricechange', {data: param}, {resolveMsg: '更新气价成功', rejectMsg: '更新气价失败'})
@@ -652,7 +652,7 @@ export default {
652
652
  f_depid: this.$login.f.depids,
653
653
  f_depname: this.$login.f.deps,
654
654
  f_perform_date: this.newinfo.f_perform_date,
655
- f_change_reason: ''
655
+ f_change_reason: '换表调价'
656
656
  }
657
657
 
658
658
  await this.$resetpost('rs/logic/user_pricechange', {data: param}, {resolveMsg: '更新气价成功', rejectMsg: '更新气价失败'})
@@ -656,7 +656,7 @@ export default {
656
656
  f_depid: this.$login.f.depids,
657
657
  f_depname: this.$login.f.deps,
658
658
  f_perform_date: this.newinfo.f_perform_date,
659
- f_change_reason: ''
659
+ f_change_reason: '换表调价'
660
660
  }
661
661
 
662
662
  await this.$resetpost('rs/logic/user_pricechange', {data: param}, {resolveMsg: '更新气价成功', rejectMsg: '更新气价失败'})
@@ -473,7 +473,7 @@ export default {
473
473
  f_depid: this.$login.f.depids,
474
474
  f_depname: this.$login.f.deps,
475
475
  f_perform_date: this.newinfo.f_perform_date,
476
- f_change_reason: ''
476
+ f_change_reason: '换表调价'
477
477
  }
478
478
 
479
479
  await this.$resetpost('rs/logic/user_pricechange', {data: param}, {resolveMsg: '更新气价成功', rejectMsg: '更新气价失败'})
@@ -432,7 +432,7 @@ export default {
432
432
  f_depid: this.$login.f.depids,
433
433
  f_depname: this.$login.f.deps,
434
434
  f_perform_date: this.newinfo.f_perform_date,
435
- f_change_reason: ''
435
+ f_change_reason: '换表调价'
436
436
  }
437
437
 
438
438
  await this.$resetpost('rs/logic/user_pricechange', {data: param}, {resolveMsg: '更新气价成功', rejectMsg: '更新气价失败'})
@@ -443,7 +443,7 @@ export default {
443
443
  f_depid: this.$login.f.depids,
444
444
  f_depname: this.$login.f.deps,
445
445
  f_perform_date: this.newinfo.f_perform_date,
446
- f_change_reason: ''
446
+ f_change_reason: '换表调价'
447
447
  }
448
448
 
449
449
  await this.$resetpost('rs/logic/user_pricechange', {data: param}, {resolveMsg: '更新气价成功', rejectMsg: '更新气价失败'})
@@ -592,7 +592,7 @@ export default {
592
592
  f_depid: this.$login.f.depids,
593
593
  f_depname: this.$login.f.deps,
594
594
  f_perform_date: this.newinfo.f_perform_date,
595
- f_change_reason: ''
595
+ f_change_reason: '换表调价'
596
596
  }
597
597
 
598
598
  await this.$resetpost('rs/logic/user_pricechange', {data: param}, {resolveMsg: '更新气价成功', rejectMsg: '更新气价失败'})
@@ -132,11 +132,12 @@ export default {
132
132
  id: ticket_id,
133
133
  f_bill_code: req.fpDm,
134
134
  f_bill_number: req.fpHm,
135
- f_bill_url: req.shareurl.replace('/s/', `/s/downloadPdf?pwd=${req.sharecode}&authCode=`).replace('\\', ''),
136
- f_sign_result: req.msg,
135
+ f_bill_url: req.fileUrl.replace('d:\\qianNengInvoiceFile', '/Download'),
136
+ f_sign_url: req.shareurl,
137
+ f_sign_result: req.sharecode,
137
138
  f_bill_state: req.status
138
139
  }
139
- this.eticket_src = req.shareurl.replace('/s/', `/s/downloadPdf?pwd=${req.sharecode}&authCode=`).replace('\\', '')
140
+ this.eticket_src = 'https://qnjtkf.cn:7400' + model.f_bill_url
140
141
  } else if (req.status === '开票中') {
141
142
  model = {
142
143
  id: ticket_id,
@@ -303,11 +304,12 @@ export default {
303
304
  f_eticket_id: ticket_id,
304
305
  f_bill_code: req.fpDm,
305
306
  f_bill_number: req.fpHm,
306
- f_bill_url: req.shareurl.replace('/s/', `/s/downloadPdf?pwd=${req.sharecode}&authCode=`).replace('\\', ''),
307
- f_sign_result: req.msg,
307
+ f_bill_url: req.fileUrl.replace('d:\\qianNengInvoiceFile', '/Download'),
308
+ f_sign_url: req.shareurl,
309
+ f_sign_result: req.sharecode,
308
310
  f_bill_state: req.status
309
311
  })
310
- this.eticket_src = req.shareurl.replace('/s/', `/s/downloadPdf?pwd=${req.sharecode}&authCode=`).replace('\\', '')
312
+ this.eticket_src = 'https://qnjtkf.cn:7400' + req.fileUrl.replace('d:\\qianNengInvoiceFile', '/Download')
311
313
  } else if (req && req.status !== '开票中') {
312
314
  clearInterval(interval)
313
315
  // TODO 失败后保存发票详情
@@ -431,7 +431,7 @@ export default {
431
431
  f_depid: this.$login.f.depids,
432
432
  f_depname: this.$login.f.deps,
433
433
  f_perform_date: this.newinfo.f_perform_date,
434
- f_change_reason: ''
434
+ f_change_reason: '换表调价'
435
435
  }
436
436
 
437
437
  await this.$resetpost('rs/logic/user_pricechange', {data: param}, {resolveMsg: '更新气价成功', rejectMsg: '更新气价失败'})