123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552 |
- <template>
- <div class="app-container">
- <!-- 操作按钮区 -->
- <div class="button-group">
- <el-button
- :icon="Plus"
- type="primary"
- @click="openDialog('add')"
- class="custom-button add-button"
- >新增记录</el-button
- >
- <el-button
- :icon="Download"
- type="primary"
- @click="downloadTemplateAction"
- class="custom-button download-button"
- >下载模板</el-button
- >
- <el-button
- :icon="Download"
- type="primary"
- @click="exportDataAction"
- class="custom-button export-button"
- >导出数据</el-button
- >
- <el-upload :before-upload="importDataAction" accept=".xlsx, .csv">
- <el-button
- :icon="Upload"
- type="primary"
- class="custom-button import-button"
- >导入数据</el-button
- >
- </el-upload>
- </div>
- <!-- 数据表格 -->
- <el-table
- :data="pagedTableDataWithIndex"
- fit
- style="width: 100%"
- @row-click="handleRowClick"
- highlight-current-row
- class="custom-table"
- v-loading="loading"
- table-layout="auto"
- >
- <el-table-column
- key="displayIndex"
- prop="displayIndex"
- label="序号"
- width="80"
- align="center"
- ></el-table-column>
- <el-table-column
- v-for="col in columns.filter((col) => col.key !== 'id')"
- :key="col.key"
- :prop="col.dataKey"
- :label="col.title"
- :min-width="col.title.length * 20 + 40"
- :formatter="formatNumber"
- align="center"
- header-align="center"
- ></el-table-column>
- <el-table-column label="操作" width="120" align="center">
- <template #default="scope">
- <span class="action-buttons">
- <el-tooltip
- class="item"
- effect="dark"
- content="编辑"
- placement="top"
- >
- <el-button
- circle
- :icon="EditPen"
- @click.stop="openDialog('edit', scope.row)"
- class="action-button edit-button"
- ></el-button>
- </el-tooltip>
- <el-tooltip
- class="item"
- effect="dark"
- content="删除"
- placement="top"
- >
- <el-button
- circle
- :icon="DeleteFilled"
- @click.stop="deleteItem(scope.row)"
- class="action-button delete-button"
- ></el-button>
- </el-tooltip>
- </span>
- </template>
- </el-table-column>
- </el-table>
- <!-- 分页控制 -->
- <PaginationComponent
- :total="tableData.length"
- :currentPage="currentPage4"
- :pageSize="pageSize4"
- @update:currentPage="currentPage4 = $event"
- @update:pageSize="pageSize4 = $event"
- @size-change="handleSizeChange"
- @current-change="handleCurrentChange"
- class="pagination-container"
- />
- <!-- 新增/编辑对话框 -->
- <el-dialog :title="dialogTitle" v-model="dialogVisible" width="50%">
- <el-form :model="formData" label-width="150px">
- <el-form-item
- v-for="col in editableColumns"
- :key="col.key"
- :label="col.title"
- >
- <el-input
- v-model="formData[col.dataKey]"
- :type="col.inputType || 'text'"
- class="custom-input"
- ></el-input>
- </el-form-item>
- </el-form>
- <template #footer>
- <el-button @click="dialogVisible = false" class="custom-cancel-button"
- >取消</el-button
- >
- <el-button
- type="primary"
- @click="submitForm"
- class="custom-submit-button"
- >{{ dialogSubmitButtonText }}</el-button
- >
- </template>
- </el-dialog>
- </div>
- </template>
- <script lang="ts" setup>
- import { ref, reactive, computed, onMounted } from "vue";
- import {
- DeleteFilled,
- Download,
- Upload,
- Plus,
- EditPen,
- } from "@element-plus/icons-vue";
- import { ElMessage } from "element-plus";
- import {
- table,
- updateItem,
- addItem,
- deleteItemApi,
- downloadTemplate,
- exportData,
- importData,
- } from "@/API/menus";
- import PaginationComponent from "@/components/PaginationComponent.vue";
- interface Column {
- key: string;
- dataKey: string;
- title: string;
- width: number;
- inputType?: string;
- }
- const columns: Column[] = [
- { key: "id", dataKey: "id", title: "ID", width: 100 },
- { key: "OM", dataKey: "OM", title: "有机质含量", width: 150 },
- { key: "CL", dataKey: "CL", title: "土壤粘粒", width: 150 },
- { key: "CEC", dataKey: "CEC", title: "阳离子交换量", width: 150 },
- { key: "H_plus", dataKey: "H_plus", title: "交换性氢", width: 150 },
- { key: "N", dataKey: "N", title: "水解氮", width: 150 },
- { key: "Al3_plus", dataKey: "Al3_plus", title: "交换性铝", width: 150 },
- { key: "Delta_pH", dataKey: "Delta_pH", title: "ΔpH", width: 170 },
- ];
- const editableColumns = columns.filter((col) => col.key !== "id");
- const tableData = ref<any[]>([]);
- const selectedRow = ref<any | null>(null);
- const dialogVisible = ref(false);
- const formData = reactive<any>({});
- const dialogMode = ref<"add" | "edit">("add"); // 新增还是编辑模式
- const currentPage4 = ref(1);
- const pageSize4 = ref(10);
- const pagedTableData = computed(() => {
- const start = (currentPage4.value - 1) * pageSize4.value;
- const end = start + pageSize4.value;
- return tableData.value.slice(start, end);
- });
- const pagedTableDataWithIndex = computed(() => {
- return pagedTableData.value.map((item, index) => ({
- ...item,
- displayIndex: (currentPage4.value - 1) * pageSize4.value + index + 1,
- }));
- });
- const loading = ref(false);
- const currentTableName = "current_reflux";
- const fetchTable = async () => {
- console.log("正在获取表格数据...");
- try {
- loading.value = true;
- const response = await table({ table: currentTableName });
- console.log("获取到的数据:", response);
- tableData.value = response.data.rows;
- } catch (error) {
- console.error("获取数据时出错:", error);
- ElMessage.error("获取数据失败,请检查网络连接或服务器状态");
- } finally {
- loading.value = false;
- }
- };
- onMounted(() => {
- fetchTable();
- });
- const handleRowClick = (row: any) => {
- selectedRow.value = row;
- Object.assign(formData, row);
- };
- const openDialog = (mode: "add" | "edit", row?: any) => {
- console.log(`${mode === "add" ? "打开新增记录" : "打开编辑记录"}对话框`);
- if (mode === "add") {
- selectedRow.value = null;
- editableColumns.forEach((col) => {
- formData[col.dataKey] = "";
- });
- } else if (row) {
- console.log("编辑记录:", row);
- selectedRow.value = row;
- Object.assign(formData, row);
- }
- dialogMode.value = mode;
- dialogVisible.value = true;
- };
- function prepareFormData(
- formData: { [x: string]: any },
- excludeKeys = ["displayIndex"]
- ): { [x: string]: any } {
- const result: { [x: string]: any } = {};
- for (const key in formData) {
- if (!excludeKeys.includes(key)) {
- let value = formData[key];
- if (typeof value === "string" && value.startsWith("displayIndex-")) {
- value = value.replace("displayIndex-", "");
- }
- result[key] = value;
- }
- }
- return result;
- }
- const submitForm = async () => {
- console.log("开始提交表单...");
- try {
- const isValid = validateFormData(formData);
- if (!isValid) {
- console.error("表单验证失败,请检查输入的数据");
- alert("请检查输入的数据");
- return;
- }
- const dataToSubmit = prepareFormData(formData);
- if (!dataToSubmit.id && dialogMode.value !== "add") {
- console.error("无法找到记录ID,请联系管理员");
- alert("无法找到记录ID,请联系管理员");
- return;
- }
- let response;
- if (dialogMode.value === "add") {
- console.log("正在添加新记录...");
- response = await addItem({ table: currentTableName, item: dataToSubmit });
- } else {
- console.log("正在更新现有记录...");
- response = await updateItem({
- table: currentTableName,
- item: dataToSubmit,
- });
- }
- console.log(
- dialogMode.value === "add" ? "添加响应:" : "更新响应:",
- response
- );
- dialogVisible.value = false;
- fetchTable();
- alert(dialogMode.value === "add" ? "添加成功" : "修改成功");
- } catch (error) {
- console.error("提交表单时发生错误:", error);
- let errorMessage = "未知错误";
- if (error && typeof error === "object" && "response" in error) {
- const response = (error as { response?: { data?: { message?: string } } })
- .response;
- if (
- response &&
- response.data &&
- typeof response.data.message === "string"
- ) {
- errorMessage = response.data.message;
- }
- }
- console.error(`提交失败原因: ${errorMessage}`);
- alert(`提交失败: ${errorMessage}`);
- }
- };
- function validateFormData(data: { [x: string]: undefined }) {
- for (let key in data) {
- if (data[key] === "" || data[key] === undefined) {
- return false;
- }
- }
- return true;
- }
- const deleteItem = async (row: any) => {
- console.log("准备删除记录:", row);
- if (!row) {
- ElMessage.warning("请先选择一行记录");
- return;
- }
- try {
- const condition = { id: row.id };
- await deleteItemApi({ table: "current_reflux", condition });
- const index = tableData.value.findIndex((item) => item.id === row.id);
- if (index > -1) {
- tableData.value.splice(index, 1);
- }
- fetchTable();
- console.log("记录删除成功");
- } catch (error) {
- console.error("删除记录时发生错误:", error);
- }
- };
- const downloadTemplateAction = async () => {
- try {
- await downloadTemplate("current_reflux");
- } catch (error) {
- console.error("下载模板时发生错误:", error);
- }
- };
- const exportDataAction = async () => {
- try {
- await exportData("current_reflux");
- } catch (error) {
- console.error("导出数据时发生错误:", error);
- }
- };
- const importDataAction = async (file: File) => {
- try {
- const response = await importData("reduce", file); // 传递 dataset_type 的值(如 'reduce')
- if (response && response.data) {
- const { total_data, new_data, duplicate_data, message } = response.data;
- ElMessage({
- message: `导入结果: ${message} 新增总数:${total_data}, 成功新增:${new_data}, 数据重复:${duplicate_data}`,
- type: "success",
- });
- fetchTable(); // 假设存在 fetchTable 方法刷新表格
- }
- } catch (error) {
- let errorMessage = "数据导入失败";
- if (error && typeof error === "object" && "response" in error) {
- const response = (error as { response?: { data?: { message?: string } } })
- .response;
- if (response && response.data && typeof response.data.message === "string") {
- errorMessage += `: ${response.data.message}`;
- }
- }
- ElMessage.error(errorMessage);
- }
- };
- const handleFileChange = (event: Event) => {
- const target = event.target as HTMLInputElement;
- if (target.files && target.files.length > 0) {
- importDataAction(target.files[0]);
- }
- };
- const handleSizeChange = (val: number) => {};
- const handleCurrentChange = (val: number) => {};
- const formatNumber = (row: any, column: any, cellValue: any) => {
- if (typeof cellValue === "number") {
- return cellValue.toFixed(3);
- }
- return cellValue;
- };
- const dialogTitle = computed(() => {
- return dialogMode.value === "add" ? "新增记录" : "编辑记录";
- });
- const dialogSubmitButtonText = computed(() => {
- return dialogMode.value === "add" ? "添加" : "保存";
- });
- </script>
- <style scoped>
- .app-container {
- padding: 20px 40px;
- min-height: 100vh;
- background-color: #f0f2f5;
- box-sizing: border-box;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .button-group {
- display: flex;
- gap: 12px;
- justify-content: flex-end;
- width: 100%;
- margin-bottom: 20px;
- }
- .custom-button {
- color: #fff;
- border: none;
- border-radius: 8px;
- font-size: 14px;
- padding: 10px 18px;
- transition: transform 0.3s ease, background-color 0.3s ease;
- min-width: 130px;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .download-button,
- .export-button,
- .add-button,
- .import-button {
- background-color: #67c23a;
- }
- .download-button:hover,
- .export-button:hover,
- .import-button:hover,
- .add-button:hover {
- background-color: #85ce61;
- transform: scale(1.05);
- }
- .custom-table {
- width: 100%;
- border-radius: 8px;
- overflow: hidden;
- box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
- background-color: #fff;
- margin-top: 10px;
- }
- :deep( .el-table th) {
- background: linear-gradient(180deg, #61e054, #4db944);
- color: #fff;
- font-weight: bold;
- text-align: center;
- padding: 14px 0;
- font-size: 14px;
- }
- :deep( .el-table__row:nth-child(odd)) {
- background-color: #E4FBE5;
- }
- :deep( .el-table__row:nth-child(even)) {
- background-color: #ffffff;
- }
- :deep( .el-table td) {
- padding: 12px 10px;
- text-align: center;
- border-bottom: 1px solid #ebeef5;
- }
- .action-button {
- font-size: 16px;
- margin-right: 5px;
- border-radius: 50%;
- transition: transform 0.3s ease, background-color 0.3s ease;
- }
- .edit-button {
- background-color: #409eff;
- color: #fff;
- }
- .edit-button:hover {
- background-color: #66b1ff;
- transform: scale(1.1);
- }
- .delete-button {
- background-color: #f56c6c;
- color: #fff;
- }
- .delete-button:hover {
- background-color: #f78989;
- transform: scale(1.1);
- }
- .el-form-item__label {
- width: 150px;
- font-weight: bold;
- }
- .el-form-item__content {
- margin-left: 150px;
- }
- .custom-input .el-input__inner {
- border-radius: 6px;
- border: 1px solid #dcdcdc;
- transition: border-color 0.3s ease;
- padding: 10px;
- font-size: 14px;
- }
- .custom-input .el-input__inner:focus {
- border-color: #409eff;
- }
- .custom-cancel-button,
- .custom-submit-button {
- border: none;
- border-radius: 6px;
- font-size: 14px;
- padding: 10px 20px;
- transition: transform 0.3s ease, background-color 0.3s ease;
- min-width: 100px;
- }
- .custom-cancel-button {
- background-color: #f4f4f5;
- color: #606266;
- }
- .custom-cancel-button:hover {
- background-color: #e4e7ed;
- transform: scale(1.05);
- }
- .custom-submit-button {
- background-color: #409eff;
- color: #fff;
- }
- .custom-submit-button:hover {
- background-color: #66b1ff;
- transform: scale(1.05);
- }
- .pagination-container {
- margin-top: 30px;
- text-align: center;
- }
- .action-buttons {
- display: flex;
- justify-content: center;
- }
- </style>
|