410 lines
10 KiB
Vue
410 lines
10 KiB
Vue
|
<template>
|
||
|
<view class="content">
|
||
|
<view class="card-d">
|
||
|
<u--form labelWidth='130' :model="formData" :rules="rules" ref="form">
|
||
|
|
||
|
<view class="c-title">消毒信息</view>
|
||
|
<view class="c-box">
|
||
|
<u-form-item label="消毒剂名称" prop="user" borderBottom required>
|
||
|
<up-input input-align="right" placeholder="请输入消毒剂名称" :disabled="mode=='detail'" type="txt" border="none"
|
||
|
v-model="formData.user"></up-input>
|
||
|
</u-form-item>
|
||
|
<u-form-item label="消毒剂浓度" prop="formData.breed" borderBottom required>
|
||
|
<up-input input-align="right" placeholder="请输入消毒剂浓度" :disabled="mode=='detail'" type="number" border="none"
|
||
|
v-model="formData.breed"></up-input>
|
||
|
</u-form-item>
|
||
|
<u-form-item label="消毒方法" prop="start_date" @click="openDate" borderBottom required>
|
||
|
<up-input input-align="right" placeholder="请输入消毒方法" :disabled="mode=='detail'" type="number" border="none"
|
||
|
v-model="formData.breed"></up-input>
|
||
|
</u-form-item>
|
||
|
<up-form-item label="消毒区域" prop="master_name" borderBottom required @click="showFun=true">
|
||
|
<up-input input-align="right" placeholder="请选择区域" border="none" suffixIcon="arrow-down"
|
||
|
suffix-icon-style="color: #b6b6b6;" v-model="formData.fun" readonly></up-input>
|
||
|
</up-form-item>
|
||
|
<u-form-item label="消毒人员" prop="start_date" @click="openDate" borderBottom required>
|
||
|
<up-input input-align="right" placeholder="请输入消毒人员姓名" :disabled="mode=='detail'" type="number" border="none"
|
||
|
v-model="formData.breed"></up-input>
|
||
|
</u-form-item>
|
||
|
<u-form-item label="消毒时间" prop="start_date" @click="openDate" borderBottom required>
|
||
|
<up-input input-align="right" placeholder="请选择时间" suffixIcon="arrow-down"
|
||
|
suffix-icon-style="color: #b6b6b6;" readonly border="none" v-model="formData.start_date"
|
||
|
style="pointer-events: none;"></up-input>
|
||
|
</u-form-item>
|
||
|
</view>
|
||
|
|
||
|
<view class="card-li">
|
||
|
<view class="c-title">消毒图片</view>
|
||
|
<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)"
|
||
|
v-show="mode=='add'"></u-icon>
|
||
|
<u-image :src="item" width="150.85rpx" height="150.85rpx" @click="perviewFn(item)"></u-image>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
|
||
|
</view>
|
||
|
<view class="code-img" v-if="mode=='add'">
|
||
|
<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>
|
||
|
|
||
|
<view class="c-title">备注信息</view>
|
||
|
<view class="c-box" style="padding: 0 20rpx;">
|
||
|
<u-form-item prop="remark" borderBottom>
|
||
|
<u--textarea v-model="formData.remark" :disabled="mode=='detail'" placeholder="请输入内容"></u--textarea>
|
||
|
</u-form-item>
|
||
|
</view>
|
||
|
|
||
|
|
||
|
</u--form>
|
||
|
<u-button class="btn" v-if="mode=='add'" @click="addFn">完成添加</u-button>
|
||
|
</view>
|
||
|
<u-action-sheet :show="showFun" keyName="name" closeOnClickOverlay :actions="[{name:'栏舍'}, {name:'饲料槽'}, {name: '饮水设备'}]" title="请选择"
|
||
|
@close="showFun = false" @select="selectFun"></u-action-sheet>
|
||
|
<u-datetime-picker :show="show1" :max-date="getNowTime()" v-model="value1" mode="datetime" @confirm="dateConfirmfn"
|
||
|
:formatter="formatter" @cancel="show1=false"></u-datetime-picker>
|
||
|
</view>
|
||
|
|
||
|
</template>
|
||
|
|
||
|
<script setup>
|
||
|
import {
|
||
|
Uploads
|
||
|
} from "@/api/upload.js"
|
||
|
import {
|
||
|
reactive,
|
||
|
ref
|
||
|
} from "vue";
|
||
|
import {
|
||
|
onLoad,
|
||
|
onReady
|
||
|
} from "@dcloudio/uni-app"
|
||
|
import {
|
||
|
addaction
|
||
|
} from '@/api/api.js'
|
||
|
const form = ref(null)
|
||
|
const task_id = ref('');
|
||
|
const pic = reactive([]);
|
||
|
const show1 = ref(false)
|
||
|
const formData = reactive({
|
||
|
user: "",
|
||
|
remark: "",
|
||
|
pic: [],
|
||
|
start_date: '',
|
||
|
fun: ''
|
||
|
})
|
||
|
const dateConfirmfn = (e) => {
|
||
|
formData.start_date = uni.$u.timeFormat(e.value, 'yyyy-mm-dd hh:MM ')
|
||
|
show1.value = false
|
||
|
}
|
||
|
const formatter = (type, value) => {
|
||
|
if (type === 'year') {
|
||
|
return `${value}年`;
|
||
|
}
|
||
|
if (type === 'month') {
|
||
|
return `${value}月`;
|
||
|
}
|
||
|
if (type === 'day') {
|
||
|
return `${value}日`;
|
||
|
}
|
||
|
return value;
|
||
|
};
|
||
|
const rules = {
|
||
|
'user': {
|
||
|
type: 'string',
|
||
|
required: true,
|
||
|
message: '请填写参与人',
|
||
|
trigger: ['blur', 'change']
|
||
|
},
|
||
|
// 'remark': {
|
||
|
// type: 'string',
|
||
|
// required: true,
|
||
|
// message: '请填写备注',
|
||
|
// trigger: ['blur', 'change']
|
||
|
// },
|
||
|
}
|
||
|
|
||
|
const showFun = ref(false);
|
||
|
const selectFun = (e)=>{
|
||
|
formData.fun = e.name;
|
||
|
}
|
||
|
|
||
|
onReady(() => {
|
||
|
form.value.setRules(rules);
|
||
|
});
|
||
|
const navgo = (url) => {
|
||
|
uni.navigateTo({
|
||
|
url
|
||
|
})
|
||
|
}
|
||
|
const openDate = () => {
|
||
|
// calendar.value.open()
|
||
|
show1.value = true
|
||
|
// alert(455)
|
||
|
}
|
||
|
const value1 = ref(Date.now());
|
||
|
const getNowTime = () => {
|
||
|
const now = new Date();
|
||
|
|
||
|
|
||
|
const timestamp = now.getTime();
|
||
|
// console.log(timestamp)
|
||
|
return timestamp
|
||
|
|
||
|
}
|
||
|
const addFn = () => {
|
||
|
form.value.validate().then(res => {
|
||
|
console.log(res)
|
||
|
if (res) {
|
||
|
formData.pic = pic
|
||
|
let data1 = {
|
||
|
plant_id: task_id.value,
|
||
|
type: 5,
|
||
|
detail: JSON.stringify(formData)
|
||
|
};
|
||
|
if (formData.pic.length == 0) {
|
||
|
|
||
|
uni.$u.toast('请上传图片')
|
||
|
return
|
||
|
}
|
||
|
|
||
|
console.log('表单通过');
|
||
|
|
||
|
// 表单验证通过,执行提交操作
|
||
|
|
||
|
addaction(data1).then((res) => {
|
||
|
console.log(res)
|
||
|
if (res.code == 1) {
|
||
|
uni.$u.toast(res.msg)
|
||
|
uni.navigateBack({
|
||
|
delta: 1
|
||
|
})
|
||
|
}
|
||
|
})
|
||
|
// uni.$u.toast('校验成功')
|
||
|
}
|
||
|
|
||
|
}).catch((err) => {
|
||
|
uni.$u.toast(err[0].message)
|
||
|
console.log(err)
|
||
|
})
|
||
|
}
|
||
|
//查看图片
|
||
|
const perviewFn = (url) => {
|
||
|
uni.previewImage({
|
||
|
urls: [url]
|
||
|
})
|
||
|
}
|
||
|
//图片删除
|
||
|
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
|
||
|
}
|
||
|
const mode = ref('add')
|
||
|
onLoad((options) => {
|
||
|
if (options.task) {
|
||
|
let data = options.task ? JSON.parse(decodeURIComponent(options.task)) : null;
|
||
|
// console.log(data, data.detail)
|
||
|
Object.assign(formData, data.detail);
|
||
|
pic.splice(0, pic.length, ...data.detail.pic);
|
||
|
|
||
|
mode.value = 'detail'
|
||
|
uni.setNavigationBarTitle({
|
||
|
title: '收获详情'
|
||
|
})
|
||
|
// formData=data.detail
|
||
|
|
||
|
|
||
|
} else {
|
||
|
task_id.value = options.id
|
||
|
}
|
||
|
|
||
|
|
||
|
})
|
||
|
</script>
|
||
|
|
||
|
<style lang='scss' scoped>
|
||
|
page {
|
||
|
background-color: #fffcf5;
|
||
|
}
|
||
|
|
||
|
.card-d {
|
||
|
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: #feb048;
|
||
|
color: #fff;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.tit {
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
}
|
||
|
|
||
|
.card-li {
|
||
|
position: relative;
|
||
|
margin-bottom: 0;
|
||
|
|
||
|
span {
|
||
|
position: absolute;
|
||
|
left: -9px;
|
||
|
color: #f56c6c;
|
||
|
line-height: 20px;
|
||
|
font-size: 20px;
|
||
|
top: 3px;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
.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;
|
||
|
/* margin-bottom: 100rpx; */
|
||
|
|
||
|
.carime-icon {
|
||
|
position: absolute;
|
||
|
top: 50%;
|
||
|
left: 50%;
|
||
|
transform: translate(-50%, -50%);
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
.confirm {
|
||
|
position: fixed;
|
||
|
height: 84.11rpx;
|
||
|
display: flex;
|
||
|
bottom: 30rpx;
|
||
|
width: 750rpx;
|
||
|
|
||
|
.confirm-btn {
|
||
|
width: 315.42rpx;
|
||
|
height: 84.11rpx;
|
||
|
border: #00A15E 1px solid;
|
||
|
margin: 0 auto;
|
||
|
border-radius: 80rpx;
|
||
|
text-align: center;
|
||
|
line-height: 84rpx;
|
||
|
}
|
||
|
}
|
||
|
</style>
|