| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491 |
- <template>
- <div class="content">
- <Headside></Headside>
- <div class="sumTitle">
- <div class="lt">
- <img src="../assets/imgs/rank/fire.svg" alt="">
- <h5>卡路里排名</h5>
- </div>
- <div class="rt">
- <img src="../assets/imgs/rank/ck.svg" alt="">
- <h5>CK排名</h5>
- </div>
- <div class="md">
- <span>本轮训练排名</span>
- </div>
- </div>
- <div class="listContainer">
- <div class="lt">
- <ul>
- <div class="ltTitle">
- <span>排名</span>
- <span>成员</span>
- <span>卡路里</span>
- </div>
- <li v-for="(s,i) in students.CalSort" v-if="i <= 7"
- :class="[{ 'box animate__animated animate__flipInX': Listate[i].state }]">
- <div class="gary">
- <em>{{ i + 1 }}</em>
- <div class="head">
- <img :src="s.Head" alt="" v-if="s.Head" :class="[{'boy':s.Sex == 1},{'girl':s.Sex == 2}]">
- <img src="../static/img/people/flyhead.png" alt="" v-if="!s.Head"
- :class="[{'boy':s.Sex == 1},{'girl':s.Sex == 2}]">
- </div>
- <span class="names">{{ s.Name }}</span>
- <span class="glory">
- <img src="../assets/imgs/rank/cr.png" v-if="i == 0" alt="">
- <img src="../assets/imgs/rank/mr.png" v-if="i == 1" alt="">
- <img src="../assets/imgs/rank/pb.png" v-if="i == 2" alt="">
- </span>
- <span class="score">
- {{ s.Cle|fmtInt }}
- <!-- {{ s.Ck|fmtFloat }}-->
- </span>
- </div>
- </li>
- </ul>
- </div>
- <div class="rt">
- <ul>
- <div class="ltTitle">
- <span>排名</span>
- <span>成员</span>
- <span>CK</span>
- </div>
- <li v-for="(s,i) in students.CkSort" v-if="i <= 7"
- :class="[{ 'box animate__animated animate__flipInX': Listate[i].state }]">
- <div class="gary">
- <em>{{ i + 1 }}</em>
- <div class="head">
- <img :src="s.Head" alt="" v-if="s.Head" :class="[{'boy':s.Sex == 1},{'girl':s.Sex == 2}]">
- <img src="../static/img/people/flyhead.png" alt="" v-if="!s.Head"
- :class="[{'boy':s.Sex == 1},{'girl':s.Sex == 2}]">
- </div>
- <span class="names">{{ s.Name }}</span>
- <span class="glory">
- <img src="../assets/imgs/rank/cr.png" v-if="i == 0" alt="">
- <img src="../assets/imgs/rank/mr.png" v-if="i == 1" alt="">
- <img src="../assets/imgs/rank/pb.png" v-if="i == 2" alt="">
- </span>
- <span class="score">
- {{ s.Ck|fmtFloat }}
- </span>
- </div>
- </li>
- </ul>
- </div>
- </div>
- <div class="icons">
- <img src="../assets/imgs/rank/icons.svg" alt="">
- </div>
- </div>
- </template>
- <script>
- import Headside from '@/components/Headside'
- import {ClassUserRank} from "@/api/getApiRes";
- let qs = require('qs');
- export default {
- data() {
- return {
- eqSn: '30:9C:23:0C:8B:1E',
- pageStyle: RandomBg(),
- trueDate: true,//真实数据 true false
- autoJump: true,//开启自动跳走
- students: {
- CkSort: [],
- CalSort: [],
- },
- rankTimer: null,
- totalTime: '',
- Listate: [
- {state: false},
- {state: false},
- {state: false},
- {state: false},
- {state: false},
- {state: false},
- {state: false},
- {state: false},
- ],
- }
- },
- mounted() {
- this.init();
- this.cardPlay();
- },
- watch: {
- '$route': function (val) {
- if (val.path == '/rank') {
- if (this.trueDate) {
- this.init();
- } else {
- // this.rankTimer = setInterval(() => {
- this.students.CkSort = fakeNews(5);
- this.students.CalSort = fakeNews(5);
- // }, 5000);
- }
- } else {
- clearInterval(this.autoJump);
- clearInterval(this.rankTimer);
- }
- }
- },
- beforeDestroy() {
- clearInterval(this.rankTimer);
- this.rankTimer = null;
- },
- methods: {
- init() {
- this.getClassUserRank();
- },
- getClassUserRank() {
- let that = this;
- let param = {
- eqSn: localStorage.eqSn
- };
- let postdata = qs.stringify(param);
- ClassUserRank(postdata).then(res => {
- let json = res;
- console.log(json);
- if (json.Code == 0) {
- let totalTime = 40;
- let Studenlength = 0;
- if (json.Rs) {
- Studenlength = json.Rs.length;
- }
- // 根据人数多少显示停留时间
- if (Studenlength > 3) {
- totalTime = 60
- } else {
- totalTime = 40
- }
- this.jumpWait(totalTime);
- let CkSort = json.Rs;
- let CalSort = deepClone(json.Rs);
- let Rs = json.Rs;
- if (Rs != '') {
- // 排序
- that.students.CkSort = json.Rs.sort(function (a, b) {
- return b.Ck - a.Ck;
- });
- that.students.CalSort = CalSort.sort(function (a, b) {
- return b.Cle - a.Cle;
- });
- }
- } else {
- this.students.CkSort = [];
- this.students.CalSort = [];
- if (json.Code == '999') {
- // that.$router.push({path: '/'});
- } else {
- // 已出错
- that.$message.error(json.Memo);
- }
- }
- })
- },
- jumpWait(totalTime) {
- // 倒计时60秒自动关闭
- let that = this;
- clearInterval(clock);
- let clock = window.setInterval(() => {
- totalTime--;
- that.totalTime = totalTime;
- if (parseInt(totalTime) <= 0) {
- // 前往等待页面
- that.$router.push({path: '/'}); //todo 调试时关闭跳走
- // 计时器回收
- clearInterval(clock);
- }
- }, 1000)
- },
- cardPlay() {
- let that = this;
- // 重置一下状态
- that.Listate.map(function (t) {
- t.state = false;
- })
- let timeScope = 400;
- let timeLong;
- let row;
- for (let i = 0; i < 8; i++) {
- timeLong = parseInt(i * timeScope);
- that.timer = setTimeout(() => { //设置延迟执行
- that.Listate[i].state = true;
- }, timeLong)
- }
- },
- },
- filters: {
- fmtNum(val) {
- if (val == 0) {
- return '--'
- } else {
- if (parseInt(val) < 0) return 0;
- if (parseInt(val) > 0) return val
- }
- },
- fmtFloat(val) {
- if (val == 0) {
- return '0.0'
- } else {
- return parseFloat(val).toFixed(1);
- }
- },
- fmtInt(val) {
- if (val == 0) {
- return '0'
- } else {
- return parseInt(val);
- }
- },
- },
- components: {
- Headside
- }
- }
- </script>
- <style lang="scss" scoped>
- @mixin bg {
- height: 100%;
- background-color: #333;
- background-repeat: no-repeat;
- background-position: top center;
- background-size: 100% 100%;
- }
- @mixin cube {
- width: 100%;
- overflow: hidden;
- display: block;
- margin: 0 auto;
- }
- .content {
- background: url("../../src/assets/imgs/rank/Training.png");
- @include bg;
- .sumTitle {
- @include cube;
- width: 80%;
- height: 0.75rem;
- margin-top: 0.7rem;
- overflow: visible;
- h5 {
- float: left;
- width: 80%;
- margin: 0;
- text-align: center;
- color: #fff;
- font-size: 0.5rem;
- font-weight: bold;
- }
- .lt {
- width: 50%;
- height: 0.75rem;
- float: left;
- background: url("../../src/assets/imgs/rank/redTitel.png");
- background-repeat: no-repeat;
- background-position: top center;
- background-size: 100%;
- border-radius: 250rem;
- img {
- width: 0.51rem;
- float: left;
- }
- }
- .rt {
- width: 50%;
- height: 0.75rem;
- float: right;
- background: url("../../src/assets/imgs/rank/redTitel.png");
- background-repeat: no-repeat;
- background-position: top center;
- background-size: 100%;
- border-radius: 250rem;
- img {
- width: 0.8rem;
- float: right;
- }
- h5 {
- float: right;
- }
- }
- .md {
- position: relative;
- width: 3rem;
- height: 0.9rem;
- margin: 0 auto;
- bottom: 0.1rem;
- background: url("../../src/assets/imgs/rank/titleBg.png");
- background-repeat: no-repeat;
- background-position: top center;
- background-size: 100% 100%;
- line-height: 0.7rem;
- span {
- @include cube;
- position: relative;
- bottom: 0.65rem;
- color: #fff;
- text-align: center;
- font-size: 0.35rem;
- font-weight: bold;
- }
- }
- }
- }
- .listContainer {
- @include cube;
- width: 80%;
- padding-top: 0.5rem;
- .lt {
- width: 47%;
- float: left;
- }
- .rt {
- width: 47%;
- float: right;
- .ltTitle span {
- margin-right: 0.3rem;
- }
- }
- .ltTitle {
- @include cube;
- span {
- float: left;
- color: #fff;
- font-size: 0.25rem;
- &:nth-child(1) {
- margin-right: 1.3rem;
- }
- &:last-child {
- float: right;
- }
- }
- }
- ul {
- @include cube;
- li {
- @include cube;
- height: 0.7rem;
- padding-top: 0.2rem;
- .gary {
- @include cube;
- height: 0.6rem;
- margin-bottom: 0.3rem;
- background: url("../assets/imgs/rank/row.png");
- background-repeat: no-repeat;
- background-position: top center;
- background-size: 100% 100%;
- overflow: visible;
- border: 1px solid rgba(255, 255, 255, 0.1);
- border-radius: 250px;
- border-left: 0;
- border-top-left-radius: 0;
- border-bottom-left-radius: 0;
- }
- em {
- width: 0.6rem;
- height: 0.6rem;
- float: left;
- background: url("../assets/imgs/rank/rowTitle.png");
- background-repeat: no-repeat;
- background-position: top center;
- background-size: 100% 100%;
- text-align: left;
- text-indent: 0.1rem;
- font-size: 0.4rem;
- font-weight: bold;
- text-decoration: none;
- font-style: normal;
- color: white;
- line-height: 0.6rem;
- }
- .head {
- position: relative;
- bottom: 0.5rem;
- float: left;
- margin-left: 0.3rem;
- img {
- width: 0.65rem;
- border-radius: 250rem;
- &.girl {
- border: 1px solid #EA26EA;
- }
- &.boy {
- border: 1px solid #39B6FF;
- }
- }
- }
- .names {
- float: left;
- color: white;
- font-size: 0.3rem;
- line-height: 0.6rem;
- margin-left: 0.4rem;
- }
- .glory {
- float: left;
- margin-left: 0.4rem;
- img {
- float: right;
- width: 0.6rem;
- margin-left: 0.2rem;
- margin-top: 0.1rem;
- }
- }
- .score {
- float: right;
- color: #FFE61F;
- font-size: 0.3rem;
- line-height: 0.6rem;
- font-family: Arial;
- font-weight: bold;
- font-style: italic;
- text-align: center;
- padding-right: 0.2rem;
- }
- }
- }
- }
- .icons {
- @include cube;
- position: absolute;
- bottom: 0.2rem;
- img {
- @include cube;
- width: 40%;
- }
- }
- </style>
|