From 045dd23089d7f338ce0973d2eedaa82685858efa Mon Sep 17 00:00:00 2001 From: dingtalk_umvbsp Date: Fri, 10 Feb 2023 17:38:43 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=A7=8D=E6=A4=8D=E8=AE=A1?= =?UTF-8?q?=E5=88=92=E5=88=97=E8=A1=A8=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/massif/mana/plantPlan.vue | 48 ++++++++++++++++++++++++++------- 1 file changed, 38 insertions(+), 10 deletions(-) diff --git a/pages/massif/mana/plantPlan.vue b/pages/massif/mana/plantPlan.vue index 8de30e4..c60b84c 100644 --- a/pages/massif/mana/plantPlan.vue +++ b/pages/massif/mana/plantPlan.vue @@ -59,11 +59,22 @@ margin-bottom:6rpx; } .mu{ - color:#10C176; - font-size:32rpx; - font-weight: bold; - &:after{ - content:"亩"; + display:flex; + align-items: center; + justify-content: space-between; + &>text{ + color:#10C176; + font-size:32rpx; + font-weight: bold; + &:after{ + content:"亩"; + } + } + button{ + margin:-20rpx 0!important; + padding:20rpx; + height: auto; + background: transparent; } } } @@ -100,7 +111,7 @@ } } } - button{ + &>button{ flex-shrink: 0; margin:20rpx auto!important; } @@ -120,16 +131,22 @@ 种植批次号:{{v.plantBatch}} 已采收:{{v.harvested}}kg - {{v.plantArea}} + + {{v.plantArea}} + + - 本次预估采收时间:{{v.harvestTime}} + 预估采收时间:{{v.harvestTime}} - 已结束 + @@ -232,7 +249,18 @@ export default { url:`/pages/massif/plant_info?plantId=${plantId}&plotId=${this.plotId}`, events:{ toRecovery:()=> this.$emit("trigger",{tabIndex:2,plantId}) } }) - } + }, + del(){ + uni.showModal({ + title:"提示", + content:"确定删除!", + success: async e=>{ + if(e.confirm){ + + } + } + }) + }, } } \ No newline at end of file