Showing
2 changed files
with
4 additions
and
2 deletions
@@ -403,7 +403,7 @@ const getGrade = (param) => { | @@ -403,7 +403,7 @@ const getGrade = (param) => { | ||
403 | costGap: upg | 403 | costGap: upg |
404 | }); | 404 | }); |
405 | 405 | ||
406 | - if (result[0].data.next_need_cost === 0) { | 406 | + if (result[0].data.next_need_cost === 0 || result[0].data.next_need_cost === '') { |
407 | // 当vip等级升至顶级时,进度条满格 | 407 | // 当vip等级升至顶级时,进度条满格 |
408 | obj = _.assign(obj, { | 408 | obj = _.assign(obj, { |
409 | percent: 100 | 409 | percent: 100 |
@@ -43,9 +43,11 @@ | @@ -43,9 +43,11 @@ | ||
43 | } | 43 | } |
44 | } | 44 | } |
45 | 45 | ||
46 | -.deal-main { | 46 | +// stylelint-disable |
47 | +.deal_main { | ||
47 | margin: 0.5rem 3%; | 48 | margin: 0.5rem 3%; |
48 | font-size: 14.4PX; | 49 | font-size: 14.4PX; |
49 | width: 94%; | 50 | width: 94%; |
50 | overflow: hidden; | 51 | overflow: hidden; |
51 | } | 52 | } |
53 | +// stylelint-enable |
-
Please register or login to post a comment