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