| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394 |
- <template>
- <div class="farm-dynamics">
- <div class="record-filter">
- <div
- class="filter-item"
- v-for="(item, index) in filterType"
- :key="index"
- @click="handlePlanClick(index)"
- :class="{ active: activePlanIndex === index }"
- >
- {{ item }}
- </div>
- </div>
- <div class="task-content">
- <!-- <div class="plan-menu">
- <el-anchor :container="containerRef" direction="vertical" type="default" @click="handleClick">
- <el-menu :default-active="defaultActive" class="el-menu-vertical-demo">
- <el-sub-menu v-for="(menu, index) in menuData" :key="index" :index="String(menu.id)">
- <template #title>
- <img class="menu-icon" :src="require(`@/assets/img/gallery/icon-${index}.png`)" />
- <span class="menu-text">{{ menu.title }}</span>
- </template>
- <el-menu-item v-for="item in menu.children" :key="item.id" :index="`${menu.id}-${item.id}`">
- <el-anchor-link :href="item.href" :title="item.title" />
- </el-menu-item>
- </el-sub-menu>
- </el-menu>
- </el-anchor>
- </div> -->
- <div class="expert-content" ref="containerRef">
- <div v-for="(section, index) in contentData" :key="index" class="content-section">
- <div class="section-id" :id="section.targetId"></div>
- <record-item :record-item-data="section" :onlyRecipeName="true" class="recipe-item">
- <template #title>
- <div class="box-title">
- <div class="title-l">
- {{ section.title }}
- <span class="parent-text">{{ section.parentTitle || "秋梢期" }}</span>
- </div>
- <div class="title-r">
- <span class="r-dot"></span>
- 2区
- </div>
- </div>
- </template>
- <template #footer>
- <div class="info-item" v-if="activePlanIndex === 1">
- 农资执行:
- <span class="info-val">农资农资组织</span>
- </div>
- <div class="action-group">
- <div class="action-l">查看详情</div>
- <div class="action-r" v-if="section.orderStatus === 0">
- <div class="action-item second-item">拍照识别</div>
- <div class="action-item primary-item">去确认</div>
- </div>
- <div class="action-r" v-if="activePlanIndex === 0">
- <div class="action-item primary-item">确认完成</div>
- </div>
- <div class="action-r" v-if="activePlanIndex === 1">
- <div class="action-item warning-item" @click="handleApply">发起需求</div>
- <div class="action-item primary-item">去复核</div>
- </div>
- </div>
- </template>
- </record-item>
- </div>
- </div>
- </div>
- </div>
- <!-- 需求发送成功弹窗 -->
- <popup v-model:show="showApplyPopup" round class="apply-popup">
- <img class="check-icon" src="@/assets/img/home/right.png" alt="">
- <div class="apply-text">需求发送成功</div>
- <div class="apply-btn" @click="showApplyPopup = false">我知道了</div>
- </popup>
- </template>
- <script setup>
- import { ref } from "vue";
- import recordItem from "@/components/recordItem.vue";
- import { Popup } from "vant";
- const showApplyPopup = ref(false);
- const filterType = ref(["待执行", "已完成"]);
- const activePlanIndex = ref(0);
- const handlePlanClick = (index) => {
- activePlanIndex.value = index;
- };
- const containerRef = ref(null);
- const handleClick = (e) => {
- e.preventDefault();
- };
- // 菜单
- const defaultActive = ref("1-1");
- const menuData = [
- {
- id: 1,
- title: "秋梢期",
- children: [
- { id: 1, title: "巡园农事", href: "#part1" },
- { id: 2, title: "梢期防虫", href: "#part2" },
- { id: 3, title: "梢期营养", href: "#part3" },
- ],
- },
- {
- id: 2,
- title: "开花期",
- children: [
- { id: 1, title: "巡园农事", href: "#part4" },
- { id: 2, title: "摇花吹花", href: "#part5" },
- { id: 3, title: "花期防治", href: "#part6" },
- ],
- },
- ];
- const handleApply = () => {
- showApplyPopup.value = true;
- };
- const contentData = ref([
- {
- targetId: "part1",
- title: "巡园农事",
- parentTitle: "秋梢期",
- isExpanded: false, // 添加展开状态
- reCheckText: "本次农事复核成效优异,作物产量潜力实现大幅增长,虫害风险控制优异,未发现虫害风险",
- expert: 91356,
- orderStatus: 3,
- activeStatus: 0,
- regionId: 2,
- speciesId: "1",
- speciesName: "荔枝",
- farmWorkId: "699343457474318336",
- farmWorkLibId: "699343457474318336",
- farmWorkLibName: "梢期防虫",
- farmWorkName: "梢期防虫",
- expertIcon:
- "https://birdseye-img.sysuimars.com/birdseye-look-vue/%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20250411150343.png",
- expertName: "韦帮稳",
- icon: 4,
- beforeExecuteDate: "2025-08-01",
- executeDate: "2025-08-15",
- code: "BZ-BC-04-SQFC-20",
- expertPrescription: "",
- condition: "单树嫩叶率大于20.0%",
- defaultFarmWork: 0,
- farmWorkType: 3,
- farmWorkTypeName: "病虫",
- usageMode: "叶面施",
- serviceMain: "广州泽秾丰农资有限公司",
- updateDate6: null,
- confirmPicture: [],
- executeMain: "广州泽秾丰农资有限公司",
- storeShortName: "泽秾丰",
- serviceRegion: "广州市从化区荔枝博览园",
- prescriptionList: [
- {
- name: "营养",
- pesticideFertilizerList: [
- {
- defaultDroneRatio: null,
- defaultName: "尿素",
- defaultRatio: 0,
- id: null,
- muPrice: null,
- muUsage: 15000.0,
- muUsage2: 15000.0,
- ratio: 0,
- ratio2: 0,
- remark: "",
- usageMode: "",
- usageModeList: ["叶面施、根部施"],
- orderId: null,
- pesticideFertilizerCode: "1001",
- pesticideFertilizerId: "1",
- pesticideFertilizerName: "尿素",
- brand: "山东联盟",
- typeName: "营养",
- price: 132,
- unit: "g",
- executeStyle: null,
- },
- {
- defaultDroneRatio: null,
- defaultName: "15-15-15复合肥",
- defaultRatio: 0,
- id: null,
- muPrice: null,
- muUsage: 45000.0,
- muUsage2: 45000.0,
- ratio: 0,
- ratio2: 0,
- remark: "",
- usageMode: "",
- usageModeList: ["根部施"],
- orderId: null,
- pesticideFertilizerCode: "1002",
- pesticideFertilizerId: "2",
- pesticideFertilizerName: "15-15-15复合肥",
- brand: "金正大",
- typeName: "营养",
- price: 220,
- unit: "g",
- executeStyle: null,
- },
- ],
- },
- ],
- },
- {
- targetId: "part2",
- title: "梢期防虫",
- parentTitle: "秋梢期",
- isExpanded: false, // 添加展开状态
- consequenceText: "如果不做本次农事,会导致您的产量、质量下降30%,管理得分降低10分",
- id: "274654",
- reCheckText: "本次农事复核成效优异,作物产量潜力实现大幅增长,树体营养较充足,土壤肥力增加",
- farmName: "荔枝博览园",
- farmPoint: "POINT(113.61702297075017 23.584863449735067)",
- orderId: "745923632567422976",
- area: 2.719998598098755,
- expert: 91356,
- orderStatus: 4,
- activeStatus: 0,
- farmId: 766,
- regionId: 2,
- speciesId: "1",
- speciesName: "荔枝",
- agriculturalId: 24,
- farmWorkId: "699343457444958208",
- farmWorkLibId: "699343457444958208",
- farmWorkLibName: "梢期营养",
- farmWorkName: "梢期营养",
- expertIcon:
- "https://birdseye-img.sysuimars.com/birdseye-look-vue/%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20250411150343.png",
- expertName: "韦帮稳",
- expertUserIcon: "",
- expertUserName: "韦帮稳",
- icon: 4,
- indexChart: [],
- indexName: "",
- beforeExecuteDate: "2025-05-26",
- checkDate: null,
- executeDate: "2025-08-01",
- indexJson: "",
- code: "BZ-YY-04-SQYY-20",
- expertPrescription: "",
- condition: "园区叶芽率大于20.0%",
- solarName: "",
- reCheck: null,
- executeBlueZones: [
- {
- id: "ws0y1m6x7cjz",
- level: null,
- },
- {
- id: "ws0y1md9v3ht",
- level: null,
- },
- {
- id: "ws0y1mdspbk7",
- level: null,
- },
- {
- id: "ws0y1mdvvdsz",
- level: null,
- },
- {
- id: "ws0y1me545tg",
- level: null,
- },
- ],
- menu: 1,
- isEdit: 0,
- isMaster: null,
- num: null,
- purpose: "",
- selfExec: null,
- defaultFarmWork: 0,
- farmWorkType: 2,
- farmWorkTypeName: "营养",
- type: 1,
- execute: 4,
- updateDate0: "2025-08-20",
- updateDate1: null,
- updateDate2: null,
- updateDate3: null,
- updateDate4: null,
- updateDate5: null,
- usageMode: "根部施",
- serviceMain: "广州泽秾丰农资有限公司",
- updateDate6: null,
- confirmPicture: [],
- executeMain: "广州泽秾丰农资有限公司",
- storeShortName: "泽秾丰",
- weatherWarningMsg: "",
- executeEvidence: [],
- userEvaluation: null,
- reviewDate: null,
- reviewDate2: null,
- reviewImage: [],
- reviewImage2: [],
- serviceRegion: "广州市从化区荔枝博览园",
- users: [
- {
- id: null,
- orderId: null,
- serviceType: null,
- userType: null,
- userId: 81881,
- joinStatus: null,
- icon: "https://birdseye-img.sysuimars.com/birdseye-look-mini/Group%201321316260.png",
- userName: "飞鸟种植助手",
- area: "",
- point: "",
- farmName: "",
- selected: null,
- },
- ],
- cost: null,
- prescriptionList: [
- {
- name: "营养",
- pesticideFertilizerList: [
- {
- defaultDroneRatio: null,
- defaultName: "尿素",
- defaultRatio: 0,
- id: null,
- muPrice: null,
- muUsage: 15000.0,
- muUsage2: 15000.0,
- ratio: 0,
- ratio2: 0,
- remark: "",
- usageMode: "",
- usageModeList: ["叶面施、根部施"],
- orderId: null,
- pesticideFertilizerCode: "1001",
- pesticideFertilizerId: "1",
- pesticideFertilizerName: "尿素",
- brand: "山东联盟",
- typeName: "营养",
- price: 132,
- unit: "g",
- executeStyle: null,
- },
- {
- defaultDroneRatio: null,
- defaultName: "15-15-15复合肥",
- defaultRatio: 0,
- id: null,
- muPrice: null,
- muUsage: 45000.0,
- muUsage2: 45000.0,
- ratio: 0,
- ratio2: 0,
- remark: "",
- usageMode: "",
- usageModeList: ["根部施"],
- orderId: null,
- pesticideFertilizerCode: "1002",
- pesticideFertilizerId: "2",
- pesticideFertilizerName: "15-15-15复合肥",
- brand: "金正大",
- typeName: "营养",
- price: 220,
- unit: "g",
- executeStyle: null,
- },
- ],
- },
- ],
- conditionList: [
- {
- index: "1-2-001-02-02-02-01-0008",
- name: "园区叶芽率",
- type: 1,
- value: "0.2",
- },
- ],
- },
- {
- targetId: "part3",
- title: "梢期营养",
- isExpanded: false, // 添加展开状态
- consequenceText: "如果不做本次农事,会导致您的产量、质量下降5%,管理得分降低2分",
- reCheckText: "本次农事复核成效优异,作物产量潜力实现大幅增长,树体营养较充足,转色速度非常稳定,转色率超过80%",
- farmName: "荔枝博览园",
- farmPoint: "POINT(113.61702297075017 23.584863449735067)",
- orderId: "745923697054846976",
- area: 2.719998598098755,
- expert: 91356,
- orderStatus: 2,
- activeStatus: 0,
- farmId: 766,
- regionId: 2,
- speciesId: "1",
- speciesName: "荔枝",
- agriculturalId: 24,
- farmWorkId: "699343457482706947",
- farmWorkLibId: "699343457482706947",
- farmWorkLibName: "转色营养",
- farmWorkName: "转色营养",
- expertIcon:
- "https://birdseye-img.sysuimars.com/birdseye-look-vue/%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20250411150343.png",
- expertName: "韦帮稳",
- expertUserIcon: "",
- expertUserName: "韦帮稳",
- icon: 0,
- indexChart: [],
- indexName: "",
- beforeExecuteDate: "2025-05-26",
- checkDate: null,
- executeDate: "2025-05-26",
- indexJson: "",
- code: "BZ-YY-06-ZSYY-100",
- expertPrescription: "",
- condition: "园区转色率大于20.0%",
- solarName: "",
- reCheck: null,
- executeBlueZones: [
- {
- id: "ws0y1m6x7cjz",
- level: null,
- },
- {
- id: "ws0y1md9v3ht",
- level: null,
- },
- {
- id: "ws0y1mdspbk7",
- level: null,
- },
- {
- id: "ws0y1mdvvdsz",
- level: null,
- },
- {
- id: "ws0y1me545tg",
- level: null,
- },
- ],
- menu: 1,
- isEdit: 0,
- isMaster: null,
- num: null,
- purpose: "",
- selfExec: null,
- defaultFarmWork: 0,
- farmWorkType: 2,
- farmWorkTypeName: "营养",
- type: 1,
- execute: 4,
- updateDate0: "2025-08-20",
- updateDate1: null,
- updateDate2: null,
- updateDate3: null,
- updateDate4: null,
- updateDate5: null,
- usageMode: "根部施",
- serviceMain: "广州泽秾丰农资有限公司",
- updateDate6: null,
- confirmPicture: [],
- executeMain: "广州泽秾丰农资有限公司",
- storeShortName: "泽秾丰",
- weatherWarningMsg: "",
- executeEvidence: [],
- userEvaluation: null,
- reviewDate: null,
- reviewDate2: null,
- reviewImage: [],
- reviewImage2: [],
- serviceRegion: "广州市从化区荔枝博览园",
- users: [
- {
- id: null,
- orderId: null,
- serviceType: null,
- userType: null,
- userId: 81881,
- joinStatus: null,
- icon: "https://birdseye-img.sysuimars.com/birdseye-look-mini/Group%201321316260.png",
- userName: "飞鸟种植助手",
- area: "",
- point: "",
- farmName: "",
- selected: null,
- },
- ],
- cost: null,
- prescriptionList: [
- {
- name: "营养",
- pesticideFertilizerList: [
- {
- defaultDroneRatio: null,
- defaultName: "矿源黄腐酸钾",
- defaultRatio: 2000,
- id: null,
- muPrice: null,
- muUsage: 4.0,
- muUsage2: 4.0,
- ratio: 2000,
- ratio2: 200,
- remark: "",
- usageMode: "",
- usageModeList: ["叶面施、根部施"],
- orderId: null,
- pesticideFertilizerCode: "1166",
- pesticideFertilizerId: "166",
- pesticideFertilizerName: "矿源黄腐酸钾",
- brand: "广州大炎",
- typeName: "营养",
- price: 15000,
- unit: "g",
- executeStyle: null,
- },
- {
- defaultDroneRatio: null,
- defaultName: "有机质水溶肥",
- defaultRatio: 5000,
- id: null,
- muPrice: null,
- muUsage: 10.0,
- muUsage2: 10.0,
- ratio: 5000,
- ratio2: 500,
- remark: "",
- usageMode: "",
- usageModeList: ["叶面施"],
- orderId: null,
- pesticideFertilizerCode: "1167",
- pesticideFertilizerId: "167",
- pesticideFertilizerName: "有机质水溶肥",
- brand: "广州大炎",
- typeName: "营养",
- price: 10000,
- unit: "g",
- executeStyle: null,
- },
- {
- defaultDroneRatio: null,
- defaultName: "磷酸二氢钾",
- defaultRatio: 5000,
- id: null,
- muPrice: null,
- muUsage: 10.0,
- muUsage2: 10.0,
- ratio: 5000,
- ratio2: 500,
- remark: "",
- usageMode: "",
- usageModeList: ["叶面施、根部施"],
- orderId: null,
- pesticideFertilizerCode: "1168",
- pesticideFertilizerId: "168",
- pesticideFertilizerName: "磷酸二氢钾",
- brand: "广州大炎",
- typeName: "营养",
- price: 12000,
- unit: "g",
- executeStyle: null,
- },
- {
- defaultDroneRatio: null,
- defaultName: "高钾复合肥",
- defaultRatio: 5000,
- id: null,
- muPrice: null,
- muUsage: 10.0,
- muUsage2: 10.0,
- ratio: 5000,
- ratio2: 500,
- remark: "",
- usageMode: "",
- usageModeList: ["根部施"],
- orderId: null,
- pesticideFertilizerCode: "1169",
- pesticideFertilizerId: "169",
- pesticideFertilizerName: "高钾复合肥",
- brand: "未知",
- typeName: "营养",
- price: 245,
- unit: "g",
- executeStyle: null,
- },
- {
- defaultDroneRatio: null,
- defaultName: "红牛硫酸钾",
- defaultRatio: 5000,
- id: null,
- muPrice: null,
- muUsage: 10.0,
- muUsage2: 10.0,
- ratio: 5000,
- ratio2: 500,
- remark: "",
- usageMode: "",
- usageModeList: ["根部施"],
- orderId: null,
- pesticideFertilizerCode: "1170",
- pesticideFertilizerId: "170",
- pesticideFertilizerName: "红牛硫酸钾",
- brand: "广州大炎",
- typeName: "营养",
- price: 230,
- unit: "g",
- executeStyle: null,
- },
- ],
- },
- ],
- conditionList: [
- {
- index: "1-2-016-02-02-02-01-0008",
- name: "园区转色率",
- type: 1,
- value: "0.2",
- },
- ],
- },
- {
- targetId: "part4",
- title: "巡园农事",
- parentTitle: "开花期",
- isExpanded: false, // 添加展开状态
- consequenceText: "如果不做本次农事,会导致您的产量、质量下降20%,管理得分降低8分",
- id: "274672",
- reCheckText: "本次农事复核成效优异,作物产量潜力实现大幅增长,病虫害基数得到大幅下降,未发现病虫害风险",
- farmName: "荔枝博览园",
- farmPoint: "POINT(113.61702297075017 23.584863449735067)",
- orderId: "745923690209742848",
- area: 2.719998598098755,
- expert: 91356,
- orderStatus: 3,
- activeStatus: 0,
- farmId: 766,
- regionId: 2,
- speciesId: "1",
- speciesName: "荔枝",
- agriculturalId: 24,
- farmWorkId: "699343457478512646",
- farmWorkLibId: "699343457478512646",
- farmWorkLibName: "果期防治II",
- farmWorkName: "果期防治II",
- expertIcon:
- "https://birdseye-img.sysuimars.com/birdseye-look-vue/%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20250411150343.png",
- expertName: "韦帮稳",
- expertUserIcon: "",
- expertUserName: "韦帮稳",
- icon: 1,
- indexChart: [],
- indexName: "",
- beforeExecuteDate: "2025-05-06",
- checkDate: null,
- executeDate: "2025-05-12",
- indexJson: "",
- code: "BZ-BC-06-GQFZ2-100",
- expertPrescription: "",
- condition: "园区膨果率大于20.0%",
- solarName: "",
- reCheck: null,
- executeBlueZones: [
- {
- id: "ws0y1m6x7cjz",
- level: null,
- },
- {
- id: "ws0y1md9v3ht",
- level: null,
- },
- {
- id: "ws0y1mdspbk7",
- level: null,
- },
- {
- id: "ws0y1mdvvdsz",
- level: null,
- },
- {
- id: "ws0y1me545tg",
- level: null,
- },
- ],
- menu: 1,
- isEdit: 0,
- isMaster: null,
- num: null,
- purpose: "",
- selfExec: null,
- defaultFarmWork: 0,
- farmWorkType: 3,
- farmWorkTypeName: "病虫",
- type: 1,
- execute: 4,
- updateDate0: "2025-08-20",
- updateDate1: null,
- updateDate2: null,
- updateDate3: null,
- updateDate4: null,
- updateDate5: null,
- usageMode: "叶面施",
- serviceMain: "广州泽秾丰农资有限公司",
- updateDate6: null,
- confirmPicture: [],
- executeMain: "广州泽秾丰农资有限公司",
- storeShortName: "泽秾丰",
- weatherWarningMsg: "",
- executeEvidence: [],
- userEvaluation: null,
- reviewDate: null,
- reviewDate2: null,
- reviewImage: [],
- reviewImage2: [],
- serviceRegion: "广州市从化区荔枝博览园",
- users: [
- {
- id: null,
- orderId: null,
- serviceType: null,
- userType: null,
- userId: 81881,
- joinStatus: null,
- icon: "https://birdseye-img.sysuimars.com/birdseye-look-mini/Group%201321316260.png",
- userName: "飞鸟种植助手",
- area: "",
- point: "",
- farmName: "",
- selected: null,
- },
- ],
- cost: null,
- prescriptionList: [
- {
- name: "病虫",
- pesticideFertilizerList: [
- {
- defaultDroneRatio: null,
- defaultName: "威远.绿凯",
- defaultRatio: 150000,
- id: null,
- muPrice: null,
- muUsage: 150.0,
- muUsage2: 150.0,
- ratio: 150000,
- ratio2: 15000,
- remark: "",
- usageMode: "",
- usageModeList: ["叶面施"],
- orderId: null,
- pesticideFertilizerCode: "1147",
- pesticideFertilizerId: "147",
- pesticideFertilizerName: "威远.绿凯",
- brand: "利民控股绿凯",
- typeName: "病虫",
- price: 90,
- unit: "g",
- executeStyle: null,
- },
- {
- defaultDroneRatio: null,
- defaultName: "微量元素益元液",
- defaultRatio: 150000,
- id: null,
- muPrice: null,
- muUsage: 300.0,
- muUsage2: 300.0,
- ratio: 150000,
- ratio2: 15000,
- remark: "",
- usageMode: "",
- usageModeList: ["叶面施"],
- orderId: null,
- pesticideFertilizerCode: "1174",
- pesticideFertilizerId: "174",
- pesticideFertilizerName: "微量元素益元液",
- brand: "广州大炎",
- typeName: "营养",
- price: 60,
- unit: "ml",
- executeStyle: null,
- },
- {
- defaultDroneRatio: null,
- defaultName: "中量元素益元液",
- defaultRatio: 150000,
- id: null,
- muPrice: null,
- muUsage: 300.0,
- muUsage2: 300.0,
- ratio: 150000,
- ratio2: 15000,
- remark: "",
- usageMode: "",
- usageModeList: ["叶面施"],
- orderId: null,
- pesticideFertilizerCode: "1175",
- pesticideFertilizerId: "175",
- pesticideFertilizerName: "中量元素益元液",
- brand: "广州大炎",
- typeName: "营养",
- price: 30,
- unit: "ml",
- executeStyle: null,
- },
- {
- defaultDroneRatio: null,
- defaultName: "济南中科翠剑",
- defaultRatio: 150000,
- id: null,
- muPrice: null,
- muUsage: 150.0,
- muUsage2: 150.0,
- ratio: 150000,
- ratio2: 15000,
- remark: "",
- usageMode: "",
- usageModeList: ["叶面施"],
- orderId: null,
- pesticideFertilizerCode: "1149",
- pesticideFertilizerId: "149",
- pesticideFertilizerName: "吡唑醚菌酯",
- brand: "济南中科翠剑",
- typeName: "病虫",
- price: 60,
- unit: "g",
- executeStyle: null,
- },
- {
- defaultDroneRatio: null,
- defaultName: "佳果天成",
- defaultRatio: 150000,
- id: null,
- muPrice: null,
- muUsage: 300.0,
- muUsage2: 300.0,
- ratio: 150000,
- ratio2: 15000,
- remark: "",
- usageMode: "",
- usageModeList: ["叶面施"],
- orderId: null,
- pesticideFertilizerCode: "1171",
- pesticideFertilizerId: "171",
- pesticideFertilizerName: "佳果天成",
- brand: "广州大炎",
- typeName: "营养",
- price: 120,
- unit: "ml",
- executeStyle: null,
- },
- {
- defaultDroneRatio: null,
- defaultName: "高效氟氯氰菊酯",
- defaultRatio: 150000,
- id: null,
- muPrice: null,
- muUsage: 150.0,
- muUsage2: 150.0,
- ratio: 150000,
- ratio2: 15000,
- remark: "",
- usageMode: "",
- usageModeList: ["叶面施"],
- orderId: null,
- pesticideFertilizerCode: "1155",
- pesticideFertilizerId: "155",
- pesticideFertilizerName: "高效氟氯氰菊酯",
- brand: "广东立威.立功",
- typeName: "病虫",
- price: 50,
- unit: "ml",
- executeStyle: null,
- },
- {
- defaultDroneRatio: null,
- defaultName: "联苯噻虫嗪",
- defaultRatio: 150000,
- id: null,
- muPrice: null,
- muUsage: 150.0,
- muUsage2: 150.0,
- ratio: 150000,
- ratio2: 15000,
- remark: "",
- usageMode: "",
- usageModeList: ["叶面施"],
- orderId: null,
- pesticideFertilizerCode: "1156",
- pesticideFertilizerId: "156",
- pesticideFertilizerName: "联苯噻虫嗪",
- brand: "青岛金正飞灵",
- typeName: "病虫",
- price: 60,
- unit: "ml",
- executeStyle: null,
- },
- ],
- },
- ],
- conditionList: [
- {
- index: "1-2-014-02-02-02-01-0008",
- name: "园区膨果率",
- type: 1,
- value: "0.2",
- },
- ],
- },
- {
- id: "part5",
- title: "摇花吹花",
- parentTitle: "开花期",
- isExpanded: false, // 添加展开状态
- consequenceText: "如果不做本次农事,会导致您的产量、质量下降15%,管理得分降低5分",
- id: "274671",
- reCheckText: "本次农事复核成效优异,作物产量潜力实现大幅增长,树体营养较充足,膨果速度非常稳定,膨果率超过80%",
- farmName: "荔枝博览园",
- farmPoint: "POINT(113.61702297075017 23.584863449735067)",
- orderId: "745923686854299648",
- area: 2.719998598098755,
- expert: 91356,
- orderStatus: 1,
- activeStatus: 0,
- farmId: 766,
- regionId: 2,
- speciesId: "1",
- speciesName: "荔枝",
- agriculturalId: 24,
- farmWorkId: "699343457482706944",
- farmWorkLibId: "699343457482706944",
- farmWorkLibName: "膨果营养",
- farmWorkName: "膨果营养",
- expertIcon:
- "https://birdseye-img.sysuimars.com/birdseye-look-vue/%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20250411150343.png",
- expertName: "韦帮稳",
- expertUserIcon: "",
- expertUserName: "韦帮稳",
- icon: 2,
- indexChart: [],
- indexName: "",
- beforeExecuteDate: "2025-05-01",
- checkDate: null,
- executeDate: "2025-05-06",
- indexJson: "",
- code: "BZ-YY-06-PGYY-100",
- expertPrescription: "",
- condition: "园区膨果率大于10.0%",
- solarName: "",
- reCheck: null,
- executeBlueZones: [
- {
- id: "ws0y1m6x7cjz",
- level: null,
- },
- {
- id: "ws0y1md9v3ht",
- level: null,
- },
- {
- id: "ws0y1mdspbk7",
- level: null,
- },
- {
- id: "ws0y1mdvvdsz",
- level: null,
- },
- {
- id: "ws0y1me545tg",
- level: null,
- },
- ],
- menu: 1,
- isEdit: 0,
- isMaster: null,
- num: null,
- purpose: "",
- selfExec: null,
- defaultFarmWork: 0,
- farmWorkType: 2,
- farmWorkTypeName: "营养",
- type: 1,
- execute: 4,
- updateDate0: "2025-08-20",
- updateDate1: null,
- updateDate2: null,
- updateDate3: null,
- updateDate4: null,
- updateDate5: null,
- usageMode: "根部施",
- serviceMain: "广州泽秾丰农资有限公司",
- updateDate6: null,
- confirmPicture: [],
- executeMain: "广州泽秾丰农资有限公司",
- storeShortName: "泽秾丰",
- weatherWarningMsg: "",
- executeEvidence: [],
- userEvaluation: null,
- reviewDate: null,
- reviewDate2: null,
- reviewImage: [],
- reviewImage2: [],
- serviceRegion: "广州市从化区荔枝博览园",
- users: [
- {
- id: null,
- orderId: null,
- serviceType: null,
- userType: null,
- userId: 81881,
- joinStatus: null,
- icon: "https://birdseye-img.sysuimars.com/birdseye-look-mini/Group%201321316260.png",
- userName: "飞鸟种植助手",
- area: "",
- point: "",
- farmName: "",
- selected: null,
- },
- ],
- cost: null,
- prescriptionList: [
- {
- name: "营养",
- pesticideFertilizerList: [
- {
- defaultDroneRatio: null,
- defaultName: "硝酸铵钙",
- defaultRatio: 0,
- id: null,
- muPrice: null,
- muUsage: 15000.0,
- muUsage2: 15000.0,
- ratio: 0,
- ratio2: 0,
- remark: "",
- usageMode: "",
- usageModeList: ["根部施"],
- orderId: null,
- pesticideFertilizerCode: "1162",
- pesticideFertilizerId: "162",
- pesticideFertilizerName: "硝酸铵钙",
- brand: "未知",
- typeName: "营养",
- price: 2000,
- unit: "g",
- executeStyle: null,
- },
- {
- defaultDroneRatio: null,
- defaultName: "氯化钾",
- defaultRatio: 0,
- id: null,
- muPrice: null,
- muUsage: 15000.0,
- muUsage2: 15000.0,
- ratio: 0,
- ratio2: 0,
- remark: "",
- usageMode: "",
- usageModeList: ["根部施"],
- orderId: null,
- pesticideFertilizerCode: "1163",
- pesticideFertilizerId: "163",
- pesticideFertilizerName: "氯化钾",
- brand: "未知",
- typeName: "营养",
- price: 4500,
- unit: "g",
- executeStyle: null,
- },
- {
- defaultDroneRatio: null,
- defaultName: "高氮水溶肥",
- defaultRatio: 5000,
- id: null,
- muPrice: null,
- muUsage: 10.0,
- muUsage2: 10.0,
- ratio: 5000,
- ratio2: 500,
- remark: "",
- usageMode: "",
- usageModeList: ["叶面施"],
- orderId: null,
- pesticideFertilizerCode: "1165",
- pesticideFertilizerId: "165",
- pesticideFertilizerName: "高氮水溶肥",
- brand: "广州大炎",
- typeName: "营养",
- price: 8500,
- unit: "g",
- executeStyle: null,
- },
- {
- defaultDroneRatio: null,
- defaultName: "矿源黄腐酸钾",
- defaultRatio: 2000,
- id: null,
- muPrice: null,
- muUsage: 4.0,
- muUsage2: 4.0,
- ratio: 2000,
- ratio2: 200,
- remark: "",
- usageMode: "",
- usageModeList: ["叶面施、根部施"],
- orderId: null,
- pesticideFertilizerCode: "1166",
- pesticideFertilizerId: "166",
- pesticideFertilizerName: "矿源黄腐酸钾",
- brand: "广州大炎",
- typeName: "营养",
- price: 15000,
- unit: "g",
- executeStyle: null,
- },
- ],
- },
- ],
- conditionList: [
- {
- index: "1-2-014-02-02-02-01-0008",
- name: "园区膨果率",
- type: 1,
- value: "0.1",
- },
- ],
- },
- ]);
- </script>
- <style lang="scss" scoped>
- .farm-dynamics {
- width: 100%;
- height: 100vh;
- background: #f5f7fb;
- .record-filter {
- display: flex;
- justify-content: center;
- align-items: center;
- background: #fff;
- padding: 5px 0;
- .filter-item {
- color: rgba(0, 0, 0, 0.5);
- padding: 0 12px;
- height: 28px;
- line-height: 28px;
- border-radius: 20px;
- border: 1px solid transparent;
- &.active {
- background: rgba(33, 153, 248, 0.1);
- color: #2199f8;
- border: 1px solid #2199f8;
- }
- }
- .filter-item + .filter-item {
- margin-left: 10px;
- }
- }
- .task-content {
- display: flex;
- padding-top: 10px;
- height: calc(100% - 140px);
- // .plan-menu {
- // width: 90px;
- // height: 100%;
- // padding: 10px 0;
- // box-sizing: border-box;
- // background: #fff;
- // border-radius: 0 10px 10px 0;
- // .menu-icon {
- // width: 13px;
- // }
- // .menu-text {
- // padding: 0 4px;
- // }
- // ::v-deep {
- // .el-anchor {
- // height: 100%;
- // background: none;
- // }
- // .el-anchor__marker {
- // display: none;
- // }
- // .el-menu {
- // background: none;
- // border: none;
- // .el-sub-menu__title {
- // background: none;
- // padding: 0 2px;
- // justify-content: center;
- // }
- // .el-sub-menu__title {
- // height: 32px;
- // }
- // .el-sub-menu .el-sub-menu__icon-arrow {
- // position: static;
- // padding-top: 6px;
- // }
- // .el-sub-menu {
- // margin-bottom: 16px;
- // &.is-opened {
- // .el-sub-menu__icon-arrow {
- // padding-bottom: 6px;
- // padding-top: 0;
- // }
- // }
- // .el-menu-item {
- // height: 32px;
- // line-height: 32px;
- // margin: 4px 8px;
- // padding: 0 2px;
- // justify-content: center;
- // background: none;
- // }
- // .el-menu-item.is-active {
- // background: none;
- // color: #fff;
- // }
- // .el-anchor__item {
- // width: 100%;
- // text-align: center;
- // }
- // .el-anchor__link {
- // color: #666666;
- // }
- // .el-anchor__link.is-active {
- // background: linear-gradient(180deg, #70bffe, #2199f8);
- // border-radius: 20px;
- // color: #fff;
- // }
- // }
- // }
- // .el-anchor__list {
- // padding-left: 0;
- // }
- // }
- // }
- .expert-content {
- width: 100%;
- height: 100%;
- overflow: auto;
- padding-bottom: 10px;
- box-sizing: border-box;
- .content-section {
- position: relative;
- .section-id {
- position: absolute;
- top: 0;
- width: 100%;
- height: 1px;
- }
- .recipe-item {
- border: 1px solid rgba(0, 0, 0, 0.1);
- }
- }
- .box-title {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding-bottom: 8px;
- .title-l {
- font-size: 16px;
- font-weight: 600;
- color: #000;
- .parent-text {
- margin-left: 5px;
- font-size: 12px;
- font-weight: normal;
- padding: 4px 6px;
- border-radius: 14px;
- background: rgba(119, 119, 119, 0.1);
- }
- }
- .title-btn {
- width: 24px;
- height: 24px;
- border-radius: 50%;
- background: #2199f8;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .title-r {
- display: flex;
- align-items: center;
- color: #ff8a2a;
- font-size: 12px;
- .r-dot {
- width: 6px;
- height: 6px;
- border-radius: 50%;
- background: #ff8a2a;
- margin-right: 5px;
- }
- }
- }
- .action-r{
- color: #1D2129;
- }
- .info-item{
- font-size: 12px;
- color: #BBBBBB;
- .info-val{
- color: #666666;
- }
- }
- .action-group {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding-top: 8px;
- margin-top: 8px;
- border-top: 1px solid #f5f5f5;
- .action-l {
- font-size: 12px;
- }
- }
- .action-group {
- .action-r {
- display: flex;
- align-items: center;
- .action-item {
- padding: 0 11px;
- height: 30px;
- line-height: 30px;
- border-radius: 20px;
- font-size: 12px;
- &.second-item {
- border: 1px solid #2199f8;
- color: #2199f8;
- }
- &.primary-item {
- background: #2199f8;
- color: #fff;
- }
- &.warning-item {
- background: rgba(255, 131, 29, 0.1);
- color: #ff831d;
- }
- &.cancel-item {
- color: #676767;
- border: 1px solid rgba(103, 103, 103, 0.2);
- }
- }
- .action-item + .action-item {
- margin-left: 5px;
- }
- }
- .apply-action {
- justify-content: flex-end;
- .default-item {
- border: 1px solid rgba(0, 0, 0, 0.4);
- color: rgba(0, 0, 0, 0.4);
- }
- }
- }
- }
- }
- }
- .apply-popup {
- width: 75%;
- padding: 28px 28px 20px;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- .check-icon{
- width: 68px;
- height: 68px;
- margin-bottom: 12px;
- }
- .apply-text{
- font-size: 24px;
- font-weight: 500;
- margin-bottom: 32px;
- text-align: center;
- }
- .apply-btn{
- width: 100%;
- box-sizing: border-box;
- padding: 8px;
- border-radius: 25px;
- font-size: 16px;
- background: #2199F8;
- color: #fff;
- text-align: center;
- }
- }
- </style>
|