123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189 |
- <template>
- <view class="page-view">
- <top-return :color="'#FFF'" text="评测列表"></top-return>
- <view class="bg-box2"></view>
- <!-- 页面标题内容 -->
- <view class="flex_cloumn">
- <view class="flex_baseline">
- <view class="content_title" style="font-size: 70rpx;">{{dayTime.split('月')[0]}}</view>
- <view class="content_title" style="margin-left: 10rpx;">月</view>
- <view class="content_title" style="font-size: 70rpx; margin-left: 10rpx;">{{dayTime.split('月')[1]}}
- </view>
- <view class="content_title" style="margin-left: 10rpx;">日</view>
- <view class="content_title" style="font-size: 40rpx;margin-left: 20rpx;">已完成</view>
- <view class="content_title" style="margin-left: 10rpx;font-size: 70rpx;">{{value}}%</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: 60rpx;">
- {{examData.length}}
- </view>
- <view class="content_subtitle" style="margin-left: 20rpx;opacity: 0.8;">例评测</view>
- </view>
- </view>
- <!-- 卡片内容 -->
- <view class="card-view">
- <!-- <view style="margin: -88rpx 0 20rpx auto;">
- <u-tabs :list="tabList" lineWidth="30" lineColor="#ff8caf" :activeStyle="{
- color: '#FFF',
- fontWeight: 'bold',
- transform: 'scale(1.07)'
- }" :inactiveStyle="{
- color: 'rgb(255,255,255,0.8)',
- transform: 'scale(1)'
- }" itemStyle="padding-left: 10px; padding-right: 10px; height: 34px;"></u-tabs>
- </view> -->
- <view class="card-item" style="width: 100%;" v-for="(item,index) in examData" :key="index" @click="navExamData(index)">
- <view class="card-title" style="padding: 40rpx;height: 40rpx;">
- <view class="t-icon t-icon-examicon" style="height: 40rpx;width: 40rpx;margin-right: 10rpx;">
- </view>
- <view class="YS-title" style="font-size: 45rpx;">{{item.examInfo.name}}</view>
- <view
- :class="item.examInfo.progress === 'finish'?'t-icon t-icon-yiwancheng1':'t-icon t-icon-jinhangzhong'"
- style="width: 55px;height: 55px;margin-left: auto;margin-right: -20rpx;">
- </view>
- </view>
- <view class="cloumn" style="margin: 0 40rpx 40rpx 40rpx;">
- <view class="flex_row">
- <view class="tag-fill" :style="{backgroundColor: item.examInfo.progress === 'finish'? '#23b46c': '#ff8caf' }">
- <view class="tag-text">{{item.examInfo.subjects[0].name}}</view>
- </view>
- <view class="tag-fill" style="margin-left: 20rpx;" :style="{backgroundColor: item.examInfo.progress === 'finish'? '#23b46c': '#ff8caf' }">
- <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="YS-title" style="margin-left: 10rpx;">{{item.examInfo.creatorId}}
- </view>
- <view class="subtitle" style="margin-left: 20rpx;">截止时间:</view>
- <view class="YS-title" style="margin-left: 10rpx;">
- {{$timeStampToTime(item.examInfo.endTime)}}
- </view>
- </view>
- </view>
- <view class="content_box">
- <view class="title_box"
- :style="{backgroundColor: item.examInfo.progress === 'finish'? '#23b46c': '#ff8caf' }">
- <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 {
- // tabList: [{
- // name: '已完成'
- // }, {
- // name: '未完成'
- // }],
- 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-fill {
- background-color: $color-pink;
- }
- .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: 6rpx;
- 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: 40rpx;
- font-family: YSfont;
- color: #FFF;
- z-index: 2;
- text-shadow: 1px -1px 0px #c0c0c0, 2px -2px 0px #b0b0b0, 1px -1px 0px #a0a0a0, 2px -2px 0px #909090;
- }
- .content_subtitle {
- font-size: 40rpx;
- font-family: YSfont;
- color: #FFF;
- z-index: 2;
- }
- }
- .cloumn {
- display: flex;
- flex-direction: column;
- margin: 20rpx 50rpx;
- }
- </style>
|