|
@@ -3,7 +3,7 @@
|
|
|
<div class="album-wrap" ref="scrollContainer">
|
|
|
<div class="barrage-title">
|
|
|
<img src="@/assets/images/common/chart-icon.png" />
|
|
|
- 荔博园
|
|
|
+ 智慧农场
|
|
|
</div>
|
|
|
<div class="album-content">
|
|
|
<div class="album-top" v-if="farmDetail?.name">
|
|
@@ -76,14 +76,13 @@
|
|
|
<div class="log-box">
|
|
|
<div class="log-title PangMenZhengDao-FONT">果园日志</div>
|
|
|
<div class="log-content">
|
|
|
- <div class="log-desc">
|
|
|
- 这里是果园日志的内容,这里是果园日志的内容,这里是果园日志的内容,果园日志
|
|
|
+ <div class="log-desc" v-html="indicatorChartData?.content">
|
|
|
</div>
|
|
|
<indicatorChart
|
|
|
:key="cardI + 'log'"
|
|
|
:indexName="card.indexName"
|
|
|
type="feature"
|
|
|
- :chartData="card.indexChart"
|
|
|
+ :chartData="indicatorChartData"
|
|
|
></indicatorChart>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -228,7 +227,7 @@ const handleScroll = () => {
|
|
|
|
|
|
const handleRightScroll = () => {
|
|
|
activeSection.value = null;
|
|
|
-}
|
|
|
+};
|
|
|
|
|
|
// 防抖函数
|
|
|
function debounce(func, wait) {
|
|
@@ -254,22 +253,52 @@ const debouncedHandleScroll2 = debounce(handleRightScroll, 500);
|
|
|
// getFarmWorkList(farmId);
|
|
|
// });
|
|
|
|
|
|
-
|
|
|
const sampleId = ref(route.query.sampleId);
|
|
|
const farmId = ref(route.query.farmId);
|
|
|
+const indicatorChartData = ref({
|
|
|
+ content: "\n从化的荔博园\n 该果园荔枝处于花芽萌动期,估算当前约为1.0,综合生长异常风险为0.0%,病虫风险为0.33%。\n (目前没有无人机飞巡监测,结果根据气象与地形条件与周边飞巡点推断获得。)\n\n",
|
|
|
+ dates: [
|
|
|
+ "2024-12-31",
|
|
|
+ "2025-01-01",
|
|
|
+ "2025-01-02",
|
|
|
+ "2025-01-03",
|
|
|
+ "2025-01-04",
|
|
|
+ "2025-01-05",
|
|
|
+ "2025-01-06",
|
|
|
+ "2025-01-07",
|
|
|
+ "2025-01-08",
|
|
|
+ "2025-01-09",
|
|
|
+ "2025-01-10",
|
|
|
+ "2025-01-11",
|
|
|
+ "2025-01-12",
|
|
|
+ "2025-01-13",
|
|
|
+ ],
|
|
|
+ disease_risk: [15, 7, 12, 3, 18, 9, 14, 6, 11, 4, 0.33, 0.33, 0.33, 19],
|
|
|
+ disease_risk_name: "病虫异常",
|
|
|
+ growth_risk: [8, 16, 2, 10, 5, 17, 13, 1, 20, 7, 12, 3, 18, 9],
|
|
|
+ growth_risk_name: "生长异常",
|
|
|
+ pheno_param1: [1.0, 1.0, 1.0, 1.0, 1.0, 14, 6, 11, 4, 19, 15, 7, 12, 3],
|
|
|
+ pheno_param1_name: "褪绿率",
|
|
|
+ pheno_param2: [18, 9, 14, 6, 11, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0],
|
|
|
+ pheno_param2_name: "花芽率",
|
|
|
+ pheno_param3: [5, 17, 13, 1, 20, 7, 12, 3, 18, 9, 14, 6, 11, 4],
|
|
|
+ pheno_param3_name: "花蕾率",
|
|
|
+});
|
|
|
onMounted(() => {
|
|
|
sampleId.value = 766;
|
|
|
farmId.value = 88388;
|
|
|
|
|
|
- eventBus.on("MockFarmLayer:click", ({sampleIdVal, farmIdVal}) => {
|
|
|
- sampleId.value = sampleIdVal
|
|
|
- farmId.value = farmIdVal
|
|
|
+ eventBus.on("MockFarmLayer:click", ({ sampleIdVal, farmIdVal }) => {
|
|
|
+ sampleId.value = sampleIdVal;
|
|
|
+ farmId.value = farmIdVal;
|
|
|
getFarmDetail(farmId.value);
|
|
|
getFarmWorkList(farmId.value);
|
|
|
- })
|
|
|
+ getFarmLog()
|
|
|
+ });
|
|
|
getFarmDetail(farmId.value);
|
|
|
getFarmWorkList(farmId.value);
|
|
|
window.addEventListener("scroll", debouncedHandleScroll);
|
|
|
+ getFarmLog()
|
|
|
});
|
|
|
// onActivated(() => {
|
|
|
// sampleId.value = route.query.sampleId;
|
|
@@ -289,6 +318,12 @@ onUnmounted(() => {
|
|
|
window.removeEventListener("scroll", debouncedHandleScroll);
|
|
|
});
|
|
|
|
|
|
+const getFarmLog = () => {
|
|
|
+ VE_API.warning.fetchFarmLog({id: farmId.value, farmId: sampleId.value}).then(({data}) => {
|
|
|
+ console.log('fetchFarmLog', data);
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
// 农场详情
|
|
|
const farmDetail = ref({});
|
|
|
const getFarmDetail = async (id) => {
|
|
@@ -464,15 +499,15 @@ const showDetail = (card) => {
|
|
|
height: 21px;
|
|
|
line-height: 21px;
|
|
|
border-radius: 2px;
|
|
|
- border: 0.5px solid #FFD489;
|
|
|
+ border: 0.5px solid #ffd489;
|
|
|
font-size: 12px;
|
|
|
- color: #FFD489;
|
|
|
+ color: #ffd489;
|
|
|
}
|
|
|
}
|
|
|
.garden-desc {
|
|
|
padding-top: 4px;
|
|
|
font-size: 13px;
|
|
|
- color: #9F9F9F;
|
|
|
+ color: #9f9f9f;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -552,7 +587,7 @@ const showDetail = (card) => {
|
|
|
height: 32px;
|
|
|
line-height: 32px;
|
|
|
justify-content: center;
|
|
|
- color: #CECECE;
|
|
|
+ color: #cecece;
|
|
|
margin: 10px 0;
|
|
|
padding: 4px;
|
|
|
&:hover {
|
|
@@ -560,16 +595,16 @@ const showDetail = (card) => {
|
|
|
}
|
|
|
&.is-active {
|
|
|
background: transparent;
|
|
|
- color: #CECECE;
|
|
|
+ color: #cecece;
|
|
|
.menu-name {
|
|
|
// color: #666666;
|
|
|
}
|
|
|
}
|
|
|
&.active {
|
|
|
background: #232323;
|
|
|
- color: #F0AC37;
|
|
|
+ color: #f0ac37;
|
|
|
.menu-name {
|
|
|
- color: #F0AC37;
|
|
|
+ color: #f0ac37;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -604,7 +639,7 @@ const showDetail = (card) => {
|
|
|
overflow: auto;
|
|
|
box-sizing: border-box;
|
|
|
.common-btn {
|
|
|
- background: #F7BE5A;
|
|
|
+ background: #f7be5a;
|
|
|
border-radius: 4px;
|
|
|
color: #fff;
|
|
|
padding: 8px 10px;
|
|
@@ -631,7 +666,7 @@ const showDetail = (card) => {
|
|
|
background: rgba(105, 73, 13, 0.1);
|
|
|
border-radius: 8px;
|
|
|
padding: 0 8px 8px;
|
|
|
- border: 1px solid #FFDA66;
|
|
|
+ border: 1px solid #ffda66;
|
|
|
&.push {
|
|
|
padding: 0 8px 12px 8px;
|
|
|
// margin-bottom: 8px;
|
|
@@ -661,7 +696,7 @@ const showDetail = (card) => {
|
|
|
padding-bottom: 8px;
|
|
|
.serve-btn {
|
|
|
padding: 3px 10px;
|
|
|
- background: #F7BE5A;
|
|
|
+ background: #f7be5a;
|
|
|
border-radius: 22px;
|
|
|
color: #fff;
|
|
|
text-align: center;
|
|
@@ -683,7 +718,7 @@ const showDetail = (card) => {
|
|
|
border-radius: 2px;
|
|
|
border: 0.2px solid transparent;
|
|
|
&.blue {
|
|
|
- color: #F7BE5A;
|
|
|
+ color: #f7be5a;
|
|
|
background: rgba(33, 153, 248, 0.2);
|
|
|
}
|
|
|
&.good-wrap {
|
|
@@ -696,8 +731,8 @@ const showDetail = (card) => {
|
|
|
}
|
|
|
}
|
|
|
&.standard {
|
|
|
- color: #F7BE5A;
|
|
|
- border-color: #FFD489
|
|
|
+ color: #f7be5a;
|
|
|
+ border-color: #ffd489;
|
|
|
}
|
|
|
&.advice {
|
|
|
color: rgba(252, 167, 3, 0.9);
|
|
@@ -717,14 +752,14 @@ const showDetail = (card) => {
|
|
|
position: absolute;
|
|
|
right: -8px;
|
|
|
top: 0;
|
|
|
- background: #F7BE5A;
|
|
|
+ background: #f7be5a;
|
|
|
color: #fff;
|
|
|
font-size: 12px;
|
|
|
border-radius: 0 8px 0 8px;
|
|
|
padding: 1px 6px;
|
|
|
&.unactive {
|
|
|
background: #494949;
|
|
|
- color: #9F9F9F;
|
|
|
+ color: #9f9f9f;
|
|
|
}
|
|
|
}
|
|
|
.tag {
|
|
@@ -753,7 +788,7 @@ const showDetail = (card) => {
|
|
|
}
|
|
|
}
|
|
|
.card-desc {
|
|
|
- color: #9F9F9F;
|
|
|
+ color: #9f9f9f;
|
|
|
font-size: 12px;
|
|
|
line-height: 18.2px;
|
|
|
.desc-title {
|
|
@@ -763,7 +798,7 @@ const showDetail = (card) => {
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
.detail-text {
|
|
|
- color: #F7BE5A;
|
|
|
+ color: #f7be5a;
|
|
|
padding-left: 6px;
|
|
|
}
|
|
|
}
|
|
@@ -779,13 +814,13 @@ const showDetail = (card) => {
|
|
|
flex-direction: column;
|
|
|
align-items: center;
|
|
|
justify-content: center;
|
|
|
- color: #A46700;
|
|
|
+ color: #a46700;
|
|
|
font-size: 12px;
|
|
|
position: absolute;
|
|
|
right: 6px;
|
|
|
top: 20px;
|
|
|
.expert-name {
|
|
|
- background: #FFD489;
|
|
|
+ background: #ffd489;
|
|
|
border-radius: 4px;
|
|
|
padding: 2px 6px 3px 10px;
|
|
|
margin-top: 4px;
|
|
@@ -829,7 +864,7 @@ const showDetail = (card) => {
|
|
|
.log-box {
|
|
|
// background: #fff8e0;
|
|
|
border-radius: 8px;
|
|
|
- border: 0.5px solid #FFD489;
|
|
|
+ border: 0.5px solid #ffd489;
|
|
|
.log-title {
|
|
|
position: relative;
|
|
|
top: -4px;
|
|
@@ -843,7 +878,7 @@ const showDetail = (card) => {
|
|
|
}
|
|
|
.log-content {
|
|
|
padding-bottom: 10px;
|
|
|
- color: #FFD489;
|
|
|
+ color: #ffd489;
|
|
|
.log-desc {
|
|
|
padding: 0 10px;
|
|
|
font-size: 12px;
|
|
@@ -871,12 +906,12 @@ const showDetail = (card) => {
|
|
|
|
|
|
@keyframes flash {
|
|
|
0% {
|
|
|
- box-shadow: 0 0 5px #F7BE5A;
|
|
|
- border-color: #F7BE5A;
|
|
|
+ box-shadow: 0 0 5px #f7be5a;
|
|
|
+ border-color: #f7be5a;
|
|
|
}
|
|
|
100% {
|
|
|
- box-shadow: 0 0 20px #F7BE5A;
|
|
|
- border: 2px solid #F7BE5A;
|
|
|
+ box-shadow: 0 0 20px #f7be5a;
|
|
|
+ border: 2px solid #f7be5a;
|
|
|
}
|
|
|
}
|
|
|
}
|