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.
- package/.gradle/5.2.1/fileHashes/fileHashes.lock +0 -0
- package/.gradle/8.10/checksums/checksums.lock +0 -0
- package/.gradle/8.10/dependencies-accessors/gc.properties +0 -0
- package/.gradle/8.10/executionHistory/executionHistory.bin +0 -0
- package/.gradle/8.10/executionHistory/executionHistory.lock +0 -0
- package/.gradle/8.10/fileChanges/last-build.bin +0 -0
- package/.gradle/8.10/fileHashes/fileHashes.bin +0 -0
- package/.gradle/8.10/fileHashes/fileHashes.lock +0 -0
- package/.gradle/8.10/gc.properties +0 -0
- package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +1 -1
- package/.gradle/file-system.probe +0 -0
- package/build/dev-server.js +1 -1
- package/package.json +1 -1
- package/src/components/revenue/base/leftview/UserFeeInfo.vue +1 -1
- package/src/filiale/jinhong/InsuranceTemp.vue +4 -4
- package/src/main.js +1 -1
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
#
|
|
1
|
+
#Wed Mar 18 10:18:57 CST 2026
|
|
2
2
|
gradle.version=5.2.1
|
|
Binary file
|
package/build/dev-server.js
CHANGED
|
@@ -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://
|
|
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
|
@@ -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="购买年限"
|
|
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"> 邮 箱 </label>
|
|
@@ -92,7 +92,7 @@ export default {
|
|
|
92
92
|
f_insurance_number: '',
|
|
93
93
|
f_expiration_date: '',
|
|
94
94
|
f_email: '',
|
|
95
|
-
f_salecount:
|
|
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/
|
|
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'
|