parent
ed9599ac8b
commit
33eaa1adcb
@ -1,4 +1,4 @@ |
||||
#TARO_APP_API=https://yjx.dev.yaojiankang.top |
||||
TARO_APP_API=https://playedu.yaojiankang.top |
||||
TARO_APP_API=https://yjx.dev.yaojiankang.top |
||||
#TARO_APP_API=https://playedu.yaojiankang.top |
||||
TARO_APP_LGOIN=true |
||||
|
||||
|
@ -0,0 +1,14 @@ |
||||
import {request} from "@/api/request"; |
||||
|
||||
interface HourHistorys { |
||||
course: Curriculum |
||||
data: Record<number, HourHistory[]> |
||||
hour: Hour |
||||
} |
||||
|
||||
export const courseApi = { |
||||
/** 课时学习记录 */ |
||||
hourHistory(courseId: string, hourId: string) { |
||||
return request<HourHistorys>(`/api/v1/course/${courseId}/hour/${hourId}/info`, "GET") |
||||
} |
||||
} |
@ -0,0 +1,57 @@ |
||||
.page { |
||||
padding: 30px !important; |
||||
box-sizing: border-box; |
||||
} |
||||
|
||||
.cur { |
||||
background: #fff; |
||||
overflow: hidden; |
||||
border-radius: 16px; |
||||
font-weight: 500; |
||||
position: relative; |
||||
} |
||||
|
||||
.classHour { |
||||
background: rgba(#000, .6); |
||||
position: absolute; |
||||
top: 250rpx; |
||||
width: 100%; |
||||
font-size: 25rpx; |
||||
line-height: 50rpx; |
||||
text-align: center; |
||||
color: #fff; |
||||
font-weight: 100; |
||||
left: 0; |
||||
} |
||||
|
||||
.title { |
||||
padding: 10rpx; |
||||
height: 100rpx; |
||||
} |
||||
|
||||
.image { |
||||
width: 100%; |
||||
height: 300rpx; |
||||
display: block; |
||||
background: #ddd; |
||||
} |
||||
|
||||
.progressBox { |
||||
background: #fff; |
||||
padding: 20rpx; |
||||
margin-top: 30rpx; |
||||
border-radius: 30rpx; |
||||
} |
||||
|
||||
.recordItem { |
||||
padding: 24px 0 38rpx; |
||||
border-bottom: 1px solid #F5F8F7; |
||||
font-size: 26rpx; |
||||
color: #606563; |
||||
line-height: 1.75; |
||||
} |
||||
|
||||
.progress { |
||||
color: #45D4A8; |
||||
} |
||||
|
Loading…
Reference in new issue