123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182 |
- <template>
- <view class="page_view">
- <top-return :color="'#FFF'" text="评测列表"></top-return>
- <!-- 骨架页
- <view style="margin:140rpx 20rpx 20rpx 20rpx; z-index: 9;">
- <u-skeleton :rows="examData.length" rowsHeight="200px" :title="false" :loading="loading">
- </u-skeleton>
- </view> -->
- <view class="bg_card"></view>
- <!-- 页面标题内容 -->
- <view class="flex_cloumn">
- <view class="flex_baseline">
- <view class="content_title" style="font-size: 60rpx;">{{dayTime.split('月')[0]}}</view>
- <view class="content_title" style="margin-left: 10rpx;">月</view>
- <view class="content_title" style="font-size: 60rpx; margin-left: 10rpx;">{{dayTime.split('月')[1]}}
- </view>
- <view class="content_title" style="margin-left: 10rpx;">日</view>
- <view class="content_title" style="margin-left: 10rpx;font-size: 50rpx;">{{value}}</view>
- <view class="content_title" style="margin-left: 10rpx;">完成</view>
- </view>
- <view class="flex_baseline">
- <view class="content_subtitle" style="opacity: 0.8;">孩子共</view>
- <view class="content_subtitle" style="margin-left: 20rpx;font-size: 40rpx;transform: skew(-15deg);">
- {{examData.length}}
- </view>
- <view class="content_subtitle" style="margin-left: 20rpx;opacity: 0.8;">例评测</view>
- </view>
- </view>
- <!-- 卡片内容 -->
- <view class="card_view">
- <view class="card_item" style="width: 100%;" v-for="(item,index) in examData" :key="index"
- @click="navExamData(index)">
- <view class="card_title">
- <view class="front_tag" style="height: 40rpx;"></view>
- <view class="title" style="font-size: 36rpx;">{{item.examInfo.name}}</view>
- <view
- :class="item.examInfo.progress === 'finish'?'t-icon t-icon-yiwancheng1':'t-icon t-icon-jinhangzhong'"
- style="position: absolute; width: 100rpx; height: 100rpx;margin-left: 570rpx;margin-top: 50rpx;">
- </view>
- </view>
- <view class="cloumn">
- <view class="flex_row">
- <view class="tag">
- <view class="tag_text">{{item.examInfo.subjects[0].name}}</view>
- </view>
- <view class="tag" style="margin-left: 20rpx;">
- <view class="tag_text">{{item.examInfo.examType.name}}</view>
- </view>
- </view>
- <view class="flex_baseline" style="margin-top: 20rpx;">
- <view class="subtitle">布置老师:</view>
- <view class="title" style="margin-left: 20rpx; font-size: 30rpx;">{{item.examInfo.creatorId}}
- </view>
- <view class="subtitle" style="margin-left: 20rpx;">截至时间:</view>
- <view class="title" style="margin-left: 20rpx; font-size: 30rpx;">
- {{$timeStampToTime(item.examInfo.endTime)}}
- </view>
- </view>
- </view>
- <view class="content_box">
- <view class="title_box"
- :style="{backgroundColor: item.examInfo.progress === 'finish'? '#23b46c': '#4169E1' }">
- <view class="title_text">{{item.examInfo.papers[0].name}}</view>
- </view>
- <view class="content_detail"></view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import {
- mapState,
- mapMutations
- } from 'vuex'
- export default {
- computed: {
- ...mapState('m_children', ['examData'])
- },
- data() {
- return {
- value: '',
- dayTime: ''
- }
- },
- onLoad(parameter) {
- this.value = parameter.value
- this.dayTime = (new Date()).format('M-d').replace('-', '月')
- },
- methods: {
- navExamData(index) {
- uni.navigateTo({
- url: `/subpkg/datalist/examdata?index=${index}`
- })
- }
- }
- }
- </script>
- <style lang="scss">
- .subtitle {
- font-weight: 400;
- font-size: 26rpx;
- }
- .tag {
- border-radius: 6rpx;
- border: 1rpx solid $color-blue;
- padding: 5rpx 16rpx;
- .tag_text {
- font-size: 22rpx;
- color: $color-blue;
- }
- }
- .content_box {
- margin: 20rpx;
- padding: 0 20rpx;
- background-color: #f6f6f6;
- border-radius: 10rpx;
- .title_box {
- position: relative;
- top: -20rpx;
- width: fit-content;
- height: 36rpx;
- border-radius: 10rpx;
- padding: 5rpx 20rpx;
- .title_text {
- font-size: 25rpx;
- font-weight: bold;
- color: #FFF;
- }
- }
- .content_detail {
- font-size: 30rpx;
- font-weight: bold;
- color: $title;
- word-break: break-all;
- }
- .content_subtitle {
- font-size: 25rpx;
- font-weight: bold;
- color: $subtitle;
- }
- }
- .flex_cloumn {
- margin: 140rpx 0 0 50rpx;
- height: 170rpx;
- justify-content: space-around;
- .content_title {
- font-size: 35rpx;
- font-weight: bold;
- transform: skew(-15deg);
- color: #FFF;
- z-index: 2;
- }
- .content_subtitle {
- font-size: 35rpx;
- color: #FFF;
- z-index: 2;
- }
- }
- .cloumn {
- display: flex;
- flex-direction: column;
- margin: 20rpx 50rpx;
- }
- </style>
|