This commit is contained in:
魏啾
2024-12-11 17:31:16 +08:00
3 changed files with 20 additions and 4 deletions

View File

@@ -44,6 +44,7 @@ const user = {
localStorage.setItem("loginType", res.loginType);
localStorage.setItem("userInfo", JSON.stringify(res.user.user));
localStorage.setItem("mainId", res.mainId);
localStorage.setItem("expireDate", res.expireDate);
setToken(res.token, rememberMe);
commit("SET_TOKEN", res.token);
setUserInfo(res.user, commit);

View File

@@ -314,6 +314,11 @@ export default {
};
},
mounted() {
// 增加首页提示是否账号30天过期
let date = dayjs(localStorage.getItem("expireDate")).diff(dayjs().format('YYYY-MM-DD'), 'day')
if (date <= 30 && date >= 0) {
this.$alert(`店铺账号有限期至${localStorage.getItem("expireDate")},店铺账号到期剩余${date}天!`, '提示');
}
// this.summaryGet();
this.dateAmount();
this.dateProduct();

View File

@@ -45,9 +45,14 @@ export default {
},
methods: {
toggleSelection() {
try {
this.$refs.refdialogpackagetable.forEach((a) => {
a.clearSelection();
})
this.show = false
} catch (error) {
}
},
handleSelectionChange(val, index) {
try {
@@ -73,6 +78,11 @@ export default {
})
} catch (error) { }
this.multipleSelection = []
// 不用选套餐
if (item.groupType == 0) {
this.$emit("dialogpackageconfirm", this.listdata, [item.proGroupVo[0].goods]);
return false;
}
this.disabledshow = true
console.log(this.listdata, this.multipleSelection);
this.show = true;