修改今日免单标题

This commit is contained in:
duan 2024-05-16 09:49:17 +08:00
parent c234c61dfc
commit afedc67e9e
2 changed files with 2 additions and 7 deletions

View File

@ -38,10 +38,6 @@
}); });
break; break;
case 'relative': case 'relative':
uni.setStorage({
key: 'titleName',
data: item.name,
});
uni.setStorage({ uni.setStorage({
key: 'itemData', key: 'itemData',
data: item, data: item,

View File

@ -113,10 +113,9 @@
this.orderfindWiningUser() this.orderfindWiningUser()
let _this = this let _this = this
uni.getStorage({ uni.getStorage({
key: 'titleName', key: 'itemData',
success: function(res) { success: function(res) {
console.log(res.data); _this.titlename = res.data.name
_this.titlename = res.data
} }
}); });
}, },