sale-client 3.4.140 → 3.4.143

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,157 +1,157 @@
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://139.9.204.64:8400/'
16
- //铜川正式
17
- // var fuwu = 'http://61.134.55.234:9999/'
18
- //铜川测试
19
- // var fuwu = 'http://61.134.55.234:9999/'
20
- // var fuwu = 'http://60.222.250.39:8300/'
21
- //韶关
22
- // var fuwu = 'http://119.146.1.106:8300/'
23
- // 巩义测试服务
24
- // var fuwu = 'http://192.168.0.227:8400'
25
- // 燎原测试服务
26
- // var fuwu = 'http://121.41.19.238:8400 '
27
- // var fuwu = 'http://121.41.19.238:9001/'
28
-
29
- // var fuwu = 'http://139.214.92.34:8301/'
30
-
31
- var proxyTable = {
32
- '/rs/logic/saleExport': {
33
- target: fuwu
34
- },
35
- '/rs/logic/saleGetExportProgress': {
36
- target: fuwu
37
- },
38
- '/files': {
39
- target: fuwu
40
- },
41
- // 查找资源服务数据
42
- '/rs/search': {
43
- target: fuwu
44
- },
45
- // 查找资源服务数据
46
- '/rs/logic/getLogin': {
47
- target: fuwu
48
- },
49
- // 查找资源服务数据
50
- '/rs/logic/getInitData': {
51
- target: fuwu
52
- },
53
- '/rs/logic/getSaleInitData': {
54
- target: fuwu
55
- },
56
- '/invoice':{
57
- target: fuwu
58
- },
59
- // 用户登录服务地址
60
- '/rs/user': {
61
- target: fuwu
62
- },
63
- '/rs/path/getParams': {
64
- target: fuwu
65
- },
66
- '/rs/data': {
67
- target: fuwu
68
- },
69
- '/rs/license': {
70
- target: fuwu
71
- },
72
- '/rs/db': {
73
- target: fuwu
74
- },
75
- '/excel': {
76
- target: fuwu
77
- },
78
- '/rs/config': {
79
- target: fuwu
80
- },
81
- '/rs/sql/getLicenseById': {
82
- target: fuwu
83
- },
84
- '/rs/sql/manage_getarealist': {
85
- target: fuwu
86
- },
87
- '/rs/sql/manage_getstreetlist': {
88
- target: fuwu
89
- },
90
- '/rs/report': {
91
- target: 'http://121.36.106.17:8400/'
92
- },
93
- '/rs/vue': {
94
- target: fuwu
95
- },
96
- '/rs': {
97
- // target: 'http://192.168.30.63:8081/'
98
- // target: 'http://121.36.106.17:8400/'
99
- target:fuwu
100
- }
101
- }
102
-
103
- var devMiddleware = require('webpack-dev-middleware')(compiler, {
104
- publicPath: config.output.publicPath,
105
- stats: {
106
- colors: true,
107
- chunks: false
108
- }
109
- })
110
-
111
- var hotMiddleware = require('webpack-hot-middleware')(compiler)
112
- // force page reload when html-webpack-plugin template changes
113
- compiler.plugin('compilation', function (compilation) {
114
- compilation.plugin('html-webpack-plugin-after-emit', function (data, cb) {
115
- hotMiddleware.publish({action: 'reload'})
116
- cb()
117
- })
118
- })
119
-
120
- // proxy api requests
121
- Object.keys(proxyTable).forEach(function (context) {
122
- var options = proxyTable[context]
123
- if (typeof options === 'string') {
124
- options = {target: options}
125
- }
126
- app.use(proxyMiddleware(context, options))
127
- })
128
-
129
- // handle fallback for HTML5 history API
130
- app.use(require('connect-history-api-fallback')())
131
- // app.use(function (req, res, next) {
132
- // res.header('Access-Control-Allow-Origin', '*')
133
- // res.header('Access-Control-Allow-Headers', 'X-Requested-With')
134
- // res.header('Access-Control-Allow-Methods', 'PUT, POST, GET,DELETE, OPTIONS')
135
- // res.header('X-Powered-By', '3,2,1')
136
- // res.header('Access-Control-Allow-Credentials', 'true')
137
- // res.header('Content-Type', 'application/json;charset=utf-8')
138
- // next()
139
- // })
140
-
141
- // serve webpack bundle output
142
- app.use(devMiddleware)
143
-
144
- // enable hot-reload and state-preserving
145
- // compilation error display
146
- app.use(hotMiddleware)
147
-
148
- // serve pure static assets
149
- app.use('/static', express.static('./static'))
150
-
151
- module.exports = app.listen(8089, function (err) {
152
- if (err) {
153
- console.log(err)
154
- return
155
- }
156
- console.log('Listening at http://localhost:8089')
157
- })
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://121.36.106.17:8400/'
16
+ //铜川正式
17
+ // var fuwu = 'http://61.134.55.234:9999/'
18
+ //铜川测试
19
+ // var fuwu = 'http://61.134.55.234:9999/'
20
+ // var fuwu = 'http://60.222.250.39:8300/'
21
+ //韶关
22
+ // var fuwu = 'http://119.146.1.106:8300/'
23
+ // 巩义测试服务
24
+ // var fuwu = 'http://192.168.0.227:8400'
25
+ // 燎原测试服务
26
+ // var fuwu = 'http://121.41.19.238:8400 '
27
+ // var fuwu = 'http://121.41.19.238:9001/'
28
+
29
+ // var fuwu = 'http://139.214.92.34:8301/'
30
+
31
+ var proxyTable = {
32
+ '/rs/logic/saleExport': {
33
+ target: fuwu
34
+ },
35
+ '/rs/logic/saleGetExportProgress': {
36
+ target: fuwu
37
+ },
38
+ '/files': {
39
+ target: fuwu
40
+ },
41
+ // 查找资源服务数据
42
+ '/rs/search': {
43
+ target: fuwu
44
+ },
45
+ // 查找资源服务数据
46
+ '/rs/logic/getLogin': {
47
+ target: fuwu
48
+ },
49
+ // 查找资源服务数据
50
+ '/rs/logic/getInitData': {
51
+ target: fuwu
52
+ },
53
+ '/rs/logic/getSaleInitData': {
54
+ target: fuwu
55
+ },
56
+ '/invoice':{
57
+ target: fuwu
58
+ },
59
+ // 用户登录服务地址
60
+ '/rs/user': {
61
+ target: fuwu
62
+ },
63
+ '/rs/path/getParams': {
64
+ target: fuwu
65
+ },
66
+ '/rs/data': {
67
+ target: fuwu
68
+ },
69
+ '/rs/license': {
70
+ target: fuwu
71
+ },
72
+ '/rs/db': {
73
+ target: fuwu
74
+ },
75
+ '/excel': {
76
+ target: fuwu
77
+ },
78
+ '/rs/config': {
79
+ target: fuwu
80
+ },
81
+ '/rs/sql/getLicenseById': {
82
+ target: fuwu
83
+ },
84
+ '/rs/sql/manage_getarealist': {
85
+ target: fuwu
86
+ },
87
+ '/rs/sql/manage_getstreetlist': {
88
+ target: fuwu
89
+ },
90
+ '/rs/report': {
91
+ target: 'http://121.36.106.17:8400/'
92
+ },
93
+ '/rs/vue': {
94
+ target: fuwu
95
+ },
96
+ '/rs': {
97
+ // target: 'http://192.168.30.63:8081/'
98
+ target: 'http://121.36.106.17:8400/'
99
+ // target:fuwu
100
+ }
101
+ }
102
+
103
+ var devMiddleware = require('webpack-dev-middleware')(compiler, {
104
+ publicPath: config.output.publicPath,
105
+ stats: {
106
+ colors: true,
107
+ chunks: false
108
+ }
109
+ })
110
+
111
+ var hotMiddleware = require('webpack-hot-middleware')(compiler)
112
+ // force page reload when html-webpack-plugin template changes
113
+ compiler.plugin('compilation', function (compilation) {
114
+ compilation.plugin('html-webpack-plugin-after-emit', function (data, cb) {
115
+ hotMiddleware.publish({action: 'reload'})
116
+ cb()
117
+ })
118
+ })
119
+
120
+ // proxy api requests
121
+ Object.keys(proxyTable).forEach(function (context) {
122
+ var options = proxyTable[context]
123
+ if (typeof options === 'string') {
124
+ options = {target: options}
125
+ }
126
+ app.use(proxyMiddleware(context, options))
127
+ })
128
+
129
+ // handle fallback for HTML5 history API
130
+ app.use(require('connect-history-api-fallback')())
131
+ // app.use(function (req, res, next) {
132
+ // res.header('Access-Control-Allow-Origin', '*')
133
+ // res.header('Access-Control-Allow-Headers', 'X-Requested-With')
134
+ // res.header('Access-Control-Allow-Methods', 'PUT, POST, GET,DELETE, OPTIONS')
135
+ // res.header('X-Powered-By', '3,2,1')
136
+ // res.header('Access-Control-Allow-Credentials', 'true')
137
+ // res.header('Content-Type', 'application/json;charset=utf-8')
138
+ // next()
139
+ // })
140
+
141
+ // serve webpack bundle output
142
+ app.use(devMiddleware)
143
+
144
+ // enable hot-reload and state-preserving
145
+ // compilation error display
146
+ app.use(hotMiddleware)
147
+
148
+ // serve pure static assets
149
+ app.use('/static', express.static('./static'))
150
+
151
+ module.exports = app.listen(8089, function (err) {
152
+ if (err) {
153
+ console.log(err)
154
+ return
155
+ }
156
+ console.log('Listening at http://localhost:8089')
157
+ })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sale-client",
3
- "version": "3.4.140",
3
+ "version": "3.4.143",
4
4
  "description": "收费模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -824,7 +824,7 @@
824
824
  // 获取用户信息
825
825
  getUser = await this.$resetpost('rs/sql/sale_getUser', {
826
826
  data: {
827
- condition: `gb.f_meter_type in ('机表','物联网表') and u.f_card_id='${res.data.CardID}' and f_whether_hairpin != '未发'`,
827
+ condition: `gb.f_meter_type in ('机表','物联网表') and u.f_userinfo_code='${res.data.CardID}'`,
828
828
  orderitem: `${this.orderitem} Desc`
829
829
  }
830
830
  }, {resolveMsg: '读卡成功', rejectMsg: '读卡失败'})
@@ -89,10 +89,10 @@
89
89
  <v-select id="f_is_mgq" :value.sync="baseinfo.base.f_is_mgq" v-model="baseinfo.base.f_is_mgq"
90
90
  :options='mgq' placeholder='是否煤改气' style="width: 65%" close-on-select></v-select>
91
91
  </div>
92
- <div class="col-sm-4 form-group">
93
- <label for="f_contract" class="font_normal_body color-red">&ensp;用户证号</label>
94
- <input type="text" v-model="baseinfo.base.f_book_no" class="input_search" style="width:60%" placeholder="用户证号">
95
- </div>
92
+ <!-- <div class="col-sm-4 form-group">-->
93
+ <!-- <label for="f_contract" class="font_normal_body color-red">&ensp;用户证号</label>-->
94
+ <!-- <input type="text" v-model="baseinfo.base.f_book_no" class="input_search" style="width:60%" placeholder="用户证号">-->
95
+ <!-- </div>-->
96
96
  </div>
97
97
  <div class="row">
98
98
  <div style="" class="col-sm-4 form-group">