Explorar el Código

Merge branch 'ZHNY_LHR' into ZHNY_DCF

DESKTOP-GBVU60Q\dell hace 2 años
padre
commit
3730ca66aa

+ 3 - 3
src/App.vue

@@ -152,8 +152,8 @@
 	}
 
 	.el-input__inner {
-		height: 32rem !important;
-		font-size: 14rem !important;
+		/* height: 32rem !important; */
+		font-size: 12rem !important;
 	}
 
 	.el-form-item__content {
@@ -191,7 +191,7 @@
 	.el-scrollbar {
 		// background-color: gainsboro !important;
 		color: #fff !important;
-		background-color: rgba(5, 45, 115, 1) !important;
+		/* background-color: rgba(5, 45, 115, 1) !important; */
 		overflow: visible !important;
 	}
 

BIN
src/assets/images/jiankong.png


BIN
src/assets/images/shijian.png


+ 66 - 39
src/views/test/components/SeedlingMonitor.vue

@@ -1,53 +1,70 @@
+<script setup>
+	import videofarm1 from '@/assets/video/videofarm1.mp4';
+	import videofarm2 from '@/assets/video/videofarm2.mp4';
+	import nongye from '@/assets/images/farm.jpg';
+	import nongye2 from '@/assets/images/farm2.jpg';
+</script>
+
 <template>
 
 	<div class="video">
-		<video class="video11" autoplay controls loop muted></video>
+		<video class="video11" :src="video" autoplay controls loop muted></video>
 	</div>
 	<div class="rightContent">
-		<div class="font">苗情设备</div>
-		<div class="selectItem">
-			<el-select size="small" v-model="value" placeholder="请选择">
-				<el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value">
-				</el-option>
-			</el-select>
+		<div class="top">
+			<div class="font">苗情设备</div>
+			<div class="selectItem">
+				<el-select size="small" v-model="value" placeholder="请选择" @change="select">
+					<el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value">
+					</el-option>
+				</el-select>
+			</div>
+		</div>
+
+		<div class="mid">
+			<div class="midFont">监控区域:<span>测试园区玉米</span></div>
+			<div class="midbottomFont">采集时间:<span>2023-05-06</span> </div>
 		</div>
 
 	</div>
 </template>
+
 <script>
 	export default {
 		data() {
 			return {
+				video: videofarm1,
 				options: [{
-					value: '选项1',
+					value: videofarm1,
 					label: '设备一'
 				}, {
-					value: '选项2',
+					value: videofarm2,
 					label: '设备二'
 				}, {
 					value: '选项3',
 					label: '设备三'
 				}, {
 					value: '选项4',
-					label: '设备一'
-				}, {
-					value: '选项5',
-					label: '设备五'
-				}],
+					label: '设备四'
+				}, ],
 				value: ''
 
 			};
 		},
 		methods: {
+			select(val) {
+				this.video=val;
+				console.log(11111111,val)
 
+			}
 		}
 	};
 </script>
 <style scoped>
 	.video {
-		margin-top: 20rem;
+		margin-top: 25rem;
 		width: 180rem;
-		height: 180rem;
+		height: 165rem;
 		display: inline-block;
 		float: left;
 	}
@@ -55,61 +72,71 @@
 	.video11 {
 		width: 100%;
 		height: 100%;
+		border-radius: 20rem;
+		border-style: solid;
+		border-width: 1rem ;
+		border-color:rgb(200, 250, 255,0.3);
 	}
 
 	.rightContent {
-		margin-top: 20rem;
+		margin-top: 30rem;
 		width: 165rem;
 		height: 300rem;
 		display: inline-block;
-
 		float: right;
 
 	}
 
 	.font {
 		margin-top: 10rem;
+		font-size: 16rem;
 		width: 70rem;
 		height: 30rem;
 		float: left;
+		color: rgb(200, 250, 255);
+		text-align: left;
 	}
 
-	.el-dropdown-link {
-		cursor: pointer;
-		color: #409EFF;
-	}
-
-	.el-icon-arrow-down {
-		font-size: 12px;
-	}
-
-	.el-select-dropdown__item {
-		color: #409eff !important;
-		padding: 0 32rem 0 20rem;
-		height: 34rem;
-		line-height: 34rem;
-		font-size: 14rem;
-	}
 
 	::v-deep .el-input__inner {
 		color: #fff;
 	}
 
 	::v-deep .el-input__wrapper {
-		background-color: rgba(255, 255, 255, 0) !important;;
-		color: #0e294d !important;; 
+		background-color: rgba(255, 255, 255, 0) !important;
+		color: #0e294d !important;
 	}
 
 	.selectItem {
-		margin-top: 5rem;
+		margin-top: 10rem;
 		width: 90rem;
 		height: 5rem;
 		display: inline-block;
 		float: right;
+	}
 
+	.top {
+		height: 60rem;
+		width: 100%;
+	}
 
+	.midFont {
+		font-size: 14rem;
+		margin-top: 5rem;
+		color: rgb(200, 250, 255);
+		text-align: left;
+		padding-left: 20rem;
+		background: url('@/assets/images/jiankong.png') no-repeat;
+		background-size: 10%, 10%;
+	}
 
-
-
+	.midbottomFont {
+		margin-top: 30rem;
+		font-size: 14rem;
+		color: rgb(200, 250, 255);
+		text-align: left;
+		padding-left: 20rem;
+		background: url('@/assets/images/shijian.png') no-repeat;
+		background-size: 11%, 11%;
 	}
 </style>

+ 15 - 2
src/views/test/components/SoilMoisture.vue

@@ -1,5 +1,5 @@
 <template>
-	<div style="display: inline-block;float:left ;height: 190rem;width: 350rem;">
+	<div style="display: inline-block;float:right ;height: 190rem;width: 350rem;">
 		<jt-echarts style="width: 100%;height: 100%;margin-top:20rem" :chartData="option"></jt-echarts>
 	</div>
 </template>
@@ -77,13 +77,26 @@
 					xAxis: [{
 							type: 'category',
 							boundaryGap: false,
+							axisLabel: {
+								formatter: "{value}",
+								color: "#e2e9ff",
+							},
 							data: ['1:00', '5:00', '9:00', '13:00', '17:00', '21:00', '24:00']
 						},
 
 
 					],
 					yAxis: [{
-						type: 'value'
+						type: 'value',
+						splitLine: {
+							lineStyle: {
+								color: "rgba(255,255,255,0.12)",
+							},
+						},
+						axisLabel: {
+							formatter: "{value}",
+							color: "#e2e9ff",
+						},
 					}],
 					series: [{
 							name: '土壤温度(℃)',

+ 1 - 1
src/views/test/test.vue

@@ -19,7 +19,7 @@
 		<cqjcyj></cqjcyj>
 	</jt-popup2>
 	
-	<jt-popup2 title="苗情监测数据" top="calc(calc(100% - 115rem) / 3 + calc(100% - 115rem) / 3 + 90rem)" >
+	<jt-popup2 title="苗情监测" top="calc(calc(100% - 115rem) / 3 + calc(100% - 115rem) / 3 + 90rem)" >
 		<SeedingMonitor></SeedingMonitor>
 	</jt-popup2>