123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368 |
- <template>
- <view class="container-box">
- <image src="/static/image/bmi/manual_icon_arrow.png" alt="" class="back-class" @click="goBcak()"></image>
- <view class="info-box">
- <view class="student-card">
- <view class="student-box1">
- <image class="head-img"
- :src="student_info.gender == 1 ? '/static/image/bmi/test_img_head_boy.png' : '/static/image/bmi/test_img_head_gril.png'">
- </image>
- <view class="student-info1">
- <view class="student-info11">
- <view class="student-info111">
- <view>{{ student_info.student_name }}</view>
- <image class="sex-img"
- :src="student_info.gender == 1 ? '/static/image/bmi/test_icon_boy.png' : '/static/image/bmi/test_icon_gril.png'">
- </image>
- </view>
- <!-- <view class="student-num">编号:{{ student_info.number }}</view> -->
- </view>
- <view class="student-info12">{{ student_info.class_name }}</view>
- </view>
- </view>
- <view class="student-info2">
- <view>
- <image src="/static/image/bmi/test_icon_id.png">
- </image>
- <text>{{ machine_num ? machine_num : '手动选择' }}</text>
- </view>
- <view>
- <image src="/static/image/bmi/test_icon_school.png">
- </image>
- <text>{{student_info.school_name}}</text>
- </view>
- </view>
- </view>
- <view class="">
- <view class="adron-box">
- <image src="/static/image/bmi/test_img_adron.png" class="adron">
- </image>
- <image src="/static/image/bmi/test_img_adron.png" class="adron">
- </image>
- </view>
- <view class="test-box">
- <view class="test-title">测量结果展示</view>
- <view class="test-info">
- <view class="test-item">
- <view class="test-item1">
- <image src="/static/image/bmi/test_icon_hight.png" class="test-item-img"></image>
- <text>身高(cm)</text>
- </view>
- <view v-if="isFinish" class="test-item2">160</view>
- <view v-else class="wait-test-item2">待检测</view>
- </view>
- <view class="test-item">
- <view class="test-item1">
- <image src="/static/image/bmi/test_icon_kg.png" class="test-item-img"></image>
- <text>体重(kg)</text>
- </view>
- <view v-if="isFinish" class="test-item2">160</view>
- <view v-else class="wait-test-item2">待检测</view>
- </view>
- </view>
- </view>
- </view>
- </view>
- <view class="btn-box" v-if="isFinish">
- <view class="btn1">重新检测</view>
- <view class="btn2">完成</view>
- </view>
- <view class="btn-box2" v-else>
- <view class="btn3">去检测</view>
- </view>
- </view>
- </template>
- <script setup>
- import { onActivated, onMounted, reactive, ref } from "vue";
- import { navTo, showToast } from "@/utils/app";
- import { addStudentTaskData, getStudentTaskDetail } from "@/api/student";
- import { onLoad } from '@dcloudio/uni-app';
- const isFinish = ref(false)
- const machine_num = ref('')
- const student_info = ref({
- student_name: '张珊珊',
- gender: 2,
- number: 123456,
- class_name: '一年三班',
- school_name: '开睿学校'
- })
- const goBcak = () => {
- navTo('pages/classes/select', {
- })
- }
- const getDetail = async( query)=>{
- const res = await getStudentTaskDetail(query)
- if(res.code == 1){
- student_info.value = res.data.detail
- }
- }
- onLoad((query) => {
- console.log(query)
- getDetail(query)
- })
- </script>
- <style scoped>
- .container-box {
- height: 100vh;
- width: 100%;
- background: linear-gradient(to bottom left, rgb(218, 233, 253), #fff, rgb(218, 233, 253));
- position: relative;
- overflow: auto;
- }
- .back-class {
- position: absolute;
- top: 40upx;
- left: 46upx;
- width: 70upx;
- height: 70upx;
- }
- .info-box {
- margin: 75upx auto 0;
- width: 680upx;
- }
- .student-card {
- width: 680upx;
- height: 28vh;
- padding: 2vh 30upx;
- background: #F1F7FF;
- box-shadow: 0upx 5upx 5upx 0upx rgba(12, 88, 183, 0.35);
- border-radius: 28upx;
- border: 4upx solid #FFFFFF;
- box-sizing: border-box;
- }
- .student-box1 {
- width: 600upx;
- height: 14vh;
- display: flex;
- }
- .student-info1 {
- flex: 1;
- padding: 20upx 0 20upx 20upx;
- }
- .student-info11 {
- display: flex;
- justify-content: space-between;
- width: 100%;
- }
- .student-info111 {
- display: flex;
- justify-content: space-between;
- }
- .student-info111 view {
- font-weight: bold;
- font-size: 35rpx;
- color: #2F3C42;
- }
- .student-num {
- width: 168upx;
- height: 45upx;
- line-height: 45upx;
- background: #E2EBFF;
- border-radius: 28upx;
- font-weight: 400;
- font-size: 21rpx;
- color: #0369E8;
- text-align: center;
- padding: 0 5upx;
- box-sizing: border-box;
- }
- .student-info12 {
- font-size: 21upx;
- color: #0369E8;
- padding-top: 10upx;
- }
- .head-img {
- width: 125upx;
- height: 125upx;
- border-radius: 50%;
- border: #E2EBFF solid 5upx;
- }
- .sex-img {
- width: 35upx;
- height: 35upx;
- margin-top: 5upx;
- margin-left: 10upx;
- border-radius: 50%;
- }
- .student-info2 {
- width: 100%;
- height: 108upx;
- display: flex;
- justify-content: space-between;
- }
- .student-info2 view {
- width: 290upx;
- background: #E2EBFF;
- border-radius: 28upx;
- height: 108upx;
- display: flex;
- padding: 20upx 25upx;
- box-sizing: border-box;
- }
- .student-info2 image {
- width: 68upx;
- height: 68upx;
- }
- .student-info2 text {
- font-weight: bold;
- font-size: 21rpx;
- color: #0369E8;
- line-height: 68upx;
- }
- .test-box {
- width: 100%;
- height: 50vh;
- background: #FFFFFF;
- border-radius: 28upx;
- }
- .test-title {
- width: 100%;
- height: 106upx;
- line-height: 106upx;
- font-weight: bold;
- font-size: 35upx;
- text-align: center;
- color: #FFFFFF;
- background: #0369E8;
- border-radius: 28upx;
- }
- .test-info {
- width: 100%;
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- align-items: center;
- height: calc(50vh - 106upx);
- }
- .test-item {
- width: 600upx;
- height: 150upx;
- line-height: 150upx;
- background: #F1F7FF;
- border-radius: 10upx;
- display: flex;
- justify-content: space-between;
- border-radius: 28upx;
- box-sizing: border-box;
- padding: 0 46upx;
- }
- .test-item1 {
- display: flex;
- font-size: 35rpx;
- color: #4D5652;
- }
- .test-item1 image {
- width: 42upx;
- height: 42upx;
- margin-top: 54upx;
- margin-right: 16upx;
- }
- .test-item2 {
- font-weight: bold;
- font-size: 63upx;
- color: #4D5652;
- }
- .wait-test-item2 {
- font-weight: bold;
- font-size: 63upx;
- color: #EA6433;
- }
- .adron-box {
- display: flex;
- justify-content: space-between;
- position: relative;
- top: -10upx;
- }
- .adron {
- width: 20upx;
- height: 60upx;
- margin: 0 80upx -30upx;
- }
- .btn-box {
- display: flex;
- justify-content: space-around;
- width: 680upx;
- margin: 20upx auto 0;
- }
- .btn-box2 {
- display: flex;
- justify-content: center;
- width: 680upx;
- margin: 20upx auto 0;
- }
- .btn1 {
- width: 305upx;
- height: 97upx;
- line-height: 97upx;
- background: #F1F7FF;
- border-radius: 21upx;
- border: 3upx solid #0369E8;
- font-weight: bold;
- font-size: 35rpx;
- color: #0369E8;
- text-align: center;
- }
- .btn2 {
- width: 305upx;
- height: 97upx;
- line-height: 97upx;
- background: #0369E8;
- border-radius: 21upx;
- font-weight: bold;
- font-size: 35rpx;
- color: #FFFFFF;
- text-align: center;
- }
- .btn3 {
- width: 388upx;
- height: 97upx;
- line-height: 97upx;
- background: #0369E8;
- border-radius: 21upx;
- font-weight: bold;
- font-size: 35rpx;
- color: #FFFFFF;
- text-align: center;
- }
- </style>
|