Browse Source

no message

feature/feature-compatible
赖家华 7 years ago
parent
commit
de7651b696
1 changed files with 6 additions and 6 deletions
  1. 12
      src/view/month-card.vue

12
src/view/month-card.vue

@ -156,11 +156,11 @@
//
// }
if (result.code === 0 || result.code === 3) {
alert("领取成功!");
setTimeout(function () {
window.location.href = locationUrl + '/mall/web/vgoods/detail/' + that.getData.goodsNo;
}, 1000);
// window.history.go(0);
// alert("!");
// setTimeout(function () {
// window.location.href = locationUrl + '/mall/web/vgoods/detail/' + that.getData.goodsNo;
// }, 1000);
window.history.go(0);
// hide_layer(1);
} else if (result.code === 666) {
alert("您还没登录,请先登录!");
@ -183,7 +183,7 @@
filters: {
numFilter(value) {
//
let transformVal = Number(value/100).toFixed(2)
let transformVal = Number(value/100).toFixed(1)
let realVal = transformVal.substring(0, transformVal.length - 1)
// num.toFixed(3)
return Number(realVal)

Loading…
Cancel
Save