Files
learning-system-mobile/pages/learnPath/allPath.vue
zhangsir 480e1b0ed9 筛选
2024-06-22 13:49:33 +08:00

107 lines
2.0 KiB
Vue

<template>
<view class="all_path">
<view class="headers">
<text>全岗位路径图</text>
<view class="go_to" @click="goSearch">
<text class="text">筛选</text>
<image class="img" src="../../static/images/learnpath/uotdown.png" mode=""></image>
</view>
</view>
<view class="path">
<view class="item">
<image class="img" src="../../static/images/learnpath/thispath.png" mode=""></image>
<text class="text">当前路径</text>
</view>
<view class="item">
<image class="img" src="../../static/images/learnpath/otherpath.png" mode=""></image>
<text class="text">当前路径</text>
</view>
<view class="item">
<image class="img" src="../../static/images/learnpath/notpath.png" mode=""></image>
<text class="text">当前路径</text>
</view>
</view>
<view class="tabel">
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
onLoad() {
},
methods: {
goSearch(){
uni.navigateTo({
url: '/pages/learnPath/pathSearch'
})
},
}
}
</script>
<style>
.all_path{
padding: 0 30rpx;
.headers{
margin-top: 38rpx;
position: relative;
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 40rpx;
font-weight: 500;
font-size: 36rpx;
color: #333333;
.go_to{
display: flex;
align-items: center;
position: absolute;
right: 0;
top: 0;
.text{
font-weight: 400;
font-size: 28rpx;
color: #666666;
line-height: 40rpx;
text-align: left;
margin-right: 16rpx;
}
.img{
width: 24rpx;
height: 16rpx;
}
}
}
.path{
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 30rpx;
.item{
display: flex;
align-items: center;
.img{
width: 40rpx;
height: 36rpx;
margin-right: 8rpx;
}
.text{
font-weight: 400;
font-size: 28rpx;
color: #333333;
line-height: 40rpx;
text-align: left;
}
}
}
}
</style>