From 4e5c983d67adf166c75dea97ea7df022c2d1c366 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=A8=E6=A0=91=E6=9E=97?= <904079904@qq.com> Date: Tue, 24 Sep 2019 10:26:49 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../react/src/modules/message/js/MessagSub.js | 611 +++++++++--------- 1 file changed, 317 insertions(+), 294 deletions(-) diff --git a/public/react/src/modules/message/js/MessagSub.js b/public/react/src/modules/message/js/MessagSub.js index 1b1accd2b..73b791ece 100644 --- a/public/react/src/modules/message/js/MessagSub.js +++ b/public/react/src/modules/message/js/MessagSub.js @@ -1,88 +1,94 @@ -import React, { Component } from 'react'; +import React, {Component} from 'react'; import { Spin, Pagination, } from "antd"; import axios from 'axios'; -import {getImageUrl,markdownToHTML} from 'educoder'; +import {getImageUrl, markdownToHTML} from 'educoder'; import "../css/messagemy.css" + //消息页面 -class MessagSub extends Component{ +class MessagSub extends Component { constructor(props) { super(props); - this.state={ - page:1, - limit:10, - typeysl:"", - count:0, - isSpin:false, - data:undefined, + this.state = { + page: 1, + limit: 10, + typeysl: "", + count: 0, + isSpin: false, + data: undefined, } } - // 初始化数据 - componentDidMount(){ + + // 初始化数据 + componentDidMount() { // console.log("初始化数据了MessagSub"); // console.log(this.props); - this.getdata("",this.state.page); + this.getdata("", this.state.page); // this.Messageprivatemessageunreadmessage(); try { this.props.Mtab(1); - }catch (e) { + } catch (e) { } this.props.triggerRef(this) } //塞选页数 - paginationonChanges=(pageNumber)=>{ + paginationonChanges = (pageNumber) => { this.setState({ page: pageNumber, }) - this.getdata(this.state.typeysl,pageNumber); + this.getdata(this.state.typeysl, pageNumber); } //获取数据源 - getdata=(types,page)=>{ + getdata = (types, page) => { this.setState({ - isSpin:true, + isSpin: true, }) - let{limit}=this.state; + let {limit} = this.state; let url = `/users/tidings.json`; - axios.get((url),{params:{ - type:types, - page:page, - per_page:limit, - }}).then((result) => { + axios.get((url), { + params: { + type: types, + page: page, + per_page: limit, + } + }).then((result) => { if (result) { // if (result.data.status === 0) { - this.setState({ - page: page, - count: result.data.count, - typeysl: types, - isSpin: false, - data: result.data.tidings === null ? undefined : result.data.tidings === undefined ? undefined : result.data.tidings === [] ? undefined : result.data.tidings === "[]" ? undefined : result.data.tidings.length === 0 ? undefined : result.data.tidings, - }) + this.setState({ + page: page, + count: result.data.count, + typeysl: types, + isSpin: false, + data: result.data.tidings === null ? undefined : result.data.tidings === undefined ? undefined : result.data.tidings === [] ? undefined : result.data.tidings === "[]" ? undefined : result.data.tidings.length === 0 ? undefined : result.data.tidings, + }) // } } }).catch((error) => { console.log(error); this.setState({ - isSpin:false, + isSpin: false, }) }) }; - getdatas=()=>{ + getdatas = () => { this.setState({ - isSpin:true, + isSpin: true, }) - let{typeysl,page,limit}=this.state; + let {typeysl, page, limit} = this.state; let url = `/users/tidings.json`; - axios.get((url),{params:{ - type:typeysl, - page:page, - per_page:limit, - }}).then((result) => { + axios.get((url), { + params: { + type: typeysl, + page: page, + per_page: limit, + } + }).then((result) => { if (result) { // if (result.data.status === 0) { @@ -98,172 +104,172 @@ class MessagSub extends Component{ }).catch((error) => { console.log(error); this.setState({ - isSpin:false, + isSpin: false, }) }) } - componentWillUnmount(){ + componentWillUnmount() { // 卸载异步操作设置状态 this.setState = (state, callback) => { return; } } - gettourl=(item)=>{ + gettourl = (item) => { switch (item.container_type) { case "ApplyUserAuthentication" : - if(item.tiding_type==="Apply"){ - if(item.auth_type===1){ - //系统管理页面 + if (item.tiding_type === "Apply") { + if (item.auth_type === 1) { + //系统管理页面 return window.open("/managements/identity_authentication"); } - if(item.auth_type===2){ + if (item.auth_type === 2) { //系统管理页面 return window.open("/managements/professional_authentication") } - } - if(item.tiding_type ==="System"){ - // 账号管理页-认证信息 - return window.open("/account/certification") - } - return ; + } + if (item.tiding_type === "System") { + // 账号管理页-认证信息 + return window.open("/account/certification") + } + return; case "CancelUserAuthentication" : // 账号管理页-认证信息 - return window.open("/account/certification") + return window.open("/account/certification") case "CancelUserProCertification" : // 账号管理页-认证信息 - return window.open("/account/certification") + return window.open("/account/certification") case "ApplyAddDepartment" : - if(item.tiding_type==="Apply"){ + if (item.tiding_type === "Apply") { //部门审批 - return window.open("/managements/depart") + return window.open("/managements/depart") } - if(item.tiding_type==="System"){ + if (item.tiding_type === "System") { // 账号管理页/account/profile - return window.open("/account/profile") + return window.open("/account/profile") } - return ; + return; case "ApplyAddSchools" : - if(item.tiding_type==="Apply"){ + if (item.tiding_type === "Apply") { // 单位审批 - return window.open(" /managements/unit") + return window.open(" /managements/unit") } - if(item.tiding_type==="System"){ + if (item.tiding_type === "System") { // 账号管理页 - return window.open("/account/profile") + return window.open("/account/profile") } - return ; + return; case "ApplyAction" : - switch (item.parent_container_type) { - case "ApplyShixun" : - if(item.tiding_type==="Apply"){ - return window.open("/managements/shixun_authorization") - } - if(item.tiding_type==="System"){ - // 实训详情页 :identifier = identifier - return window.open(`/shixuns/${item.identifier}/challenges`) - } - case "ApplySubject" : - if(item.tiding_type==="Apply"){ - // 实训课程发布 - return window.open("/managements/subject_authorization") - } - if(item.tiding_type==="System"){ - // 实践课程详情页 :parent_container_id = parent_container_id + switch (item.parent_container_type) { + case "ApplyShixun" : + if (item.tiding_type === "Apply") { + return window.open("/managements/shixun_authorization") + } + if (item.tiding_type === "System") { + // 实训详情页 :identifier = identifier + return window.open(`/shixuns/${item.identifier}/challenges`) + } + case "ApplySubject" : + if (item.tiding_type === "Apply") { + // 实训课程发布 + return window.open("/managements/subject_authorization") + } + if (item.tiding_type === "System") { + // 实践课程详情页 :parent_container_id = parent_container_id - return window.open(`/paths/${item.parent_container_id}`) - } - case "TrialAuthorization" : - if(item.tiding_type==="Apply"){ - // 试用授权页面 - return window.open("/managements/trial_authorization") - } - if(item.tiding_type==="System"){ - // 账号管理页 - return window.open("/account/profile") - } - } - return ; + return window.open(`/paths/${item.parent_container_id}`) + } + case "TrialAuthorization" : + if (item.tiding_type === "Apply") { + // 试用授权页面 + return window.open("/managements/trial_authorization") + } + if (item.tiding_type === "System") { + // 账号管理页 + return window.open("/account/profile") + } + } + return; case 'JoinCourse' : // 课堂详情页 :id = - return window.open(`/courses/${item.belong_container_id}/teachers`) + return window.open(`/courses/${item.belong_container_id}/teachers`) case 'StudentJoinCourse': // 课堂详情页 :id = container_id - if(item.tiding_type === 'Apply') { - return window.open(`/courses/${item.belong_container_id}/teachers`); + if (item.tiding_type === 'Apply') { + return window.open(`/courses/${item.belong_container_id}/teachers`); } - if(item.tiding_type === 'System'){ + if (item.tiding_type === 'System') { //教学案例详情 :id = container_id - return window.open(`/courses/${item.belong_container_id}/students`); + return window.open(`/courses/${item.belong_container_id}/students`); } case 'DealCourse': // 课堂详情页 :id = container_id - return window.open(`/courses/${item.belong_container_id}/shixun_homeworks/${item.container_id}`) + return window.open(`/courses/${item.belong_container_id}/shixun_homeworks/${item.container_id}`) case 'TeacherJoinCourse': // 课堂详情页 :id = container_id - return window.open(`/courses/${item.belong_container_id}/shixun_homeworks/${item.container_id}`) + return window.open(`/courses/${item.belong_container_id}/shixun_homeworks/${item.container_id}`) case 'Course' : // 课堂详情页 :id = container_id - if(item.tiding_type==="Delete"){ + if (item.tiding_type === "Delete") { - return; + return; } - return window.open(`/courses/${item.belong_container_id}/shixun_homeworks/${item.container_id}`) + return window.open(`/courses/${item.belong_container_id}/shixun_homeworks/${item.container_id}`) case 'ArchiveCourse' : // 课堂详情页 :id = container_id - return window.open(`/courses/${item.belong_container_id}/shixun_homeworks/${item.container_id}`) + return window.open(`/courses/${item.belong_container_id}/shixun_homeworks/${item.container_id}`) case "Shixun" : - return window.open(`/shixuns/${item.identifier}/challenges`) + return window.open(`/shixuns/${item.identifier}/challenges`) case "Subject" : // 实践课程详情页 :id = container_id - return window.open(`/paths/${item.container_id}`) + return window.open(`/paths/${item.container_id}`) case "JournalsForMessage" : - switch (item.parent_container_type) { - case "Principal" : - // 反馈页 :id = parent_container_id - // 不用跳了 - return ''; - case "HomeworkCommon" : - //学生作业页 homework = parent_container_id - if(item.homework_type==="normal"){ - //普通作业 - return window.open(`/courses/${item.belong_container_id}/common_homeworks/${item.parent_container_id}/question`) - } - if(item.homework_type==="group"){ - //分组作业 - return window.open(`/courses/${item.belong_container_id}/group_homeworks/${item.parent_container_id}/question`) - } - if(item.homework_type==="practice"){ - //实训作业 - return window.open(`/courses/${item.belong_container_id}/shixun_homeworks/${item.parent_container_id}/list?tab=1`) - } - return ""; - case "GraduationTopic" : - // 毕业目标页 parent_container_id - return window.open(`/courses/${item.belong_container_id}/graduation_topics/${item.parent_container_id}/detail`) - case "StudentWorksScore" : - //学生作业页 - if(item.homework_type==="normal"){ - //普通作业 - return window.open(`/courses/${item.belong_container_id}/common_homeworks/${item.parent_container_id}/question`) - } - if(item.homework_type==="group"){ - //分组作业 - return window.open(`/courses/${item.belong_container_id}/group_homeworks/${item.parent_container_id}/question`) - } - if(item.homework_type==="practice"){ - //实训作业 - return window.open(`/courses/${item.belong_container_id}/shixun_homeworks/${item.parent_container_id}/list?tab=1`) - } - return ""; - } + switch (item.parent_container_type) { + case "Principal" : + // 反馈页 :id = parent_container_id + // 不用跳了 + return ''; + case "HomeworkCommon" : + //学生作业页 homework = parent_container_id + if (item.homework_type === "normal") { + //普通作业 + return window.open(`/courses/${item.belong_container_id}/common_homeworks/${item.parent_container_id}/question`) + } + if (item.homework_type === "group") { + //分组作业 + return window.open(`/courses/${item.belong_container_id}/group_homeworks/${item.parent_container_id}/question`) + } + if (item.homework_type === "practice") { + //实训作业 + return window.open(`/courses/${item.belong_container_id}/shixun_homeworks/${item.parent_container_id}/list?tab=1`) + } + return ""; + case "GraduationTopic" : + // 毕业目标页 parent_container_id + return window.open(`/courses/${item.belong_container_id}/graduation_topics/${item.parent_container_id}/detail`) + case "StudentWorksScore" : + //学生作业页 + if (item.homework_type === "normal") { + //普通作业 + return window.open(`/courses/${item.belong_container_id}/common_homeworks/${item.parent_container_id}/question`) + } + if (item.homework_type === "group") { + //分组作业 + return window.open(`/courses/${item.belong_container_id}/group_homeworks/${item.parent_container_id}/question`) + } + if (item.homework_type === "practice") { + //实训作业 + return window.open(`/courses/${item.belong_container_id}/shixun_homeworks/${item.parent_container_id}/list?tab=1`) + } + return ""; + } case "Memo" : // 交流问答页 :id = parent_container_id - return window.open(`/forums/${item.parent_container_id}`); + return window.open(`/forums/${item.parent_container_id}`); case "Message" : // 交流问答页 :id = parent_container_id - return window.open(`/forums/`); + return window.open(`/forums/`); case "Watcher" : // 用户个人中心页 :id = item.trigger_user.login return window.open(`/users/${item.trigger_user.login}/courses`) @@ -271,7 +277,7 @@ class MessagSub extends Component{ // 这块太复杂 不好处理 return ''; case "Grade" : - //个人中心页 :id = item.trigger_user.login + //个人中心页 :id = item.trigger_user.login // return window.open(`/users/${item.trigger_user.login}/courses`; return ""; case "JoinProject" : @@ -282,7 +288,7 @@ class MessagSub extends Component{ return window.open(`/projects/${item.container_id}`) case 'DealProject': //项目详情页 :id = container_id - return window.open(`/projects/${item.container_id}`) + return window.open(`/projects/${item.container_id}`) case 'ManagerJoinProject': //项目详情页 :id = container_id return window.open(`/projects/${item.container_id}`) @@ -305,22 +311,22 @@ class MessagSub extends Component{ case "ExerciseScore": // 课堂-学生试卷详情 :id = container_id :user_id = trigger_user.id return window.open(` /courses/${item.belong_container_id}/exercises/${item.container_id}/student_exercise_list?tab=0`); - //记得跳评阅页面 + //记得跳评阅页面 default : // 课堂-试卷列表详情 :id = container_id return window.open(`/courses/${item.belong_container_id}/exercises/${item.container_id}/student_exercise_list?tab=0`); } case 'StudentGraduationTopic' : - //课堂-毕业选题详情 :id = parent_container_id + //课堂-毕业选题详情 :id = parent_container_id return window.open(`/courses/${item.belong_container_id}/graduation_topics/${item.parent_container_id}/detail`) case 'DealStudentTopicSelect' : - //课堂-毕业选题详情 :id = parent_container_id + //课堂-毕业选题详情 :id = parent_container_id return window.open(`/courses/${item.belong_container_id}/graduation_topics/${item.parent_container_id}/detail`) case 'GraduationTask' : //课堂-毕业任务页 :id = container_id return window.open(`/courses/${item.belong_container_id}/graduation_tasks/${item.container_id}`) case "GraduationWork" : - //课堂-毕业xx页 :id = container_id + //课堂-毕业xx页 :id = container_id return window.open(`/courses/${item.belong_container_id}/graduation_tasks/${item.container_id}`) case "GraduationWorkScore" : // 课堂-毕业xx页 :id = parent_container_id @@ -329,70 +335,70 @@ class MessagSub extends Component{ switch (item.parent_container_type) { case "AnonymousCommentFail" : // 课堂-作业列表 homework = container_id - if(item.homework_type==="normal"){ + if (item.homework_type === "normal") { //普通作业 return window.open(`/courses/${item.belong_container_id}/common_homeworks/${item.parent_container_id}/list`) } - if(item.homework_type==="group"){ + if (item.homework_type === "group") { //分组作业 return window.open(`/courses/${item.belong_container_id}/group_homeworks/${item.parent_container_id}/list`) } - if(item.homework_type==="practice"){ + if (item.homework_type === "practice") { //实训作业 return window.open(`/courses/${item.belong_container_id}/shixun_homeworks/${item.parent_container_id}/list?tab=0`) } case "HomeworkPublish" : - if(item.homework_type==="normal"){ + if (item.homework_type === "normal") { //普通作业 return window.open(`/courses/${item.belong_container_id}/common_homeworks/${item.parent_container_id}/list`) } - if(item.homework_type==="group"){ + if (item.homework_type === "group") { //分组作业 return window.open(`/courses/${item.belong_container_id}/group_homeworks/${item.parent_container_id}/list`) } - if(item.homework_type==="practice"){ + if (item.homework_type === "practice") { //实训作业 return window.open(`/courses/${item.belong_container_id}/shixun_homeworks/${item.parent_container_id}/list?tab=0`) } case "AnonymousAppeal" : - if(item.homework_type==="normal"){ + if (item.homework_type === "normal") { //普通作业 return window.open(`/courses/${item.belong_container_id}/common_homeworks/${item.parent_container_id}/list`) } - if(item.homework_type==="group"){ + if (item.homework_type === "group") { //分组作业 return window.open(`/courses/${item.belong_container_id}/group_homeworks/${item.parent_container_id}/list`) } - if(item.homework_type==="practice"){ + if (item.homework_type === "practice") { //实训作业 return window.open(`/courses/${item.belong_container_id}/shixun_homeworks/${item.parent_container_id}/list?tab=0`) } default : // 课堂-作业列表 homework = container_id - if(item.homework_type==="normal"){ + if (item.homework_type === "normal") { //普通作业 return window.open(`/courses/${item.belong_container_id}/common_homeworks/${item.parent_container_id}/list`) } - if(item.homework_type==="group"){ + if (item.homework_type === "group") { //分组作业 return window.open(`/courses/${item.belong_container_id}/group_homeworks/${item.parent_container_id}/list`) } - if(item.homework_type==="practice"){ + if (item.homework_type === "practice") { //实训作业 return window.open(`/courses/${item.belong_container_id}/shixun_homeworks/${item.parent_container_id}/list?tab=0`) } } case "StudentWork" : //课堂-作业 :id = container_id - if(item.homework_type==="normal"){ + if (item.homework_type === "normal") { //普通作业 return window.open(`/courses/${item.belong_container_id}/common_homeworks/${item.parent_container_id}/${item.container_id}/appraise`) } - if(item.homework_type==="group"){ + if (item.homework_type === "group") { //分组作业/courses/1208/group_homeworks/22373/1219130/appraise return window.open(`/courses/${item.belong_container_id}/group_homeworks/${item.parent_container_id}/${item.container_id}/appraise`) } - if(item.homework_type==="practice"){ + if (item.homework_type === "practice") { //实训作业 return window.open(`/courses/${item.belong_container_id}/shixun_homeworks/${item.parent_container_id}/list?tab=0`) } @@ -425,7 +431,7 @@ class MessagSub extends Component{ // //实训作业 // return window.open(`/courses/${item.belong_container_id}/shixun_homeworks/${item.parent_container_id}/list?tab=0`) // } - return window.open(`/courses/${item.belong_container_id}/common_homeworks/${item.trigger_user.id}/${item.parent_container_id}/appraise`); + return window.open(`/courses/${item.belong_container_id}/common_homeworks/${item.trigger_user.id}/${item.parent_container_id}/appraise`); case "ChallengeWorkScore" : return ''; case "SendMessage" : @@ -448,174 +454,191 @@ class MessagSub extends Component{ // /managements/library_applies return window.open(`/managements/library_applies`) } - if(item.tiding_type === 'System'){ + if (item.tiding_type === 'System') { //教学案例详情 :id = container_id return window.open(`/moop_cases/${item.container_id}`) } case "ProjectPackage" : - if(item.tiding_type==="Destroyed"){ - return ; - } - if(item.tiding_type==="Destroyed_end"){ - return ; - }else { - if (item.tiding_type === 'Apply') { - ///managements/project_package_applies - return window.open(`/managements/project_package_applies`) + if (item.tiding_type === "Destroyed") { + return; } - // if(item.tiding_type === 'System'){ + if (item.tiding_type === "Destroyed_end") { + return; + } else { + if (item.tiding_type === 'Apply') { + ///managements/project_package_applies + return window.open(`/managements/project_package_applies`) + } + // if(item.tiding_type === 'System'){ //众包详情 :id = container_id return window.open(`/crowdsourcing/${item.container_id}`) - // } + // } } - case "Discuss": - return window.open(`/shixuns/${item.identifier}/shixun_discuss`); + case "Discuss": + return window.open(`/shixuns/${item.identifier}/shixun_discuss`); case "Video": - if(item.tiding_type==="Apply"){ + if (item.tiding_type === "Apply") { return window.open(`/managements/video_applies`); - }else if(item.tiding_type==="System"){ + } else if (item.tiding_type === "System") { return window.open(`/users/${this.props.current_user.login}/videos`); } return ''; - case "PublicCourseStart": - return window.open(`/courses/${item.container_id}/informs`); - case "SubjectStartCourse": + case "PublicCourseStart": + return window.open(`/courses/${item.container_id}/informs`); + case "SubjectStartCourse": return window.open(`/paths/${item.container_id}`); + case "ResubmitStudentWork": + return window.open(`/courses/${item.belong_container_id}/graduation_tasks/${item.container_id}/appraise`); + case "AdjustScore": + //belong_container_id course的id + return window.open(`/courses/${item.belong_container_id}/graduation_tasks/${item.parent_container_id}`); default : - return window.open("/") + return window.open("/") } } + render() { - let{page,limit,typeysl,count,isSpin,data}=this.state; + let {page, limit, typeysl, count, isSpin, data} = this.state; // console.log("6868686868"); // console.log(data); return ( -
- {/*头部筛选数据*/} - - {/*下面内容页面*/} -
- {/*这里可以进行数据处理*/} -
- - - { - data===undefined?"":data.length===0? -
- -

暂无数据哦~

-
- :data.map((item,key)=>{ - // console.log(data) - // ridinglist-subs - var boolps=true; - if(item.container_type==="PraiseTread"||item.container_type==="Grade"||item.container_type==="ChallengeWorkScore"){ - boolps=false; - } - if(item.container_type==="JournalsForMessage"){ - if(item.parent_container_type==="Principal"){ - boolps=false; - } - if(item.parent_container_type==="HomeworkCommon"){ - if(item.homework_type===null||item.homework_type===undefined){ - boolps=false; - } - } - } - // if(item.container_type==="HomeworkCommon"){ - // if(item.parent_container_type==="AnonymousAppeal"){ - // boolps=false; - // } - // } - if(item.container_type==="ProjectPackage"){ - if(item.tiding_type==="Destroyed_end"){ - boolps=false; + { + data === undefined ? "" : data.length === 0 ? +
+ +

暂无数据哦~

+
+ : data.map((item, key) => { + // console.log(data) + // ridinglist-subs + var boolps = true; + if (item.container_type === "PraiseTread" || item.container_type === "Grade" || item.container_type === "ChallengeWorkScore") { + boolps = false; + } + if (item.container_type === "JournalsForMessage") { + if (item.parent_container_type === "Principal") { + boolps = false; + } + if (item.parent_container_type === "HomeworkCommon") { + if (item.homework_type === null || item.homework_type === undefined) { + boolps = false; + } + } } - if(item.tiding_type==="Destroyed"){ - boolps=false; + // if(item.container_type==="HomeworkCommon"){ + // if(item.parent_container_type==="AnonymousAppeal"){ + // boolps=false; + // } + // } + if (item.container_type === "ProjectPackage") { + if (item.tiding_type === "Destroyed_end") { + boolps = false; + } + if (item.tiding_type === "Destroyed") { + boolps = false; + } + } + if (item.container_type === "Course") { + if (item.tiding_type === "Delete") { + boolps = false; + } } - } - if(item.container_type==="Course"){ - if(item.tiding_type==="Delete"){ - boolps=false; - } - } - return( -
-
this.gettourl(item)}> - this.myCome(item)} src={getImageUrl("images/"+item.trigger_user.image_url)} className="radius mr10 fl myimgw48 myimgh48"/> -
-

- this.myCome(item)}>{item.trigger_user.name} - {item.time} - {item.tiding_type==="Apply"?( - item.status===0? - 待处理:"" - ):""} - {item.tiding_type==="Apply"?( - item.status===1? - 已处理:"" - ):""} + return ( +

+
this.gettourl(item)}> + this.myCome(item)} + src={getImageUrl("images/" + item.trigger_user.image_url)} + className="radius mr10 fl myimgw48 myimgh48"/> +
+

+ this.myCome(item)}>{item.trigger_user.name} + {item.time} + {item.tiding_type === "Apply" ? ( + item.status === 0 ? + 待处理 : "" + ) : ""} + {item.tiding_type === "Apply" ? ( + item.status === 1 ? + 已处理 : "" + ) : ""} -

- -

-
+ } + +

+
- -
+ +
-
- ) - })} - +
+ ) + })} +
- {/*页数*/} - { data===undefined?"" - : - (count>10? -
-
- -
-
:"" - ) + {/*页数*/} + {data === undefined ? "" + : + (count > 10 ? +
+
+ +
+
: "" + ) - } -
+ } +
-
- + + ) } } + export default MessagSub; \ No newline at end of file