2025-07-12 17:58:55 +08:00
|
|
|
<template>
|
|
|
|
<div class="app-container">
|
|
|
|
<el-form :model="queryParams" ref="queryRef" :inline="true" v-show="showSearch" label-width="68px">
|
2025-07-29 22:01:14 +08:00
|
|
|
<el-form-item label="管理耳号" prop="manageTags">
|
|
|
|
<el-input v-model="queryParams.manageTags" placeholder="请输入耳号" clearable @keyup.enter="handleQuery"
|
|
|
|
style="width: 150px;" />
|
2025-07-12 17:58:55 +08:00
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="转出羊舍" prop="foldFrom">
|
2025-07-14 16:40:36 +08:00
|
|
|
<el-select v-model="queryParams.foldFrom" placeholder="请选择转出羊舍" style="min-width:150px" clearable>
|
|
|
|
<el-option v-for="item in sheepfoldOptions" :key="item.id" :label="item.sheepfoldName" :value="item.id" />
|
|
|
|
</el-select>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="转入羊舍" prop="foldTo">
|
|
|
|
<el-select v-model="queryParams.foldTo" placeholder="请选择转入羊舍" style="min-width:150px" clearable>
|
|
|
|
<el-option v-for="item in sheepfoldOptions" :key="item.id" :label="item.sheepfoldName" :value="item.id" />
|
|
|
|
</el-select>
|
2025-07-12 17:58:55 +08:00
|
|
|
</el-form-item>
|
2025-07-17 10:02:56 +08:00
|
|
|
<el-form-item label="品种" prop="varietyId">
|
|
|
|
<el-select v-model="queryParams.varietyId" placeholder="请选择品种" style="min-width:150px" clearable>
|
|
|
|
<el-option v-for="item in varietyOptions" :key="item.id" :label="item.variety" :value="item.id" />
|
|
|
|
</el-select>
|
|
|
|
</el-form-item>
|
2025-07-12 17:58:55 +08:00
|
|
|
<el-form-item label="状态" prop="status">
|
|
|
|
<el-select v-model="queryParams.status" style="width: 150px;" placeholder="请选择状态" clearable>
|
|
|
|
<el-option v-for="dict in status" :key="dict.value" :label="dict.label" :value="dict.value" />
|
|
|
|
</el-select>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="创建时间" style="width: 308px">
|
|
|
|
<el-date-picker v-model="daterangeCreateTime" value-format="YYYY-MM-DD" type="daterange" range-separator="-"
|
|
|
|
start-placeholder="开始日期" end-placeholder="结束日期"></el-date-picker>
|
|
|
|
</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">
|
|
|
|
<el-button type="primary" plain icon="Plus" @click="handleAdd"
|
|
|
|
v-hasPermi="['trans_group:trans_group:add']">新增</el-button>
|
|
|
|
</el-col>
|
|
|
|
<el-col :span="1.5">
|
|
|
|
<el-button type="success" plain icon="Edit" :disabled="single" @click="handleUpdate"
|
|
|
|
v-hasPermi="['trans_group:trans_group:edit']">修改</el-button>
|
|
|
|
</el-col>
|
|
|
|
<el-col :span="1.5">
|
|
|
|
<el-button type="danger" plain icon="Delete" :disabled="multiple" @click="handleDelete"
|
|
|
|
v-hasPermi="['trans_group:trans_group:remove']">删除</el-button>
|
|
|
|
</el-col>
|
|
|
|
<el-col :span="1.5">
|
|
|
|
<el-button type="warning" plain icon="Download" @click="handleExport"
|
|
|
|
v-hasPermi="['trans_group:trans_group:export']">导出</el-button>
|
|
|
|
</el-col>
|
|
|
|
<right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
<el-table v-loading="loading" :data="trans_groupList" @selection-change="handleSelectionChange">
|
|
|
|
<el-table-column type="selection" width="55" align="center" />
|
2025-07-29 22:01:14 +08:00
|
|
|
<el-table-column label="管理耳号" align="center" prop="manageTags" />
|
2025-07-14 16:40:36 +08:00
|
|
|
<el-table-column label="转出羊舍" align="center" prop="foldFromName" />
|
|
|
|
<el-table-column label="转入羊舍" align="center" prop="foldToName" />
|
2025-07-17 10:02:56 +08:00
|
|
|
<el-table-column label="品种" align="center" prop="varietyName" />
|
|
|
|
<el-table-column label="转群原因" align="center" prop="reasonText" />
|
2025-07-12 17:58:55 +08:00
|
|
|
<el-table-column label="技术员" align="center" prop="technician" />
|
2025-07-29 22:01:14 +08:00
|
|
|
<el-table-column label="状态" align="center" prop="status">
|
|
|
|
<template #default="scope">
|
|
|
|
<dict-tag :options="status" :value="scope.row.status" />
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
2025-07-12 17:58:55 +08:00
|
|
|
<el-table-column label="备注" align="center" prop="comment" />
|
|
|
|
<el-table-column label="创建人" align="center" prop="createBy" />
|
|
|
|
<el-table-column label="创建时间" align="center" prop="createTime">
|
|
|
|
<template #default="scope">
|
|
|
|
<span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d}') }}</span>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" min-width="160">
|
|
|
|
<template #default="scope">
|
|
|
|
<el-button link type="primary" icon="Edit" @click="handleApprove(scope.row)"
|
|
|
|
v-hasPermi="['trans_group:trans_group:approve']">
|
|
|
|
审批
|
|
|
|
</el-button>
|
|
|
|
<el-button link type="primary" icon="Delete" @click="handleDelete(scope.row)"
|
|
|
|
v-hasPermi="['trans_group:trans_group:remove']">
|
|
|
|
删除
|
|
|
|
</el-button>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table>
|
|
|
|
|
2025-07-14 16:40:36 +08:00
|
|
|
<pagination v-show="total > 0" :total="total" v-model:page="queryParams.pageNum"
|
|
|
|
v-model:limit="queryParams.pageSize" @pagination="getList" />
|
2025-07-12 17:58:55 +08:00
|
|
|
|
|
|
|
<!-- 添加或修改转群记录对话框 -->
|
|
|
|
<el-dialog :title="title" v-model="open" width="500px" append-to-body>
|
|
|
|
<el-form ref="trans_groupRef" :model="form" :rules="rules" label-width="80px">
|
2025-07-29 22:01:14 +08:00
|
|
|
<el-form-item label="管理耳号" prop="manageTags">
|
|
|
|
<el-select v-model="form.manageTags" placeholder="请输入或选择耳号" multiple filterable allow-create
|
|
|
|
style="width: 100%" @change="loadSheepInfo" :disabled="!isAdd">
|
2025-07-22 14:55:51 +08:00
|
|
|
<el-option v-for="sheep in sheepOptions" :key="sheep.id" :label="sheep.manageTags"
|
|
|
|
:value="sheep.manageTags" />
|
|
|
|
</el-select>
|
2025-07-12 17:58:55 +08:00
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="转出羊舍" prop="foldFrom">
|
2025-07-29 22:01:14 +08:00
|
|
|
<el-select v-model="form.foldFrom" placeholder="请选择转出羊舍" clearable @change="handleSheepFilter"
|
|
|
|
:disabled="!isAdd">
|
2025-07-14 16:40:36 +08:00
|
|
|
<el-option v-for="fold in sheepfoldOptions" :key="fold.id" :label="fold.sheepfoldName" :value="fold.id" />
|
|
|
|
</el-select>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="转入羊舍" prop="foldTo">
|
2025-07-29 22:01:14 +08:00
|
|
|
<el-select v-model="form.foldTo" placeholder="请选择转入羊舍" clearable :disabled="!isAdd">
|
2025-07-14 16:40:36 +08:00
|
|
|
<el-option v-for="fold in sheepfoldOptions" :key="fold.id" :label="fold.sheepfoldName" :value="fold.id" />
|
|
|
|
</el-select>
|
2025-07-12 17:58:55 +08:00
|
|
|
</el-form-item>
|
2025-07-29 22:01:14 +08:00
|
|
|
<el-form-item v-if="isAdd" label="羊只类型" prop="sheepTypeId">
|
2025-07-22 14:55:51 +08:00
|
|
|
<el-select v-model="form.sheepTypeId" placeholder="请选择羊只类型" clearable @change="handleSheepFilter">
|
|
|
|
<el-option v-for="type in sheepTypeOptions" :key="type.id" :label="type.name" :value="type.id" />
|
2025-07-17 10:02:56 +08:00
|
|
|
</el-select>
|
|
|
|
</el-form-item>
|
2025-07-12 17:58:55 +08:00
|
|
|
<el-form-item label="转群原因" prop="reason">
|
2025-07-15 18:39:38 +08:00
|
|
|
<el-select v-model="form.reason" placeholder="请选择转群原因" clearable>
|
2025-07-17 10:02:56 +08:00
|
|
|
<el-option v-for="dict in trans_group_reason" :key="dict.value" :label="dict.label"
|
|
|
|
:value="Number(dict.value)" />
|
2025-07-12 17:58:55 +08:00
|
|
|
</el-select>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="技术员" prop="technician">
|
|
|
|
<el-input v-model="form.technician" placeholder="请输入技术员" />
|
|
|
|
</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>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- 审批对话框 -->
|
|
|
|
<el-dialog :title="'审批转群记录'" v-model="approveDialog" width="500px" append-to-body>
|
|
|
|
<el-form ref="approveFormRef" :model="approveForm" label-width="120px">
|
2025-07-22 14:55:51 +08:00
|
|
|
<el-form-item label="耳号">
|
|
|
|
<el-input v-model="displayManageTags" disabled />
|
2025-07-12 17:58:55 +08:00
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="转出羊舍">
|
2025-07-15 18:39:38 +08:00
|
|
|
<el-input :value="sheepfoldNameMap[approveForm.foldFrom] || approveForm.foldFrom" disabled />
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="转入羊舍">
|
|
|
|
<el-input :value="sheepfoldNameMap[approveForm.foldTo] || approveForm.foldTo" disabled />
|
2025-07-12 17:58:55 +08:00
|
|
|
</el-form-item>
|
2025-07-17 10:02:56 +08:00
|
|
|
<el-form-item label="品种">
|
|
|
|
<el-input :value="approveForm.varietyName" disabled />
|
|
|
|
</el-form-item>
|
2025-07-12 17:58:55 +08:00
|
|
|
<el-form-item label="转群原因">
|
2025-07-17 10:02:56 +08:00
|
|
|
<el-input :value="approveForm.reasonText" disabled />
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="状态">
|
|
|
|
<el-input :value="approveForm.statusText" disabled />
|
2025-07-12 17:58:55 +08:00
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="技术员">
|
|
|
|
<el-input v-model="approveForm.technician" disabled />
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="备注">
|
|
|
|
<el-input v-model="approveForm.comment" disabled />
|
|
|
|
</el-form-item>
|
|
|
|
</el-form>
|
|
|
|
<template #footer>
|
|
|
|
<div class="dialog-footer">
|
|
|
|
<el-button type="primary" @click="handleApproveAgree">同意</el-button>
|
|
|
|
<el-button type="danger" @click="handleApproveReject">驳回</el-button>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</el-dialog>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup name="Trans_group">
|
2025-07-29 22:01:14 +08:00
|
|
|
import { listTrans_group, getTrans_group, delTrans_group, addTrans_group, updateTrans_group, approveScTransGroup } from '@/api/produce/manage_sheep/trans_group'
|
2025-07-17 10:02:56 +08:00
|
|
|
import { listSheepfold_management as listSheepfold } from '@/api/fileManagement/sheepfold_management'
|
2025-07-29 22:01:14 +08:00
|
|
|
import { checkSheepByManageTags, getSheepBySheepfoldId } from '@/api/produce/other/fixHoof'
|
2025-07-17 10:02:56 +08:00
|
|
|
import request from '@/utils/request'
|
2025-07-15 18:39:38 +08:00
|
|
|
|
2025-07-29 22:01:14 +08:00
|
|
|
const { proxy } = getCurrentInstance();
|
|
|
|
const { trans_group_reason, status } = proxy.useDict('trans_group_reason', 'status');
|
|
|
|
|
|
|
|
const trans_groupList = ref([]);
|
|
|
|
const open = ref(false);
|
|
|
|
const loading = ref(true);
|
|
|
|
const showSearch = ref(true);
|
|
|
|
const ids = ref([]);
|
|
|
|
const single = ref(true);
|
|
|
|
const multiple = ref(false);
|
|
|
|
const total = ref(0);
|
|
|
|
const title = ref('');
|
|
|
|
const daterangeCreateTime = ref([]);
|
|
|
|
|
|
|
|
const approveDialog = ref(false);
|
|
|
|
const approveForm = ref({});
|
|
|
|
const displayManageTags = ref('');
|
|
|
|
const sheepOptions = ref([]);
|
|
|
|
const sheepfoldOptions = ref([]);
|
|
|
|
const sheepfoldNameMap = ref({});
|
|
|
|
const varietyOptions = ref([]);
|
2025-07-22 14:55:51 +08:00
|
|
|
const sheepTypeOptions = ref([]);
|
2025-07-29 22:01:14 +08:00
|
|
|
const isAdd = ref(false);
|
2025-07-17 10:02:56 +08:00
|
|
|
|
2025-07-12 17:58:55 +08:00
|
|
|
const data = reactive({
|
2025-07-22 14:55:51 +08:00
|
|
|
form: {
|
|
|
|
manageTags: [],
|
|
|
|
tagDetails: {},
|
|
|
|
},
|
2025-07-12 17:58:55 +08:00
|
|
|
queryParams: {
|
|
|
|
pageNum: 1,
|
|
|
|
pageSize: 10,
|
|
|
|
sheepId: null,
|
2025-07-22 14:55:51 +08:00
|
|
|
manageTags: null,
|
2025-07-12 17:58:55 +08:00
|
|
|
foldTo: null,
|
|
|
|
foldFrom: null,
|
2025-07-22 14:55:51 +08:00
|
|
|
varietyId: null,
|
2025-07-12 17:58:55 +08:00
|
|
|
status: null,
|
2025-07-29 22:01:14 +08:00
|
|
|
createTime: null,
|
2025-07-12 17:58:55 +08:00
|
|
|
},
|
|
|
|
rules: {
|
2025-07-29 22:01:14 +08:00
|
|
|
manageTags: [{ required: true, message: '请输入耳号', trigger: 'blur' }],
|
|
|
|
foldTo: [{ required: true, message: '请选择转入羊舍', trigger: 'change' }],
|
|
|
|
varietyId: [{ required: true, message: '请选择品种', trigger: 'change' }],
|
|
|
|
reason: [{ required: true, message: '请选择转群原因', trigger: 'change' }],
|
|
|
|
technician: [{ required: true, message: '请输入技术员', trigger: 'blur' }],
|
|
|
|
},
|
|
|
|
});
|
|
|
|
const { queryParams, form, rules } = toRefs(data);
|
2025-07-22 14:55:51 +08:00
|
|
|
|
2025-07-29 22:01:14 +08:00
|
|
|
/** 查询转群记录列表 */
|
2025-07-12 17:58:55 +08:00
|
|
|
function getList() {
|
2025-07-29 22:01:14 +08:00
|
|
|
loading.value = true;
|
|
|
|
queryParams.value.params = {};
|
2025-07-17 10:02:56 +08:00
|
|
|
if (daterangeCreateTime.value?.length) {
|
2025-07-29 22:01:14 +08:00
|
|
|
queryParams.value.params.beginCreateTime = daterangeCreateTime.value[0];
|
|
|
|
queryParams.value.params.endCreateTime = daterangeCreateTime.value[1];
|
2025-07-12 17:58:55 +08:00
|
|
|
}
|
2025-07-29 22:01:14 +08:00
|
|
|
listTrans_group(queryParams.value).then((res) => {
|
|
|
|
trans_groupList.value = res.rows;
|
|
|
|
total.value = res.total;
|
|
|
|
loading.value = false;
|
|
|
|
});
|
2025-07-12 17:58:55 +08:00
|
|
|
}
|
|
|
|
|
2025-07-29 22:01:14 +08:00
|
|
|
//重置按钮
|
2025-07-12 17:58:55 +08:00
|
|
|
function reset() {
|
|
|
|
form.value = {
|
|
|
|
id: null,
|
|
|
|
sheepId: null,
|
|
|
|
foldFrom: null,
|
2025-07-17 10:02:56 +08:00
|
|
|
foldTo: null,
|
2025-07-22 14:55:51 +08:00
|
|
|
varietyId: null,
|
2025-07-12 17:58:55 +08:00
|
|
|
reason: null,
|
|
|
|
technician: null,
|
|
|
|
status: null,
|
|
|
|
comment: null,
|
|
|
|
createBy: null,
|
2025-07-29 22:01:14 +08:00
|
|
|
createTime: null,
|
|
|
|
manageTags: [],
|
|
|
|
tagDetails: {},
|
|
|
|
sheepTypeId: null,
|
|
|
|
};
|
|
|
|
proxy.resetForm('trans_groupRef');
|
2025-07-17 10:02:56 +08:00
|
|
|
}
|
|
|
|
|
2025-07-29 22:01:14 +08:00
|
|
|
//新增时判断筛选条件
|
2025-07-22 14:55:51 +08:00
|
|
|
async function handleSheepFilter() {
|
|
|
|
const { foldFrom, sheepTypeId } = form.value;
|
2025-07-29 22:01:14 +08:00
|
|
|
let isOnlySheepfold = false;
|
|
|
|
let isOnlyTypeOrCombined = false;
|
|
|
|
|
|
|
|
if (foldFrom && !sheepTypeId) {
|
|
|
|
isOnlySheepfold = true;
|
|
|
|
} else if (!foldFrom && sheepTypeId) {
|
|
|
|
isOnlyTypeOrCombined = true;
|
|
|
|
} else if (foldFrom && sheepTypeId) {
|
|
|
|
isOnlyTypeOrCombined = true;
|
|
|
|
} else {
|
|
|
|
form.value.manageTags = [];
|
|
|
|
sheepOptions.value = [];
|
|
|
|
return;
|
|
|
|
}
|
2025-07-22 14:55:51 +08:00
|
|
|
|
2025-07-29 22:01:14 +08:00
|
|
|
if (isOnlySheepfold) {
|
|
|
|
await loadSheepBySheepfoldOnly(foldFrom);
|
|
|
|
}
|
|
|
|
else if (isOnlyTypeOrCombined) {
|
2025-07-22 14:55:51 +08:00
|
|
|
form.value.manageTags = [];
|
2025-07-29 22:01:14 +08:00
|
|
|
let loadedSheep = [];
|
|
|
|
|
|
|
|
if (foldFrom && sheepTypeId) {
|
|
|
|
loadedSheep = await loadSheepBySheepfoldAndType(foldFrom, sheepTypeId);
|
|
|
|
} else if (sheepTypeId) {
|
|
|
|
loadedSheep = await loadSheepByTypeOnly(sheepTypeId);
|
|
|
|
}
|
|
|
|
|
2025-07-22 14:55:51 +08:00
|
|
|
if (loadedSheep.length > 0) {
|
2025-07-29 22:01:14 +08:00
|
|
|
form.value.manageTags = loadedSheep.map((sheep) => sheep.manageTags);
|
|
|
|
await loadSheepInfo();
|
2025-07-22 14:55:51 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2025-07-29 22:01:14 +08:00
|
|
|
|
|
|
|
//转群类型列表
|
2025-07-22 14:55:51 +08:00
|
|
|
function getSheepTypeList() {
|
2025-07-29 22:01:14 +08:00
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
request({
|
|
|
|
url: '/base/base/list',
|
|
|
|
method: 'get',
|
|
|
|
params: { pageNum: 1, pageSize: 9999 },
|
|
|
|
}).then((res) => {
|
|
|
|
sheepTypeOptions.value = res.rows.map(item => ({
|
|
|
|
id: Number(item.id),
|
|
|
|
name: item.name || item.typeName
|
|
|
|
})) || [];
|
|
|
|
resolve();
|
|
|
|
}).catch((error) => {
|
|
|
|
console.error('获取羊只类型失败', error);
|
|
|
|
proxy.$modal.msgError('加载羊只类型失败,请重试');
|
|
|
|
reject(error);
|
|
|
|
});
|
2025-07-22 14:55:51 +08:00
|
|
|
});
|
|
|
|
}
|
2025-07-29 22:01:14 +08:00
|
|
|
|
|
|
|
//只通过羊舍
|
|
|
|
async function loadSheepBySheepfoldOnly(sheepfoldId) {
|
2025-07-22 14:55:51 +08:00
|
|
|
try {
|
2025-07-29 22:01:14 +08:00
|
|
|
const res = await getSheepBySheepfoldId(String(sheepfoldId));
|
|
|
|
const newSheepList = (res.data || []).map((sheep) => ({
|
2025-07-22 14:55:51 +08:00
|
|
|
id: sheep.id,
|
|
|
|
manageTags: sheep.manageTags,
|
2025-07-29 22:01:14 +08:00
|
|
|
sheepfoldId: sheepfoldId,
|
2025-07-22 14:55:51 +08:00
|
|
|
}));
|
2025-07-29 22:01:14 +08:00
|
|
|
|
|
|
|
const existingTags = new Set(sheepOptions.value.map((item) => item.manageTags));
|
|
|
|
const mergedSheep = newSheepList.filter((item) => !existingTags.has(item.manageTags));
|
|
|
|
|
|
|
|
sheepOptions.value.push(...mergedSheep);
|
|
|
|
return mergedSheep;
|
2025-07-22 14:55:51 +08:00
|
|
|
} catch (error) {
|
2025-07-29 22:01:14 +08:00
|
|
|
console.error('根据羊舍加载耳号失败', error);
|
|
|
|
proxy.$modal.msgError('加载羊舍耳号失败,请重试');
|
2025-07-22 14:55:51 +08:00
|
|
|
return [];
|
|
|
|
}
|
|
|
|
}
|
2025-07-29 22:01:14 +08:00
|
|
|
|
|
|
|
//通过羊舍和羊只类型
|
|
|
|
async function loadSheepBySheepfoldAndType(sheepfoldId, typeId) {
|
2025-07-22 14:55:51 +08:00
|
|
|
try {
|
2025-07-29 22:01:14 +08:00
|
|
|
const res = await request({
|
|
|
|
url: '/sheep/sheep/listBySheepfoldAndType',
|
|
|
|
method: 'get',
|
|
|
|
params: { sheepfoldId, typeId, _t: Date.now() },
|
|
|
|
});
|
|
|
|
const sheepList = res.rows || [];
|
|
|
|
const formattedSheep = sheepList.map((sheep) => ({
|
2025-07-22 14:55:51 +08:00
|
|
|
id: sheep.id,
|
|
|
|
manageTags: sheep.manageTags,
|
2025-07-29 22:01:14 +08:00
|
|
|
sheepfoldId: sheepfoldId,
|
2025-07-22 14:55:51 +08:00
|
|
|
}));
|
2025-07-29 22:01:14 +08:00
|
|
|
|
2025-07-22 14:55:51 +08:00
|
|
|
sheepOptions.value = formattedSheep;
|
|
|
|
return formattedSheep;
|
|
|
|
} catch (error) {
|
2025-07-29 22:01:14 +08:00
|
|
|
console.error('根据羊舍+类型加载耳号失败', error);
|
|
|
|
proxy.$modal.msgError('加载耳号失败,请重试');
|
2025-07-22 14:55:51 +08:00
|
|
|
return [];
|
|
|
|
}
|
|
|
|
}
|
2025-07-29 22:01:14 +08:00
|
|
|
|
|
|
|
//只通过羊只类型
|
2025-07-22 14:55:51 +08:00
|
|
|
async function loadSheepByTypeOnly(typeId) {
|
|
|
|
try {
|
|
|
|
const res = await request({
|
|
|
|
url: '/sheep/sheep/listByTypeId',
|
|
|
|
method: 'get',
|
2025-07-29 22:01:14 +08:00
|
|
|
params: { typeId },
|
2025-07-22 14:55:51 +08:00
|
|
|
});
|
|
|
|
const sheepList = res.rows || [];
|
2025-07-29 22:01:14 +08:00
|
|
|
const formattedSheep = sheepList.map((sheep) => ({
|
2025-07-22 14:55:51 +08:00
|
|
|
id: sheep.id,
|
|
|
|
manageTags: sheep.manageTags,
|
2025-07-29 22:01:14 +08:00
|
|
|
sheepfoldId: sheep.sheepfoldId,
|
2025-07-22 14:55:51 +08:00
|
|
|
}));
|
2025-07-29 22:01:14 +08:00
|
|
|
|
2025-07-22 14:55:51 +08:00
|
|
|
sheepOptions.value = formattedSheep;
|
|
|
|
return formattedSheep;
|
|
|
|
} catch (error) {
|
|
|
|
console.error('根据类型加载耳号失败', error);
|
2025-07-29 22:01:14 +08:00
|
|
|
proxy.$modal.msgError('加载耳号失败,请重试');
|
2025-07-22 14:55:51 +08:00
|
|
|
return [];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-07-29 22:01:14 +08:00
|
|
|
//加载羊只信息
|
2025-07-22 14:55:51 +08:00
|
|
|
async function loadSheepInfo() {
|
|
|
|
const tags = form.value.manageTags;
|
|
|
|
if (!tags || tags.length === 0) return;
|
|
|
|
|
|
|
|
const tagDetails = {};
|
|
|
|
const validResults = [];
|
2025-07-29 22:01:14 +08:00
|
|
|
let firstSheepfoldId = null;
|
2025-07-22 14:55:51 +08:00
|
|
|
|
|
|
|
for (const tag of tags) {
|
|
|
|
try {
|
|
|
|
const { data: sheepData } = await checkSheepByManageTags(tag.trim());
|
|
|
|
if (!sheepData) {
|
|
|
|
validResults.push(false);
|
|
|
|
proxy.$modal.msgError(`耳号 ${tag} 不存在或信息异常`);
|
|
|
|
} else {
|
|
|
|
validResults.push(true);
|
|
|
|
tagDetails[tag] = {
|
|
|
|
comment: sheepData.comment || '',
|
|
|
|
varietyId: sheepData.varietyId,
|
|
|
|
sheepId: sheepData.id,
|
2025-07-29 22:01:14 +08:00
|
|
|
sheepfoldId: sheepData.sheepfoldId,
|
2025-07-22 14:55:51 +08:00
|
|
|
};
|
2025-07-29 22:01:14 +08:00
|
|
|
if (!firstSheepfoldId) {
|
|
|
|
firstSheepfoldId = sheepData.sheepfoldId;
|
|
|
|
}
|
2025-07-22 14:55:51 +08:00
|
|
|
}
|
|
|
|
} catch (error) {
|
|
|
|
console.error('获取耳号信息失败:', error);
|
|
|
|
proxy.$modal.msgError(`耳号 ${tag} 验证失败,请重试`);
|
|
|
|
validResults.push(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (validResults.includes(false)) {
|
|
|
|
form.value.manageTags = tags.filter((_, index) => validResults[index]);
|
|
|
|
proxy.$message.warning('部分耳号不合法,已自动过滤');
|
|
|
|
}
|
|
|
|
form.value.tagDetails = tagDetails;
|
2025-07-29 22:01:14 +08:00
|
|
|
|
|
|
|
if (firstSheepfoldId && isAdd.value) {
|
|
|
|
form.value.foldFrom = Number(firstSheepfoldId);
|
|
|
|
}
|
2025-07-22 14:55:51 +08:00
|
|
|
}
|
|
|
|
|
2025-07-29 22:01:14 +08:00
|
|
|
//取消按钮
|
2025-07-17 10:02:56 +08:00
|
|
|
function cancel() {
|
2025-07-29 22:01:14 +08:00
|
|
|
open.value = false;
|
|
|
|
reset();
|
2025-07-12 17:58:55 +08:00
|
|
|
}
|
|
|
|
|
2025-07-29 22:01:14 +08:00
|
|
|
//搜索按钮
|
2025-07-12 17:58:55 +08:00
|
|
|
function handleQuery() {
|
2025-07-29 22:01:14 +08:00
|
|
|
queryParams.value.pageNum = 1;
|
|
|
|
getList();
|
2025-07-12 17:58:55 +08:00
|
|
|
}
|
|
|
|
|
2025-07-29 22:01:14 +08:00
|
|
|
//重置搜索框
|
2025-07-12 17:58:55 +08:00
|
|
|
function resetQuery() {
|
2025-07-29 22:01:14 +08:00
|
|
|
daterangeCreateTime.value = [];
|
|
|
|
proxy.resetForm('queryRef');
|
|
|
|
handleQuery();
|
2025-07-12 17:58:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
function handleSelectionChange(selection) {
|
2025-07-29 22:01:14 +08:00
|
|
|
ids.value = selection.map((item) => item.id);
|
|
|
|
single.value = selection.length !== 1;
|
|
|
|
multiple.value = !selection.length;
|
2025-07-12 17:58:55 +08:00
|
|
|
}
|
|
|
|
|
2025-07-29 22:01:14 +08:00
|
|
|
//新增
|
2025-07-12 17:58:55 +08:00
|
|
|
function handleAdd() {
|
2025-07-22 14:55:51 +08:00
|
|
|
reset();
|
|
|
|
open.value = true;
|
|
|
|
title.value = '添加转群记录';
|
2025-07-29 22:01:14 +08:00
|
|
|
isAdd.value = true;
|
2025-07-22 14:55:51 +08:00
|
|
|
sheepOptions.value = [];
|
|
|
|
form.value.manageTags = [];
|
2025-07-12 17:58:55 +08:00
|
|
|
}
|
|
|
|
|
2025-07-29 22:01:14 +08:00
|
|
|
//修改
|
|
|
|
async function handleUpdate(row) {
|
2025-07-22 14:55:51 +08:00
|
|
|
reset();
|
|
|
|
const _id = row.id || ids.value;
|
2025-07-29 22:01:14 +08:00
|
|
|
loading.value = true;
|
|
|
|
isAdd.value = false;
|
|
|
|
const { data: d } = await getTrans_group(_id);
|
2025-07-22 14:55:51 +08:00
|
|
|
|
2025-07-29 22:01:14 +08:00
|
|
|
try {
|
|
|
|
await Promise.all([
|
|
|
|
sheepfoldOptions.value.length === 0 ? loadSheepfold() : Promise.resolve(),
|
|
|
|
sheepTypeOptions.value.length === 0 ? getSheepTypeList() : Promise.resolve()
|
|
|
|
]);
|
|
|
|
|
|
|
|
const { data: d } = await getTrans_group(_id);
|
|
|
|
|
|
|
|
const manageTags = Array.isArray(d.manageTags)
|
|
|
|
? d.manageTags
|
|
|
|
: d.manageTags ? [d.manageTags] : [];
|
|
|
|
|
|
|
|
const formData = {
|
|
|
|
...d,
|
|
|
|
manageTags: manageTags,
|
|
|
|
foldFrom: Number(d.foldFrom || 0),
|
|
|
|
foldTo: Number(d.foldTo || 0),
|
|
|
|
sheepTypeId: Number(d.sheepTypeId || 0),
|
|
|
|
reason: Number(d.reason || 0),
|
|
|
|
status: Number(d.status || 0),
|
|
|
|
varietyId: Number(d.varietyId || 0),
|
|
|
|
isEdit: true
|
|
|
|
};
|
|
|
|
|
|
|
|
// 5. 验证匹配情况(调试用)
|
|
|
|
// const foldFromItem = sheepfoldOptions.value.find(item => item.id === formData.foldFrom);
|
|
|
|
// const foldToItem = sheepfoldOptions.value.find(item => item.id === formData.foldTo);
|
|
|
|
// const sheepTypeItem = sheepTypeOptions.value.find(item => item.id === formData.sheepTypeId);
|
|
|
|
// console.log("转出羊舍匹配结果:", foldFromItem ? foldFromItem.sheepfoldName : "未找到");
|
|
|
|
// console.log("转入羊舍匹配结果:", foldToItem ? foldToItem.sheepfoldName : "未找到");
|
|
|
|
// console.log("羊只类型匹配结果:", sheepTypeItem ? sheepTypeItem.name : "未找到");
|
|
|
|
|
|
|
|
form.value = formData;
|
|
|
|
|
|
|
|
if (manageTags.length > 0) {
|
|
|
|
await loadSheepInfo();
|
|
|
|
}
|
2025-07-22 14:55:51 +08:00
|
|
|
open.value = true;
|
|
|
|
title.value = '修改转群记录';
|
2025-07-29 22:01:14 +08:00
|
|
|
} catch (error) {
|
|
|
|
console.error('修改加载失败:', error);
|
|
|
|
proxy.$modal.msgError('加载数据失败');
|
|
|
|
} finally {
|
|
|
|
loading.value = false;
|
|
|
|
}
|
2025-07-12 17:58:55 +08:00
|
|
|
}
|
|
|
|
|
2025-07-29 22:01:14 +08:00
|
|
|
//提交
|
2025-07-12 17:58:55 +08:00
|
|
|
function submitForm() {
|
2025-07-29 22:01:14 +08:00
|
|
|
proxy.$refs.trans_groupRef.validate((valid) => {
|
2025-07-22 14:55:51 +08:00
|
|
|
if (!valid) return;
|
|
|
|
|
|
|
|
const allTags = form.value.manageTags;
|
|
|
|
const tagDetails = form.value.tagDetails || {};
|
|
|
|
if (!allTags || allTags.length === 0) {
|
|
|
|
proxy.$modal.msgError('请选择或输入至少一个耳号');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const requests = allTags.map(async (tag) => {
|
|
|
|
const formData = { ...form.value };
|
|
|
|
const details = tagDetails[tag] || {};
|
|
|
|
formData.manageTags = tag;
|
|
|
|
formData.sheepId = details.sheepId;
|
|
|
|
formData.foldFrom = details.sheepfoldId;
|
|
|
|
formData.comment = details.comment || '';
|
|
|
|
formData.varietyId = details.varietyId || formData.varietyId;
|
|
|
|
|
|
|
|
if (formData.id) {
|
|
|
|
return updateTrans_group(formData);
|
|
|
|
} else {
|
|
|
|
return addTrans_group(formData);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
Promise.all(requests)
|
|
|
|
.then(() => {
|
|
|
|
proxy.$modal.msgSuccess('操作成功');
|
|
|
|
open.value = false;
|
|
|
|
getList();
|
|
|
|
})
|
2025-07-29 22:01:14 +08:00
|
|
|
.catch((error) => {
|
2025-07-22 14:55:51 +08:00
|
|
|
proxy.$modal.msgError(`处理失败:${error.message}`);
|
|
|
|
});
|
|
|
|
});
|
2025-07-12 17:58:55 +08:00
|
|
|
}
|
2025-07-29 22:01:14 +08:00
|
|
|
//删除
|
2025-07-12 17:58:55 +08:00
|
|
|
function handleDelete(row) {
|
2025-07-29 22:01:14 +08:00
|
|
|
const _ids = row.id || ids.value;
|
2025-07-17 10:02:56 +08:00
|
|
|
proxy.$modal.confirm(`是否确认删除转群记录编号为“${_ids}”的数据项?`)
|
|
|
|
.then(() => delTrans_group(_ids))
|
|
|
|
.then(() => {
|
2025-07-29 22:01:14 +08:00
|
|
|
getList();
|
|
|
|
proxy.$modal.msgSuccess('删除成功');
|
|
|
|
});
|
2025-07-12 17:58:55 +08:00
|
|
|
}
|
2025-07-29 22:01:14 +08:00
|
|
|
//导出
|
2025-07-12 17:58:55 +08:00
|
|
|
function handleExport() {
|
2025-07-17 10:02:56 +08:00
|
|
|
proxy.download(
|
|
|
|
'/produce/manage_sheep/trans_group/export',
|
|
|
|
{ ...queryParams.value },
|
|
|
|
`trans_group_${Date.now()}.xlsx`
|
2025-07-29 22:01:14 +08:00
|
|
|
);
|
2025-07-12 17:58:55 +08:00
|
|
|
}
|
|
|
|
|
2025-07-29 22:01:14 +08:00
|
|
|
// 审核
|
2025-07-12 17:58:55 +08:00
|
|
|
function handleApprove(row) {
|
2025-07-29 22:01:14 +08:00
|
|
|
approveForm.value = { ...row };
|
|
|
|
approveDialog.value = true;
|
2025-07-22 14:55:51 +08:00
|
|
|
displayManageTags.value = row.manageTags;
|
2025-07-12 17:58:55 +08:00
|
|
|
}
|
2025-07-29 22:01:14 +08:00
|
|
|
|
|
|
|
// 审批同意
|
2025-07-12 17:58:55 +08:00
|
|
|
function handleApproveAgree() {
|
2025-07-29 22:01:14 +08:00
|
|
|
if (typeof approveForm.value.foldTo !== 'number') {
|
|
|
|
approveForm.value.foldTo = Number(approveForm.value.foldTo);
|
|
|
|
}
|
|
|
|
|
|
|
|
approveForm.value.status = 1;
|
|
|
|
approveScTransGroup(approveForm.value).then(() => {
|
|
|
|
approveDialog.value = false;
|
|
|
|
proxy.$modal.msgSuccess('审批通过,羊只所在羊舍已更新');
|
|
|
|
getList();
|
|
|
|
}).catch(error => {
|
|
|
|
proxy.$modal.msgError(`审批失败:${error.message}`);
|
|
|
|
});
|
2025-07-12 17:58:55 +08:00
|
|
|
}
|
2025-07-29 22:01:14 +08:00
|
|
|
|
2025-07-12 17:58:55 +08:00
|
|
|
function handleApproveReject() {
|
2025-07-29 22:01:14 +08:00
|
|
|
approveForm.value.status = 2;
|
|
|
|
approveScTransGroup(approveForm.value).then(() => {
|
|
|
|
approveDialog.value = false;
|
|
|
|
proxy.$modal.msgSuccess('审批已驳回');
|
|
|
|
getList();
|
|
|
|
}).catch(error => {
|
|
|
|
proxy.$modal.msgError(`审批失败:${error.message}`);
|
|
|
|
});
|
2025-07-14 16:40:36 +08:00
|
|
|
}
|
|
|
|
|
2025-07-17 10:02:56 +08:00
|
|
|
function loadSheepfold() {
|
2025-07-29 22:01:14 +08:00
|
|
|
listSheepfold({ pageNum: 1, pageSize: 9999 }).then((res) => {
|
|
|
|
sheepfoldOptions.value = res.rows;
|
2025-07-15 18:39:38 +08:00
|
|
|
sheepfoldNameMap.value = res.rows.reduce((acc, item) => {
|
2025-07-29 22:01:14 +08:00
|
|
|
acc[item.id] = item.sheepfoldName;
|
|
|
|
return acc;
|
|
|
|
}, {});
|
|
|
|
});
|
2025-07-15 18:39:38 +08:00
|
|
|
}
|
2025-07-29 22:01:14 +08:00
|
|
|
|
2025-07-17 10:02:56 +08:00
|
|
|
function getVarietyOptions() {
|
|
|
|
request({
|
|
|
|
url: '/base/variety/list',
|
|
|
|
method: 'get',
|
2025-07-29 22:01:14 +08:00
|
|
|
params: { pageNum: 1, pageSize: 9999 },
|
|
|
|
}).then((res) => {
|
2025-07-22 14:55:51 +08:00
|
|
|
varietyOptions.value = res.rows || [];
|
|
|
|
});
|
2025-07-17 10:02:56 +08:00
|
|
|
}
|
2025-07-15 18:39:38 +08:00
|
|
|
|
|
|
|
onMounted(() => {
|
2025-07-22 14:55:51 +08:00
|
|
|
loadSheepfold();
|
|
|
|
getVarietyOptions();
|
|
|
|
getSheepTypeList();
|
|
|
|
getList();
|
2025-07-29 22:01:14 +08:00
|
|
|
});
|
2025-07-17 10:02:56 +08:00
|
|
|
</script>
|