286 lines
9.7 KiB
Vue
Raw Normal View History

2025-07-14 19:12:50 +08:00
<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryRef" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="羊只" prop="sheepId">
2025-07-17 17:30:02 +08:00
<el-input v-model="queryParams.sheepId" placeholder="请输入羊只" clearable @keyup.enter="handleQuery" />
2025-07-14 19:12:50 +08:00
</el-form-item>
<el-form-item label="检疫日期" style="width: 308px">
2025-07-15 17:02:25 +08:00
<el-date-picker v-model="daterangeDatetime" value-format="YYYY-MM-DD" type="daterange" range-separator="-"
2025-07-17 17:30:02 +08:00
start-placeholder="开始日期" end-placeholder="结束日期"></el-date-picker>
2025-07-14 19:12:50 +08:00
</el-form-item>
<el-form-item>
<el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
<el-button icon="Refresh" @click="resetQuery">重置</el-button>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
2025-07-17 17:30:02 +08:00
<el-button type="primary" plain icon="Plus" @click="handleAdd"
v-hasPermi="['bisosafety:quarantine:add']">新增</el-button>
2025-07-14 19:12:50 +08:00
</el-col>
2025-07-17 17:30:02 +08:00
<el-col :span="1.5">
<el-button type="success" plain icon="Edit" :disabled="single" @click="handleUpdate"
v-hasPermi="['bisosafety:quarantine:edit']">修改</el-button>
</el-col>
<el-col :span="1.5">
<el-button type="danger" plain icon="Delete" :disabled="multiple" @click="handleDelete"
v-hasPermi="['bisosafety:quarantine:remove']">删除</el-button>
</el-col>
<el-col :span="1.5">
<el-button type="warning" plain icon="Download" @click="handleExport"
v-hasPermi="['bisosafety:quarantine:export']">导出</el-button>
</el-col>
<right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
2025-07-14 19:12:50 +08:00
</el-row>
<el-table v-loading="loading" :data="quarantineList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="羊只" align="center" prop="sheepNo" />
<el-table-column label="检疫日期" align="center" prop="datetime" width="180">
<template #default="scope">
<span>{{ parseTime(scope.row.datetime, '{y}-{m}-{d}') }}</span>
</template>
</el-table-column>
2025-07-15 17:02:25 +08:00
<el-table-column label="羊只性别" align="center" prop="gender" />
2025-07-17 17:30:02 +08:00
2025-07-14 19:12:50 +08:00
<el-table-column label="羊只类别" align="center" prop="sheepType" />
<el-table-column label="月龄" align="center" prop="monthAge" />
<el-table-column label="繁育状态" align="center" prop="breed" />
<el-table-column label="检疫项目" align="center" prop="itemName" />
<el-table-column label="样品类型" align="center" prop="sample" />
<el-table-column label="采样员" align="center" prop="sampler" />
<el-table-column label="检疫员" align="center" prop="quarOfficer" />
<el-table-column label="检疫结果" align="center" prop="result">
<template #default="scope">
2025-07-15 17:02:25 +08:00
<dict-tag :options="quar_result" :value="scope.row.result" />
2025-07-14 19:12:50 +08:00
</template>
</el-table-column>
<el-table-column label="状态" align="center" prop="status">
<template #default="scope">
2025-07-15 17:02:25 +08:00
<dict-tag :options="quar_status" :value="scope.row.status" />
2025-07-14 19:12:50 +08:00
</template>
</el-table-column>
2025-07-17 17:30:02 +08:00
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="200px">
2025-07-14 19:12:50 +08:00
<template #default="scope">
2025-07-17 17:30:02 +08:00
<el-button link type="primary" icon="Edit" @click="handleUpdate(scope.row)"
v-hasPermi="['bisosafety:quarantine:edit']">检疫</el-button>
<el-button link type="success" @click="gotoTreatment(scope.row)" v-if="scope.row.result == 1">治疗</el-button>
<el-button link type="primary" icon="Delete" @click="handleDelete(scope.row)"
v-hasPermi="['bisosafety:quarantine:remove']">删除</el-button>
2025-07-14 19:12:50 +08:00
</template>
</el-table-column>
</el-table>
2025-07-17 17:30:02 +08:00
<pagination v-show="total > 0" :total="total" v-model:page="queryParams.pageNum" v-model:limit="queryParams.pageSize"
@pagination="getList" />
2025-07-15 17:02:25 +08:00
2025-07-17 17:30:02 +08:00
<!-- 添加或修改检疫记录对话框 -->
<el-dialog :title="title" v-model="open" width="500px" append-to-body>
<el-form ref="quarantineRef" :model="form" :rules="rules" label-width="80px">
<el-form-item label="羊只" prop="sheepId">
<el-input v-model="form.sheepId" placeholder="请输入羊只" />
</el-form-item>
<el-form-item label="检疫日期" prop="datetime">
<el-date-picker clearable v-model="form.datetime" type="date" value-format="YYYY-MM-DD" placeholder="请选择检疫日期">
</el-date-picker>
</el-form-item>
<el-form-item label="检疫结果" prop="result">
<el-select v-model="form.result" placeholder="请选择检疫结果">
<el-option v-for="dict in quar_result" :key="dict.value" :label="dict.label"
:value="parseInt(dict.value)"></el-option>
</el-select>
</el-form-item>
<el-form-item label="状态" prop="status">
<el-radio-group v-model="form.status">
<el-radio v-for="dict in quar_status" :key="dict.value"
:label="parseInt(dict.value)">{{ dict.label }}</el-radio>
</el-radio-group>
</el-form-item>
</el-form>
<template #footer>
<div class="dialog-footer">
<el-button type="primary" @click="submitForm"> </el-button>
<el-button @click="cancel"> </el-button>
</div>
</template>
</el-dialog>
2025-07-14 19:12:50 +08:00
</div>
</template>
2025-07-17 17:30:02 +08:00
<script setup name="Quarantine">
import { listQuarantine, getQuarantine, delQuarantine, addQuarantine, updateQuarantine } from "@/api/biosafety/quarantine"
import { listItems } from "@/api/biosafety/items"
import { listSample } from "@/api/biosafety/sample"
import { useRoute, useRouter } from "vue-router"
const route = useRoute()
const router = useRouter()
2025-07-14 19:12:50 +08:00
const { proxy } = getCurrentInstance()
const { quar_result, quar_status } = proxy.useDict('quar_result', 'quar_status')
const quarantineList = ref([])
2025-07-17 17:30:02 +08:00
const open = ref(false)
2025-07-14 19:12:50 +08:00
const loading = ref(true)
const showSearch = ref(true)
2025-07-17 17:30:02 +08:00
const ids = ref([])
const single = ref(true)
const multiple = ref(true)
2025-07-14 19:12:50 +08:00
const total = ref(0)
2025-07-17 17:30:02 +08:00
const title = ref("")
2025-07-14 19:12:50 +08:00
const daterangeDatetime = ref([])
2025-07-17 17:30:02 +08:00
const data = reactive({
form: {},
queryParams: {
pageNum: 1,
pageSize: 10,
sheepId: null,
datetime: null,
quarItem: null,
sampleType: null,
sampler: null,
quarOfficer: null,
result: null,
status: null,
},
rules: {
sheepId: [
{ required: true, message: "羊只不能为空", trigger: "blur" }
],
quarItem: [
{ required: true, message: "检疫项目不能为空", trigger: "change" }
],
sampleType: [
{ required: true, message: "样品类型不能为空", trigger: "change" }
],
}
2025-07-14 19:12:50 +08:00
})
2025-07-17 17:30:02 +08:00
const { queryParams, form, rules } = toRefs(data)
/** 查询检疫记录列表 */
2025-07-14 19:12:50 +08:00
function getList() {
loading.value = true
2025-07-17 17:30:02 +08:00
queryParams.value.params = {}
if (null != daterangeDatetime && '' != daterangeDatetime) {
queryParams.value.params["beginDatetime"] = daterangeDatetime.value[0]
queryParams.value.params["endDatetime"] = daterangeDatetime.value[1]
2025-07-14 19:12:50 +08:00
}
2025-07-17 17:30:02 +08:00
listQuarantine(queryParams.value).then(response => {
quarantineList.value = response.rows
total.value = response.total
2025-07-14 19:12:50 +08:00
loading.value = false
})
}
2025-07-17 17:30:02 +08:00
// 取消按钮
function cancel() {
open.value = false
reset()
2025-07-14 19:12:50 +08:00
}
2025-07-17 17:30:02 +08:00
// 表单重置
function reset() {
form.value = {
id: null,
sheepId: null,
datetime: null,
quarItem: null,
sampleType: null,
sampler: null,
quarOfficer: null,
result: null,
status: null,
updateBy: null,
updateTime: null,
createBy: null,
createTime: null
}
proxy.resetForm("quarantineRef")
}
/** 搜索按钮操作 */
2025-07-14 19:12:50 +08:00
function handleQuery() {
2025-07-17 17:30:02 +08:00
queryParams.value.pageNum = 1
2025-07-14 19:12:50 +08:00
getList()
}
2025-07-17 17:30:02 +08:00
/** 重置按钮操作 */
2025-07-14 19:12:50 +08:00
function resetQuery() {
daterangeDatetime.value = []
2025-07-17 17:30:02 +08:00
proxy.resetForm("queryRef")
2025-07-14 19:12:50 +08:00
handleQuery()
}
2025-07-17 17:30:02 +08:00
// 多选框选中数据
function handleSelectionChange(selection) {
ids.value = selection.map(item => item.id)
single.value = selection.length != 1
multiple.value = !selection.length
}
/** 新增按钮操作 */
function handleAdd() {
reset()
open.value = true
title.value = "添加检疫记录"
}
/** 修改按钮操作 */
function handleUpdate(row) {
reset()
const _id = row.id || ids.value
getQuarantine(_id).then(response => {
form.value = response.data
open.value = true
title.value = "修改检疫记录"
})
}
/** 提交按钮 */
function submitForm() {
proxy.$refs["quarantineRef"].validate(valid => {
if (valid) {
if (form.value.id != null) {
updateQuarantine(form.value).then(response => {
proxy.$modal.msgSuccess("修改成功")
open.value = false
getList()
})
} else {
addQuarantine(form.value).then(response => {
proxy.$modal.msgSuccess("新增成功")
open.value = false
getList()
})
}
}
})
}
/** 删除按钮操作 */
function handleDelete(row) {
const _ids = row.id || ids.value
proxy.$modal.confirm('是否确认删除检疫记录编号为"' + _ids + '"的数据项?').then(function () {
return delQuarantine(_ids)
}).then(() => {
getList()
proxy.$modal.msgSuccess("删除成功")
}).catch(() => { })
}
/** 导出按钮操作 */
function handleExport() {
proxy.download('bisosafety/quarantine/export', {
...queryParams.value
}, `quarantine_${new Date().getTime()}.xlsx`)
}
function gotoTreatment(row) {
router.push({ path: '/biosafety/treatment/add', query: { qId: row.id,sId:row.sheepId } })
}
2025-07-14 19:12:50 +08:00
getList()
2025-07-15 17:02:25 +08:00
</script>