123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730 |
- <template>
- <div class="sunshineRun">
- <div class="sunshineRun-top">
- <div class="sunshineRun-top-center">
- <div class="logo">
- <img v-if="userInfo?.logo_url" :src="userInfo.logo_url" />
- <img v-else src="@/assets/images/common/logo.png" />
- </div>
- <div class="sunshineRun-title"><img src="@/assets/images/sunshineRun/title.png" /></div>
- <div class="toolList">
- <div class="li">{{ date }}</div>
- <div class="li btn screen" :class="{ 'on': screen, 'off': !screen }" @click="getFullScreen"></div>
- <div class="li btn closeBtn" @click="confirmExit"></div>
- </div>
- </div>
- </div>
- <div class="sunshineRun-main">
- <div class="sunshineRun-left">
- <div class="list-box">
- <div class="sunshineRun-columns-title">
- <div class="title">实时数据</div>
- </div>
- <div class="testList">
- <ul>
- <TransitionGroup>
- <li v-for="(item, index) in testList" :key="item.student_id">
- <!-- <img v-if="item.student_id && item.student_icon_url" :src="item.student_icon_url" />
- <img class="noPic"
- v-else src="@/assets/images/common/noImg.png" /> -->
- <div class="nameBox">{{ item.name }}</div>
- <div class="pic" v-if="item.student_id && item.student_icon_url"
- :style="{ backgroundImage: 'url(' + item.student_icon_url + ')' }"></div>
- <div class="con">
- <!-- <div class="name">{{ item.name }}</div> -->
- <div class="score">
- <div class="quanshu">{{ item.ring_count || 0 }}<i>圈</i></div>
- <div>{{ item.distance }}<span>{{ unit }}</span></div>
- </div>
- </div>
- </li>
- </TransitionGroup>
- </ul>
- </div>
- </div>
- </div>
- <div class="sunshineRun-right">
- <div class="list-box">
- <div class="sunshineRun-columns-title">
- <div class="title">排行榜</div>
- </div>
- <div class="reportList">
- <ul>
- <li v-for="(item, index) in reportList" :key="index">
- <div class="left">
- <div class="pai"
- :class="{ 'pai1': item.rankid == 1, 'pai2': item.rankid == 2, 'pai3': item.rankid == 3 }">
- <div>{{ item.rankid }}</div>
- </div>
- <!-- <div class="pic"><img :src="item.icon" /></div> -->
- <div class="txt">
- <div>
- <div class="name">{{ item.student_name }}</div>
- <div class="className">{{ item.class_name }}</div>
- </div>
- </div>
- </div>
- <div class="right">
- <div class="score">{{ item.run_distance }}
- </div>
- <div class="unit">{{ unit }}</div>
- </div>
- </li>
- </ul>
- </div>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script setup name="SunshineRun" lang="ts">
- import { useSunshineRunSocket } from '@/utils/sunshineRunWs';
- const { proxy } = getCurrentInstance() as any;
- const router = useRouter();
- const myInfo: any = localStorage.getItem("userInfo");
- const { sunshineRunWs, startConnect } = useSunshineRunSocket();
- const data = reactive<any>({
- timerManager: {},//计时器管理
- userInfo: {},//用户信息
- testList: [],//测试列表
- reportList: [],//排行榜
- date: "",//当前时间
- unit: "",//单位
- screen: true,//全屏控制
- studentPage: {
- current: 1,
- size: 8,
- pages: 1
- }, //学生分页
- });
- const {
- timerManager,
- userInfo,
- testList,
- reportList,
- date,
- unit,
- screen,
- studentPage,
- } = toRefs(data);
- /**
- * 更新时间
- */
- const setDate = () => {
- timerManager.value.currentTime = setInterval(() => {
- date.value = proxy?.$utils.getDate();
- }, 1000)
- };
- /**
- * 屏幕模式
- */
- const getFullScreen = () => {
- screen.value = !screen.value;
- localStorage.setItem("screen", screen.value);
- proxy?.$utils.fullScreen();
- };
- /**
- * 确定退出
- */
- const confirmExit = async () => {
- if (import.meta.env.DEV) {
- getClearTimer();
- proxy?.$modal.msgSuccess('测试环境免密退出');
- await proxy?.$http.common.logout({}).then((res: any) => {
- });
- proxy?.$modal?.closeLoading()
- //清空缓存
- localStorage.clear();
- //跳转
- router.push({ path: '/login/sunshineRun' });
- } else {
- let myInfo: any = localStorage.getItem("userInfo");
- let userInfo = JSON.parse(myInfo);
- proxy?.$modal.prompt(`【${userInfo.login_name}】,请输入密码`, 'password').then((e: any) => {
- // console.log("e", e)
- if (e.action == 'confirm' && e.value) {
- getClearTimer();
- let params = {
- password: e.value
- };
- proxy?.$http.common.checkPassword(params).then(async (res: any) => {
- if (res.status === 200 || res.status === 1) {
- await proxy?.$http.common.logout({}).then((res: any) => {
- });
- proxy?.$modal?.closeLoading()
- //清空缓存
- localStorage.clear();
- //跳转
- router.push({ path: '/login/sunshineRun' });
- } else {
- proxy?.$modal.msgError(res.message);
- }
- });
- }
- }).finally(() => {
- });
- }
- };
- /**
- * 清空定时任务
- */
- const getClearTimer = (data?: any) => {
- if (data) {
- //清除指定
- clearInterval(timerManager.value[data])
- timerManager.value[data] = null;
- } else {
- //清除全部
- for (let key in timerManager.value) {
- if (timerManager.value.hasOwnProperty(key)) {
- clearInterval(timerManager.value[key])
- timerManager.value[key] = null;
- }
- }
- }
- };
- /**
- * 获取排名
- */
- const getStudentList = () => {
- let params: any = {
- page: studentPage.value.current,
- per_page: studentPage.value.size,
- };
- proxy?.$http.ranking.sunshineRunRanking(params).then((res: any) => {
- if (res.status == 200) {
- let list: any = res.sunlight_rank_data;
- reportList.value = list;
- getPages(res.total);
- }
- });
- };
- /**
- * 计算页码
- */
- const getPages = (data: any) => {
- studentPage.value.pages = Math.ceil(data / studentPage.value.size);
- };
- /**
- * 自动切换排行榜
- */
- const getAutoplay = () => {
- getStudentList();
- timerManager.value.autoplayTime = setInterval(() => {
- // 切换页码
- if (studentPage.value.current >= studentPage.value.pages || studentPage.value.current >= 5) {
- studentPage.value.current = 1;
- } else {
- studentPage.value.current++;
- }
- getStudentList();
- }, 10000);
- };
- /**
- * 获取模拟数据
- */
- const getSunshineRunPushData = async () => {
- let params = {
- password: "fb083a6fe1e14600910b06977c1d037e",
- school_id: "3"
- };
- await proxy?.$http.common.sunshineRunPushData(params).then((res: any) => {
- });
- };
- /**
- * 加载WS
- */
- const initSunshineRun = () => {
- sunshineRunWs((e: any) => {
- console.log("eeeee", e)
- if (e?.wksid) {
- startConnect();
- }
- //接收第一次成绩列表
- if (e?.cmd == 'sunlight_init_result' && e?.data.length) {
- let ids = e.data.map((item: any) => {
- return item.student_id;
- })
- let list = testList.value.filter((item: any) => {
- return !ids.includes(item.student_id);
- })
- testList.value = [...e.data, ...list];
- //模拟数据
- // setInterval(() => {
- // getSunshineRunPushData();
- // }, 1000)
- }
- //接收推送数据
- if (e?.cmd == 'sunlight_one_result' && e?.data) {
- let myIndex = testList.value.findIndex((item: any) => {
- return item.student_id == e.data.student_id;
- })
- if (myIndex != -1) {
- //如果已经存在就删除
- testList.value.splice(myIndex, 1);//删除数据
- }
- testList.value.unshift(e.data);//插入数据
- }
- });
- };
- onBeforeMount(() => {
- //获取当前时间
- setDate();
- //用户信息
- userInfo.value = JSON.parse(myInfo);
- //屏幕
- let screenData = localStorage.getItem("screen");
- if (screenData != undefined && screenData == 'false') {
- screen.value = false;
- } else {
- screen.value = true;
- }
- //单位
- unit.value = "M";
- //初始化手势
- initSunshineRun();
- //排行榜
- getAutoplay();
- })
- onMounted(() => {
- })
- onBeforeUnmount(() => {
- getClearTimer();
- })
- </script>
- <style lang="scss" scoped>
- .sunshineRun {
- width: 100%;
- height: 100%;
- padding: 0 0 1vw 0;
- display: flex;
- flex-direction: column;
- box-sizing: border-box;
- background: #3BDDCE url("@/assets/images/sunshineRun/bg.png") top center no-repeat;
- background-size: cover;
- .sunshineRun-top {
- padding: 0px 1vw;
- .sunshineRun-top-center {
- height: 10vh;
- position: relative;
- display: flex;
- justify-content: center;
- .logo {
- position: absolute;
- left: 0;
- top: 2vh;
- img {
- height: 5vh;
- }
- }
- .sunshineRun-title {
- display: inline-block;
- img {
- height: 15vh;
- }
- }
- .toolList {
- position: absolute;
- right: 0;
- top: 2vh;
- color: #EFEFEF;
- font-size: 2.5vh;
- display: flex;
- align-items: center;
- text-shadow: 1px 1px 1px #a3a3a3;
- .li {
- margin-left: 2vw;
- }
- .btn {
- width: 3vh;
- height: 3vh;
- display: block;
- background-position: center;
- background-repeat: no-repeat;
- background-size: 100% auto;
- cursor: pointer;
- }
- .closeBtn {
- background-image: url("@/assets/images/sunshineRun/close.png");
- }
- .screen.on {
- background-image: url("@/assets/images/sunshineRun/screen1.png");
- }
- .screen.off {
- background-image: url("@/assets/images/sunshineRun/screen2.png");
- }
- }
- }
- }
- .sunshineRun-main {
- display: flex;
- justify-content: space-evenly;
- height: 100%;
- .sunshineRun-columns-title {
- display: flex;
- .title {
- height: 5vh;
- line-height: 5vh;
- font-size: 3vh;
- color: #1A293A;
- padding: 0px 2vw;
- letter-spacing: 3px;
- border-top-left-radius: 2vh;
- border-top-right-radius: 2vh;
- background: radial-gradient(374% 336% at 36% 50%, #FFFFFF 0%, #07FFE7 100%);
- box-shadow: inset 0px 1px 0px 2px rgba(255, 255, 255, 0.5577);
- }
- }
- .sunshineRun-left {
- width: 76%;
- display: flex;
- flex-direction: column;
- position: relative;
- .list-box {
- display: flex;
- flex-direction: column;
- height: 100%;
- .testList {
- width: 100%;
- height: calc(100vh - 1vw - 10vh - 5vh);
- border-radius: 2vh;
- overflow-x: hidden;
- overflow-y: scroll;
- background: linear-gradient(170deg, #276066 -13%, #09111B 87%);
- box-sizing: border-box;
- border: 1px solid #FFFFFF;
- box-shadow: 0px 0px 6px 2px rgba(255, 255, 255, 0.5);
- border-top-left-radius: 0px;
- &::-webkit-scrollbar {
- width: 0px;
- }
- &::-webkit-scrollbar-thumb {
- border-width: 2px;
- border-radius: 4px;
- border-style: dashed;
- border-color: transparent;
- background-color: rgba(26, 62, 78, 0.9);
- background-clip: padding-box;
- }
- &::-webkit-scrollbar-button:hover {
- border-radius: 6px;
- background: rgba(26, 62, 78, 1);
- }
- ul {
- display: flex;
- flex-wrap: wrap;
- padding: 1.6vh 0.8vh 0px 0.8vh;
- li {
- position: relative;
- width: calc((100% / 6) - 1.6vh);
- height: calc(((100vh - 1vw - 10vh - 5vh - 1.6vh) / 3) - 1.6vh);
- margin: 0px 0.8vh 1.6vh 0.8vh;
- box-sizing: border-box;
- border: 1px solid #ffffff;
- border-radius: 1.6vh;
- overflow: hidden;
- display: flex;
- align-items: center;
- justify-content: center;
- img {
- width: 100%;
- height: 100%;
- }
- .nameBox {
- position: absolute;
- left: 0;
- top: 0;
- font-size: 1.5vw;
- color: #ffffff;
- line-height: 1;
- width: auto;
- text-align: left;
- margin-bottom: 0.7vh;
- font-weight: bold;
- display: inline-block;
- padding: 0.8vh 8% 0.8vh 5%;
- box-sizing: border-box;
- // background: linear-gradient(180deg, rgba(0, 0, 0, 0.87) 45%, rgba(18, 133, 124, 0.7367) 135%);
- background: linear-gradient(to right, rgba(15,25,38,1) 0%,rgba(49,95,126,0.6) 100%);
- border-radius: 0px 0px 1vh 0px;
- }
- .pic {
- width: 100%;
- height: 100%;
- background-size: cover;
- background-position: center
- }
- .noPic {
- width: auto;
- height: auto;
- max-width: 60% !important;
- max-height: 60% !important;
- opacity: 0.2;
- }
- .con {
- position: absolute;
- bottom: 0;
- width: 100%;
- // padding: 0.7vh 4%;
- padding: 0.8vh 4%;
- display: flex;
- align-items: center;
- // justify-content: space-between;
- flex-direction: column;
- box-sizing: border-box;
- background: linear-gradient(180deg, rgba(0, 0, 0, 0.87) 45%, rgba(18, 133, 124, 0.7367) 135%);
- .name {
- font-size: 1.5vw;
- color: #ffffff;
- line-height: 1;
- width: 100%;
- text-align: left;
- margin-bottom: 0.7vh;
- font-weight: bold;
- }
- .score {
- width: 100%;
- font-size: 1.8vw;
- color: #00FFE8;
- font-family: 'Saira-ExtraBold';
- font-style: italic;
- line-height: 1;
- text-align: right;
- display: flex;
- justify-content: space-between;
- .quanshu {
- font-style: normal;
- }
- span {
- font-size: 1.8vw;
- }
- i {
- font-size: 1.1vw;
- margin-left: 2px;
- }
- }
- }
- }
- }
- }
- }
- }
- .sunshineRun-right {
- width: 21%;
- display: flex;
- flex-direction: column;
- position: relative;
- .list-box {
- display: flex;
- flex-direction: column;
- height: 100%;
- .reportList {
- width: 100%;
- border-radius: 2vh;
- overflow: hidden;
- background: radial-gradient(90% 90% at 50% 100%, #38869E 0%, #38869E 50%, #17323D 100%);
- box-sizing: border-box;
- border: 1px solid #FFFFFF;
- display: flex;
- flex-direction: column;
- height: 100%;
- border-top-left-radius: 0px;
- ul {
- height: 100%;
- // overflow-y: scroll;
- li {
- height: calc(100% / 8);
- border-bottom: 1px solid #48677E;
- padding: 0px 5%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- transition: all 0.2s;
- box-sizing: border-box;
- // &:hover {
- // background: rgba(255, 255, 255, 0.4);
- // }
- .left {
- display: flex;
- align-items: center;
- padding-right: 5%;
- width: 100%;
- .pai {
- width: 2.5vw;
- height: 2vw;
- line-height: 1;
- text-align: center;
- color: #F9F9F9;
- font-size: 1.5vw;
- font-family: 'Saira-ExtraBold';
- margin-right: 10%;
- flex-shrink: 0;
- display: flex;
- align-items: center;
- justify-content: center;
- font-style: italic;
- }
- .pai1,
- .pai2,
- .pai3 {
- align-items: end;
- }
- .pai1 {
- background: url("@/assets/images/ranking/pai1.png") left center no-repeat;
- background-size: 100% 100%;
- }
- .pai2 {
- background: url("@/assets/images/ranking/pai2.png") left center no-repeat;
- background-size: 100% 100%;
- }
- .pai3 {
- background: url("@/assets/images/ranking/pai3.png") left center no-repeat;
- background-size: 100% 100%;
- }
- .pic {
- width: 7vh;
- height: 7vh;
- border-radius: 50%;
- display: flex;
- justify-content: center;
- align-items: center;
- overflow: hidden;
- box-sizing: border-box;
- border: 1px solid rgba(255, 255, 255, 0.5);
- margin-right: 5%;
- flex-shrink: 0;
- img {
- width: 100%;
- }
- }
- .txt {
- display: flex;
- align-items: center;
- .name {
- color: #F9F9F9;
- // font-size: 1vw;
- font-size: 1.6vw;
- }
- .className {
- color: #13ED84;
- // font-size: 0.8vw;
- font-size: 1vw;
- }
- }
- }
- .right {
- flex-shrink: 0;
- font-family: 'Saira-ExtraBold';
- // font-size: 1.4vw;
- font-size: 1.8vw;
- font-style: italic;
- .score {
- color: #ffffff;
-
- display: inline-block;
- }
- .unit {
- color: #ffffff;
- margin-left: 2px;
- display: inline-block;
- }
- }
- }
- &::-webkit-scrollbar {
- width: 0px;
- }
- &::-webkit-scrollbar-thumb {
- border-width: 2px;
- border-radius: 4px;
- border-style: dashed;
- border-color: transparent;
- background-color: rgba(216, 216, 216, 0.8);
- background-clip: padding-box;
- }
- &::-webkit-scrollbar-button:hover {
- border-radius: 6px;
- background: rgba(216, 216, 216, 0.8);
- }
- }
- }
- }
- }
- }
- }
- </style>
|