YNUtdPlatform/pages/YNEduApp/learnProj/learnProj.vue

380 lines
9.4 KiB
Vue

<template>
<view class="page">
<u-navbar title="学习项目" @leftClick="leftClick" placeholder />
<view class="status-secs">
<view
v-for="(item, index) in statusList"
:key="item.id"
:class="[{ active: totalStatus.statusCount === item.id }]"
@click="chooseStatus(item.id)"
>
{{ item.text }}
</view>
</view>
<uni-easyinput
prefixIcon="search"
v-model="totalStatus.keyword"
placeholder="请输入项目名称"
@iconClick="toggleSearch"
></uni-easyinput>
<view class="project-cont">
<view v-for="(item, index) in projList" :key="item.id" class="single-proj" @click="toggleDetail(item.id)">
<h4 class="img">
<image src="https://cdn.uviewui.com/uview/swiper/1.jpg"></image>
</h4>
<view class="proj-detail">
<view class="detail-upper">
<h5 style="font-size: 16px">{{ item.name }}</h5>
<!-- <l-starRate v-model="item.star" :disabled="true"></l-starRate> -->
</view>
<view class="detail-lower">
<!-- <view class="avatar">
<image :src="item.avatar"></image>
</view> -->
<view class="progress">
<span>{{ item.userName }}</span>
<view class="bar">
<liu-progressbar
:progress="Number(item.trainPercentage) || 0"
color="#000"
:height="'10rpx'"
bgColor="#1989FA"
:textInside="false"
/>
</view>
</view>
</view>
</view>
</view>
</view>
</view>
</template>
<script>
import { getStudentStudyWorkList } from '@/api/eduApp'
import config from '@/config'
export default {
data() {
return {
statusList: [
// status -1: 全部 1: 已完成 0: 未完成
{ text: '全部', id: 0 },
{ text: '已完成', id: 1 },
{ text: '未完成', id: 2 }
],
// 参数状态
totalStatus: {
statusCount: 0,
keyword: '',
learnType: '',
outDateStatus: '',
qualStatus: '',
signupStatus: ''
},
// 状态选项
learnTypeRange: [
{ text: '学习类型', value: '' },
{ text: '不学', value: 1 },
{ text: '要学', value: 2 }
],
outDateStatusRange: [
{ text: '逾期状态', value: '' },
{ text: '临期', value: 1 },
{ text: '过期', value: 2 }
],
qualStatusRange: [
{ text: '合格状态', value: '' },
{ text: '合格', value: 1 },
{ text: '不及格', value: 2 }
],
signupStatusRange: [
{ text: '报名状态', value: '' },
{ text: '报了', value: 1 },
{ text: '没报', value: 2 }
],
// 项目列表
projList: []
// projList: [
// {
// id: 1,
// img: 'https://cdn.uviewui.com/uview/swiper/1.jpg',
// title: '应急抢险',
// star: 5,
// avatar: '/static/eduImg/avatar.jpg',
// user: '管理员',
// percent: 71
// },
// {
// id: 2,
// img: 'https://cdn.uviewui.com/uview/swiper/1.jpg',
// title: '应急抢险',
// star: 3,
// avatar: '/static/eduImg/avatar.jpg',
// user: '管理员',
// percent: 33
// },
// {
// id: 3,
// img: 'https://cdn.uviewui.com/uview/swiper/1.jpg',
// title: '应急抢险',
// star: 2,
// avatar: '/static/eduImg/avatar.jpg',
// user: '管理员',
// percent: 94
// },
// {
// id: 4,
// img: 'https://cdn.uviewui.com/uview/swiper/1.jpg',
// title: '应急抢险',
// star: 4,
// avatar: '/static/eduImg/avatar.jpg',
// user: '管理员',
// percent: 76
// },
// {
// id: 5,
// img: 'https://cdn.uviewui.com/uview/swiper/1.jpg',
// title: '应急抢险',
// star: 1,
// avatar: '/static/eduImg/avatar.jpg',
// user: '管理员',
// percent: 63
// },
// {
// id: 6,
// img: 'https://cdn.uviewui.com/uview/swiper/1.jpg',
// title: '应急抢险',
// star: 5,
// avatar: '/static/eduImg/avatar.jpg',
// user: '管理员',
// percent: 52
// },
// {
// id: 7,
// img: 'https://cdn.uviewui.com/uview/swiper/1.jpg',
// title: '应急抢险',
// star: 4,
// avatar: '/static/eduImg/avatar.jpg',
// user: '管理员',
// percent: 18
// }
// ]
}
},
mounted() {
this.getList()
},
methods: {
async getList() {
const params = {
userId: uni.getStorageSync('userId'),
status: '-1'
}
// const res = await getStudentStudyWorkList(params)
// this.projList = res.data
this.getStudentStudyWorkList(params)
},
async chooseStatus(count) {
this.projList = []
// 清空搜索框
this.totalStatus.keyword = ''
let params = {
userId: uni.getStorageSync('userId'),
status: '-1'
}
this.totalStatus.statusCount = count
if (count === 0) {
params.status = '-1'
} else if (count === 1) {
params.status = '1'
} else if (count === 2) {
params.status = '0'
}
// const res = await getStudentStudyWorkList(params)
// this.projList = res.data
this.getStudentStudyWorkList(params)
},
async toggleSearch() {
this.projList = []
console.log('开始搜索', this.totalStatus.keyword)
let params = {
userId: uni.getStorageSync('userId'),
status: '-1',
name: this.totalStatus.keyword
}
if (this.totalStatus.statusCount === 0) {
params.status = '-1'
} else if (this.totalStatus.statusCount === 1) {
params.status = '1'
} else if (this.totalStatus.statusCount === 2) {
params.status = '0'
}
// const res = await getStudentStudyWorkList(params)
// this.projList = res.data
this.getStudentStudyWorkList(params)
},
statusChange(item) {
console.log(this.totalStatus)
},
toggleDetail(id) {
uni.navigateTo({
url: `/pages/YNEduApp/learnProj/learnProjDetail?id=${id}`
})
},
leftClick() {
uni.navigateTo({
url: '/pages/YNEduApp/index/index'
})
},
getStudentStudyWorkList(params) {
uni.request({
url: config.baseUrl + '/exam-student/personalCenter/getStudentStudyWorkList',
method: 'post',
header: {
'Content-Type': 'application/x-www-form-urlencoded',
Authorization: uni.getStorageSync('access_token')
},
data: params,
success: res => {
console.log('🚀 ~ getList ~ res:', res)
res = res.data
this.projList = res.data
},
fail: err => {
console.log(err)
}
})
}
}
}
</script>
<style lang="scss">
.page {
width: 100vw;
height: 100vh;
background-color: #f8f8f8;
box-sizing: border-box;
padding: 0 10px;
.status-secs {
width: 100%;
display: flex;
align-items: center;
margin-bottom: 1vh;
view {
box-sizing: border-box;
padding: 0 15rpx;
font-size: 18px;
color: #9ea2ac;
font-weight: bold;
}
.active {
font-size: 28px;
color: #000;
}
}
.drops {
width: 100%;
margin-top: 1vh;
display: flex;
}
.project-cont {
width: 100%;
height: 10rpx;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
.single-proj {
width: 49%;
height: 30vh;
margin-bottom: 1vh;
border-radius: 10px;
overflow: hidden;
display: flex;
flex-direction: column;
background-color: #fff;
.img {
width: 100%;
height: 45%;
image {
width: 100%;
height: 100%;
}
}
.proj-detail {
flex: 1;
display: flex;
flex-direction: column;
.detail-upper {
width: 100%;
height: 65%;
border-bottom: 1px solid #dfdfdf;
box-sizing: border-box;
padding: 5px;
display: flex;
flex-direction: column;
justify-content: space-around;
.icons {
font-size: 12px;
color: #c0c0c0;
display: flex;
align-items: center;
span {
padding-left: 5rpx;
}
}
}
.detail-lower {
flex: 1;
box-sizing: border-box;
padding: 5px;
display: flex;
align-items: center;
.avatar {
width: 5vh;
height: 5vh;
border-radius: 50%;
overflow: hidden;
margin-right: 10rpx;
image {
width: 100%;
height: 100%;
}
}
.progress {
flex: 1;
box-sizing: border-box;
font-size: 12px;
display: flex;
flex-direction: column;
justify-content: space-around;
.bar {
flex: 1;
}
}
}
}
}
}
}
</style>