album.vue 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929
  1. <template>
  2. <div class="album-page">
  3. <div class="album-wrap" ref="scrollContainer">
  4. <div class="barrage-title">
  5. <img src="@/assets/images/common/chart-icon.png" />
  6. 智慧农场
  7. </div>
  8. <div class="album-content">
  9. <div class="album-top" v-if="farmDetail?.name">
  10. <div class="album-img">
  11. <img src="@/assets/images/warningHome/t.png" />
  12. <!-- <img :src="farmDetail.icon" /> -->
  13. </div>
  14. <div class="garden-content">
  15. <div class="garden-name">
  16. 农场名称:{{ farmDetail.name }}
  17. <div class="tag-wrap">
  18. <div class="type-tag">{{ farmDetail.speciesName }}</div>
  19. <div class="type-tag item-type">{{ farmDetail.typeName }}</div>
  20. </div>
  21. </div>
  22. <div class="garden-desc">农场面积:{{ farmDetail.mianji }}亩</div>
  23. <div class="garden-desc">农场位置:{{ farmDetail.address }}</div>
  24. </div>
  25. </div>
  26. <div class="album-bottom">
  27. <el-affix :offset="44" target=".album-bottom">
  28. <div class="album-l">
  29. <el-menu default-active="0" class="el-menu-vertical-demo">
  30. <el-menu-item
  31. v-for="(item, index) in farmWorkList"
  32. :key="index"
  33. :index="index.toString()"
  34. :id="'menu' + index"
  35. :class="{ active: activeSection === index }"
  36. @click="scrollToSection(index)"
  37. v-show="item.menu"
  38. >
  39. <img
  40. class="menu-icon"
  41. :src="
  42. require('@/assets/images/warningHome/gallery/icon-' +
  43. item.icon +
  44. (item.statuss === 0 ? '-no' : '') +
  45. '.png')
  46. "
  47. />
  48. <div
  49. :class="[
  50. 'menu-name',
  51. {
  52. noTime: item.status === 0,
  53. onTime: item.status === 2,
  54. now: item.status === 1,
  55. },
  56. ]"
  57. >
  58. {{ item.farmWorkName }}
  59. </div>
  60. </el-menu-item>
  61. </el-menu>
  62. </div>
  63. </el-affix>
  64. <!-- <div class="export-btn">
  65. <div class="btn-item"><img src="@/assets/img/old_mini/export.png" />导出</div>
  66. </div> -->
  67. <div class="album-r" @scroll="debouncedHandleScroll2">
  68. <div
  69. class="done-card section"
  70. v-for="(card, cardI) in farmWorkList"
  71. :key="cardI"
  72. :class="{ flashing: card.status === 1 && isFlashing }"
  73. >
  74. <div class="card-dom" :id="'section' + cardI"></div>
  75. <!-- <div v-if="card.status === 1" class="log-wrap">
  76. <div class="log-box">
  77. <div class="log-title PangMenZhengDao-FONT">果园日志</div>
  78. <div class="log-content">
  79. <div class="log-desc" v-html="indicatorChartData?.content">
  80. </div>
  81. <indicatorChart
  82. :key="cardI + 'log'"
  83. :indexName="card.indexName"
  84. type="feature"
  85. :chartData="indicatorChartData"
  86. ></indicatorChart>
  87. </div>
  88. </div>
  89. </div> -->
  90. <div class="card-wrap" :class="{ noCarousel: card.status !== 0 }">
  91. <div
  92. class="card-content"
  93. :class="{ push: card.status === 1, hasBg: card.status === 2 && !card.hasBg }"
  94. >
  95. <div
  96. class="card-top"
  97. @click="showDetail(card)"
  98. :class="{ noChart: !card.indexChart.length }"
  99. >
  100. <div class="card-title serve-title">
  101. <div class="title-name">{{ card.farmWorkName }}</div>
  102. <div v-if="card.type === 1" class="status-tag standard">标准农事</div>
  103. <div v-if="card.type === 2" class="status-tag advice">推荐农事</div>
  104. <div v-if="card.type === 0" class="status-tag warning">预警农事</div>
  105. <!-- 右上角角标 -->
  106. <div v-if="card.status === 2 && card.execute === 0" class="add-btn">
  107. 未触发
  108. </div>
  109. <div
  110. v-if="card.status === 2 && card.execute === 2"
  111. class="add-btn unactive"
  112. >
  113. 未激活
  114. </div>
  115. <div v-if="card.execute === 3" class="add-btn">待执行</div>
  116. <div v-if="card.status === 0 && card.execute === 4" class="add-btn recheck">
  117. 已完成
  118. </div>
  119. <div v-if="card.status === 0 && card.reCheck === 1" class="add-btn recheck">
  120. 已复核
  121. </div>
  122. <div v-if="card.execute === 1" class="add-btn unactive">已失效</div>
  123. </div>
  124. <div class="card-desc">
  125. <span class="desc-title">触发条件:</span>
  126. {{ card.condition }}
  127. </div>
  128. <div class="card-desc">
  129. <span class="desc-title">农事编号:</span>
  130. {{ card.code }}
  131. </div>
  132. <div v-if="card.status === 2" class="card-desc">
  133. <span class="desc-title">推荐时间:</span>
  134. {{ card.solarName }}
  135. </div>
  136. <div v-if="card.status === 1" class="card-desc">
  137. <span class="desc-title">推荐时间:</span>
  138. {{ card.executeDate }}
  139. </div>
  140. <div v-if="card.status === 0" class="card-desc">
  141. <span class="desc-title">{{
  142. card.reCheck ? "复核时间:" : "执行时间:"
  143. }}</span>
  144. {{ card.executeDate }}
  145. </div>
  146. <div class="card-desc last-desc">
  147. <span class="desc-title">药物处方:</span>
  148. <div class="rescription-wrap">
  149. <div class="rescription">
  150. <span
  151. v-for="(
  152. fertilizer, fertilizerI
  153. ) in card.pesticideFertilizerList"
  154. :key="fertilizerI"
  155. >
  156. {{ fertilizer.ratio ? fertilizer.ratio + "倍" : "" }}
  157. {{ fertilizer.name }}
  158. <span
  159. v-if="
  160. fertilizerI !== card.pesticideFertilizerList.length - 1
  161. "
  162. >
  163. +
  164. </span>
  165. </span>
  166. </div>
  167. <div class="detail-text">查看详情></div>
  168. </div>
  169. </div>
  170. <div class="card-link">
  171. <img src="@/assets/images/warningHome/expert-icon.png" />
  172. <div class="expert-name">
  173. {{ card.expertName
  174. }}<el-icon size="12" class="icon"><ArrowRightBold /></el-icon>
  175. </div>
  176. </div>
  177. </div>
  178. <chart
  179. v-if="card.status !== 2 && card.indexChart.length"
  180. :key="cardI"
  181. :indexName="card.indexName"
  182. :type="card.status !== 1 ? 'normal' : 'feature'"
  183. :chartData="card.indexChart"
  184. ></chart>
  185. </div>
  186. </div>
  187. <div v-if="card.status !== 2" :class="['over-img']">
  188. <!-- 图片列表 -->
  189. <album-carousel7d
  190. :sampleId="sampleId"
  191. :farmId="farmId"
  192. :farmWork="card"
  193. ></album-carousel7d>
  194. </div>
  195. </div>
  196. </div>
  197. </div>
  198. </div>
  199. </div>
  200. <detail-dailog></detail-dailog>
  201. </div>
  202. </template>
  203. <script setup>
  204. import { onMounted, ref, computed, onUnmounted, nextTick, onActivated, onDeactivated } from "vue";
  205. import { useStore } from "vuex";
  206. import { useRoute, useRouter } from "vue-router";
  207. import eventBus from "@/api/eventBus";
  208. import chart from "./chart.vue";
  209. import indicatorChart from "./indicatorChart.vue";
  210. const store = useStore();
  211. import AlbumCarousel7d from "./album_compoents/albumCarousel7d";
  212. import detailDailog from "./album_compoents/detailDailog";
  213. import { SET_TOKEN } from "@/store/modules/app/type";
  214. const route = useRoute();
  215. // 监听页面滚动,更新当前激活的锚点
  216. const handleScroll = () => {
  217. const scrollPosition = window.scrollY; // 加上头部偏移量
  218. farmWorkList.value.forEach((_, index) => {
  219. const section = document.getElementById(`section${index}`);
  220. if (section && section.offsetTop <= scrollPosition) {
  221. activeSection.value = index;
  222. }
  223. });
  224. };
  225. const handleRightScroll = () => {
  226. activeSection.value = null;
  227. };
  228. // 防抖函数
  229. function debounce(func, wait) {
  230. let timeout;
  231. return function (...args) {
  232. const later = () => {
  233. clearTimeout(timeout);
  234. func.apply(this, args);
  235. };
  236. clearTimeout(timeout);
  237. timeout = setTimeout(later, wait);
  238. };
  239. }
  240. const debouncedHandleScroll = debounce(handleScroll, 100);
  241. const debouncedHandleScroll2 = debounce(handleRightScroll, 500);
  242. // onMounted(() => {
  243. // window.addEventListener("scroll", debouncedHandleScroll);
  244. // // myPushChart = echarts.init(chartPushRef.value);
  245. // // myPushChart.setOption(galleryLine);
  246. // getFarmDetail(farmId);
  247. // getFarmWorkList(farmId);
  248. // });
  249. const sampleId = ref(route.query.sampleId);
  250. const farmId = ref(route.query.farmId);
  251. const indicatorChartData = ref({
  252. content: "\n从化的荔博园\n 该果园荔枝处于花芽萌动期,估算当前约为1.0,综合生长异常风险为0.0%,病虫风险为0.33%。\n (目前没有无人机飞巡监测,结果根据气象与地形条件与周边飞巡点推断获得。)\n\n",
  253. dates: [
  254. "2024-12-31",
  255. "2025-01-01",
  256. "2025-01-02",
  257. "2025-01-03",
  258. "2025-01-04",
  259. "2025-01-05",
  260. "2025-01-06",
  261. "2025-01-07",
  262. "2025-01-08",
  263. "2025-01-09",
  264. "2025-01-10",
  265. "2025-01-11",
  266. "2025-01-12",
  267. "2025-01-13",
  268. ],
  269. disease_risk: [15, 7, 12, 3, 18, 9, 14, 6, 11, 4, 0.33, 0.33, 0.33, 19],
  270. disease_risk_name: "病虫异常",
  271. growth_risk: [8, 16, 2, 10, 5, 17, 13, 1, 20, 7, 12, 3, 18, 9],
  272. growth_risk_name: "生长异常",
  273. pheno_param1: [1.0, 1.0, 1.0, 1.0, 1.0, 14, 6, 11, 4, 19, 15, 7, 12, 3],
  274. pheno_param1_name: "褪绿率",
  275. 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],
  276. pheno_param2_name: "花芽率",
  277. pheno_param3: [5, 17, 13, 1, 20, 7, 12, 3, 18, 9, 14, 6, 11, 4],
  278. pheno_param3_name: "花蕾率",
  279. });
  280. onMounted(() => {
  281. sampleId.value = 766;
  282. farmId.value = 88388;
  283. eventBus.on("MockFarmLayer:click", ({ sampleIdVal, farmIdVal }) => {
  284. sampleId.value = sampleIdVal;
  285. farmId.value = farmIdVal;
  286. getFarmDetail(farmId.value);
  287. getFarmWorkList(farmId.value);
  288. // getFarmLog()
  289. });
  290. getFarmDetail(farmId.value);
  291. getFarmWorkList(farmId.value);
  292. window.addEventListener("scroll", debouncedHandleScroll);
  293. // getFarmLog()
  294. });
  295. // onActivated(() => {
  296. // sampleId.value = route.query.sampleId;
  297. // farmId.value = route.query.farmId;
  298. // window.addEventListener("scroll", debouncedHandleScroll);
  299. // getFarmDetail(farmId.value);
  300. // getFarmWorkList(farmId.value);
  301. // });
  302. // onDeactivated(() => {
  303. // farmDetail.value = {};
  304. // farmWorkList.value = [];
  305. // window.removeEventListener("scroll", debouncedHandleScroll);
  306. // });
  307. // 移除滚动事件监听
  308. onUnmounted(() => {
  309. window.removeEventListener("scroll", debouncedHandleScroll);
  310. });
  311. const getFarmLog = () => {
  312. VE_API.warning.fetchFarmLog({id: farmId.value, farmId: sampleId.value}).then(({data}) => {
  313. console.log('fetchFarmLog', data);
  314. })
  315. }
  316. // 农场详情
  317. const farmDetail = ref({});
  318. const getFarmDetail = async (id) => {
  319. VE_API.mini_farm.fetchFarmDetail({ id }).then(({ data }) => {
  320. farmDetail.value = data;
  321. });
  322. };
  323. // 农事列表
  324. const farmWorkList = ref([]);
  325. const getFarmWorkList = (farmId) => {
  326. VE_API.mini_farm.fetchFarmWorkList({ farmId }).then(({ data }) => {
  327. getSecondLastIndex(data);
  328. // farmWorkList.value = data;
  329. nextTick(() => {
  330. initScrollToSection(secondLastIndex.value);
  331. });
  332. setTimeout(() => {
  333. startFlashing();
  334. }, 100);
  335. });
  336. };
  337. const activeSection = ref(0);
  338. const scrollContainer = ref(null);
  339. // 点击左侧菜单项,滚动到对应内容
  340. const scrollToSection = (index) => {
  341. // const section = farmWorkList.value[index];
  342. const sectionElement = document.getElementById(`section${index}`);
  343. if (sectionElement) {
  344. sectionElement.scrollIntoView({ behavior: "smooth" });
  345. activeSection.value = index;
  346. setTimeout(() => {
  347. // 获取滚动容器的当前滚动位置
  348. let scrollTop = scrollContainer.value.scrollTop;
  349. scrollTop += 44; // 加多 44px,头部的高度
  350. // 滚动至目标位置
  351. scrollContainer.value.scrollTop = scrollTop;
  352. }, 300);
  353. }
  354. };
  355. // 点击左侧菜单项,滚动到对应内容
  356. const initScrollToSection = (index) => {
  357. const menuElement = document.getElementById(`menu${index}`);
  358. if (menuElement) {
  359. menuElement.scrollIntoView({ behavior: "smooth" });
  360. activeSection.value = index;
  361. setTimeout(() => {
  362. scrollToSection(index);
  363. }, 0);
  364. }
  365. };
  366. const secondLastIndex = ref(-1); // 初始化索引值
  367. const getSecondLastIndex = (data) => {
  368. // 过滤出 status 为 2 的项
  369. const filteredItems = data.filter((item) => item.status === 1);
  370. // 获取倒数第二项
  371. if (filteredItems.length >= 1) {
  372. const secondLastItem = filteredItems[filteredItems.length - 1];
  373. // 获取该项在原数组中的索引
  374. secondLastIndex.value = data.indexOf(secondLastItem);
  375. const lastTwoItems = filteredItems.slice(-1);
  376. farmWorkList.value = data.map((item) => {
  377. // 如果是最后两项之一,则添加 feature 属性
  378. if (lastTwoItems.includes(item)) {
  379. return { ...item, hasBg: true };
  380. }
  381. return item;
  382. });
  383. } else {
  384. secondLastIndex.value = -1; // 如果没有足够的项,设置为 -1
  385. }
  386. };
  387. const isFlashing = ref(false);
  388. const startFlashing = () => {
  389. isFlashing.value = true;
  390. // 使用 setTimeout 在一段时间后停止闪动
  391. setTimeout(() => {
  392. isFlashing.value = false;
  393. }, 3000); // 3 秒后停止闪动
  394. };
  395. // 显示详情
  396. const showDetail = (card) => {
  397. const pageParams = {
  398. activeIndex: activeSection.value,
  399. card,
  400. };
  401. eventBus.emit("detailDialog:showDialog", pageParams);
  402. };
  403. </script>
  404. <style lang="scss" scoped>
  405. .album-page {
  406. position: relative;
  407. width: 100%;
  408. height: calc(100% - 30px);
  409. overflow: hidden;
  410. margin-top: 34px;
  411. background: #232323;
  412. border: 1px solid #666666;
  413. border-radius: 4px;
  414. .album-wrap {
  415. width: 100%;
  416. height: 100%;
  417. .barrage-title {
  418. height: 44px;
  419. line-height: 44px;
  420. text-align: center;
  421. font-size: 17px;
  422. font-weight: bold;
  423. border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  424. width: 100%;
  425. position: sticky;
  426. background: #232323;
  427. top: 0;
  428. left: 0;
  429. z-index: 9;
  430. .title-icon {
  431. cursor: pointer;
  432. position: absolute;
  433. left: 16px;
  434. top: 13px;
  435. }
  436. }
  437. .album-content {
  438. height: calc(100% - 44px);
  439. // overflow: auto;
  440. // margin-top: 45px;
  441. .album-top {
  442. display: flex;
  443. padding: 12px 10px 16px 10px;
  444. width: 100%;
  445. overflow: hidden;
  446. box-sizing: border-box;
  447. .album-img {
  448. img {
  449. width: 78px;
  450. height: 78px;
  451. object-fit: cover;
  452. border-radius: 6px;
  453. }
  454. }
  455. .garden-content {
  456. padding-left: 12px;
  457. display: flex;
  458. flex-direction: column;
  459. justify-content: center;
  460. .garden-name {
  461. font-weight: bold;
  462. font-size: 16px;
  463. color: #fff;
  464. display: flex;
  465. align-items: center;
  466. flex-wrap: wrap;
  467. .tag-wrap {
  468. display: flex;
  469. flex-wrap: wrap;
  470. flex: 1;
  471. margin-left: 6px;
  472. }
  473. .type-tag {
  474. margin-top: 2px;
  475. font-weight: normal;
  476. margin-left: 4px;
  477. padding: 0 6px;
  478. height: 21px;
  479. line-height: 21px;
  480. border-radius: 2px;
  481. border: 0.5px solid #ffd489;
  482. font-size: 12px;
  483. color: #ffd489;
  484. }
  485. }
  486. .garden-desc {
  487. padding-top: 4px;
  488. font-size: 13px;
  489. color: #9f9f9f;
  490. }
  491. }
  492. }
  493. .album-camera {
  494. width: 100%;
  495. padding: 0 10px 10px;
  496. box-sizing: border-box;
  497. position: relative;
  498. .tips-text {
  499. position: absolute;
  500. left: calc(50% + 20px);
  501. top: 8px;
  502. height: 17px;
  503. padding: 1px 5px 2px 8px;
  504. color: #fff;
  505. font-size: 12px;
  506. border-radius: 24px 20px 20px 0;
  507. line-height: 18px;
  508. background: linear-gradient(45deg, #00d4ff, #008eff);
  509. }
  510. img {
  511. width: 100%;
  512. }
  513. }
  514. .album-bottom {
  515. display: flex;
  516. // height: calc(100% - 106px);
  517. position: relative;
  518. background: rgba(73, 73, 73, 0.3);
  519. height: calc(100% - 105px);
  520. overflow: hidden;
  521. .export-btn {
  522. position: fixed;
  523. z-index: 999;
  524. left: 0;
  525. bottom: 0px;
  526. height: 60px;
  527. padding-top: 10px;
  528. background: rgba(73, 73, 73, 0.3);
  529. .btn-item {
  530. font-size: 14px;
  531. color: #fff;
  532. display: flex;
  533. align-items: center;
  534. justify-content: center;
  535. background: linear-gradient(45deg, #00d4ff, #008eff);
  536. width: 98px;
  537. height: 36px;
  538. }
  539. img {
  540. width: 24px;
  541. }
  542. }
  543. .album-l {
  544. width: 98px;
  545. // height: calc(100vh - 114px);
  546. height: 100%;
  547. overflow: auto;
  548. background: rgba(73, 73, 73, 0.3);
  549. border-radius: 0 4px 4px 0;
  550. .menu-icon {
  551. width: 16px;
  552. margin-right: 4px;
  553. }
  554. .menu-name {
  555. max-width: 80px;
  556. white-space: nowrap;
  557. overflow: hidden;
  558. text-overflow: ellipsis;
  559. }
  560. ::v-deep {
  561. .el-menu {
  562. background: rgba(73, 73, 73, 0.3);
  563. border-right: 0;
  564. .el-menu-item {
  565. height: 32px;
  566. line-height: 32px;
  567. justify-content: center;
  568. color: #cecece;
  569. margin: 10px 0;
  570. padding: 4px;
  571. &:hover {
  572. background: transparent;
  573. }
  574. &.is-active {
  575. background: transparent;
  576. color: #cecece;
  577. .menu-name {
  578. // color: #666666;
  579. }
  580. }
  581. &.active {
  582. background: #232323;
  583. color: #f0ac37;
  584. .menu-name {
  585. color: #f0ac37;
  586. }
  587. }
  588. }
  589. }
  590. }
  591. .noTime {
  592. // color: #cccccc;
  593. }
  594. .now {
  595. color: rgba(33, 153, 248, 1);
  596. }
  597. .onTime {
  598. color: rgba(255, 212, 137, 0.6);
  599. }
  600. }
  601. ::v-deep {
  602. .el-affix {
  603. background: rgba(73, 73, 73, 0.3);
  604. border-radius: 0 4px 4px 0;
  605. width: 98px !important;
  606. height: 100%;
  607. & > div {
  608. height: 100%;
  609. }
  610. }
  611. }
  612. .album-r {
  613. padding: 0 10px 34px 10px;
  614. flex: 1;
  615. background: #232323;
  616. height: 100%;
  617. overflow: auto;
  618. box-sizing: border-box;
  619. .common-btn {
  620. background: #f7be5a;
  621. border-radius: 4px;
  622. color: #fff;
  623. padding: 8px 10px;
  624. text-align: center;
  625. }
  626. .card-wrap {
  627. // border: 1px solid #FFDA66;
  628. border-radius: 8px;
  629. // padding: 8px 8px;
  630. position: relative;
  631. z-index: 2;
  632. // margin-top: -20px;
  633. &.noCarousel {
  634. padding: 0;
  635. // margin-top: 12px;
  636. // padding-top: 10px;
  637. border: none;
  638. .card-top .card-link {
  639. top: 24px;
  640. }
  641. }
  642. }
  643. .card-content {
  644. background: rgba(105, 73, 13, 0.1);
  645. border-radius: 8px;
  646. padding: 0 8px 8px;
  647. border: 1px solid #ffda66;
  648. &.push {
  649. padding: 0 8px 12px 8px;
  650. // margin-bottom: 8px;
  651. // border: 1px solid rgba(102, 102, 102, 0.38);
  652. }
  653. &.hasBg {
  654. padding: 0 8px 12px 8px;
  655. background: #232323;
  656. border: 1px solid rgba(102, 102, 102, 0.38);
  657. .card-top {
  658. border-bottom: none;
  659. padding-bottom: 0;
  660. }
  661. }
  662. .card-top {
  663. cursor: pointer;
  664. padding-bottom: 12px;
  665. border-bottom: 1px solid rgba(255, 238, 208, 0.4);
  666. position: relative;
  667. &.noChart {
  668. border-bottom: 0;
  669. padding-bottom: 0;
  670. }
  671. .card-title {
  672. display: flex;
  673. align-items: center;
  674. padding-bottom: 8px;
  675. .serve-btn {
  676. padding: 3px 10px;
  677. background: #f7be5a;
  678. border-radius: 22px;
  679. color: #fff;
  680. text-align: center;
  681. }
  682. .title-name {
  683. color: #fff;
  684. font-size: 16px;
  685. padding-right: 8px;
  686. font-weight: 600;
  687. }
  688. img {
  689. width: 24px;
  690. }
  691. .status-tag {
  692. color: #f3a302;
  693. font-size: 12px;
  694. padding: 2px 6px;
  695. border-radius: 2px;
  696. border: 0.2px solid transparent;
  697. &.blue {
  698. color: #f7be5a;
  699. background: rgba(33, 153, 248, 0.2);
  700. }
  701. &.good-wrap {
  702. margin-left: 4px;
  703. display: flex;
  704. align-items: center;
  705. .good {
  706. margin-left: 3px;
  707. width: 13px;
  708. }
  709. }
  710. &.standard {
  711. color: #f7be5a;
  712. border-color: #ffd489;
  713. }
  714. &.advice {
  715. color: rgba(252, 167, 3, 0.9);
  716. background: rgba(255, 220, 104, 0.38);
  717. }
  718. &.warning {
  719. color: #ff4221;
  720. background: rgba(255, 175, 160, 0.24);
  721. }
  722. }
  723. &.serve-title {
  724. padding: 12px 0 8px 0;
  725. display: flex;
  726. align-items: center;
  727. position: relative;
  728. .add-btn {
  729. position: absolute;
  730. right: -8px;
  731. top: 0;
  732. background: #f7be5a;
  733. color: #fff;
  734. font-size: 12px;
  735. border-radius: 0 8px 0 8px;
  736. padding: 1px 6px;
  737. &.unactive {
  738. background: #494949;
  739. color: #9f9f9f;
  740. }
  741. }
  742. .tag {
  743. display: flex;
  744. align-items: center;
  745. color: #ff7000;
  746. font-size: 10px;
  747. .desc {
  748. position: relative;
  749. left: -4px;
  750. }
  751. .photo-grid {
  752. display: flex;
  753. .photo {
  754. position: relative;
  755. img {
  756. width: 18px; /* 示例宽度,你可以根据需要调整 */
  757. height: 18px;
  758. object-fit: cover;
  759. border-radius: 50%;
  760. display: block; /* 去除图片底部的空白间隙 */
  761. }
  762. }
  763. }
  764. }
  765. }
  766. }
  767. .card-desc {
  768. color: #9f9f9f;
  769. font-size: 12px;
  770. line-height: 18.2px;
  771. .desc-title {
  772. color: #494949;
  773. }
  774. .rescription-wrap {
  775. display: flex;
  776. align-items: center;
  777. .detail-text {
  778. color: #f7be5a;
  779. padding-left: 6px;
  780. }
  781. }
  782. .rescription {
  783. max-width: 100px;
  784. white-space: nowrap;
  785. overflow: hidden;
  786. text-overflow: ellipsis;
  787. }
  788. }
  789. .card-link {
  790. display: flex;
  791. flex-direction: column;
  792. align-items: center;
  793. justify-content: center;
  794. color: #a46700;
  795. font-size: 12px;
  796. position: absolute;
  797. right: 6px;
  798. top: 20px;
  799. .expert-name {
  800. background: #ffd489;
  801. border-radius: 4px;
  802. padding: 2px 6px 3px 10px;
  803. margin-top: 4px;
  804. display: flex;
  805. align-items: center;
  806. }
  807. img {
  808. width: 64px;
  809. }
  810. .icon {
  811. padding-right: 2px;
  812. }
  813. }
  814. }
  815. .card-chart {
  816. padding: 8px 4px 0 4px;
  817. height: 130px;
  818. }
  819. }
  820. .done-card {
  821. margin-bottom: 14px;
  822. }
  823. .card-dom {
  824. position: relative;
  825. // top: -50px;
  826. }
  827. .over-img {
  828. transition: all 0.2s ease-in-out;
  829. position: relative;
  830. z-index: 3;
  831. ::v-deep {
  832. img {
  833. border-radius: 8px;
  834. }
  835. }
  836. }
  837. .log-wrap {
  838. padding: 4px 0 10px 0;
  839. .log-box {
  840. // background: #fff8e0;
  841. border-radius: 8px;
  842. border: 0.5px solid #ffd489;
  843. .log-title {
  844. position: relative;
  845. top: -4px;
  846. background: url("@/assets/images/warningHome/log-bg.png") no-repeat top center / cover;
  847. width: 74px;
  848. height: 32px;
  849. line-height: 26px;
  850. text-align: center;
  851. font-size: 14px;
  852. color: #fff;
  853. }
  854. .log-content {
  855. padding-bottom: 10px;
  856. color: #ffd489;
  857. .log-desc {
  858. padding: 0 10px;
  859. font-size: 12px;
  860. }
  861. }
  862. }
  863. }
  864. }
  865. }
  866. .flashing {
  867. position: relative;
  868. &::after {
  869. content: "";
  870. position: absolute;
  871. top: 0;
  872. left: -2px;
  873. width: 100%;
  874. height: calc(100% - 2px);
  875. border: 2px solid rgba(255, 238, 208, 0.1);
  876. animation: flash 0.4s infinite alternate;
  877. border-radius: 8px;
  878. pointer-events: none;
  879. }
  880. }
  881. @keyframes flash {
  882. 0% {
  883. box-shadow: 0 0 5px #f7be5a;
  884. border-color: #f7be5a;
  885. }
  886. 100% {
  887. box-shadow: 0 0 20px #f7be5a;
  888. border: 2px solid #f7be5a;
  889. }
  890. }
  891. }
  892. .farm-icon {
  893. position: fixed;
  894. bottom: 100px;
  895. left: 120px;
  896. width: 183px;
  897. height: 45px;
  898. z-index: 10;
  899. }
  900. }
  901. }
  902. </style>