|
|
@@ -467,7 +467,7 @@ export default {
|
|
|
})
|
|
|
.then(() => {
|
|
|
if (dayjs().isSameOrBefore(dayjs(this.orderInfo.payTime).add(this.holdDays, 'days'))) {
|
|
|
- this.$toast(this.holdDays + '天后才能寄售');
|
|
|
+ this.$toast('持有满' + this.holdDays + '天才能寄售');
|
|
|
} else if (!this.info.consignment) {
|
|
|
Dialog.confirm({
|
|
|
title: '寄售上架',
|
|
|
@@ -493,9 +493,7 @@ export default {
|
|
|
});
|
|
|
},
|
|
|
Add() {
|
|
|
- if (this.userInfo.authStatus === 'SUCCESS') {
|
|
|
- this.$router.push('/giveSearch?id=' + this.info.id);
|
|
|
- } else if (this.userInfo.authStatus === 'PENDING' || this.userInfo.authStatus === 'FAIL') {
|
|
|
+ if (this.userInfo.authStatus === 'PENDING' || this.userInfo.authStatus === 'FAIL') {
|
|
|
Dialog.confirm({
|
|
|
title: '认证信息',
|
|
|
message: '用户认证中,是否查看认证'
|
|
|
@@ -509,6 +507,10 @@ export default {
|
|
|
}).then(() => {
|
|
|
this.$router.push('/Authentication');
|
|
|
});
|
|
|
+ } else if (dayjs().isSameOrBefore(dayjs(this.orderInfo.payTime).add(this.holdDays, 'days'))) {
|
|
|
+ this.$toast('持有满' + this.holdDays + '天才能转赠');
|
|
|
+ } else if (this.userInfo.authStatus === 'SUCCESS') {
|
|
|
+ this.$router.push('/giveSearch?id=' + this.info.id);
|
|
|
}
|
|
|
},
|
|
|
Exhibition() {
|