|
@@ -114,6 +114,27 @@ Vue.component('coupon-item', {
|
|
|
trigger: 'hover'
|
|
|
}
|
|
|
}
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ toUseFn: function (url) {
|
|
|
+ if (url) {
|
|
|
+ window.open(url)
|
|
|
+ } else {
|
|
|
+ this.toastFn('PC端暂无该产品,请前往移动端使用', 5000)
|
|
|
+ }
|
|
|
+ },
|
|
|
+ toastFn: function (text, duration) {
|
|
|
+ if (duration) {
|
|
|
+ duration = 3000
|
|
|
+ }
|
|
|
+ var _html = ""
|
|
|
+ _html+='<div class="custom-toast"><div class="mask" style="background-color: transparent;"></div><div class="toast-container">'
|
|
|
+ _html+='<span>' + text + '</span></div></div>'
|
|
|
+ $('body').append(_html)
|
|
|
+ setTimeout(function(){
|
|
|
+ $(".custom-toast").fadeOut().remove();
|
|
|
+ },duration)
|
|
|
+ }
|
|
|
}
|
|
|
})
|
|
|
|