mkm
/
yanzhiAPP
Template
2
0
Fork 0
yanzhiAPP/pages/feedIng/allRecording.vue

89 lines
1.6 KiB
Vue
Raw Normal View History

2023-10-21 18:02:06 +08:00
<template>
<view class="content">
2023-10-27 18:38:25 +08:00
<!-- <view class="card">
2023-10-21 18:02:06 +08:00
<view class="tit">
<view class="">
农户名称: 1号土地
</view>
</view>
<view class="card-li">
<view class="">
种养殖类型: 土豆
</view>
<view class="">
养殖头数: 的划分等级
</view>
</view>
<view class="card-li">
<view class="">
土地面积: 20
</view>
<view class="">
公猪: 的划分等级
</view>
</view>
<view class="card-li">
<view class="">
养殖种类: 20
</view>
<view class="">
母猪: 的划分等级
</view>
</view>
<view class="card-li">
<view class="">
具体种类: 20
</view>
<view class="">
幼崽: 的划分等级
</view>
</view>
2023-10-27 18:38:25 +08:00
</view> -->
<detailCard :id='id'></detailCard>
2023-10-23 17:57:19 +08:00
<view class="" style="margin-bottom: 20rpx;">
2023-10-21 18:02:06 +08:00
饲养记录
</view>
2023-10-23 17:57:19 +08:00
<myTable></myTable>
2023-10-21 18:02:06 +08:00
</view>
</template>
2023-10-23 17:57:19 +08:00
<script setup>
import myTable from "@/components/myTable/index.vue"
2023-10-27 18:38:25 +08:00
import {
onLoad
} from "@dcloudio/uni-app"
import detailCard from "@/components/animal/detailCard.vue"
import {
ref
} from "vue"
const id = ref(0)
onLoad((option) => {
id.value = option.id
})
2023-10-21 18:02:06 +08:00
</script>
<style lang="scss" scoped>
.card {
margin-bottom: 20rpx;
.tit {
display: flex;
justify-content: space-between;
padding-bottom: 20rpx;
border-bottom: 1px solid #EBF1EF;
}
.card-li {
margin-top: 20rpx;
display: flex;
justify-content: space-between;
}
}
.table {
margin-top: 20rpx;
height: 500rpx;
background-color: red;
}
</style>