2023-12-21 16:29:58 +08:00
|
|
|
<template>
|
|
|
|
<view style="position: relative;">
|
|
|
|
<view class="top">
|
|
|
|
<view class="" style="height:var(--status-bar-height) ;">
|
|
|
|
</view>
|
|
|
|
<view class="nav-con">
|
|
|
|
<view class="left"></view>
|
|
|
|
<view class="title" @click="navBack">
|
2023-12-25 14:36:19 +08:00
|
|
|
<u-icon name="arrow-left" color="#fff" size="40rpx" style="margin-right: 10rpx;"></u-icon> <text
|
2023-12-21 16:29:58 +08:00
|
|
|
style="padding-bottom: 5rpx;">档案管理</text>
|
|
|
|
</view>
|
|
|
|
<view class="btn" style="margin-top: -5rpx;">
|
2023-12-25 14:36:19 +08:00
|
|
|
<u-icon name="plus" color="#fff" size="40rpx" style="margin-right: 20rpx;"
|
2023-12-21 16:29:58 +08:00
|
|
|
@click="show=true"></u-icon>
|
|
|
|
<Myindex url='/pages/index/massif' />
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view class="" style="height:var(--status-bar-height) ;">
|
|
|
|
</view>
|
|
|
|
<view class="nav-con">
|
|
|
|
</view>
|
|
|
|
|
|
|
|
<view class="content">
|
|
|
|
<view class="serch">
|
|
|
|
<u-search bgColor="white" :show-action="false" placeholder="请输入耳号" v-model="searchKey" shape="round"
|
|
|
|
:clearabled='false' @change="inputval"></u-search>
|
|
|
|
<view class="ser-text" @click="search">
|
|
|
|
搜索
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view class="tits">
|
|
|
|
档案信息
|
|
|
|
</view>
|
|
|
|
<view class="">
|
|
|
|
<block class="" v-if="dataList.length>0">
|
|
|
|
<view class="thing-card" v-for="(item,index) in dataList" :key="index">
|
|
|
|
<view class="card_body">
|
|
|
|
<view class="left">
|
|
|
|
<u--image @click="perviewFn(item.img)" radius='10' :src="item.img" width="250rpx"
|
|
|
|
height="250rpx"></u--image>
|
|
|
|
<u---image class="qr-code" @click="perviewFn(item.qr_code)" src="/static/main/house/su_yuan_ma_btn.png"
|
|
|
|
width="60rpx" height="60rpx"></u---image>
|
|
|
|
</view>
|
|
|
|
<u--image src="/static/main/house/xia_yi_ji_btn.png" class="next" width="38rpx" height="38rpx"
|
|
|
|
@click="navTo(`/pages/plantAdmin/breedDetail?id=${item.id}`)"></u--image>
|
|
|
|
<view class="right" style="color: #7B7B7B;" @click="navTo(`/pages/plantAdmin/breedDetail?id=${item.id}`)">
|
|
|
|
<view class="name">耳号</view>
|
|
|
|
<view class="r-item">
|
|
|
|
<view class="item-title">品类:</view>
|
|
|
|
<view>黑山羊</view>
|
|
|
|
</view>
|
|
|
|
<view class="r-item">
|
|
|
|
<view class="item-title">品种:</view>
|
|
|
|
<view>山羊</view>
|
|
|
|
</view>
|
|
|
|
<view class="r-item">
|
|
|
|
<view class="item-title">性别:</view>
|
|
|
|
<view>公</view>
|
|
|
|
</view>
|
|
|
|
<view class="r-item">
|
|
|
|
<view class="item-title">栏舍:</view>
|
|
|
|
<view>栏舍一号</view>
|
|
|
|
</view>
|
|
|
|
<view class="r-item">
|
|
|
|
<view class="item-title">来源:</view>
|
|
|
|
<view>购买</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
|
|
|
|
</block>
|
|
|
|
<view class="coneng-detail" v-else>
|
|
|
|
<view class="">
|
|
|
|
<image src="@/static/img/zw.png" mode="aspectFit"></image>
|
|
|
|
<view class="">
|
|
|
|
暂无数据
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
|
|
|
|
<u-action-sheet :show="show" keyName="name" closeOnClickOverlay :actions="selectList" title="请选择"
|
|
|
|
@close="show = false" @select="selectOne">
|
|
|
|
</u-action-sheet>
|
|
|
|
|
|
|
|
</view>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
import {
|
|
|
|
onLoad,
|
|
|
|
onShow,
|
|
|
|
onReachBottom,
|
|
|
|
onPullDownRefresh
|
|
|
|
} from "@dcloudio/uni-app"
|
|
|
|
import {
|
|
|
|
ref,
|
|
|
|
reactive,
|
|
|
|
onMounted
|
|
|
|
} from "vue"
|
|
|
|
import Myindex from '@/components/return/index.vue';
|
|
|
|
|
|
|
|
const searchKey = ref('');
|
|
|
|
const dataList = reactive([{
|
|
|
|
id: 1,
|
|
|
|
name: '栏舍一号',
|
|
|
|
img: 'https://lihai001.oss-cn-chengdu.aliyuncs.com/def/91fb0202311021455371420.jpg',
|
|
|
|
animal_name: '山羊',
|
|
|
|
animal_type: '哺乳动物',
|
|
|
|
capacity: '50只',
|
|
|
|
create_by: '张三',
|
|
|
|
create_time: '2023-12-19',
|
|
|
|
qr_code: 'https://lihai001.oss-cn-chengdu.aliyuncs.com/def/76751202312201347169905.png',
|
|
|
|
showCode: false
|
|
|
|
}])
|
|
|
|
|
|
|
|
const show = ref(false);
|
|
|
|
const selectList = ref([
|
|
|
|
{name: '购买'},
|
|
|
|
{name: '自繁'},
|
|
|
|
]);
|
|
|
|
const selectOne = (e)=>{
|
|
|
|
navTo(`/pages/plantAdmin/addBreed?name=${e.name}&type=${e.name=='购买'?1:2}`)
|
|
|
|
}
|
|
|
|
|
|
|
|
//跳转
|
|
|
|
const navTo = (url) => {
|
|
|
|
uni.navigateTo({
|
|
|
|
url
|
|
|
|
})
|
|
|
|
}
|
2023-12-25 14:36:19 +08:00
|
|
|
|
|
|
|
const navBack = () => {
|
|
|
|
uni.navigateBack()
|
|
|
|
}
|
2023-12-21 16:29:58 +08:00
|
|
|
|
|
|
|
const getNowTimeFn = () => {
|
|
|
|
const now = new Date();
|
|
|
|
const hour = now.getHours();
|
|
|
|
const minute = now.getMinutes();
|
|
|
|
const formattedHour = hour < 10 ? '0' + hour : hour;
|
|
|
|
const formattedMinute = minute < 10 ? '0' + minute : minute;
|
|
|
|
const currentTime = formattedHour + ':' + formattedMinute;
|
|
|
|
return currentTime
|
|
|
|
}
|
|
|
|
//查看
|
|
|
|
const perviewFn = (url) => {
|
|
|
|
uni.previewImage({
|
|
|
|
urls: [url]
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
let img = ''
|
|
|
|
let codeImg = ''
|
|
|
|
const showCodeFn = (i) => {
|
|
|
|
// dataList[i].showCode != dataList[i].showCode
|
|
|
|
dataList[i].showCode = !dataList[i].showCode
|
|
|
|
console.log(dataList[i].showCode)
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
page {
|
|
|
|
background-color: $theme-bg-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top {
|
|
|
|
background-color: #feb048;
|
|
|
|
position: fixed;
|
|
|
|
z-index: 999999;
|
|
|
|
width: 750rpx;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-con {
|
|
|
|
width: 100vw;
|
|
|
|
height: 44px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
padding-top: 20rpx;
|
|
|
|
padding-bottom: 10rpx;
|
|
|
|
color: #fff;
|
|
|
|
|
|
|
|
.title {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin-left: 20rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn {
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.tits {
|
|
|
|
position: relative;
|
|
|
|
padding-left: 20rpx;
|
|
|
|
font-weight: bold;
|
|
|
|
margin-bottom: 20rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tits::before {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
transform: translateY(-50%);
|
|
|
|
left: 0;
|
|
|
|
width: 3px;
|
|
|
|
/* 左边框的宽度 */
|
|
|
|
height: 30rpx;
|
|
|
|
background-color: #FFB049;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
|
|
|
position: relative;
|
|
|
|
padding: 0 28rpx;
|
|
|
|
|
|
|
|
.serch {
|
|
|
|
box-shadow: 1rpx 1rpx 10rpx 1rpx rgba(0, 0, 0, 0.1);
|
|
|
|
border-radius: 200rpx;
|
|
|
|
position: relative;
|
|
|
|
color: #feb048;
|
|
|
|
font-size: 28rpx;
|
|
|
|
margin-top: 20rpx;
|
|
|
|
|
|
|
|
margin-bottom: 20rpx;
|
|
|
|
|
|
|
|
.ser-text {
|
|
|
|
position: absolute;
|
|
|
|
padding-left: 20rpx;
|
|
|
|
top: 50%;
|
|
|
|
transform: translateY(-50%);
|
|
|
|
right: 40rpx;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.ser-text::before {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
transform: translateY(-50%);
|
|
|
|
left: 0;
|
|
|
|
width: 2px;
|
|
|
|
/* 左边框的宽度 */
|
|
|
|
height: 20rpx;
|
|
|
|
background-color: #FFB049;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.thing-card {
|
|
|
|
width: 694;
|
|
|
|
box-sizing: border-box;
|
|
|
|
background-color: #fff;
|
|
|
|
border-radius: 20rpx;
|
|
|
|
overflow: hidden;
|
|
|
|
margin-bottom: 30rpx;
|
|
|
|
box-shadow: 1rpx 1rpx 10rpx 1rpx rgba(0, 0, 0, 0.1);
|
|
|
|
|
|
|
|
.head {
|
|
|
|
height: 90rpx;
|
|
|
|
border-radius: 20rpx 20rpx 0 0;
|
|
|
|
background-color: $theme-main-color;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
line-height: 90rpx;
|
|
|
|
color: white;
|
|
|
|
padding: 0 30rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card_body {
|
|
|
|
padding: 20rpx;
|
|
|
|
display: flex;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.next {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
transform: translateY(-50%);
|
|
|
|
right: 20rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.left {
|
|
|
|
flex-shrink: 0;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.qr-code {
|
|
|
|
position: absolute;
|
|
|
|
right: 10rpx;
|
|
|
|
bottom: 10rpx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.right {
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
flex-direction: column;
|
|
|
|
margin-left: 20rpx;
|
|
|
|
|
|
|
|
.name {
|
|
|
|
font-weight: bold;
|
|
|
|
color: #333;
|
|
|
|
}
|
|
|
|
|
|
|
|
.r-item {
|
|
|
|
font-size: 28rpx;
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
.item-title {
|
|
|
|
color: #333;
|
|
|
|
flex-shrink: 0;
|
|
|
|
margin-right: 10rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.row2 {
|
|
|
|
display: -webkit-box;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
overflow: hidden;
|
|
|
|
-webkit-line-clamp: 2;
|
|
|
|
/* 设置为需要显示的行数 */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|