Merge branch 'dev'

This commit is contained in:
none 2023-07-31 14:40:29 +08:00
commit e8e047da37
15 changed files with 387 additions and 118 deletions

View File

@ -31,3 +31,8 @@ export function playPing(courseId: number, hourId: number) {
export function latestLearn() { export function latestLearn() {
return client.get(`/api/v1/user/latest-learn`, {}); return client.get(`/api/v1/user/latest-learn`, {});
} }
//下载课件
export function downloadAttachment(courseId: number, id: number) {
return client.get(`/api/v1/course/${courseId}/attach/${id}/download`, {});
}

View File

@ -56,6 +56,7 @@ export class HttpClient {
GoLogin(); GoLogin();
} else if (status === 404) { } else if (status === 404) {
// 跳转到404页面 // 跳转到404页面
GoLogin();
} else if (status === 403) { } else if (status === 403) {
// 跳转到无权限页面 // 跳转到无权限页面
} else if (status === 500) { } else if (status === 500) {

View File

@ -1,7 +1,7 @@
import React, { useState } from "react"; import React from "react";
import { NavBar, Badge, TabBar } from "antd-mobile"; import { TabBar } from "antd-mobile";
import styles from "./index.module.scss"; import styles from "./index.module.scss";
import { Link, useNavigate, useLocation } from "react-router-dom"; import { useNavigate, useLocation } from "react-router-dom";
export const TabBarFooter: React.FC = () => { export const TabBarFooter: React.FC = () => {
const navigate = useNavigate(); const navigate = useNavigate();

View File

@ -155,3 +155,15 @@ code {
.dplayer-mobile-play { .dplayer-mobile-play {
opacity: 1 !important; opacity: 1 !important;
} }
.course-tab-box {
width: 100%;
min-height: 24px;
display: flex;
align-items: center;
position: relative;
margin-bottom: 20px;
.adm-tabs-tab-wrapper {
padding: 0 36px 0 0;
}
}

View File

@ -79,6 +79,14 @@
padding: 20px; padding: 20px;
margin-top: -20px; margin-top: -20px;
z-index: 10; z-index: 10;
.tabs {
width: 100%;
min-height: 24px;
display: flex;
align-items: center;
position: relative;
margin-bottom: 20px;
}
.desc { .desc {
width: 100%; width: 100%;
height: auto; height: auto;
@ -130,3 +138,65 @@
} }
} }
} }
.attachments-cont {
width: 100%;
height: auto;
display: flex;
flex-direction: column;
.attachments-item {
width: 100%;
height: 69px;
background: #fafafa;
border-radius: 7px;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
box-sizing: border-box;
padding: 10px 15px 10px 10px;
text-align: left;
margin-bottom: 10px;
&:last-child {
margin-bottom: 0px;
}
.left-cont {
width: calc(100% - 34px);
display: flex;
flex-direction: column;
.label {
width: 100%;
height: 16px;
display: flex;
align-items: center;
span {
height: 16px;
font-size: 12px;
font-weight: 400;
color: rgba(0, 0, 0, 0.45);
line-height: 16px;
}
}
.title {
width: 100%;
margin-top: 14px;
height: 16px;
font-size: 14px;
font-weight: 400;
color: rgba(0, 0, 0, 0.88);
line-height: 16px;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
}
.download {
width: 34px;
font-size: 12px;
font-weight: 400;
color: #ff4d4f;
line-height: 16px;
text-align: right;
}
}
}

View File

@ -1,10 +1,10 @@
import { useEffect, useState } from "react"; import { useEffect, useState } from "react";
import { Image, ProgressCircle } from "antd-mobile"; import { Image, ProgressCircle, Tabs, Toast } from "antd-mobile";
import styles from "./index.module.scss"; import styles from "./index.module.scss";
import { useNavigate, useParams } from "react-router-dom"; import { useNavigate, useLocation, useParams } from "react-router-dom";
import backIcon from "../../assets/images/commen/icon-back-n.png"; import backIcon from "../../assets/images/commen/icon-back-n.png";
import { course as vod } from "../../api/index"; import { course as vod } from "../../api/index";
import { isEmptyObject } from "../../utils/index"; import { isEmptyObject, isWechat, isIOS } from "../../utils/index";
import { Empty } from "../../components"; import { Empty } from "../../components";
import { HourCompenent } from "./compenents/hour"; import { HourCompenent } from "./compenents/hour";
@ -16,10 +16,25 @@ type LocalCourseHour = {
[key: number]: CourseHourModel[]; [key: number]: CourseHourModel[];
}; };
type tabModal = {
key: number;
label: string;
};
type attachModal = {
id: number;
course_id: number;
rid: number;
sort: number;
title: string;
type: string;
url?: string;
};
const CoursePage = () => { const CoursePage = () => {
const { courseId } = useParams(); const { courseId } = useParams();
const navigate = useNavigate(); const navigate = useNavigate();
const result = new URLSearchParams(useLocation().search);
const [course, setCourse] = useState<CourseModel | null>(null); const [course, setCourse] = useState<CourseModel | null>(null);
const [chapters, setChapters] = useState<ChapterModel[]>([]); const [chapters, setChapters] = useState<ChapterModel[]>([]);
const [hours, setHours] = useState<LocalCourseHour | null>(null); const [hours, setHours] = useState<LocalCourseHour | null>(null);
@ -31,30 +46,43 @@ const CoursePage = () => {
const [courseTypeText, setCourseTypeText] = useState(""); const [courseTypeText, setCourseTypeText] = useState("");
const [userCourseProgress, setUserCourseProgress] = useState(0); const [userCourseProgress, setUserCourseProgress] = useState(0);
const [tabKey, setTabKey] = useState(Number(result.get("tab") || 1));
const [attachments, setAttachments] = useState<attachModal[]>([]);
const [items, setItems] = useState<tabModal[]>([]);
const [downLoadTemplateURL, setDownLoadTemplateURL] = useState("");
useEffect(() => { useEffect(() => {
if (courseId) { getDetail();
getDetail(Number(courseId));
}
}, [courseId]); }, [courseId]);
const getDetail = (cid: number) => { const getDetail = () => {
vod.detail(cid).then((res: any) => { vod.detail(Number(courseId)).then((res: any) => {
let courseItem: CourseModel = res.data.course; let courseItem: CourseModel = res.data.course;
document.title = courseItem.title || "课程详情"; document.title = courseItem.title || "课程详情";
setCourse(courseItem); setCourse(courseItem);
setChapters(res.data.chapters); setChapters(res.data.chapters);
setHours(res.data.hours); setHours(res.data.hours);
if (res.data.learn_record) { if (res.data.learn_record) {
setLearnRecord(res.data.learn_record); setLearnRecord(res.data.learn_record);
} }
if (res.data.learn_hour_records) { if (res.data.learn_hour_records) {
setLearnHourRecord(res.data.learn_hour_records); setLearnHourRecord(res.data.learn_hour_records);
} }
let arr = res.data.attachments;
let tabs = [
{
key: 1,
label: `课程目录`,
},
];
if (arr.length > 0) {
tabs.push({
key: 2,
label: `课程附件`,
});
setAttachments(arr);
}
setItems(tabs);
}); });
}; };
@ -78,13 +106,54 @@ const CoursePage = () => {
navigate(`/course/${cid}/hour/${id}`); navigate(`/course/${cid}/hour/${id}`);
}; };
const downLoadFile = (cid: number, id: number) => {
vod.downloadAttachment(cid, id).then((res: any) => {
if (isWechat()) {
if (isIOS()) {
Toast.show("请点击右上角···浏览器打开下载");
}
var input = document.createElement("input");
input.value = res.data.download_url;
document.body.appendChild(input);
input.select();
document.execCommand("Copy");
document.body.removeChild(input);
window.open(res.data.download_url);
} else {
if (isIOS()) {
setDownLoadTemplateURL(res.data.download_url);
setTimeout(() => {
let $do: any = document.querySelector("#downLoadExcel");
$do.click();
}, 500);
} else {
window.open(res.data.download_url);
}
}
});
};
return ( return (
<div className="main-body"> <div className="main-body">
<a
style={{ display: "none" }}
id="downLoadExcel"
href={downLoadTemplateURL}
download={true}
></a>
<div className="main-header" style={{ backgroundColor: "#FF4D4F" }}> <div className="main-header" style={{ backgroundColor: "#FF4D4F" }}>
<Image <Image
className="back-icon" className="back-icon"
src={backIcon} src={backIcon}
onClick={() => navigate(-1)} onClick={() => {
if (window.history.length <= 1) {
// 将页面跳转到首页
navigate("/");
} else {
// 返回到前一个页面
navigate(-1);
}
}}
/> />
</div> </div>
<div className={styles["top-content"]}> <div className={styles["top-content"]}>
@ -116,6 +185,29 @@ const CoursePage = () => {
</div> </div>
</div> </div>
<div className={styles["other-content"]}> <div className={styles["other-content"]}>
<div className="course-tab-box">
<Tabs
activeLineMode="fixed"
activeKey={String(tabKey)}
onChange={(key: any) => {
setTabKey(Number(key));
}}
style={{
"--fixed-active-line-width": "20px",
"--active-line-height": "3px",
"--active-title-color": "rgba(0,0,0,0.88)",
"--active-line-border-radius": "2px",
"--title-font-size": "16px",
"--content-padding": "18px",
}}
>
{items.map((item) => (
<Tabs.Tab title={item.label} key={item.key} />
))}
</Tabs>
</div>
{tabKey === 1 && (
<>
{course?.short_desc && ( {course?.short_desc && (
<> <>
<div className={styles["desc"]}>{course.short_desc}</div> <div className={styles["desc"]}>{course.short_desc}</div>
@ -126,7 +218,10 @@ const CoursePage = () => {
{chapters.length === 0 && !hours && <Empty />} {chapters.length === 0 && !hours && <Empty />}
{chapters.length === 0 && hours && ( {chapters.length === 0 && hours && (
<div className={styles["hours-list-box"]} style={{ marginTop: 10 }}> <div
className={styles["hours-list-box"]}
style={{ marginTop: 10 }}
>
{hours[0].map((item: CourseHourModel) => ( {hours[0].map((item: CourseHourModel) => (
<div key={item.id} className={styles["hours-it"]}> <div key={item.id} className={styles["hours-it"]}>
<HourCompenent <HourCompenent
@ -168,6 +263,38 @@ const CoursePage = () => {
</div> </div>
)} )}
</div> </div>
</>
)}
{tabKey === 2 && (
<div className={styles["attachments-cont"]}>
{attachments.map((item: any, index: number) => (
<div key={index} className={styles["attachments-item"]}>
<div className={styles["left-cont"]}>
<div className={styles["label"]}>
<i
className="iconfont icon-icon-file"
style={{
fontSize: 15,
color: "rgba(0,0,0,0.3)",
marginRight: 5,
}}
/>
<span></span>
</div>
<div className={styles["title"]}>
{item.title}.{item.ext}
</div>
</div>
<div
className={styles["download"]}
onClick={() => downLoadFile(item.course_id, item.id)}
>
</div>
</div>
))}
</div>
)}
</div> </div>
</div> </div>
); );

View File

@ -90,15 +90,7 @@
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
} }
} .act-category-child-tit {
.active-child-item {
width: 100%;
float: left;
height: auto;
box-sizing: border-box;
padding-left: 20px;
.category-child-tit {
width: 100%; width: 100%;
font-size: 14px; font-size: 14px;
font-weight: 400; font-weight: 400;

View File

@ -5,7 +5,7 @@ import { user } from "../../api/index";
import styles from "./index.module.scss"; import styles from "./index.module.scss";
import { useSelector } from "react-redux"; import { useSelector } from "react-redux";
import { useNavigate, useLocation } from "react-router-dom"; import { useNavigate, useLocation } from "react-router-dom";
import { Footer, TabBarFooter, Empty } from "../../components"; import { Footer, Empty } from "../../components";
import { CoursesModel } from "./compenents/courses-model"; import { CoursesModel } from "./compenents/courses-model";
import { isEmptyObject } from "../../utils/index"; import { isEmptyObject } from "../../utils/index";
@ -163,16 +163,13 @@ const IndexPage = () => {
return ( return (
<> <>
{data.map((item: any) => ( {data.map((item: any) => (
<div key={item.key} className={styles["child-item"]}>
<div <div
key={item.key}
className={ className={
item.key === categoryId item.key === categoryId
? styles["active-child-item"] ? styles["act-category-child-tit"]
: styles["child-item"] : styles["category-child-tit"]
} }
>
<div
className={styles["category-child-tit"]}
onClick={() => { onClick={() => {
setCategoryId(item.key); setCategoryId(item.key);
setCategoryText(item.title); setCategoryText(item.title);
@ -324,7 +321,6 @@ const IndexPage = () => {
</> </>
)} )}
</div> </div>
<TabBarFooter></TabBarFooter>
</div> </div>
); );
}; };

View File

@ -0,0 +1,17 @@
import { Suspense } from "react";
import { Outlet } from "react-router-dom";
import LoadingPage from "../../loading";
import { TabBarFooter } from "../../../components";
const WithoutHeaderWithoutFooter = () => {
return (
<>
<Suspense fallback={<LoadingPage />}>
<Outlet />
</Suspense>
<TabBarFooter></TabBarFooter>
</>
);
};
export default WithoutHeaderWithoutFooter;

View File

@ -0,0 +1,13 @@
import { Suspense } from "react";
import { Outlet } from "react-router-dom";
import LoadingPage from "../../loading";
const WithoutHeaderWithoutFooter = () => {
return (
<Suspense fallback={<LoadingPage />}>
<Outlet />
</Suspense>
);
};
export default WithoutHeaderWithoutFooter;

View File

@ -1,5 +1,5 @@
.main-body { .main-body {
position: fixed; position: absolute;
bottom: 0; bottom: 0;
left: 0; left: 0;
right: 0; right: 0;
@ -160,7 +160,12 @@
bottom: 0px; bottom: 0px;
left: 20px; left: 20px;
right: 20px; right: 20px;
height: 253px; min-height: 253px;
// box-sizing: border-box;
// padding-bottom: calc(
// 53px + constant(safe-area-inset-bottom)
// ); /* 兼容iOS 11.0 - 11.2 */
// padding-bottom: calc(53px + env(safe-area-inset-bottom)); /* 兼容iOS 11.2+ */
.dialog-box { .dialog-box {
width: 100%; width: 100%;
height: 162px; height: 162px;

View File

@ -7,7 +7,6 @@ import { loginAction, logoutAction } from "../../store/user/loginUserSlice";
import { ImageUploadItem } from "antd-mobile/es/components/image-uploader"; import { ImageUploadItem } from "antd-mobile/es/components/image-uploader";
import styles from "./index.module.scss"; import styles from "./index.module.scss";
import { useDispatch, useSelector } from "react-redux"; import { useDispatch, useSelector } from "react-redux";
import { TabBarFooter } from "../../components";
import moreIcon from "../../assets/images/commen/icon-more.png"; import moreIcon from "../../assets/images/commen/icon-more.png";
const MemberPage = () => { const MemberPage = () => {
@ -317,7 +316,6 @@ const MemberPage = () => {
</div> </div>
</div> </div>
</Mask> </Mask>
<TabBarFooter></TabBarFooter>
</div> </div>
); );
}; };

View File

@ -2,7 +2,7 @@ import { useState, useEffect } from "react";
import { Skeleton } from "antd-mobile"; import { Skeleton } from "antd-mobile";
import styles from "./index.module.scss"; import styles from "./index.module.scss";
import { course } from "../../api/index"; import { course } from "../../api/index";
import { TabBarFooter, Empty } from "../../components"; import { Empty } from "../../components";
import { CoursesModel } from "./compenents/courses-model"; import { CoursesModel } from "./compenents/courses-model";
import moment from "moment"; import moment from "moment";
@ -143,7 +143,6 @@ const StudyPage = () => {
</> </>
)} )}
</div> </div>
<TabBarFooter></TabBarFooter>
</div> </div>
); );
}; };

View File

@ -1,17 +1,29 @@
import { lazy } from "react"; import { lazy } from "react";
import { RouteObject } from "react-router-dom"; import { RouteObject } from "react-router-dom";
import { system, user } from "../api"; import { system, user } from "../api";
import { getToken } from "../utils"; import { getToken } from "../utils";
// 页面加载
import { InitPage } from "../pages/init"; import { InitPage } from "../pages/init";
import IndexPage from "../pages/index/index";
import LoginPage from "../pages/login"; import LoginPage from "../pages/login";
import MemberPage from "../pages/member/index"; import WithFooter from "../pages/layouts/with-footer";
import ChangePasswordPage from "../pages/change-password/index"; import WithoutFooter from "../pages/layouts/without-footer";
import ChangeDepartmentPage from "../pages/change-department/index";
import StudyPage from "../pages/study/index"; //用户中心页面
import CoursePage from "../pages/course/index"; const MemberPage = lazy(() => import("../pages/member/index"));
import CoursePlayPage from "../pages/course/video"; //主页
const IndexPage = lazy(() => import("../pages/index/index"));
//修改密码页面
const ChangePasswordPage = lazy(() => import("../pages/change-password/index"));
//修改部门页面
const ChangeDepartmentPage = lazy(
() => import("../pages/change-department/index")
);
//学习页面
const StudyPage = lazy(() => import("../pages/study/index"));
//课程页面
const CoursePage = lazy(() => import("../pages/course/index"));
const CoursePlayPage = lazy(() => import("../pages/course/video"));
import PrivateRoute from "../components/private-route"; import PrivateRoute from "../components/private-route";
let RootPage: any = null; let RootPage: any = null;
@ -53,24 +65,34 @@ const routes: RouteObject[] = [
children: [ children: [
{ {
path: "/", path: "/",
element: <PrivateRoute Component={<IndexPage />} />, element: <WithFooter />,
}, children: [
{ {
path: "/login", path: "/",
element: <LoginPage />, element: <PrivateRoute Component={<IndexPage />} />,
}, },
{ {
path: "/member", path: "/member",
element: <PrivateRoute Component={<MemberPage />} />, element: <PrivateRoute Component={<MemberPage />} />,
}, },
{
path: "/change-password",
element: <PrivateRoute Component={<ChangePasswordPage />} />,
},
{ {
path: "/study", path: "/study",
element: <PrivateRoute Component={<StudyPage />} />, element: <PrivateRoute Component={<StudyPage />} />,
}, },
],
},
{
path: "/",
element: <WithoutFooter />,
children: [
{
path: "/login",
element: <LoginPage />,
},
{
path: "/change-password",
element: <PrivateRoute Component={<ChangePasswordPage />} />,
},
{ {
path: "/change-department", path: "/change-department",
element: <PrivateRoute Component={<ChangeDepartmentPage />} />, element: <PrivateRoute Component={<ChangeDepartmentPage />} />,
@ -85,6 +107,8 @@ const routes: RouteObject[] = [
}, },
], ],
}, },
],
},
]; ];
export default routes; export default routes;

View File

@ -80,3 +80,13 @@ export function isMobile() {
export function isEmptyObject(obj: Object) { export function isEmptyObject(obj: Object) {
return Object.keys(obj).length === 0; return Object.keys(obj).length === 0;
} }
export function isWechat() {
let ua = window.navigator.userAgent.toLowerCase();
return /micromessenger/.test(ua);
}
export function isIOS() {
var u = navigator.userAgent;
return !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/);
}