sale-client 3.6.489 → 3.6.490
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
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
<button class="button_search" v-show="!warninginfo.data.state.info" @click="operational('files_complete')" style="width: max-content;">完善信息</button>
|
|
9
9
|
<button class="button_search" v-show="warninginfo.data.state.blacklist&&!warninginfo.data.state.dibao" @click="operational('basic-living')" style="width: max-content;">低保续保</button>
|
|
10
10
|
<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>
|
|
11
|
-
<button class="button_search" v-show="!(!warninginfo.data.state.dibao&&warninginfo.data.state.dibaoend)
|
|
11
|
+
<button class="button_search" v-show="!(!warninginfo.data.state.dibao&&warninginfo.data.state.dibaoend)" @click="success()">确认</button>
|
|
12
12
|
</span>
|
|
13
13
|
</div>
|
|
14
14
|
<p>{{authorityInformation}}</p>
|
|
@@ -472,9 +472,13 @@
|
|
|
472
472
|
self.hasLimit = getLimit.data.hasLimit
|
|
473
473
|
if (self.hasLimit) {
|
|
474
474
|
if (getLimit.data.f_limit_value || getLimit.data.f_limit_amount) {
|
|
475
|
-
if (getLimit.data.f_limit_value < 0
|
|
475
|
+
if (getLimit.data.f_limit_value < 0 || getLimit.data.f_limit_amount < 0) {
|
|
476
|
+
self.maxmoney = 0
|
|
477
|
+
self.limitmoney = true
|
|
478
|
+
console.log(self.maxmoney, self.limitmoney)
|
|
476
479
|
self.$showAlert(`${getLimit.data.msg}`, 'warning', 3000)
|
|
477
|
-
|
|
480
|
+
|
|
481
|
+
// self.$dispatch('refresh')
|
|
478
482
|
} else {
|
|
479
483
|
if (getLimit.data.f_limit_value) {
|
|
480
484
|
self.maxgas = (getLimit.data.f_limit_value - 0)
|
|
@@ -429,8 +429,12 @@
|
|
|
429
429
|
if (self.hasLimit) {
|
|
430
430
|
if (getLimit.data.f_limit_value || getLimit.data.f_limit_amount) {
|
|
431
431
|
if (getLimit.data.f_limit_value < 0 || getLimit.data.f_limit_amount < 0) {
|
|
432
|
+
self.maxmoney = 0
|
|
433
|
+
self.limitmoney = true
|
|
434
|
+
console.log(self.maxmoney, self.limitmoney)
|
|
432
435
|
self.$showAlert(`${getLimit.data.msg}`, 'warning', 3000)
|
|
433
|
-
|
|
436
|
+
|
|
437
|
+
// self.$dispatch('refresh')
|
|
434
438
|
} else {
|
|
435
439
|
if (getLimit.data.f_limit_value) {
|
|
436
440
|
self.maxgas = (getLimit.data.f_limit_value - 0)
|
|
@@ -453,9 +453,13 @@ let asyncShowCardSellGas = async function (self) {
|
|
|
453
453
|
self.hasLimit = getLimit.data.hasLimit
|
|
454
454
|
if (self.hasLimit) {
|
|
455
455
|
if (getLimit.data.f_limit_value || getLimit.data.f_limit_amount) {
|
|
456
|
-
if (getLimit.data.f_limit_value < 0
|
|
456
|
+
if (getLimit.data.f_limit_value < 0 || getLimit.data.f_limit_amount < 0) {
|
|
457
|
+
self.maxmoney = 0
|
|
458
|
+
self.limitmoney = true
|
|
459
|
+
console.log(self.maxmoney, self.limitmoney)
|
|
457
460
|
self.$showAlert(`${getLimit.data.msg}`, 'warning', 3000)
|
|
458
|
-
|
|
461
|
+
|
|
462
|
+
// self.$dispatch('refresh')
|
|
459
463
|
} else {
|
|
460
464
|
if (getLimit.data.f_limit_value) {
|
|
461
465
|
self.maxgas = (getLimit.data.f_limit_value - 0)
|