123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- <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-info"></view>
- <view class="">
- <view class="adron-box">
- <image src="/static/image/bmi/test_img_adron.png" alt="" class="adron" @click="goBcak()">
- </image>
- <image src="/static/image/bmi/test_img_adron.png" alt="" class="adron" @click="goBcak()">
- </image>
- </view>
- <view class="bmi-info">
- <view class="bmi-title">测量结果展示</view>
- </view>
- </view>
- </view>
- <view class="btn-box">
- <view class="btn1">重新检测</view>
- <view class="btn2">完成</view>
- </view>
- </view>
- </template>
- <script>
- import { navTo, showToast } from "@/utils/app";
- export default {
- name: "bmi",
- methods: {
- goBcak() {
- navTo('pages/classes/select', {
- })
- },
- }
- }
- </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-info {
- width: 681upx;
- height: 25vh;
- background: #F1F7FF;
- box-shadow: 0upx 5upx 5upx 0upx rgba(12, 88, 183, 0.35);
- border-radius: 28upx;
- border: 4upx solid #FFFFFF;
- }
- .bmi-info {
- width: 100%;
- height: 50vh;
- background: #FFFFFF;
- border-radius: 28upx;
- }
- .bmi-title {
- width: 100%;
- height: 106upx;
- line-height: 106upx;
- font-weight: bold;
- font-size: 35upx;
- text-align: center;
- color: #FFFFFF;
- background: #0369E8;
- border-radius: 28upx;
- }
- .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-between;
- 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;
- }
- </style>
|