You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

81 lines
1.8 KiB

<style lang="less" scoped>
.container{
padding:0 30rpx;
&>view{
display:flex;
align-items: center;
justify-content: space-between;
padding:20rpx 0;
&+view{
border-top:2rpx solid rgba(216, 216, 216, 0.2);
}
text{
&:first-child{
color:var(--b,#777);
margin-right:20rpx;
}
&:nth-child(2){
color:var(--f,#333);
font-size:var(--size,28rpx);
&.agr{
color:#10C176;
margin-top:13rpx;
}
&.account{
margin-top:13rpx;
padding:30rpx;
border-radius: 24rpx;
color:#999;
background: #F7F7F7;
}
}
}
&.info{
--b:#333;
--f:#777;
--size:24rpx;
}
&.vertical{
flex-direction: column;
align-items: flex-start;
}
}
}
</style>
<template>
<view class="container">
<view class="info">
<text>基本信息</text> <text>推送时间2023-02-28 10:23:56</text>
</view>
<view>
<text>品种名称</text> <text class="over">阳光玫瑰</text>
</view>
<view>
<text>作物类型</text> <text class="over">葡萄</text>
</view>
<view>
<text>生长过程</text> <text class="over">发芽</text>
</view>
<view>
<text>病虫害部位</text> <text class="over"></text>
</view>
<view>
<text>显著症状</text> <text class="over">变色</text>
</view>
<view class="vertical">
<text>推荐农资</text> <text class="agr">水溶肥复合肥氮肥</text>
</view>
<view class="vertical">
<text>推荐理由</text> <text class="account">由于叶子部位病变需要使用水溶肥内容这里是产品介绍内容这里是产品介绍内容这里是产品介绍内容这里是产品介绍内容这里是产品介绍内容</text>
</view>
</view>
</template>
<script>
export default {
data(){
return{
}
}
}
</script>