This commit is contained in:
zhangsir
2024-07-09 14:23:30 +08:00
parent 6b7cec48f2
commit 11a036b0f8
4 changed files with 37 additions and 22 deletions

View File

@@ -88,9 +88,14 @@
goAllPath(){
let bandCodeList = this.bandItem.map(item => item.bandCode).join(',')
let positionIdList = this.posiData.map(item => item.positionName).join(',')
uni.navigateTo({
url: `/pages/learnPath/allPath?bandCodeList=${bandCodeList}&positionIdList=${positionIdList}`,
})
// uni.navigateTo({
// url: `/pages/learnPath/allPath?bandCodeList=${bandCodeList}&positionIdList=${positionIdList}`,
// })
uni.setStorageSync('bandCodeList', bandCodeList);
uni.setStorageSync('positionIdList', positionIdList);
uni.navigateBack({
delta: 1
});
},
getPosiList(){
getAllPosition().then(res=>{