cultivationApp/pages/plantAdmin/addBreed.vue

440 lines
13 KiB
Vue
Raw Normal View History

2023-12-20 18:13:01 +08:00
<template>
<view class="content">
<view class="cards">
<up-form labelWidth='130' :model="data.formData" ref="form1">
<view class="c-title">养殖信息</view>
<view class="c-box">
2024-01-29 18:12:35 +08:00
<up-form-item label="耳号" prop="sn" borderBottom required>
<up-input input-align="right" placeholder="请输入耳号" border="none" v-model="data.formData.sn"></up-input>
2023-12-20 18:13:01 +08:00
</up-form-item>
2024-01-29 18:12:35 +08:00
<up-form-item label="品类" prop="animal_type" borderBottom required @click="isshow1">
<up-input input-align="right" placeholder="请输入品类名称" border="none" suffixIcon="arrow-down"
suffix-icon-style="color: #b6b6b6;" v-model="animal_type" readonly></up-input>
2023-12-20 18:13:01 +08:00
</up-form-item>
2024-01-29 18:12:35 +08:00
<up-form-item label="品种" prop="brand" borderBottom required>
<up-input input-align="right" placeholder="请输入品种名称" border="none" v-model="data.formData.brand"></up-input>
2023-12-20 18:13:01 +08:00
</up-form-item>
2024-01-29 18:12:35 +08:00
<up-form-item label="性别" prop="gender" borderBottom required @click="showSex=true">
2023-12-20 18:13:01 +08:00
<up-input input-align="right" placeholder="请选择性别" border="none" suffixIcon="arrow-down"
2024-01-29 18:12:35 +08:00
suffix-icon-style="color: #b6b6b6;" v-model="gender" readonly></up-input>
2023-12-20 18:13:01 +08:00
</up-form-item>
2024-01-29 18:12:35 +08:00
<up-form-item label="生理阶段" prop="physi_stage" borderBottom required>
2023-12-20 18:13:01 +08:00
<up-input input-align="right" placeholder="请输入生理阶段" border="none"
2024-01-29 18:12:35 +08:00
v-model="data.formData.physi_stage"></up-input>
2023-12-20 18:13:01 +08:00
</up-form-item>
2024-01-29 18:12:35 +08:00
<up-form-item label="血统纯度" prop="blood_purity" borderBottom required>
2023-12-20 18:13:01 +08:00
<up-input input-align="right" placeholder="请输入血统纯度" border="none"
2024-01-29 18:12:35 +08:00
v-model="data.formData.blood_purity"></up-input>
2023-12-20 18:13:01 +08:00
</up-form-item>
<block v-if="data.formData.type==1">
<up-form-item label="来源" borderBottom>
2024-01-29 18:12:35 +08:00
<up-input input-align="right" border="none" v-model="animal_source" readonly></up-input>
2023-12-20 18:13:01 +08:00
</up-form-item>
2024-01-29 18:12:35 +08:00
<up-form-item label="栏舍" prop="fence_house_name" borderBottom required>
2023-12-20 18:13:01 +08:00
<up-input input-align="right" placeholder="请输入栏舍" border="none"
2024-01-26 17:29:25 +08:00
v-model="data.formData.fence_house_name"></up-input>
2023-12-20 18:13:01 +08:00
</up-form-item>
2024-01-29 18:12:35 +08:00
<up-form-item label="现估重(kg)" prop="current_estimation" borderBottom required>
2023-12-20 18:13:01 +08:00
<up-input input-align="right" placeholder="请输入现估重" type="number" border="none"
2024-01-29 18:12:35 +08:00
v-model="data.formData.current_estimation"></up-input>
2023-12-20 18:13:01 +08:00
</up-form-item>
2024-01-29 18:12:35 +08:00
<up-form-item label="入场日期" prop="entry_date" borderBottom required @click="showDate=true">
2023-12-20 18:13:01 +08:00
<up-input input-align="right" placeholder="请选择入场日期" border="none" suffixIcon="arrow-down"
2024-01-29 18:12:35 +08:00
suffix-icon-style="color: #b6b6b6;" v-model="data.formData.entry_date"></up-input>
2023-12-20 18:13:01 +08:00
</up-form-item>
</block>
<block v-else>
<up-form-item label="来源" borderBottom>
2024-01-29 18:12:35 +08:00
<up-input input-align="right" border="none" v-model="animal_source" readonly></up-input>
2023-12-20 18:13:01 +08:00
</up-form-item>
2024-01-29 18:12:35 +08:00
<up-form-item label="栏舍" prop="fence_house_name" borderBottom required>
2023-12-20 18:13:01 +08:00
<up-input input-align="right" placeholder="请输入栏舍" border="none"
2024-01-29 18:12:35 +08:00
v-model="data.formData.fence_house_name"></up-input>
2023-12-20 18:13:01 +08:00
</up-form-item>
2024-01-29 18:12:35 +08:00
<up-form-item label="代数" prop="algebra" borderBottom required>
2023-12-20 18:13:01 +08:00
<up-input input-align="right" placeholder="请输入代数" type="number" border="none"
2024-01-29 18:12:35 +08:00
v-model="data.formData.algebra"></up-input>
2023-12-20 18:13:01 +08:00
</up-form-item>
2024-01-29 18:12:35 +08:00
<up-form-item label="现估重(kg)" prop="current_estimation" borderBottom required>
2023-12-20 18:13:01 +08:00
<up-input input-align="right" placeholder="请输入现估重" type="number" border="none"
2024-01-29 18:12:35 +08:00
v-model="data.formData.current_estimation"></up-input>
2023-12-20 18:13:01 +08:00
</up-form-item>
2024-01-29 18:12:35 +08:00
<up-form-item label="出生体重(kg)" prop="birth_estimation" borderBottom required>
2023-12-20 18:13:01 +08:00
<up-input input-align="right" placeholder="请输入出生体重" type="number" border="none"
2024-01-29 18:12:35 +08:00
v-model="data.formData.birth_estimation"></up-input>
2023-12-20 18:13:01 +08:00
</up-form-item>
<up-form-item label="出生日期" borderBottom required @click="showDate=true">
<up-input input-align="right" placeholder="请选择出生日期" border="none" suffixIcon="arrow-down"
suffix-icon-style="color: #b6b6b6;" v-model="data.formData.brith_date"></up-input>
</up-form-item>
</block>
</view>
<view class="card-li">
2024-01-23 19:52:15 +08:00
<view class="c-title">养殖基地图片</view>
2023-12-20 18:13:01 +08:00
<view class="c-box c-box-p">
<view class="code-img1">
<view class="" v-if="pic.length>0"
style="display: flex;flex-direction: row;flex-wrap: wrap;margin-bottom: 30rpx;">
<view class="" v-for="(item,i) in pic" style="margin-right: 30rpx;">
<view class="">
<u-icon name="close" size="15" style="margin-left:120.85rpx;" @click="delimg(i)"></u-icon>
<u-image :src="item" width="150.85rpx" height="150.85rpx"></u-image>
</view>
</view>
</view>
</view>
<view class="code-img">
<view class="" @click="updateImgFn">
<view class="carime-icon">
<u-image src="/static/img/DJSC.png" width="91.12rpx" height="91.12rpx"></u-image>
<view class="">
点击上传图片
</view>
</view>
</view>
</view>
</view>
</view>
</up-form>
2024-01-29 18:12:35 +08:00
<u-action-sheet :show="showSex" keyName="name" closeOnClickOverlay :actions="[{name:'公'}, {name:'母'}]" title="请选择"
2023-12-20 18:13:01 +08:00
@close="showSex = false" @select="selectSex"></u-action-sheet>
<u-datetime-picker :show="showDate" :max-date="Date.now()" mode="date" v-model="changeTime"
@confirm="selectDate" :formatter="formatter" @cancel="showDate=false"></u-datetime-picker>
2024-01-29 18:12:35 +08:00
<u-action-sheet :show="show1" keyName="name" :actions="animal_type_lists" title="请选择" @close="show1 = false"
@select="leavaType1">
</u-action-sheet>
2023-12-20 18:13:01 +08:00
<u-button class="btn" @click="submit">提交</u-button>
</view>
</view>
</template>
<script setup>
import {
ref,
reactive,
onMounted,
unref,
computed,
watch
} from 'vue';
import {
onLoad,
onReady
} from '@dcloudio/uni-app';
import {
Uploads
} from "@/api/upload.js"
2024-01-29 18:12:35 +08:00
import {
animalTypeLists,
fenceHouseTypeLists
} from "@/api/dict.js"
import {
animalInfoAdd
} from "@/api/manage.js"
2023-12-20 18:13:01 +08:00
const form1 = ref(null);
const data = reactive({
formData: {
2024-01-26 17:29:25 +08:00
fence_house_id: '', //栏舍id
2024-01-29 18:12:35 +08:00
sn: '',
animal_type: '',
brand: '',
physi_stage: '',
gender: '',
blood_purity: '',
current_estimation: '',
algebra: '',
birth: '',
entry_date: '',
birth_estimation: '',
health_condition: '',
type: 1, // 1-购买
animal_source: '2', // 来源 1: 购买 2: 自己繁殖
2023-12-20 18:13:01 +08:00
master_name: '',
master_phone: '',
pic: ['https://img0.baidu.com/it/u=1717510975,3258230326&fm=253&fmt=auto?w=120&h=80',
'https://img0.baidu.com/it/u=1717510975,3258230326&fm=253&fmt=auto?w=120&h=80'
]
},
rules: {
2024-01-29 18:12:35 +08:00
fence_house_id: [{
2023-12-20 18:13:01 +08:00
type: 'string',
required: true,
2024-01-29 18:12:35 +08:00
message: '请选择栏舍',
2023-12-20 18:13:01 +08:00
trigger: ['blur', 'change']
}],
2024-01-29 18:12:35 +08:00
sn: [{
2023-12-20 18:13:01 +08:00
type: 'string',
required: true,
2024-01-29 18:12:35 +08:00
message: '请输入耳号',
2023-12-20 18:13:01 +08:00
trigger: ['blur', 'change']
}],
2024-01-29 18:12:35 +08:00
animal_type: [{
2023-12-20 18:13:01 +08:00
type: 'string',
required: true,
2024-01-29 18:12:35 +08:00
message: '请选择品类',
2023-12-20 18:13:01 +08:00
trigger: ['blur', 'change']
}],
}
});
const pic = reactive([]);
const showSex = ref(false);
const showDate = ref(false);
2024-01-29 18:12:35 +08:00
const show1 = ref(false)
const isshow1 = () => {
show1.value = true
}
const animal_type_lists = ref([]);
const initAnimalTypeLists = ()=>{
animalTypeLists().then(res=>{
animal_type_lists.value = res.data;
})
}
initAnimalTypeLists();
const animal_type = ref('');
const leavaType1 = (e) => {
animal_type.value = e.name;
data.formData.animal_type = e.value;
}
2023-12-20 18:13:01 +08:00
//图片删除
const delimg = (i) => {
pic.splice(i, 1);
}
//图片上传
const updateImgFn = async () => {
uni.chooseImage({
count: 1,
sizeType: ['original', 'compressed'],
sourceType: ['album', 'camera'],
success: (res) => {
Uploads(res.tempFilePaths[0], 'img').then(res => {
// console.log(res)
if (res.code == 1) {
pic.push(res.data.url)
console.log(data.formData)
uni.$u.toast('上传成功')
}
}).catch(err => {
//console.log('err', err);
// uni.$u.toast('上传失败')
})
},
fail: function(err) {
//console.log('choose失败');
uni.$u.toast('添加失败')
}
});
// let res = await Uploads()
// data.formData.pic = res.data.image
}
2024-01-29 18:12:35 +08:00
const gender = ref('');
2023-12-20 18:13:01 +08:00
const selectSex = (e)=>{
2024-01-29 18:12:35 +08:00
if(e.name=='公') data.formData.gender = 1;
else data.formData.gender = 0;
gender.value = e.name;
2023-12-20 18:13:01 +08:00
}
const changeTime = ref(Date.now())
const selectDate = (e)=>{
let date = new Date(e.value);
2023-12-21 16:29:58 +08:00
if(data.formData.type>1) data.formData.brith_date = uni.$u.timeFormat(e.value, 'yyyy-mm-dd');
2024-01-29 18:12:35 +08:00
else data.formData.entry_date = uni.$u.timeFormat(e.value, 'yyyy-mm-dd');
2023-12-20 18:13:01 +08:00
showDate.value = false;
}
onReady(() => {
form1.value.setRules(data.rules);
});
const formatter = (type, value) => {
if (type === 'year') {
return `${value}`;
}
if (type === 'month') {
return `${value}`;
}
if (type === 'day') {
return `${value}`;
}
return value;
};
const submit = async () => {
try {
const valid = await form1.value.validate();
if (valid) {
// console.log('表单通过', data.formData);
if (pic.length == 0) {
uni.$u.toast('请上传图片')
return
}
data.formData.pic = JSON.stringify(pic)
// 表单验证通过,执行提交操作
2024-01-29 18:12:35 +08:00
animalInfoAdd(data.formData).then((res) => {
2023-12-20 18:13:01 +08:00
console.log(res)
if (res.code == 1) {
uni.navigateBack({
delta: 1
})
uni.$u.toast(res.msg)
// console.log('提交通过');
}
})
} else {
// 表单验证不通过
console.log('表单验证未通过');
}
} catch (error) {
// 捕获验证过程中的错误
console.error(error);
}
}
2024-01-29 18:12:35 +08:00
const animal_source = ref('');//来源
2023-12-20 18:13:01 +08:00
onLoad((options) => {
if (options.type > 1) {
2024-01-29 18:12:35 +08:00
data.formData.animal_source = +options.type;
animal_source.value = options.name;
2023-12-20 18:13:01 +08:00
} else {
2024-01-29 18:12:35 +08:00
data.formData.animal_source = 1;
animal_source.value = '购买';
2023-12-20 18:13:01 +08:00
}
2024-01-26 17:29:25 +08:00
if(options.id) {
data.formData.fence_house_id = options.id;
data.formData.fence_house_name = options.fence_house_name;
}
2023-12-20 18:13:01 +08:00
})
</script>
<style lang="scss">
page {
background-color: #fffcf5;
}
.cards {
background-color: #fffcf5;
padding: 0;
padding-bottom: 80rpx;
.c-title {
font-weight: bold;
display: flex;
align-items: center;
padding: 30rpx;
padding-bottom: 15rpx;
&:before {
content: '';
display: inline-block;
height: 0.8rem;
width: 6rpx;
margin-top: 0.2rem;
margin-right: 10rpx;
background-color: #feb048;
border-radius: 6rpx;
}
}
.c-box {
background-color: #fff;
padding-left: 30rpx;
padding-right: 20rpx;
padding-bottom: 20rpx;
box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}
.c-box-p {
padding: 20rpx;
}
.btn {
margin: 20rpx auto;
width: 694rpx;
height: 80rpx;
border-radius: 80rpx;
background-color: #ffb049;
color: #fff;
}
}
.card-li-tit {
position: relative;
span {
position: absolute;
left: -9px;
color: #f56c6c;
line-height: 20px;
font-size: 20px;
top: 3px;
}
margin-bottom: 20rpx;
}
.confim-btn {
margin: 0 auto;
width: 196.26rpx;
height: 66.59rpx;
/* border: ; */
border: #00A15E 1px solid;
color: #00A15E;
display: flex;
align-items: center;
justify-content: center;
border-radius: 42.06rpx 42.06rpx 42.06rpx 42.06rpx;
}
.up-img {
width: 341.71rpx
}
.today-btn {
width: 588.79rpx;
background-color: #00A15E;
color: white;
position: fixed;
bottom: 40rpx;
/* transform: ; */
left: 50%;
transform: translateX(-50%);
background: linear-gradient(to right, #00A15E, #4CC593);
/* margin: 0 auto; */
}
.code-img {
background-color: #F4F4F4;
height: 350.47rpx;
position: relative;
.carime-icon {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
display: flex;
flex-direction: column;
align-items: center;
}
}
</style>