This commit is contained in:
zhangsir
2024-07-10 18:18:35 +08:00
parent d1061455f6
commit 046351c883
4 changed files with 17 additions and 16 deletions

View File

@@ -1,7 +1,7 @@
<template>
<view class="all_path">
<view class="headers">
<text>全岗位路径</text>
<text>专业力必修</text>
<view class="go_to" @click="goSearch">
<text class="text">筛选</text>
<image class="img" src="../../static/images/learnpath/uotdown.png" mode=""></image>
@@ -10,15 +10,15 @@
<view class="path">
<view class="item">
<image style="width: 40rpx;height: 36rpx;" class="img" src="../../static/images/learnpath/thispath.png" mode=""></image>
<text class="text">当前路径</text>
<text class="text">当前任务</text>
</view>
<view class="item" style="margin-left: 80rpx;">
<image style="width: 40rpx;height: 36rpx;" class="img" src="../../static/images/learnpath/otherpath.png" mode=""></image>
<text class="text">其他路径</text>
<text class="text">其他任务</text>
</view>
<!-- <view class="item">
<image class="img" src="../../static/images/learnpath/notpath.png" mode=""></image>
<text class="text">其他路径(无权限)</text>
<text class="text">其他任务(无权限)</text>
</view> -->
</view>
<view class="table">
@@ -230,9 +230,9 @@
return integratedDataArray;
},
goSearch(){
let positionId = this.preparedData.map(item => item.positionName).join(',')
// let positionId = this.preparedData.map(item => item.positionName).join(',')
uni.navigateTo({
url: `/pages/learnPath/pathSearch?positionId=${positionId}`
url: `/pages/learnPath/pathSearch`
})
},
}