sale-client 3.6.488 → 3.6.489
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/package.json
CHANGED
|
@@ -444,9 +444,13 @@
|
|
|
444
444
|
self.hasLimit = getLimit.data.hasLimit
|
|
445
445
|
if (self.hasLimit) {
|
|
446
446
|
if (getLimit.data.f_limit_value || getLimit.data.f_limit_amount) {
|
|
447
|
-
if (getLimit.data.f_limit_value < 0
|
|
447
|
+
if (getLimit.data.f_limit_value < 0 || getLimit.data.f_limit_amount < 0) {
|
|
448
|
+
self.maxmoney = 0
|
|
449
|
+
self.limitmoney = true
|
|
450
|
+
console.log(self.maxmoney, self.limitmoney)
|
|
448
451
|
self.$showAlert(`${getLimit.data.msg}`, 'warning', 3000)
|
|
449
|
-
|
|
452
|
+
|
|
453
|
+
// self.$dispatch('refresh')
|
|
450
454
|
} else {
|
|
451
455
|
if (getLimit.data.f_limit_value) {
|
|
452
456
|
self.maxgas = (getLimit.data.f_limit_value - 0)
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
<button class="button_search" v-show="!warninginfo.data.state.info" @click="operational('files_complete')" style="width: max-content;">完善信息</button>
|
|
10
10
|
<button class="button_search" v-show="warninginfo.data.state.blacklist&&!warninginfo.data.state.dibao" @click="operational('basic-living')" style="width: max-content;">低保续保</button>
|
|
11
11
|
<button class="button_search" v-show="warninginfo.data.state.blacklist&&!warninginfo.data.state.dibao && warninginfo.data.state.dibaoend" @click="operational('stop-basic-living')" style="width: max-content;">停止续保</button>
|
|
12
|
-
<button class="button_search" v-show="!(!warninginfo.data.state.dibao&&warninginfo.data.state.dibaoend)
|
|
12
|
+
<button class="button_search" v-show="!(!warninginfo.data.state.dibao&&warninginfo.data.state.dibaoend)" @click="success()">确认</button>
|
|
13
13
|
</span>
|
|
14
14
|
</div>
|
|
15
15
|
<p>{{authorityInformation}}</p>
|
|
@@ -432,9 +432,13 @@
|
|
|
432
432
|
self.hasLimit = getLimit.data.hasLimit
|
|
433
433
|
if (self.hasLimit) {
|
|
434
434
|
if (getLimit.data.f_limit_value || getLimit.data.f_limit_amount) {
|
|
435
|
-
if (getLimit.data.f_limit_value < 0
|
|
435
|
+
if (getLimit.data.f_limit_value < 0 || getLimit.data.f_limit_amount < 0) {
|
|
436
|
+
self.maxmoney = 0
|
|
437
|
+
self.limitmoney = true
|
|
438
|
+
console.log(self.maxmoney, self.limitmoney)
|
|
436
439
|
self.$showAlert(`${getLimit.data.msg}`, 'warning', 3000)
|
|
437
|
-
|
|
440
|
+
|
|
441
|
+
// self.$dispatch('refresh')
|
|
438
442
|
} else {
|
|
439
443
|
if (getLimit.data.f_limit_value) {
|
|
440
444
|
self.maxgas = (getLimit.data.f_limit_value - 0)
|