sale-client 4.2.74 → 4.2.75

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.
File without changes
File without changes
@@ -0,0 +1,2 @@
1
+ #Mon Oct 27 16:31:04 CST 2025
2
+ gradle.version=5.2.1
Binary file
File without changes
@@ -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://113.219.4.57:31467/', 'http://113.219.4.57:31467/']
4
+ const [ serverRul, localUrl ] = ['http://123.57.92.217:8900/', 'http://123.57.92.217:8900/']
5
5
  var merge = require('webpack-merge')
6
6
  var baseConfig = require('./webpack.dev.conf')
7
7
  var devConfig = {
@@ -50,12 +50,12 @@ 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
- // },
53
+ '/api/af-revenue': {
54
+ // pathRewrite: {
55
+ // '/api/af-revenue': '/af-revenue'
56
+ // },
57
+ target: serverRul
58
+ },
59
59
  '/api': {
60
60
  target: serverRul
61
61
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sale-client",
3
- "version": "4.2.74",
3
+ "version": "4.2.75",
4
4
  "description": "收费模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -3,7 +3,7 @@
3
3
  <validator name='v' @valid="$emit('valid')" @invalid="$emit('invalid')">
4
4
  <form class="form-horizontal select-overspread ">
5
5
  <div class="row">
6
- <div class="col-sm-4 form-group " :class="[$v.f_user_name.required ? 'has-error' : '']"
6
+ <div class="col-sm-4 form-group " :class="[!baseinfo.base.f_user_name ? 'has-error' : '']"
7
7
  v-if="getConfigShowItem('f_user_name')">
8
8
  <label for="f_user_name" class="font_normal_body">*{{getConfigLabelName('f_user_name','用户姓名')}}</label>
9
9
  <input type="text" v-model="baseinfo.base.f_user_name"
@@ -391,6 +391,12 @@
391
391
  doNothing () {
392
392
  // console.log('啥也不做')
393
393
  },
394
+ resetValidation () {
395
+ this.baseinfo = Object.assign({}, this.baseinfo)
396
+ this.$nextTick(() => {
397
+ this.$resetValidation()
398
+ })
399
+ },
394
400
  readIDCardCallback (compoent, msg) {
395
401
  // console.log('进入高拍仪',msg)
396
402
  if (msg.err !== 0) {
@@ -423,6 +429,11 @@
423
429
  }
424
430
  })
425
431
  }
432
+ },
433
+ 'baseinfo.base.f_user_name'(val) {
434
+ console.log('f_user_name变化:', val);
435
+ // 手动触发验证状态检查
436
+ this.$resetValidation()
426
437
  }
427
438
  },
428
439
  computed: {
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/jinhuang/sale'
5
+ import FilialeSale from './filiale/ruihua/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'