Jelajahi Sumber

样式修改

tanxue 2 minggu lalu
induk
melakukan
8c2944d816

+ 11 - 2
common/styles/global/components.scss

@@ -245,7 +245,7 @@ view{box-sizing: border-box;}
 .phone-jianda-box{
 	overflow: auto;height: calc(100vh - 440rpx - var(--status-bar-height));
 	.jianda-textarea-box{
-		width: 90%;margin: 0 auto;height: 200rpx;border-radius: 6rpx;
+		width: 90%;margin: 0 auto 36rpx;height: 200rpx;border-radius: 6rpx;
 		border: 1rpx solid #ccc;padding: 10rpx 24rpx;box-sizing: border-box;
 	}
 }
@@ -335,9 +335,18 @@ view{box-sizing: border-box;}
 	  }
 	}
 	
-
+	.st-btn-prev,.st-btn-next{border:1rpx solid #0856e6;background-color: #F2F7FF;color: #0856e6;padding: 0 16rpx;}
+	.st-btn-prev::before,.st-btn-next::after{
+		content: '';width: 20rpx;height: 20rpx;display: inline-block;@include ezy-no-repeat-cover();
+		background-image: url("@/static/images/exam/icon-jiantou-sj.svg");}
+	.st-btn-prev::before{transform: rotate(180deg);margin-right: 8rpx;;}
+	.st-btn-prev::after{display: none;}
+	.st-btn-next::after{transform:unset;border: 0;position: unset;margin-left: 8rpx;}
+	.st-btn-prev {position: fixed;bottom: 140rpx;left: 24rpx;}
+	.st-btn-next {position: fixed;bottom: 140rpx;right: 24rpx;}
 }
 
+
   
 /***** 考试须知 *****/
 .ksxz-dialog{

+ 24 - 9
common/styles/global/pages.scss

@@ -122,7 +122,30 @@
 	}
 }
 
-
+// 考试得分
+.exam-score-popup {
+      width: 100vw;height: 100vh;background-color: #fff;display: flex;flex-direction: column;
+	  .exam-score-navBar-box .icon-title-navBar-box{background: #F0F0F0;color: #323233;}
+      .score-content-box{box-sizing: border-box;border-bottom: 1rpx solid #e5e5e5;margin: 30rpx;padding: 0 10rpx 20rpx;}
+      .content-score-box{display: flex;align-items: center;justify-content: space-between;}
+      .score-content-name{width:100%;color: #333;font-size: 30rpx;padding: 20rpx 0;
+	  margin-bottom:20rpx;border-bottom: 1rpx solid #E3E3E3;}
+      .score-content-text{
+      	color: #666;font-size: 30rpx;margin-bottom:4rpx;
+      	text{font-size: 64rpx;color:#ff6c6c;margin-right: 4rpx;}
+      	}
+      .score-dialog-btn{width: 360rpx;margin: 100rpx auto 24rpx;font-size: 30rpx;}
+      .progress-circle-box{}
+      .progress-text-btn-box{
+      	display: flex;flex-direction: column;align-items: center;
+      	.cneter-box{font-size: 32rpx!important;color: #0856e6;}
+      	.progress-text{margin-bottom: 16rpx;color: #0856e6;}
+      	.container .rightcircle,.container .left .leftcircle{z-index: 2;border-color:#ecedef;}
+      }
+	  .score-dialog-btn{
+		text-align: center;font-size: 32rpx;background-color: #0856e6;color: #fff;border-radius: 50rpx;padding:20rpx;line-height: 1;
+	  }
+    }
 	
 // 我的
 .mobile-my-page{
@@ -166,14 +189,6 @@
 		}
 		.list-row:last-child{border: 0;}
 		.list-icon{width: 70rpx;height: 70rpx;@include ezy-no-repeat-cover;margin-right: 12rpx;}
-		.xuefen-icon{background-image: url("@/static/images/my/my-credits-icon-sj.png");}
-		.xiaoxi-icon{background-image: url("@/static/images/my/my-news-icon-sj.png");}
-		.zhengshu-icon{background-image: url("@/static/images/my/my-certificate-icon-sj.png");}
-		.cuoti-icon{background-image: url("@/static/images/my/my-wrong-icon-sj.png");}
-		.baoming-icon{background-image: url("@/static/images/my/my-baoming-icon-sj.png");}
-		.sxtcs-icon{background-image: url("@/static/images/my/my-ceshi-icon-sj.png");}
-		.sxtsm-icon{background-image: url("@/static/images/my/my-explain-icon-sj.png");}
-		.shezhi-icon{background-image: url("@/static/images/my/my-setting-icon-sj.png");}
 	}
 	.my-list-box + .my-list-box{margin-top: 20rpx;}
 	// 退出登录 后续删除

+ 2 - 0
pages/exam/index.vue

@@ -1,4 +1,5 @@
 <template>
+	<customNavbarVue title=""></customNavbarVue>
 	<custom-scroll-list :refreshFn="getExamList" :tabList="tabData" :defaultTab="1" ref="scrollRef">
 		<template #default="{list}">
 			<scroll-list-card v-for="(item,index) in list" :key="item.ksId" :data="item"
@@ -23,6 +24,7 @@
 		ref
 	} from "vue";
 	import kaoshixuzhi from "@/components/kaoshixuzhi/kaoshixuzhi.vue"
+	import customNavbarVue from "@/components/custom-navbar/custom-navbar.vue";
 
 	const activeKs = ref(null);
 	const scrollRef = ref(null);