manage-client 4.1.128 → 4.1.131

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.
@@ -6,8 +6,8 @@ const proxyMiddleware = require('http-proxy-middleware')
6
6
  const app = express()
7
7
  const compiler = webpack(config)
8
8
 
9
- const server = 'http://123.57.3.66:31467/'
10
- const local = 'http://127.0.0.1:9026/'
9
+ const server = 'http://121.36.106.17:31467/'
10
+ const local = 'http://121.36.106.17:31467/'
11
11
  const proxyTable = {
12
12
  '/rs/logic/exportfile': {
13
13
  target: server
@@ -16,22 +16,22 @@ const proxyTable = {
16
16
  target: server
17
17
  },
18
18
  '/api/af-revenue/sql/': {
19
- pathRewrite: {
20
- '^/api/af-revenue': '/singlepage/api/af-revenue/'
21
- },
22
- target: server
19
+ // pathRewrite: {
20
+ // '^/api/af-revenue': '/'
21
+ // },
22
+ target: local
23
+ },
24
+ '/api/af-revenue/report/': {
25
+ // pathRewrite: {
26
+ // '^/api/af-revenue': '/'
27
+ // },
28
+ target: local
23
29
  },
24
- // '/api/af-revenue/report/': {
25
- // pathRewrite: {
26
- // '^/api/af-revenue': '/'
27
- // },
28
- // target: local
29
- // },
30
30
  '/api/af-revenue/logic': {
31
- pathRewrite: {
32
- '^/api/af-revenue': '/singlepage/api/af-revenue/'
33
- },
34
- target: server
31
+ // pathRewrite: {
32
+ // '^/api/af-revenue': '/'
33
+ // },
34
+ target: local
35
35
  },
36
36
  '/api': {
37
37
  target: server
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "manage-client",
3
- "version": "4.1.128",
3
+ "version": "4.1.131",
4
4
  "description": "经营管控模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "directories": {
@@ -153,6 +153,8 @@ export default {
153
153
  ready () {
154
154
  this.$refs.paged.$refs.criteria.model.startDate = this.$login.toStandardDateString() + ' 00:00:00'
155
155
  this.$refs.paged.$refs.criteria.model.endDate = this.$login.toStandardDateString() + ' 23:59:59'
156
+ this.$refs.paged.$refs.criteria.model.startDate1 = this.$login.toStandardDateString() + ' 00:00:00'
157
+ this.$refs.paged.$refs.criteria.model.endDate1 = this.$login.toStandardDateString() + ' 23:59:59'
156
158
  },
157
159
  methods: {
158
160
  searchData () {
@@ -1981,6 +1981,8 @@ export default {
1981
1981
  'f_curbalance': '期末余额',
1982
1982
  'f_gas_state': '用气状态',
1983
1983
  'f_changetable_state': '是否换表',
1984
+ 'f_valve_state': '阀门状态',
1985
+ 'f_network_valve': '阀控状态',
1984
1986
  'f_first_input_date': '首次抄表时间',
1985
1987
  'f_input_date': '最后通讯日期'
1986
1988
  },
@@ -1197,7 +1197,7 @@
1197
1197
  },
1198
1198
  userTypeChange () {
1199
1199
  this.gasproperties=[]
1200
- if(this.$refs.paged.$refs.cri.model.f_user_type !== null) {
1200
+ if(this.$refs.paged.$refs.cri.model !== null && this.$refs.paged.$refs.cri.model.f_user_type !== null && this.$refs.paged.$refs.cri.model.f_user_type !== undefined) {
1201
1201
  this.$refs.paged.$refs.cri.model.f_gasproperties=''
1202
1202
  this.gasproperties = this.$appdata.getParam(this.$refs.paged.$refs.cri.model.f_user_type[0])
1203
1203
  // this.gasproperties.push({label: '全部', value: ''})
@@ -182,6 +182,20 @@
182
182
  condition="f_gasproperties = '{}'"
183
183
  close-on-select></v-select>
184
184
  </div>
185
+ <div class="col-sm-2 form-group" title="参数名称:【阀门状态查询用】">
186
+ <label class="font_normal_body">阀门状态</label>
187
+ <v-select :value.sync="model.f_valve_state" v-model="model.f_valve_state"
188
+ :options='$parent.$parent.valvestate' placeholder='请选择'
189
+ condition="f_valve_state = '{}'"
190
+ close-on-select></v-select>
191
+ </div>
192
+ <div class="col-sm-2 form-group" title="参数名称:【阀控状态查询用】">
193
+ <label class="font_normal_body">阀控状态</label>
194
+ <v-select :value.sync="model.f_network_valve" v-model="model.f_network_valve"
195
+ :options='$parent.$parent.networkvalve' placeholder='请选择'
196
+ condition="f_network_valve = '{}'"
197
+ close-on-select></v-select>
198
+ </div>
185
199
  </div>
186
200
  </div>
187
201
  </criteria>
@@ -213,8 +227,14 @@
213
227
  <th><nobr>期末余额</nobr></th>
214
228
  <th><nobr>用气状态</nobr></th>
215
229
  <th><nobr>是否换表</nobr></th>
230
+
231
+ <th><nobr>阀门状态</nobr></th>
232
+ <th><nobr>阀控状态</nobr></th>
233
+
216
234
  <th><nobr>首次抄表时间</nobr></th>
217
235
  <th><nobr>最后通讯日期</nobr></th>
236
+
237
+
218
238
  </tr>
219
239
  </template>
220
240
  <template partial='body' partial='list'>
@@ -233,7 +253,6 @@
233
253
  <th style="text-align:center"><nobr>{{row.f_meter_title}}</nobr></th>
234
254
  <th style="text-align:center"><nobr>{{row.f_price_name}}</nobr></th>
235
255
 
236
-
237
256
  <th style="text-align:center"><nobr>{{row.f_gasproperties}}</nobr></th>
238
257
 
239
258
 
@@ -247,6 +266,10 @@
247
266
  <th style="text-align:center"><nobr>{{row.f_curbalance}}</nobr></th>
248
267
  <th style="text-align:center"><nobr>{{row.f_gas_state}}</nobr></th>
249
268
  <th style="text-align:center"><nobr>{{row.f_changetable_state}}</nobr></th>
269
+
270
+ <th style="text-align:center"><nobr>{{row.f_valve_state}}</nobr></th>
271
+ <th style="text-align:center"><nobr>{{row.f_network_valve}}</nobr></th>
272
+
250
273
  <th style="text-align:center"><nobr>{{row.f_first_input_date}}</nobr></th>
251
274
  <th style="text-align:center"><nobr>{{row.f_input_date}}</nobr></th>
252
275
  </tr>
@@ -499,6 +522,12 @@
499
522
  usertypes() {
500
523
  return [{label: ' 全部 ', value: ''}, ...this.$appdata.getParam('用户类型')]
501
524
  },
525
+ valvestate() {
526
+ return [{label: ' 全部 ', value: ''}, ...this.$appdata.getParam('阀门状态查询用')]
527
+ },
528
+ networkvalve() {
529
+ return [{label: ' 全部 ', value: ''}, ...this.$appdata.getParam('阀控状态查询用')]
530
+ },
502
531
  gasproperties() {
503
532
  return [{label: ' 全部 ', value: ''}, ...this.$appdata.getParam('用气性质')]
504
533
  },
@@ -1224,12 +1224,9 @@ export default {
1224
1224
  },
1225
1225
  userTypeChange () {
1226
1226
  this.gasproperties=[]
1227
- if (this.$refs.paged.$refs.cri.model.f_user_type !== null ) {
1228
- if(this.$refs.paged.$refs.cri.model.f_user_type[0] !==null && this.$refs.paged.$refs.cri.model.f_user_type[0] !=='') {
1229
- this.$refs.paged.$refs.cri.model.f_gasproperties=''
1230
- this.gasproperties = this.$appdata.getParam(this.$refs.paged.$refs.cri.model.f_user_type[0])
1231
- // this.gasproperties.push({label: '全部', value: ''})
1232
- }
1227
+ if(this.$refs.paged.$refs.cri.model !== null && this.$refs.paged.$refs.cri.model.f_user_type !== null && this.$refs.paged.$refs.cri.model.f_user_type !== undefined) {
1228
+ this.$refs.paged.$refs.cri.model.f_gasproperties=''
1229
+ this.gasproperties = this.$appdata.getParam(this.$refs.paged.$refs.cri.model.f_user_type[0])
1233
1230
  }
1234
1231
  else{
1235
1232
  this.gasproperties = [{label: '全部', value: ''}, ...this.$appdata.getParam('用气性质')]
@@ -627,6 +627,7 @@
627
627
  <th><nobr>单元</nobr></th>
628
628
  <th><nobr>楼层</nobr></th>
629
629
  <th><nobr>门牌号</nobr></th>
630
+ <th><nobr>房屋类型</nobr></th>
630
631
  <!-- <th>-->
631
632
  <!-- <data-order field="f_userinfo_code" name="客户地址"-->
632
633
  <!-- :order.sync="$parent.$parent.$parent.orderFields.f_address"></data-order>-->
@@ -801,6 +802,7 @@
801
802
  <td style="text-align: center;"><nobr>{{row.f_floor}}</nobr></td>
802
803
  <!-- <td style="text-align: center;"><nobr>{{row.f_address}}</nobr></td>-->
803
804
  <td style="text-align: center;"><nobr>{{row.f_room}}</nobr></td>
805
+ <td style="text-align: center;"><nobr>{{row.f_house_type}}</nobr></td>
804
806
  <!-- <td style="text-align: center;"><nobr>{{row.f_user_phone}}</nobr></td>-->
805
807
  <td style="text-align: center;"><nobr>{{row.f_book_slice_area}}</nobr></td>
806
808
  <!-- <td style="text-align: center;"><nobr>{{row.f_gas_date}}</nobr></td>-->
@@ -604,6 +604,7 @@ export default {
604
604
  'f_unit': '单元',
605
605
  'f_floor': '楼层',
606
606
  'f_room': '门牌号',
607
+ 'f_house_type': '房屋类型',
607
608
  'f_address': '详细地址',
608
609
  'f_area': '区域',
609
610
  'f_adjustable_name': '调压箱',
@@ -4,8 +4,8 @@ export default{
4
4
  userConfig: { 'f_userinfo_code': '客户编号', 'f_user_name': '客户名称', 'f_user_phone': '客户电话',
5
5
  'f_idnumber': '身份证号', 'f_balance': '账户余额', 'f_address': '客户地址', 'f_residential_area': '小区',
6
6
  'f_building': '楼栋', 'f_unit': '单元', 'f_floor': '楼层', 'f_room': '门牌号',
7
- 'f_user_state': '客户状态', 'f_createfile_date': '建档日期', 'f_createfile_person': '建档人', 'f_comments': '备注'
8
- ,'f_bank_accopen': '银行户名', 'f_bank_name': '银行名称', 'f_bank_account': '银行账号', 'f_inputtor': '抄表员',
7
+ 'f_user_state': '客户状态', 'f_createfile_date': '建档日期', 'f_open_date': '开户日期', 'f_createfile_person': '建档人', 'f_comments': '备注',
8
+ 'f_bank_accopen': '银行户名', 'f_bank_name': '银行名称', 'f_bank_account': '银行账号', 'f_inputtor': '抄表员',
9
9
  'f_bank_idnumber': '银行身份证号', 'f_bank_pay_number': '缴费编号', 'f_gas_date': '点火时间', 'isbgl': '是否壁挂炉',
10
10
  'f_is_mgq': '是否煤改气', 'f_is_empty': '是否空房', 'f_is_vacant': '是否空置户', 'f_is_alone': '是否孤寡老人'
11
11
  },
@@ -1221,7 +1221,7 @@
1221
1221
  },
1222
1222
  userTypeChange () {
1223
1223
  this.gasproperties=[]
1224
- if(this.$refs.paged.$refs.cri.model !== null) {
1224
+ if(this.$refs.paged.$refs.cri.model !== null && this.$refs.paged.$refs.cri.model.f_user_type !== null && this.$refs.paged.$refs.cri.model.f_user_type !== undefined) {
1225
1225
  this.$refs.paged.$refs.cri.model.f_gasproperties=''
1226
1226
  this.gasproperties = this.$appdata.getParam(this.$refs.paged.$refs.cri.model.f_user_type[0] || '')
1227
1227
  // this.gasproperties.push({label: '全部', value: ''})
package/src/main.js CHANGED
@@ -6,8 +6,8 @@ import { all } from 'vue-client'
6
6
  import { system } from 'system-clients'
7
7
  import { ldap } from 'ldap-clients'
8
8
  import saleManage from './saleManage'
9
- import ShanXianSaleManage from './filiale/qingjian/sale'
10
- import ShanXianwebSaleManage from './filiale/qingjian/webmeterManage'
9
+ import ShanXianSaleManage from './filiale/hantou/sale'
10
+ // import ShanXianwebSaleManage from './filiale/rongcheng/webmeterManage'
11
11
  import webmeterManage from './webmeterManage'
12
12
  import reportManage from './reportManage'
13
13
  import newmanage from './newmanage'
@@ -51,7 +51,6 @@ ManageHome()
51
51
  newmanage()
52
52
  ShanXianSaleManage()
53
53
  reportManage()
54
- ShanXianwebSaleManage()
55
54
  // ShanXianSaleManage()
56
55
  require('system-clients/src/styles/less/bootstrap.less')
57
56
  require('./components/qinhua/Style/qinhuaStyle.less')