sale-client 4.2.47 → 4.2.48

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,2 +1,2 @@
1
- #Sat Sep 13 14:19:54 CST 2025
1
+ #Wed Sep 04 10:25:06 CST 2024
2
2
  gradle.version=5.2.1
@@ -1,7 +1,7 @@
1
1
  var path = require('path')
2
2
  var checkVersion = require('./versionCheck.js')
3
3
  checkVersion()
4
- const [ serverRul, localUrl ] = ['http://123.57.3.66:31467/', 'http://123.57.3.66:31467/']
4
+ const [ serverRul, localUrl ] = ['http://192.168.50.67:31567/', 'http://192.168.50.67:31567/']
5
5
  var merge = require('webpack-merge')
6
6
  var baseConfig = require('./webpack.dev.conf')
7
7
  var devConfig = {
@@ -50,17 +50,14 @@ var devConfig = {
50
50
  '/rs/pay': {
51
51
  target: 'http://localhost:8080'
52
52
  },
53
- // '/api/af-revenue': {
54
- // pathRewrite: {
55
- // '/api/af-revenue': '/af-revenue'
56
- // },
57
- // target: "http://localhost:8080"
58
- // },
59
- '/api': {
60
- target: serverRul,
53
+ '/api/af-revenue': {
61
54
  pathRewrite: {
62
- '/api/af-revenue': '/singlepage/rs'
63
- }
55
+ '/api/af-revenue': '/af-revenue'
56
+ },
57
+ target: "http://localhost:8080"
58
+ },
59
+ '/api': {
60
+ target: serverRul
64
61
  },
65
62
  '/rs': {
66
63
  target: serverRul
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sale-client",
3
- "version": "4.2.47",
3
+ "version": "4.2.48",
4
4
  "description": "收费模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -160,6 +160,14 @@
160
160
  condition="f_meter_brand in {}"
161
161
  close-on-select></v-select>
162
162
  </div>
163
+ <div class="form-group" :class="{'col-sm-2':!$parent.$parent.createFile,'col-sm-4':$parent.$parent.createFile}">
164
+ <label class="font_normal_body">现场表具型号</label>
165
+ <v-select :value.sync="model.f_xc_meter_style" multiple
166
+ v-model="model.f_xc_meter_style"
167
+ :options='$parent.$parent.metermodels' placeholder='请选择'
168
+ condition="f_xc_meter_style in {}"
169
+ close-on-select></v-select>
170
+ </div>
163
171
  <!-- <div-->
164
172
  <!-- :class="{'col-sm-2':!$parent.$parent.createFile,'col-sm-4':$parent.$parent.createFile}"-->
165
173
  <!-- class="form-group">-->
@@ -347,6 +355,9 @@
347
355
  <th>
348
356
  <nobr>气表品牌</nobr>
349
357
  </th>
358
+ <th>
359
+ <nobr>现场表具型号</nobr>
360
+ </th>
350
361
  <th>
351
362
  <nobr>发卡状态</nobr>
352
363
  </th>
@@ -391,6 +402,7 @@
391
402
  <td style="text-align: center;">{{row.f_gasproperties}}</td>
392
403
  <td style="text-align: center;">{{row.f_meter_classify}}</td>
393
404
  <td style="text-align: center;">{{row.f_meter_brand}}</td>
405
+ <td style="text-align: center;">{{row.f_xc_meter_style}}</td>
394
406
  <td style="text-align: center;">{{row.f_whether_hairpin}}</td>
395
407
  <td style="text-align: center;" v-if="!$parent.$parent.$parent.createFile">{{row.f_userfiles_address}}</td>
396
408
  <td style="text-align: center;" v-if="!$parent.$parent.$parent.createFile">{{row.f_user_state}}</td>
@@ -433,7 +445,7 @@
433
445
 
434
446
  <modal :show.sync="show" width="500px" title="文件导入" v-ref:modal large backdrop="false">
435
447
  <article slot="modal-body" class="modal-body">
436
- <file-upload class="my-file-uploader " name="UploadFile" class="btn btn-success" style="border-radius: 2px;"
448
+ <file-upload class="my-file-uploader btn btn-success" name="UploadFile" style="border-radius: 2px;"
437
449
  action="rs/file/uploadFile" tagname="导入档案" v-ref:file :headers="headers"></file-upload>
438
450
  </article>
439
451
  <footer slot="modal-footer" class="modal-footer">
@@ -613,6 +625,7 @@ let loadParamGem = async function (self) {
613
625
  value: ''
614
626
  }, ...this.$appdata.getParam('气表类型')] : [],
615
627
  meterbrands: [],
628
+ metermodels: [],
616
629
  f_whether_hairpin: this.$appdata.getParam('发卡状态') ? [{
617
630
  label: '全部',
618
631
  value: ''
@@ -949,6 +962,24 @@ let loadParamGem = async function (self) {
949
962
  brandArr.push(temp1)
950
963
  })
951
964
  this.meterbrands = [{label: '全部', value: ''}, ...brandArr]
965
+
966
+ // 初始化气表型号
967
+ let modelArr = []
968
+ this.$GetSaleParam.getGasbrand().forEach((item) => {
969
+ if (item.value.gasmodel && item.value.gasmodel.length > 0) {
970
+ item.value.gasmodel.forEach((model) => {
971
+ let temp2 = {}
972
+ temp2.label = model.label
973
+ temp2.value = model.label
974
+ modelArr.push(temp2)
975
+ })
976
+ }
977
+ })
978
+ // 去重
979
+ let uniqueModels = modelArr.filter((item, index, self) =>
980
+ index === self.findIndex(t => t.label === item.label)
981
+ )
982
+ this.metermodels = [{label: '全部', value: ''}, ...uniqueModels]
952
983
  },
953
984
  importFile () {
954
985
  this.show = true
@@ -1095,12 +1126,12 @@ let loadParamGem = async function (self) {
1095
1126
  .nav-tabss ul > li > a {
1096
1127
  padding: 5px 10px;
1097
1128
  }
1098
- // 两个字符占用4个字符距离
1129
+ /* 两个字符占用4个字符距离 */
1099
1130
  .w2 {
1100
1131
  letter-spacing:2em; /*如果需要y个字两端对齐,则为(x-y)/(y-1),这里是(4-2)/(2-1)=2em */
1101
1132
  margin-right:-2em; /*同上*/
1102
1133
  }
1103
- // 三个字符占用4个字符距离
1134
+ /* 三个字符占用4个字符距离 */
1104
1135
  .w3 {
1105
1136
  letter-spacing: 0.5em;
1106
1137
  margin-right: -0.5em
package/src/main.js CHANGED
@@ -2,7 +2,7 @@ import Vue from 'vue'
2
2
  import all from 'vue-client/src/all'
3
3
  import App from './App'
4
4
  import system from 'system-clients/src/system'
5
- import FilialeSale from './filiale/qingjian/sale'
5
+ import FilialeSale from './filiale/yuncheng/sale'
6
6
  import sale from './sale'
7
7
  import address from 'address-client/src/address'
8
8
  import ldap from 'ldap-clients/src/ldap'
File without changes
File without changes
Binary file