123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- import request from '@/helpers/request'
- import { state } from '@/state'
- import { Button, Empty, Grid, GridItem, Icon, showToast } from 'vant'
- import { defineComponent, onMounted, reactive } from 'vue'
- import styles from './index.module.less'
- import { useRoute, useRouter } from 'vue-router'
- import { postMessage, promisefiyPostMessage } from '@/helpers/native-message'
- import iconLook from './image/look.svg'
- import iconCourse from './image/icon-course.png'
- import { browser } from '@/helpers/utils'
- export default defineComponent({
- name: 'lessonCourseware',
- setup() {
- const route = useRoute()
- const router = useRouter()
- const browserInfo = browser()
- // const catchList = store
- const data = reactive({
- loading: true,
- list: [] as any
- })
- const getList = async () => {
- data.loading = true
- if (route.query.courseScheduleId) {
- try {
- const res: any = await request.post(
- state.platformApi + '/courseSchedule/getCoursewareDetail',
- {
- params: {
- courseScheduleId: route.query.courseScheduleId,
- coursewareId: route.query.id
- }
- }
- )
- if (Array.isArray(res?.data)) {
- data.list = res.data
- }
- } catch (error) {}
- } else {
- try {
- const res: any = await request.post(
- state.platformApi + '/courseSchedule/myCoursewareDetail/' + route.query.id
- )
- if (Array.isArray(res?.data)) {
- data.list = res.data
- }
- } catch (error) {}
- }
- data.loading = false
- }
- onMounted(() => {
- getList()
- })
- const handleClick = async (item: any) => {
- if (route.query.code === 'select') {
- console.log('选择课时')
- setCoursewareDetail(item)
- return
- }
- // const isCache = await checkCache(item)
- // if (!isCache) return
- router.push({
- path: '/coursewarePlay',
- query: {
- id: item.lessonCoursewareDetailId
- }
- })
- }
- // 检查课时是否有缓存
- const checkCache = async (item: any) => {
- if (browserInfo.isApp) {
- const res = await promisefiyPostMessage({
- api: 'checkCoursewareCache',
- content: {
- lessonCoursewareDetailId: item.lessonCoursewareDetailId,
- finish: true,
- rate: 0.2
- }
- })
- console.log(res)
- return res
- }
- return true
- }
- // 绑定课时
- const setCoursewareDetail = async (item: any) => {
- try {
- const res: any = await request.post(
- state.platformApi + '/courseSchedule/setCoursewareDetail',
- {
- params: {
- courseScheduleId: route.query.courseScheduleId,
- coursewareDetailId: item.lessonCoursewareDetailId
- }
- }
- )
- if (res.code === 200) {
- showToast('保存成功')
- postMessage({ api: 'back' })
- }
- } catch (error) {}
- }
- return () => (
- <div style={{ paddingTop: '14px' }}>
- <Grid gutter={14} columnNum={3} class={styles.grid}>
- {data.list.map((item: any) => {
- return (
- <GridItem>
- <div class={styles.gridItem} onClick={() => handleClick(item)}>
- <img src={iconCourse} class={styles.cover} />
- <div class={styles.title}>
- <div>{item.coursewareDetailName}</div>
- {route.query.code !== 'select' && <div>已使用 {item.useNum} 次</div>}
- </div>
- {route.query.code !== 'select' ? (
- <div class={styles.num} onClick={(e: Event) => {
- e.stopPropagation()
- }}>
- 缓存
- <Icon name="play-circle-o" />
- </div>
- ) : (
- <div class={styles.num}>选择</div>
- )}
- {route.query.code == 'select' && !item.unlock && (
- <div class={styles.look} onClick={(e: Event) => e.stopPropagation()}>
- <Icon name={iconLook} /> 未解锁
- </div>
- )}
- </div>
- </GridItem>
- )
- })}
- </Grid>
- {!data.loading && !data.list.length && <Empty description="空空如也" />}
- <Button
- onClick={() => {
- location.href =
- 'http://192.168.3.114:1000/teacher.html#/coursewarePlay?id=1610595720511209474&courseId=1612270880549044226'
- }}
- >
- 胜强测试
- </Button>
- </div>
- )
- }
- })
|