|
|
|
@ -404,6 +404,23 @@ Page({ |
|
|
|
}); |
|
|
|
}, |
|
|
|
|
|
|
|
// 跳转到货源管理页面
|
|
|
|
navigateToGoodsManage() { |
|
|
|
wx.navigateTo({ |
|
|
|
url: '/pages/goods/index', |
|
|
|
success: function () { |
|
|
|
console.log('成功跳转到货源管理页面'); |
|
|
|
}, |
|
|
|
fail: function (error) { |
|
|
|
console.error('跳转到货源管理页面失败:', error); |
|
|
|
wx.showToast({ |
|
|
|
title: '跳转失败,请稍后重试', |
|
|
|
icon: 'none' |
|
|
|
}); |
|
|
|
} |
|
|
|
}); |
|
|
|
}, |
|
|
|
|
|
|
|
// 切换侧边栏显示
|
|
|
|
toggleSidebar() { |
|
|
|
if (this.data.isDragging) { |
|
|
|
|