sale-client 4.3.37 → 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/components/revenue/comprehen/StairPrice/GasPrice.vue +6 -4
- 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
|
}
|
|
@@ -164,10 +164,10 @@
|
|
|
164
164
|
</div>
|
|
165
165
|
</div>
|
|
166
166
|
<div class="row" >
|
|
167
|
-
<div class="col-sm-6 form-group">
|
|
167
|
+
<div class="col-sm-6 form-group" >
|
|
168
168
|
<label class="font_normal_body ">优 先 级</label>
|
|
169
169
|
<input :disabled='isEdit' class="input_search" placeholder="优先级" style="width:60%"
|
|
170
|
-
type="text" v-model="model.f_priority"
|
|
170
|
+
type="text" v-model="model.f_priority" >
|
|
171
171
|
</div>
|
|
172
172
|
</div>
|
|
173
173
|
<div class="row">
|
|
@@ -227,6 +227,7 @@ let initGen = async function (self, val) {
|
|
|
227
227
|
if (res.data.length === 1) {
|
|
228
228
|
// 判断当前气价是否是待审核气价
|
|
229
229
|
hasUnAudit = res.data[0].id !== val.id
|
|
230
|
+
console.log(hasUnAudit)
|
|
230
231
|
} else if (res.data.length > 1) {
|
|
231
232
|
self.$showAlert('意外获取到多条待审核记录!请联系管理人员!', 'danger', 0)
|
|
232
233
|
}
|
|
@@ -273,6 +274,7 @@ let initGen = async function (self, val) {
|
|
|
273
274
|
stairshow: false,
|
|
274
275
|
model: {
|
|
275
276
|
f_price_type: [],
|
|
277
|
+
f_priority:100,
|
|
276
278
|
f_stairmonths: 1,
|
|
277
279
|
f_perform_date: '',
|
|
278
280
|
detailprice: [],
|
|
@@ -283,8 +285,7 @@ let initGen = async function (self, val) {
|
|
|
283
285
|
f_deduction_way: this.config.deductionWay,
|
|
284
286
|
f_islow_income: '0',
|
|
285
287
|
f_isheat: '0',
|
|
286
|
-
f_comments: ''
|
|
287
|
-
f_priority: 100
|
|
288
|
+
f_comments: ''
|
|
288
289
|
},
|
|
289
290
|
// 编辑控制
|
|
290
291
|
isEdit: false,
|
|
@@ -461,6 +462,7 @@ let initGen = async function (self, val) {
|
|
|
461
462
|
f_price_type: '',
|
|
462
463
|
f_stairmonths: 1,
|
|
463
464
|
f_perform_date: '',
|
|
465
|
+
f_priority:100,
|
|
464
466
|
detailprice: [],
|
|
465
467
|
f_stair_start_date: '',
|
|
466
468
|
f_population_increment: 0,
|
|
@@ -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'
|