🐞 fix:修复按钮展示样式问题

This commit is contained in:
wangsongsole 2023-03-01 16:40:34 +08:00
parent 2e94f84a20
commit 4ca0dbcd5f
1 changed files with 25 additions and 22 deletions

View File

@ -29,7 +29,8 @@
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}
.bind_btn{
.bind_btn {
filter: grayscale(100%);
}
</style>
@ -58,7 +59,8 @@
满{{reduceInfo.full}}元可用
</div>
</div>
<div class="receive_btn" @click="toReceive" :class="reduceInfo.status == 0 ? 'receive_btn' : 'receive_btn bind_btn'">{{reduceInfo.status|statusFn}}</div>
<div @click="toReceive" :class="reduceInfo.status == 0 ? 'receive_btn' : 'receive_btn bind_btn'">
{{reduceInfo.status|statusFn}}</div>
<div class="validity">
有效期:{{reduceInfo.time_limit.effect_time.start_time}}至{{reduceInfo.time_limit.effect_time.end_time}}</div>
</div>
@ -73,7 +75,7 @@
<script>
new Vue({
el: "#alipay",
data() {
data () {
return {
explain: `1.在活动期间每名用户仅可参与一次活动并享受一次赠礼。请注意a如用户在参与活动前已经是亚朵酒店金卡及以上级别会员该用户无法领取亚朵酒店会员权益赠礼权益不叠加b喜马拉雅会员叠加上限为10年cQQ音乐会员叠加上限为120个月。】如用户合作平台会员叠加含本次活动领取时长达到上限时间用户将无法完整领取该合作平台赠礼因此无法领取的赠礼不做补发购买前请您确认您在合作平台会员有效期情况。
2.活动期间,开通/续费严选Pro会员年卡后赠礼将发放至“联合会员领取页面”可前往一键领取赠礼仅支持领取到同一手机号如遇到网络问题等原因可能会存在延迟到账的情况请在24小时内查看到账情况。
@ -90,10 +92,10 @@
maskshow: false,
reduceInfo: {},
couponInfo: {},
disabledBtn:false,
disabledBtn: false,
};
},
created() {
created () {
//唤起支付宝授权,打开领取
this.openId = this.getQueryString(
window.location.search,
@ -103,11 +105,11 @@
window.location.search,
"orderNumber"
);
this.orderNumber=orderNumber;
this.orderNumber = orderNumber;
this.getOrderDetail(this.orderNumber);
},
methods: {
getQueryString(path, name) {
getQueryString (path, name) {
//获取浏览器地址栏的参数
var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
var r = path.substr(1).match(reg);
@ -115,15 +117,16 @@
return null;
},
//获取订单详情
getOrderDetail(id) {
getOrderDetail (id) {
req.axiosGet('/voucher/info', {
order_number: id
}).then(res => {
this.reduceInfo = res.data.rule;
this.reduceInfo.status = res.data.status;
this.couponInfo = res.data;
}).catch();
},
toReceive() {
toReceive () {
let self = this;
//领取立减金
let data = {
@ -131,39 +134,39 @@
channel: "1", //立减金发放渠道1支付宝2微信小程序
channel_user_id: this.openId, // "渠道用户id"
};
if(this.disabledBtn){
return
}
this.disabledBtn = true;
if (this.disabledBtn) {
return;
}
this.disabledBtn = true;
req.axiosPost("/voucher/grant", data)
.then((res) => {
setTimeout(()=>{
this.disabledBtn = false;
},2000)
setTimeout(() => {
this.disabledBtn = false;
}, 2000);
if (res.code == 200) {
window.location.href = './advise.html'
window.location.href = './advise.html';
sessionStorage.setItem('messageTip', '');
} else {
window.location.href = './advise.html'
window.location.href = './advise.html';
sessionStorage.setItem('messageTip', res.message);
}
})
.catch((err) => {});
.catch((err) => { });
},
//提示弹出框
openDialog(tip) {
openDialog (tip) {
this.maskshow = true;
this.tiptext = tip;
this.popboxshow = true;
},
knowFn() {
knowFn () {
this.maskshow = false;
this.tiptext = '';
this.popboxshow = false;
}
},
filters: {
statusFn(val) {
statusFn (val) {
switch (val) {
case 0:
return '立即领取';