<template> <!-- 数据采集子系统 人工化验 士壤本底检测--> <div class="publicContainer"> <!-- 搜索区域 --> <el-form :model="queryParams" ref="queryRef" :inline="true" v-show="showSearch"> <el-form-item label="采样地点" prop="sampleLocation"> <el-input v-model="queryParams.sampleLocation" placeholder="请输入采样地点" clearable /> </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">新增</el-button> </el-col> <right-toolbar v-model:showSearch="showSearch" @queryTable="getDataList"></right-toolbar> </el-row> <!-- 表格 --> <el-table v-loading="tableLoading" :data="tableData" max-height="650"> <el-table-column label="序号" type="index" width="55" /> <el-table-column label="采样日期" prop="sampleTime" /> <el-table-column label="采样地点" prop="sampleLocation" /> <el-table-column label="检测项目" prop="sampleObject" /> <el-table-column label="检测频次" prop="sampleFrequency" /> <el-table-column label="检测报告" prop="fileList"> <template #default="{ row }"> <span class="filePreview" @click="previewPdf(row.fileList[0].url)"> {{ row.fileList[0].name }} </span> </template> </el-table-column> <el-table-column label="操作" width="160" class-name="small-padding fixed-width"> <template #default="scope"> <el-button link type="primary" icon="Edit" @click="handleUpdate(scope.row)">修改</el-button> <el-button link type="danger" icon="Delete" @click="handleDelete(scope.row)"> 删除 </el-button> </template> </el-table-column> </el-table> <!-- 分页 --> <pagination v-show="total > 0" :total="total" v-model:page="queryParams.pageNum" v-model:limit="queryParams.pageSize" @pagination="getDataList" /> <!-- 添加或修改弹窗 --> <el-dialog :sampleLocation="dialogTitle" v-model="dialogShow" width="500px" append-to-body> <el-form ref="formRef" :model="formData" :rules="rulesForm" label-width="120px" class="publicForm"> <el-form-item label="采样日期:" prop="sampleTime"> <el-date-picker type="datetime" v-model="formData.sampleTime" value-format="YYYY-MM-DD HH:mm:ss" placeholder="请选择采样日期" /> </el-form-item> <el-form-item label="采样地点:" prop="sampleLocation"> <el-input type="textarea" v-model="formData.sampleLocation" placeholder="请输入采样地点" clearable style="width: 100%" /> </el-form-item> <el-form-item label="检测项目:" prop="sampleObject"> <el-input type="text" v-model="formData.sampleObject" placeholder="请输入检测项目" clearable style="width: 100%" /> </el-form-item> <el-form-item label="检测频次:" prop="sampleFrequency"> <el-input type="text" v-model="formData.sampleFrequency" placeholder="请输入检测频次" clearable style="width: 100%" /> </el-form-item> <el-form-item label="检测报告:" prop="fileSaveRequestList"> <ImageFileUpload :limit="1" :saveFileArr="formData.fileSaveRequestList" :listType="'text'" :refField="'trfield'" :refType="'soilSample'" :fileType="['pdf', 'doc', 'docx']" ></ImageFileUpload> </el-form-item> </el-form> <template #footer> <div class="dialog-footer"> <el-button type="info" @click="cancelForm">取 消</el-button> <el-button type="primary" @click="submitForm">确 定</el-button> </div> </template> </el-dialog> </div> </template> <script setup> import { soilSamplePage, soilSampleAdd, soilSampleDel, soilSampleDetail, soilSampleEdit } from '@/api/spongePerformance/surfaceWater'; import ImageFileUpload from '@/components/ImageFileUpload/index.vue'; //图片文件上传 const { proxy } = getCurrentInstance(); const tableData = ref([]); const total = ref(0); const dialogShow = ref(false); const dialogTitle = ref(''); const showSearch = ref(true); const tableLoading = ref(true); const allData = reactive({ formData: { fileSaveRequestList: [], sampleFrequency: '', sampleLocation: '', sampleTime: null, sampleObject: '', }, queryParams: { pageNum: 1, pageSize: 10, sampleTime: '', sampleLocation: '', }, rulesForm: { sampleTime: [{ required: true, message: '请选择', trigger: 'change' }], sampleLocation: [{ required: true, message: '请输入', trigger: 'blur' }], fileSaveRequestList: [{ required: true, message: '请选择', trigger: 'change', type: 'array' }], }, }); const { queryParams, formData, rulesForm } = toRefs(allData); /** 获取搜索数据列表 */ function getDataList() { tableLoading.value = true; soilSamplePage(queryParams.value).then(response => { tableData.value = response.data; total.value = response.total; tableLoading.value = false; }); } /** 取消按钮 */ function cancelForm() { dialogShow.value = false; } /** 搜索按钮操作 */ function handleQuery() { queryParams.value.pageNum = 1; getDataList(); } /** 重置按钮操作 */ function resetQuery() { proxy.resetForm('queryRef'); handleQuery(); } /** 新增按钮操作 */ function handleAdd() { proxy.resetForm('formRef'); //清空表单 dialogShow.value = true; dialogTitle.value = '新增土壤本底检测'; } /** 修改按钮操作 */ function handleUpdate(row) { soilSampleDetail(row.id).then(response => { dialogShow.value = true; dialogTitle.value = '修改土壤本底检测'; setTimeout(() => { formData.value = response.data; formData.value.fileSaveRequestList = row.fileList; }); }); } /** 提交按钮 */ function submitForm() { proxy.$refs['formRef'].validate(valid => { if (valid) { if (dialogTitle.value == '修改土壤本底检测') { soilSampleEdit(formData.value).then(response => { proxy.$modal.msgSuccess('修改成功'); dialogShow.value = false; getDataList(); }); } else { if (formData.value.id) delete formData.value.id; soilSampleAdd(formData.value).then(response => { proxy.$modal.msgSuccess('新增成功'); dialogShow.value = false; getDataList(); }); } } }); } /** 删除按钮操作 */ function handleDelete(row) { const postIds = row.id; proxy.$modal .confirm('是否确认删除该数据项?') .then(function () { return soilSampleDel(postIds); }) .then(() => { getDataList(); proxy.$modal.msgSuccess('删除成功'); }) .catch(() => {}); } function previewPdf(url) { window.open(url); } onMounted(() => { getDataList(); }); </script> <style lang="scss"></style>