sale-client 3.5.151 → 3.5.152-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.
@@ -1,195 +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
- // var fuwu = 'http://39.99.85.14:8400'
17
- var fuwu = 'http://121.36.60.63:8800/'
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
- })
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.151",
3
+ "version": "3.5.152-2",
4
4
  "description": "收费模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -58,7 +58,7 @@
58
58
  <footer slot="modal-footer" class="modal-footer">
59
59
  </footer>
60
60
  </modal>
61
- <high-meter-idcard :show.sync="highmetershow" v-if="highmetershow" @photo-finish="newPhoto" v-on:confirminfo="confirmIdCard"></high-meter-idcard>
61
+ <high-meter :show.sync="highmetershow" v-if="highmetershow" @photo-finish="newPhoto" v-on:confirminfo="confirmIdCard"></high-meter>
62
62
 
63
63
  <modal :show.sync="filechangeDetailsShow" v-ref:filechangeDetailsShow backdrop="false" class="filechangeDetailsShow">
64
64
  <header slot="modal-header" class="modal-header" style="text-align: center">
@@ -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">
@@ -53,11 +53,24 @@
53
53
  </template>
54
54
 
55
55
  <script>
56
+ import {HttpResetClass} from "vue-client";
57
+
56
58
  let postGen = async function (self, name) {
57
59
  let url = 'rs/logic/' + name
58
-
60
+ let res
59
61
  // 获取冲正后的记录
60
- let res = await self.$CancelService.cancel(url, self.model, self.data)
62
+ if (name == 'batchPaymentCancel') {
63
+ // 批量的使用进度条模式
64
+ self.model.uuid = self.$login.guid()
65
+ try {
66
+ await self.$CancelService.cancel(url, self.model, self.data, true)
67
+ } catch (e) {}
68
+ self.$showMessage(`正在批量处理中, 请耐心等待...`, [])
69
+ self.getProgress()
70
+ return
71
+ } else {
72
+ res = await self.$CancelService.cancel(url, self.model, self.data)
73
+ }
61
74
  console.log('冲正后的记录。。', res, self.model)
62
75
 
63
76
  // 判断需不需要判断冲正发票(发票管理)
@@ -180,13 +193,32 @@
180
193
  },
181
194
  // 启用发票管理需要对票号进行验证
182
195
  hasValidateBill: false,
183
- validateOk: false
196
+ validateOk: false,
197
+ // 请求对象(批量导入,查询进度使用)
198
+ HttpReset: new HttpResetClass(),
199
+ timer: null
184
200
  }
185
201
  },
186
202
  ready () {
187
203
  readyGen(this)
188
204
  },
189
205
  methods: {
206
+ getProgress () {
207
+ // 启动定时器定时查询处理结果
208
+ this.timer = setInterval(async () => {
209
+ let res = await this.HttpReset.load('POST', 'rs/logic/getBatchOperaPro', {data: {uuid: this.model.uuid}}, {resolveMsg: null, rejectMsg: null})
210
+ if (res.data.msg || res.data.error) {
211
+ clearInterval(this.timer)
212
+ this.$closeMessage()
213
+ if (res.data.error) {
214
+ this.$showAlert(`${res.data.error}`, 'danger')
215
+ return
216
+ }
217
+ await this.$showMessage(res.data.msg)
218
+ this.$dispatch('cancel-success')
219
+ }
220
+ }, 5000)
221
+ },
190
222
  confirm () {
191
223
  // 整理数据
192
224
  let name = this.sortdata()
@@ -104,7 +104,7 @@ import ChangeRecord from './ic_detail/ChangeRecord'
104
104
  import DeveiceRecord from './ic_detail/DeveiceRecord'
105
105
  export default {
106
106
  title: '用户详细信息',
107
- props: ['f_userfiles_id', 'f_userinfo_id'],
107
+ props: ['f_userfiles_id', 'f_userinfo_id','f_userinfo_code'],
108
108
  components: {
109
109
  PriceAdjustmentQueryUser,
110
110
  PriceChangeQueryUser,
@@ -155,6 +155,8 @@ export default {
155
155
  condition = `f_userfiles_id = '${this.f_userfiles_id}'`
156
156
  } else if (this.f_userinfo_id) {
157
157
  condition = `f_userinfo_id = '${this.f_userinfo_id}'`
158
+ }else if (this.f_userinfo_code){
159
+ condition = `f_userinfo_code = '${this.f_userinfo_code}'`
158
160
  }
159
161
 
160
162
  let getBaseInfo = await http.load('POST', 'rs/sql/iot_getUserBaseData',
@@ -755,7 +755,7 @@
755
755
  excelHeaders:{'f_userinfo_code': '客户编号', 'f_user_name': '客户名称', 'f_address': '客户地址', 'f_zones': '片区','phone': '客户手机', 'f_meternumber': '表号','ym_data': '数据年月',
756
756
  'f_last_tablebase': '上期底数', 'f_tablebase': '本期底数', 'f_oughtamount': '用气量', 'overdue': '滞纳金', 'f_oughtfee': '用气金额', 'f_debt_money': '已交金额',
757
757
  'f_actual_arrears': '欠费金额','f_balance': '上期余额','f_curbalance': '本期余额',
758
- 'f_accounts_state': '下账状态', 'f_operate_date': '收费时间', 'f_inputtor': '抄表员', 'f_book_slice_area': '表册片区',
758
+ 'f_accounts_state': '下账状态', 'f_sellinggas_operate_date': '收费时间', 'f_inputtor': '抄表员', 'f_book_slice_area': '表册片区',
759
759
  'f_hand_date': '下发日期', 'f_input_date': '录入日期', 'f_meter_state': '抄表状态', 'f_hand_state': '记录状态',
760
760
  'f_operator': '操作员', 'f_depname': '部门', 'f_orgname': '公司', 'f_surplus_gas': '剩余气量', 'f_haircut_gas': '扣减气量',
761
761
  'f_stair1amount': '一阶气量', 'f_stair1price': '一阶单价', 'f_stair1fee': '一阶气费',
@@ -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: {
@@ -73,7 +73,7 @@
73
73
  pay_method: this.payment[0],
74
74
  }
75
75
  console.log(this.$login.f.f_orgid)
76
- let res = await this.$resetpost('/mispos/rs/logic/CCBMISCodePay', data, {resolveMsg: null, rejectMsg: '服务器内部出错,'},90000)
76
+ let res = await this.$resetpost('/mispos/rs/misposPay/makeOrder', data, {resolveMsg: null, rejectMsg: '服务器内部出错,'},90000)
77
77
  this.misposReturnData = res = res.data
78
78
  if (res.state == 'SUCCESS') {
79
79
  this.posresolve({msg: '支付完成', result: true})