|
|
@ -2561,9 +2561,9 @@ Page({ |
|
|
}, 500) |
|
|
}, 500) |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
// 显示添加货源弹窗
|
|
|
// 导航到全屏创建货源页面
|
|
|
showAddSupply(e) { |
|
|
showAddSupply(e) { |
|
|
console.log('点击创建新货源按钮'); |
|
|
console.log('点击创建新货源按钮,导航到全屏页面'); |
|
|
|
|
|
|
|
|
// 阻止事件冒泡,防止触发父元素的点击事件
|
|
|
// 阻止事件冒泡,防止触发父元素的点击事件
|
|
|
if (e && e.stopPropagation) { |
|
|
if (e && e.stopPropagation) { |
|
|
@ -2573,15 +2573,10 @@ Page({ |
|
|
// 从本地存储加载之前保存的货源数据
|
|
|
// 从本地存储加载之前保存的货源数据
|
|
|
const savedSupply = wx.getStorageSync('newSupplyDraft') || { name: '', price: '', minOrder: '', yolk: '', spec: '', imageUrls: [] }; |
|
|
const savedSupply = wx.getStorageSync('newSupplyDraft') || { name: '', price: '', minOrder: '', yolk: '', spec: '', imageUrls: [] }; |
|
|
|
|
|
|
|
|
// 直接显示创建货源弹窗,无需登录验证
|
|
|
// 导航到新的全屏创建货源页面
|
|
|
this.setData({ |
|
|
wx.navigateTo({ |
|
|
showImagePreview: false, |
|
|
url: '/pages/create-supply/index' |
|
|
showModal: true, |
|
|
|
|
|
newSupply: savedSupply |
|
|
|
|
|
}); |
|
|
}); |
|
|
|
|
|
|
|
|
// 锁定页面滚动
|
|
|
|
|
|
this.disablePageScroll(); |
|
|
|
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
// 隐藏弹窗
|
|
|
// 隐藏弹窗
|
|
|
|