manage-client 3.2.136 → 3.2.139-tcc

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,176 +1,176 @@
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://127.0.0.1:8089/manage', fuwu = 'http://36.103.224.217:6300/'
14
- var shaoguan='http://119.146.1.106:8300/'
15
- var qtx='http://36.103.222.144:6300/'
16
- var bendi = 'http://127.0.0.1:8090'
17
- // var bendi = 'http://172.168.1.11:9001'
18
- var fuwu = 'http://121.36.106.17:8400'
19
- // var fuwu = 'http://203.57.101.233:9001'
20
- var system = 'http://192.168.50.4:8400'
21
- //192.168.
22
- // var str = 'http://127.0.0.1:8080/manage', str2 = 'http://192.168.50.199:8300'
23
- // var str = 'http://192.168.10.233:8300', str2 = 'http://192.168.10.14:8300'
24
- var proxyTable = {
25
- '/rs/logic/exportfile': {
26
- target: fuwu
27
- },
28
- '/files': {
29
- target: fuwu
30
- },
31
- // 查找资源服务数据
32
- '/rs/search': {
33
- target: fuwu
34
- },
35
- // 查找资源服务数据
36
- '/rs/logic/getLogin': {
37
- target: fuwu
38
- },
39
- // 查找资源服务数据
40
- '/rs/logic/getInitData': {
41
- target: fuwu
42
- },
43
- '/rs/logic/getSaleInitData':{
44
- target: fuwu
45
- },
46
- // 用户登录服务地址
47
- '/rs/user': {
48
- target: fuwu
49
- },
50
- '/rs/path/getParams': {
51
- target: fuwu
52
- },
53
- '/rs/data': {
54
- target: fuwu
55
- },
56
- '/rs/license': {
57
- target: fuwu
58
- },
59
- '/rs/db': {
60
- target: fuwu
61
- },
62
- '/excel': {
63
- target: fuwu
64
- },
65
- '/rs/config': {
66
- target: fuwu
67
- },
68
- '/rs/sql/getLicenseById': {
69
- target: fuwu
70
- },
71
- '/rs/report': {
72
- target: bendi
73
- },
74
- '/rs/vue': {
75
- target: fuwu
76
- },
77
- '/rs/file': {
78
- target: bendi
79
- },
80
- '/rs/logic/SumSettleFileImport': {
81
- target: 'http://127.0.0.1:8080'
82
- },
83
- '/rs': {
84
- target: fuwu
85
- }
86
- }
87
-
88
- var devMiddleware = require('webpack-dev-middleware')(compiler, {
89
- publicPath: config.output.publicPath,
90
- stats: {
91
- colors: true,
92
- chunks: false
93
- }
94
- })
95
-
96
- var hotMiddleware = require('webpack-hot-middleware')(compiler)
97
- // force page reload when html-webpack-plugin template changes
98
- compiler.plugin('compilation', function (compilation) {
99
- compilation.plugin('html-webpack-plugin-after-emit', function (data, cb) {
100
- hotMiddleware.publish({action: 'reload'})
101
- cb()
102
- })
103
- })
104
-
105
- // proxy api requests
106
- Object.keys(proxyTable).forEach(function (context) {
107
- var options = proxyTable[context]
108
- if (typeof options === 'string') {
109
- options = {target: options}
110
- }
111
- app.use(proxyMiddleware(context, options))
112
- })
113
-
114
- // handle fallback for HTML5 history API
115
- app.use(require('connect-history-api-fallback')())
116
- // app.use(function (req, res, next) {
117
- // res.header('Access-Control-Allow-Origin', '*')
118
- // res.header('Access-Control-Allow-Headers', 'X-Requested-With')
119
- // res.header('Access-Control-Allow-Methods', 'PUT, POST, GET,DELETE, OPTIONS')
120
- // res.header('X-Powered-By', '3,2,1')
121
- // res.header('Access-Control-Allow-Credentials', 'true')
122
- // res.header('Content-Type', 'application/json;charset=utf-8')
123
- // next()
124
- // })
125
-
126
- // serve webpack bundle output
127
- app.use(devMiddleware)
128
-
129
- // enable hot-reload and state-preserving
130
- // compilation error display
131
- app.use(hotMiddleware)
132
-
133
- // serve pure static assets
134
- app.use('/static', express.static('./static'))
135
-
136
- // app.all('/rs/*', function (req, res) {
137
- // proxy.web(req, res, {
138
- // target: 'http://127.0.0.1:8081/reports'
139
- // })
140
- // })
141
-
142
- // app.all('/rs/*', function (req, res) {
143
- // proxy.web(req, res, {
144
- // target: 'http://127.0.0.1:8081/ldap'
145
- // })
146
- // })
147
- // app.all('/excel/*', function (req, res) {
148
- // proxy.web(req, res, {
149
- // target: 'http://127.0.0.1:8081/charge'
150
- // })
151
- // })
152
-
153
- // app.all('/rs/*', function (req, res) {
154
- // proxy.web(req, res, {
155
- // target: 'http://127.0.0.1:82/charge'
156
- // })
157
- // })
158
-
159
- // app.all('/*', function (req, res) {
160
- // proxy.web(req, res, {
161
- // target: 'http://127.0.0.1:82'
162
- // })
163
- // })
164
- // app.all('/rs/user', function (req, res) {
165
- // proxy.web(req, res, {
166
- // target: 'http://127.0.0.1:82'
167
- // })
168
- // })
169
-
170
- module.exports = app.listen(8085, function (err) {
171
- if (err) {
172
- console.log(err)
173
- return
174
- }
175
- console.log('Listening at http://localhost:8085')
176
- })
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://127.0.0.1:8089/manage', fuwu = 'http://36.103.224.217:6300/'
14
+ var shaoguan='http://119.146.1.106:8300/'
15
+ var qtx='http://36.103.222.144:6300/'
16
+ var bendi = 'http://192.168.50.4:8400'
17
+ // var bendi = 'http://172.168.1.11:9001'
18
+ var fuwu = 'http://192.168.50.4:8400'
19
+ // var fuwu = 'http://203.57.101.233:9001'
20
+ var system = 'http://192.168.50.4:8400'
21
+ //192.168.
22
+ // var str = 'http://127.0.0.1:8080/manage', str2 = 'http://192.168.50.199:8300'
23
+ // var str = 'http://192.168.10.233:8300', str2 = 'http://192.168.10.14:8300'
24
+ var proxyTable = {
25
+ '/rs/logic/exportfile': {
26
+ target: fuwu
27
+ },
28
+ '/files': {
29
+ target: fuwu
30
+ },
31
+ // 查找资源服务数据
32
+ '/rs/search': {
33
+ target: fuwu
34
+ },
35
+ // 查找资源服务数据
36
+ '/rs/logic/getLogin': {
37
+ target: fuwu
38
+ },
39
+ // 查找资源服务数据
40
+ '/rs/logic/getInitData': {
41
+ target: fuwu
42
+ },
43
+ '/rs/logic/getSaleInitData':{
44
+ target: fuwu
45
+ },
46
+ // 用户登录服务地址
47
+ '/rs/user': {
48
+ target: fuwu
49
+ },
50
+ '/rs/path/getParams': {
51
+ target: fuwu
52
+ },
53
+ '/rs/data': {
54
+ target: fuwu
55
+ },
56
+ '/rs/license': {
57
+ target: fuwu
58
+ },
59
+ '/rs/db': {
60
+ target: fuwu
61
+ },
62
+ '/excel': {
63
+ target: fuwu
64
+ },
65
+ '/rs/config': {
66
+ target: fuwu
67
+ },
68
+ '/rs/sql/getLicenseById': {
69
+ target: fuwu
70
+ },
71
+ '/rs/report': {
72
+ target: bendi
73
+ },
74
+ '/rs/vue': {
75
+ target: fuwu
76
+ },
77
+ '/rs/file': {
78
+ target: bendi
79
+ },
80
+ '/rs/logic/SumSettleFileImport': {
81
+ target: 'http://127.0.0.1:8080'
82
+ },
83
+ '/rs': {
84
+ target: fuwu
85
+ }
86
+ }
87
+
88
+ var devMiddleware = require('webpack-dev-middleware')(compiler, {
89
+ publicPath: config.output.publicPath,
90
+ stats: {
91
+ colors: true,
92
+ chunks: false
93
+ }
94
+ })
95
+
96
+ var hotMiddleware = require('webpack-hot-middleware')(compiler)
97
+ // force page reload when html-webpack-plugin template changes
98
+ compiler.plugin('compilation', function (compilation) {
99
+ compilation.plugin('html-webpack-plugin-after-emit', function (data, cb) {
100
+ hotMiddleware.publish({action: 'reload'})
101
+ cb()
102
+ })
103
+ })
104
+
105
+ // proxy api requests
106
+ Object.keys(proxyTable).forEach(function (context) {
107
+ var options = proxyTable[context]
108
+ if (typeof options === 'string') {
109
+ options = {target: options}
110
+ }
111
+ app.use(proxyMiddleware(context, options))
112
+ })
113
+
114
+ // handle fallback for HTML5 history API
115
+ app.use(require('connect-history-api-fallback')())
116
+ // app.use(function (req, res, next) {
117
+ // res.header('Access-Control-Allow-Origin', '*')
118
+ // res.header('Access-Control-Allow-Headers', 'X-Requested-With')
119
+ // res.header('Access-Control-Allow-Methods', 'PUT, POST, GET,DELETE, OPTIONS')
120
+ // res.header('X-Powered-By', '3,2,1')
121
+ // res.header('Access-Control-Allow-Credentials', 'true')
122
+ // res.header('Content-Type', 'application/json;charset=utf-8')
123
+ // next()
124
+ // })
125
+
126
+ // serve webpack bundle output
127
+ app.use(devMiddleware)
128
+
129
+ // enable hot-reload and state-preserving
130
+ // compilation error display
131
+ app.use(hotMiddleware)
132
+
133
+ // serve pure static assets
134
+ app.use('/static', express.static('./static'))
135
+
136
+ // app.all('/rs/*', function (req, res) {
137
+ // proxy.web(req, res, {
138
+ // target: 'http://127.0.0.1:8081/reports'
139
+ // })
140
+ // })
141
+
142
+ // app.all('/rs/*', function (req, res) {
143
+ // proxy.web(req, res, {
144
+ // target: 'http://127.0.0.1:8081/ldap'
145
+ // })
146
+ // })
147
+ // app.all('/excel/*', function (req, res) {
148
+ // proxy.web(req, res, {
149
+ // target: 'http://127.0.0.1:8081/charge'
150
+ // })
151
+ // })
152
+
153
+ // app.all('/rs/*', function (req, res) {
154
+ // proxy.web(req, res, {
155
+ // target: 'http://127.0.0.1:82/charge'
156
+ // })
157
+ // })
158
+
159
+ // app.all('/*', function (req, res) {
160
+ // proxy.web(req, res, {
161
+ // target: 'http://127.0.0.1:82'
162
+ // })
163
+ // })
164
+ // app.all('/rs/user', function (req, res) {
165
+ // proxy.web(req, res, {
166
+ // target: 'http://127.0.0.1:82'
167
+ // })
168
+ // })
169
+
170
+ module.exports = app.listen(8085, function (err) {
171
+ if (err) {
172
+ console.log(err)
173
+ return
174
+ }
175
+ console.log('Listening at http://localhost:8085')
176
+ })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "manage-client",
3
- "version": "3.2.136",
3
+ "version": "3.2.139-tcc",
4
4
  "description": "经营管控模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "directories": {
@@ -64,7 +64,7 @@
64
64
  "sinon-chai": "^2.8.0",
65
65
  "style": "0.0.3",
66
66
  "style-loader": "^0.20.3",
67
- "system-clients": "3.1.89-18",
67
+ "system-clients": "3.1.89-20",
68
68
  "url-loader": "^0.5.7",
69
69
  "vue-amap": "0.5.10",
70
70
  "vue-client": "1.24.51",
@@ -0,0 +1,228 @@
1
+ <template>
2
+ <div class="basic-main" style="height: 100%">
3
+ <criteria-paged :model="model" :pager='false' v-ref:paged>
4
+ <criteria partial='criteria' @condition-changed='$parent.selfSearch' v-ref:criteria>
5
+ <p class="bg-info text-center" style="padding: 8px;">材料报建表</p>
6
+ <div class="form-group" v-if="!$parent.$parent.data.f_files_path"></div>
7
+ <div novalidate class="form-horizontal select-overspread container-fluid auto" partial >
8
+ <div class="row">
9
+ <div class="col-sm-4" >
10
+ <label class="font_normal_body" for="startDate">开始日期:</label>
11
+ <datepicker id="startDate" placeholder="开始日期" style="width: 60%"
12
+ v-model="model.startDate"
13
+ :value.sync="model.startDate"
14
+ :disabled-days-of-Week="[]"
15
+ :format="'yyyy-MM-dd HH:mm:ss'"
16
+ :show-reset-button="reset">
17
+ </datepicker>
18
+ </div>
19
+ <div class="col-sm-4" >
20
+ <label class="font_normal_body" for="endDate">结束日期:</label>
21
+ <datepicker id="endDate" placeholder="结束日期" style="width: 60%"
22
+ v-model="model.endDate"
23
+ :value.sync="model.endDate"
24
+ :disabled-days-of-Week="[]"
25
+ :format="'yyyy-MM-dd HH:mm:ss'"
26
+ :show-reset-button="reset">
27
+ </datepicker>
28
+ </div>
29
+ <div class="col-sm-4">
30
+ <label class="font_normal_body">&nbsp;&nbsp;&nbsp;公司&nbsp;&nbsp;&nbsp;</label>
31
+ <right-tree @re-res="$parent.$parent.getRes"></right-tree>
32
+ </div>
33
+
34
+ </div>
35
+ <div class="span" style = "float:right;">
36
+ <button class="button_search" @click="$parent.$parent.searchData()">查询</button>
37
+ <report-print id='gasprice' top='3cm' left='0' width='100%' height='100%' :preview="true"></report-print>
38
+ <report-excel id='gasprice'></report-excel>
39
+ </div>
40
+ </div>
41
+ </criteria>
42
+ <div partial='list' v-el:handcollect id='gasprice' style="overflow-y: scroll">
43
+ <table class='tableprint' style="margin: 0px auto" v-if="!$parent.data.f_files_path">
44
+ <thead>
45
+ <tr>
46
+ <th colspan='7' style="font-weight: normal; text-align: left;">
47
+ <h3 style="text-align: center">材料报建表</h3>
48
+ </th>
49
+ </tr>
50
+ <tr>
51
+ <th colspan='7' style="font-weight: normal; text-align: center;">
52
+ 开始时间:{{model.model.startDate}}&nbsp;&nbsp;&nbsp;
53
+ 结束时间:{{ model.model.endDate }}
54
+ </th>
55
+ </tr>
56
+ <tr>
57
+ <th colspan='7' style="font-weight: normal; text-align: center;">
58
+ 打印时间:{{{$parent.printTime}}}
59
+ </th>
60
+ </tr>
61
+ <tr>
62
+ <th colspan='7' style="font-weight: normal; text-align: center;">
63
+ <div>
64
+ <span v-show="$parent.orgname.trim()!=''">公司:{{$parent.orgname}}</span>
65
+ <span v-show="$parent.depname.trim()!=''"> 部门:{{$parent.depname}}</span>
66
+ <span v-show="$parent.operatorname.trim()!=''">人员:{{$parent.operatorname}}</span>
67
+ </div>
68
+ </th>
69
+ </tr>
70
+ </thead>
71
+ <tr>
72
+ <td colspan='7'>
73
+ {{{ model.data.substring(26,model.data.length-8) }}}
74
+ </td>
75
+ </tr>
76
+ <tfoot>
77
+ <tr style="text-align: left">
78
+ <th colspan='3'>财务审核:</th>
79
+ <th colspan='3'>收款审核:</th>
80
+ <th colspan='1'>收款员:</th>
81
+ </tr>
82
+ </tfoot>
83
+ </table>
84
+ {{{ $parent.reportStr}}}
85
+ </div>
86
+ </criteria-paged>
87
+ <modal :show.sync="show" v-ref:modal small backdrop="false">
88
+ <header slot="modal-header" class="modal-header">
89
+ <h4 class="modal-title">输入文件名称</h4>
90
+ </header>
91
+ <article slot="modal-body" class="modal-body">
92
+ <div class="form-group">
93
+ <input type="text" class="form-control" v-model="filename" placeholder='保存的文件名'>
94
+ </div>
95
+ </article>
96
+ <footer slot="modal-footer" class="modal-footer">
97
+ <button v-show="show" type="button" class="btn btn-default" @click='close'>取消</button>
98
+ <button v-show="show" type="button" class="btn btn-success" @click='confirm(filename)'>确认</button>
99
+ </footer>
100
+ </modal>
101
+ </div>
102
+ </template>
103
+
104
+ <script>
105
+ import { DataModel } from 'vue-client'
106
+ import co from 'co'
107
+ let saveFile = function * (self) {
108
+ // 线验证文件是否重名
109
+ let count = yield self.$resetpost('rs/sql/manageSingleTable',
110
+ {data: {tablename: 't_report_record', condition: `f_files_name = '${self.filename}'`}},
111
+ {resolveMsg: null, rejectMsg: null})
112
+ if (count.data.length > 0) {
113
+ self.$showAlert('无法保存,文件名重名', 'warning', 3000)
114
+ return
115
+ }
116
+ let saveBack = yield self.$resetpost('rs/logic/saveReport', {f_files_content: self.$refs.paged.$els.handcollect.innerHTML,
117
+ f_files_name: self.filename, f_files_type: self.data.f_report_type, f_component_name: 'manage-bus-summary',
118
+ f_operator: this.$login.f.name, f_query_month: `${self.model.model.startDate}-${self.model.model.endDate}`,
119
+ f_outlets: this.$login.f.depname})
120
+ if (saveBack.data.status === 'succeed') {
121
+ self.show = false
122
+ self.filename = ''
123
+ // 后台保存完成,通知刷新
124
+ self.$dispatch('save-success', self.filename)
125
+ }
126
+ }
127
+ export default {
128
+ title: '材料报建表',
129
+ props: ['data'],
130
+ data () {
131
+ return {
132
+ printTime: this.$login.toStandardTimeString(),
133
+ depresid: [],
134
+ userresid: [],
135
+ f_orgid: this.$login.f.orgid,
136
+ f_depid: this.$login.f.depids,
137
+ f_operatorid: this.$login.f.id,
138
+ operatorid: [],
139
+ depid: [],
140
+ orgname: '',
141
+ depname: '',
142
+ operatorname: '',
143
+ f_inputtor:[],
144
+ f_user_type:'',
145
+ orgCondtionStr: '1=1',
146
+ model: new DataModel('rs/report/applysgasfillmoney', {startDate: 'this.model.startDate', endDate: 'this.model.endDate',
147
+ f_orgid: 'this.model.f_orgid'}),
148
+ reportStr: null,
149
+ show: false
150
+ }
151
+ },
152
+ ready () {
153
+ this.$refs.paged.$refs.criteria.model.startDate = this.$login.toStandardDateString() + ' 00:00:00'
154
+ this.$refs.paged.$refs.criteria.model.endDate = this.$login.toStandardDateString() + ' 23:59:59'
155
+ this.$refs.paged.$refs.criteria.search()
156
+ console.log(this.$login.f)
157
+ },
158
+ methods: {
159
+ searchData () {
160
+ this.$refs.paged.$refs.criteria.search()
161
+ },
162
+ selfSearch (args) {
163
+ let orgcondition = 'f_orgid in (' + this.f_orgid + ')'
164
+
165
+ this.$refs.paged.$refs.criteria.model.f_orgid = orgcondition
166
+ this.$refs.paged.search(args)
167
+ },
168
+ getRes (obj) {
169
+ this.orgname = obj.res[0]
170
+ this.depresid = obj.resids
171
+ this.f_orgid = obj.resids
172
+ },
173
+ getdep (obj, val) {
174
+ // this.depname = val[0]
175
+ this.userresid = obj
176
+ this.f_depid = obj
177
+ },
178
+ getuser ( obj, val) {
179
+ this.operatorname = val[0]
180
+ this.f_operatorid = obj
181
+ },
182
+ // 根据文件路径获取储存的报表内容
183
+ getFileContent (path) {
184
+ this.$resetpost('rs/logic/getReportFileContent', {f_files_path: path}, {resolveMsg: null, rejectMsg: null}).then((res) => {
185
+ this.reportStr = res.data.filecontent
186
+ this.model.state = '正确'
187
+ })
188
+ },
189
+ confirm () {
190
+ if (!this.filename || this.filename === '') {
191
+ this.$showAlert('无法保存,文件名不能为空', 'warning', 3000)
192
+ }
193
+ let saveGen = saveFile(this)
194
+ co(saveGen)
195
+ },
196
+ close () {
197
+ this.show = false
198
+ },
199
+ // 将报表保存成文件
200
+ confirmReport () {
201
+ this.show = true
202
+ this.filename = this.data.f_report_name + this.$login.toStandardDateString()
203
+ },
204
+ },
205
+ watch: {
206
+ 'data' (val) {
207
+ if (val.f_files_path) {
208
+ this.getFileContent(val.f_files_path)
209
+ } else {
210
+ this.reportStr = null
211
+ }
212
+ }
213
+ },
214
+ computed: {
215
+ usertypes() {
216
+ return [{label: ' 全部 ', value: ''}, ...this.$appdata.getParam('用户类型')]
217
+ },
218
+ inputtor() {
219
+ return [{label: '全部', value: ''}, ...this.$appdata.getParam('抄表员')]
220
+ },
221
+ }
222
+ }
223
+ </script>
224
+ <style scoped>
225
+ .noborder{
226
+ border: none;
227
+ }
228
+ </style>
@@ -0,0 +1,51 @@
1
+ <template>
2
+ <div class="basic-main" style="height: 100%">
3
+ <div class="form-horizontal select-overspread container-fluid auto">
4
+ <div class="span" style="float:right;">
5
+ <report-print id='gasprice' top='3cm' left='0' width='100%' height='100%' :preview="true"></report-print>
6
+ <report-excel id='gasprice'></report-excel>
7
+ </div>
8
+ </div>
9
+ <div partial='list' id='gasprice' style="overflow-y: scroll">
10
+ {{{reportStr}}}
11
+ </div>
12
+ </div>
13
+ </template>
14
+
15
+ <script>
16
+ export default {
17
+ title: '历史报表展示',
18
+ props: ['data'],
19
+ data () {
20
+ return {
21
+ reportStr: ''
22
+ }
23
+ },
24
+ ready () {
25
+ },
26
+ methods: {
27
+ // 根据文件路径获取储存的报表内容
28
+ getFileContent (path) {
29
+ this.$resetpost('rs/logic/getReportFileContent', {f_files_path: path}, {
30
+ resolveMsg: null,
31
+ rejectMsg: null
32
+ }).then((res) => {
33
+ this.reportStr = res.data.filecontent
34
+ })
35
+ }
36
+ },
37
+ watch: {
38
+ 'data' (val) {
39
+ if (val.f_files_path) {
40
+ this.getFileContent(val.f_files_path)
41
+ } else {
42
+ this.$showAlert('没有获取到文件路径, 请检测', 'warning', 3000)
43
+ }
44
+ }
45
+ },
46
+ computed: {}
47
+ }
48
+ </script>
49
+ <style scoped>
50
+
51
+ </style>