sale-client 4.3.38 → 4.3.39

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
@@ -1,2 +1,2 @@
1
- #Mon Jan 05 11:37:36 CST 2026
1
+ #Wed Mar 18 10:18:57 CST 2026
2
2
  gradle.version=5.2.1
Binary file
@@ -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://192.168.50.67:31567/', 'http://192.168.50.67:31567/']
4
+ const [ serverRul, localUrl ] = ['http://123.180.154.5:31467/', 'http://123.180.154.5:31467/']
5
5
  var merge = require('webpack-merge')
6
6
  var baseConfig = require('./webpack.dev.conf')
7
7
  var devConfig = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sale-client",
3
- "version": "4.3.38",
3
+ "version": "4.3.39",
4
4
  "description": "收费模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -45,7 +45,7 @@
45
45
  async userfees (userinfoid) {
46
46
  console.log('获取保险费' + userinfoid)
47
47
  if (userinfoid) {
48
- this.feelist = await this.$resetpost('api/af-revenue/sql/singleTable_OrderBy', {data: {tablename: 't_userfees', condition: `f_userinfo_id='${userinfoid}'`, items: '*', orderitem: 'f_operate_date desc' }})
48
+ this.feelist = await this.$resetpost('api/af-revenue/sql/singleTable_OrderBy', {data: {tablename: 't_userfees', condition: `f_userinfo_id='${userinfoid}' and f_state = '有效'`, items: '*', orderitem: 'f_operate_date desc' }})
49
49
  if (this.feelist.data.length !== 0) {
50
50
  this.row = this.feelist.data[0]
51
51
  }
@@ -34,14 +34,14 @@
34
34
  </div>
35
35
  </div>
36
36
  <div class="row">
37
- <div class="col-sm-4 form-group" >
37
+ <div class="col-sm-4 form-group" :class="[$v.f_salecount.required ? 'has-error' : '']">
38
38
  <label class="font_normal_body">购买年限</label>
39
39
  <input v-model="model.f_salecount" v-el:style v-next-el="inpipe" class="input_search"
40
- placeholder="购买年限" style="width: 60%" type="number" @change="getTotal()">
40
+ placeholder="购买年限" v-validate:f_insurance_company='{required: true }' style="width: 60%" type="number" @change="getTotal()">
41
41
  </div>
42
42
  <div class="col-sm-4 form-group" >
43
43
  <label class="font_normal_body">结束日期</label>
44
- <input v-model="model.f_expiration_date" style="width: 60%" placeholder="保险到期时间" :value.sync='model.f_expiration_date' class="input_search" type="text" >
44
+ <input v-model="model.f_expiration_date" style="width: 60%" placeholder="保险到期时间" :value.sync='model.f_expiration_date' class="input_search" type="text" :disabled="true" >
45
45
  </div>
46
46
  <div class="col-sm-4 form-group" >
47
47
  <label class="font_normal_body">&nbsp;&nbsp;&nbsp;邮&nbsp;箱&nbsp;&nbsp;&nbsp;</label>
@@ -92,7 +92,7 @@ export default {
92
92
  f_insurance_number: '',
93
93
  f_expiration_date: '',
94
94
  f_email: '',
95
- f_salecount: null,
95
+ f_salecount: 1,
96
96
  f_money_all: null
97
97
  },
98
98
  paytype: [],
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/meihekou/sale'
5
+ import FilialeSale from './filiale/jinhong/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'