refactor: 移除测试模块相关代码并完善物料管理查询功能

移除不再使用的测试模块路由、API和视图组件
在物料管理页面添加物料编码、名称和分类的查询条件
This commit is contained in:
Tom
2025-12-26 10:18:48 +08:00
parent 186b31c8a1
commit c2a65d0f9d
4 changed files with 14 additions and 326 deletions

View File

@@ -1,44 +0,0 @@
import request from '@/utils/request'
// 查询测试模块列表
export function listTestModule(query) {
return request({
url: '/testModule/list',
method: 'get',
params: query
})
}
// 查询测试模块详细
export function getTestModule(id) {
return request({
url: '/testModule/' + id,
method: 'get'
})
}
// 新增测试模块
export function addTestModule(data) {
return request({
url: '/testModule/add',
method: 'post',
data: data
})
}
// 修改测试模块
export function updateTestModule(data) {
return request({
url: '/testModule/edit',
method: 'put',
data: data
})
}
// 删除测试模块
export function delTestModule(id) {
return request({
url: '/testModule/' + id,
method: 'delete'
})
}

View File

@@ -164,18 +164,6 @@ export const constantRoutes = [
meta: { title: '个人中心', icon: 'user', titleKey: 'menu.personalCenter' } meta: { title: '个人中心', icon: 'user', titleKey: 'menu.personalCenter' }
} }
] ]
},
{
path: '/testModule',
component: Layout,
children: [
{
path: 'index',
component: () => import('@/views/testModule/index'),
name: 'TestModule',
meta: { title: '测试模块', icon: 'component', titleKey: 'menu.testModule' }
}
]
} }
] ]

View File

@@ -6,6 +6,16 @@
<template> <template>
<div> <div>
<el-form :model="queryParams" label-position="right" inline ref="queryRef" v-show="showSearch" @submit.prevent> <el-form :model="queryParams" label-position="right" inline ref="queryRef" v-show="showSearch" @submit.prevent>
<!-- 物料清单查询功能完善按编码名称分类查看 -->
<el-form-item label="物料编码" prop="materialCode">
<el-input v-model="queryParams.materialCode" placeholder="请输入物料编码" />
</el-form-item>
<el-form-item label="物料名称" prop="materialName">
<el-input v-model="queryParams.materialName" placeholder="请输入物料名称" />
</el-form-item>
<el-form-item label="物料分类名称" prop="categoryName">
<el-input v-model="queryParams.categoryName" placeholder="请输入物料分类" />
</el-form-item>
<el-form-item> <el-form-item>
<el-button icon="search" type="primary" @click="handleQuery">{{ $t('btn.search') }}</el-button> <el-button icon="search" type="primary" @click="handleQuery">{{ $t('btn.search') }}</el-button>
<el-button icon="refresh" @click="resetQuery">{{ $t('btn.reset') }}</el-button> <el-button icon="refresh" @click="resetQuery">{{ $t('btn.reset') }}</el-button>
@@ -197,7 +207,10 @@ const queryParams = reactive({
pageNum: 1, pageNum: 1,
pageSize: 10, pageSize: 10,
sort: '', sort: '',
sortType: 'asc' sortType: 'asc',
materialCode: '',
materialName: '',
categoryName: '',
}) })
const columns = ref([ const columns = ref([
{ visible: true, align: 'center', type: '', prop: 'id', label: '主键ID' }, { visible: true, align: 'center', type: '', prop: 'id', label: '主键ID' },

View File

@@ -1,269 +0,0 @@
<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryRef" :inline="true" v-show="showSearch" label-width="80px">
<el-form-item label="测试名称" prop="name">
<el-input v-model="queryParams.name" placeholder="请输入测试名称" clearable style="width: 240px" @keyup.enter="handleQuery" />
</el-form-item>
<el-form-item label="状态" prop="status">
<el-select v-model="queryParams.status" placeholder="选择状态" clearable style="width: 240px">
<el-option label="全部" :value="''" />
<el-option label="启用" :value="1" />
<el-option label="禁用" :value="0" />
</el-select>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="search" @click="handleQuery">{{ $t('btn.search') }}</el-button>
<el-button icon="refresh" @click="resetQuery">{{ $t('btn.reset') }}</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">
{{ $t('btn.add') }}
</el-button>
</el-col>
<el-col :span="1.5">
<el-button type="success" plain icon="Edit" :disabled="single" @click="handleUpdate">
{{ $t('btn.edit') }}
</el-button>
</el-col>
<el-col :span="1.5">
<el-button type="danger" plain icon="Delete" :disabled="multiple" @click="handleDelete">
{{ $t('btn.delete') }}
</el-button>
</el-col>
<right-toolbar v-model:showSearch="showSearch" @queryTable="getList" :columns="columns"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="testModuleList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="50" align="center" />
<el-table-column label="ID" align="center" prop="id" width="80" />
<el-table-column label="测试名称" align="center" prop="name" :show-overflow-tooltip="true" />
<el-table-column label="状态" align="center" prop="status" width="100">
<template #default="scope">
<dict-tag :options="statusOptions" :value="scope.row.status" />
</template>
</el-table-column>
<el-table-column label="创建时间" align="center" prop="createTime" width="180" />
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template #default="scope">
<el-button size="small" type="primary" icon="Edit" @click="handleUpdate(scope.row)">
{{ $t('btn.edit') }}
</el-button>
<el-button size="small" type="danger" icon="Delete" @click="handleDelete(scope.row)">
{{ $t('btn.delete') }}
</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 添加或修改测试模块对话框 -->
<el-dialog v-model="open" title="{{ $t('testModule.title') }}" width="500px" append-to-body>
<el-form ref="formRef" :model="form" :rules="rules" label-width="80px">
<el-form-item label="测试名称" prop="name">
<el-input v-model="form.name" placeholder="请输入测试名称" />
</el-form-item>
<el-form-item label="状态" prop="status">
<el-radio-group v-model="form.status">
<el-radio label="1">启用</el-radio>
<el-radio label="0">禁用</el-radio>
</el-radio-group>
</el-form-item>
</el-form>
<template #footer>
<div class="dialog-footer">
<el-button @click="cancel">取消</el-button>
<el-button type="primary" @click="submitForm">确定</el-button>
</div>
</template>
</el-dialog>
</div>
</template>
<script setup>
import { ref, reactive, toRefs, onMounted } from 'vue'
import { useI18n } from 'vue-i18n'
import { ElMessageBox, ElMessage } from 'element-plus'
import { listTestModule, getTestModule, delTestModule, addTestModule, updateTestModule } from '@/api/testModule'
import Pagination from '@/components/Pagination'
import RightToolbar from '@/components/RightToolbar'
import DictTag from '@/components/DictTag'
const { t } = useI18n()
// 表格数据
const testModuleList = ref([])
const total = ref(0)
const loading = ref(false)
const columns = ref({})
const showSearch = ref(true)
// 表单引用
const formRef = ref(null)
const queryRef = ref(null)
// 表单参数
const form = reactive({
id: null,
name: '',
status: '1'
})
// 查询参数
const queryParams = reactive({
pageNum: 1,
pageSize: 10,
name: '',
status: ''
})
// 表单校验
const rules = reactive({
name: [
{ required: true, message: '请输入测试名称', trigger: 'blur' }
]
})
// 状态字典
const statusOptions = ref([])
// 弹窗状态
const open = ref(false)
// 选中的行
const ids = ref([])
const single = ref(true)
const multiple = ref(true)
// 初始化
onMounted(() => {
getList()
})
// 获取列表
const getList = async () => {
loading.value = true
try {
const { data } = await listTestModule(queryParams)
testModuleList.value = data.rows
total.value = data.total
} finally {
loading.value = false
}
}
// 查询按钮
const handleQuery = () => {
queryParams.pageNum = 1
getList()
}
// 重置按钮
const resetQuery = () => {
Object.assign(queryParams, {
name: '',
status: ''
})
handleQuery()
}
// 新增按钮
const handleAdd = () => {
open.value = true
resetForm()
}
// 修改按钮
const handleUpdate = (row) => {
resetForm()
if (row) {
form.id = row.id
getTestModule(row.id).then(response => {
Object.assign(form, response.data)
open.value = true
})
} else {
const id = ids.value[0]
getTestModule(id).then(response => {
Object.assign(form, response.data)
open.value = true
})
}
}
// 删除按钮
const handleDelete = (row) => {
const ids = row ? [row.id] : ids.value
ElMessageBox.confirm(
'确定要删除选中的数据吗?',
'警告',
{
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}
).then(() => {
return delTestModule(ids)
}).then(() => {
ElMessage.success('删除成功')
getList()
}).catch(() => {})
}
// 选择行变化
const handleSelectionChange = (selection) => {
ids.value = selection.map(item => item.id)
single.value = selection.length !== 1
multiple.value = !selection.length
}
// 表单重置
const resetForm = () => {
Object.assign(form, {
id: null,
name: '',
status: '1'
})
}
// 表单提交
const submitForm = () => {
formRef.value.validate((valid) => {
if (valid) {
if (form.id) {
updateTestModule(form).then(response => {
ElMessage.success('修改成功')
open.value = false
getList()
})
} else {
addTestModule(form).then(response => {
ElMessage.success('新增成功')
open.value = false
getList()
})
}
}
})
}
// 取消按钮
const cancel = () => {
open.value = false
resetForm()
}
</script>
<style scoped>
/* 可以添加自定义样式 */
</style>