You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
251 lines
8.5 KiB
Vue
251 lines
8.5 KiB
Vue
<template>
|
|
<ContentWrap>
|
|
<!-- 搜索工作栏 -->
|
|
<el-form class="-mb-15px" :model="queryParams" ref="queryFormRef" :inline="true" label-width="68px">
|
|
<el-form-item label="编码" prop="subjectCode">
|
|
<el-input
|
|
v-model="queryParams.subjectCode" placeholder="请输入编码" clearable @keyup.enter="handleQuery"
|
|
class="!w-240px" />
|
|
</el-form-item>
|
|
<el-form-item label="名称" prop="subjectName">
|
|
<el-input
|
|
v-model="queryParams.subjectName" placeholder="请输入名称" clearable @keyup.enter="handleQuery"
|
|
class="!w-240px" />
|
|
</el-form-item>
|
|
<el-form-item label="判定基准" prop="judgmentCriteria">
|
|
<el-input
|
|
v-model="queryParams.judgmentCriteria" placeholder="请输入判定基准" clearable @keyup.enter="handleQuery"
|
|
class="!w-240px" />
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-button @click="handleQuery">
|
|
<Icon icon="ep:search" class="mr-5px" /> 搜索
|
|
</el-button>
|
|
<el-button @click="resetQuery">
|
|
<Icon icon="ep:refresh" class="mr-5px" /> 重置
|
|
</el-button>
|
|
<el-button type="primary" plain @click="openForm('create')" v-hasPermi="['mes:dv-subject:create']">
|
|
<Icon icon="ep:plus" class="mr-5px" /> 新增
|
|
</el-button>
|
|
<el-button type="danger" plain @click="handleBatchDelete" v-hasPermi="['mes:dv-subject:delete']">
|
|
<Icon icon="ep:delete" class="mr-5px" /> 批量删除
|
|
</el-button>
|
|
<el-button
|
|
type="success" plain @click="handleExport" :loading="exportLoading"
|
|
v-hasPermi="['mes:dv-subject:export']">
|
|
<Icon icon="ep:download" class="mr-5px" /> 导出
|
|
</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
</ContentWrap>
|
|
|
|
<!-- 列表 -->
|
|
<ContentWrap>
|
|
<el-table
|
|
ref="tableRef" v-loading="loading" :data="list" :stripe="true" :show-overflow-tooltip="true" row-key="id"
|
|
@selection-change="handleSelectionChange">
|
|
<el-table-column type="selection" width="55" fixed="left" reserve-selection />
|
|
<el-table-column label="序号" align="center" width="80" fixed="left">
|
|
<template #default="scope">
|
|
{{ (queryParams.pageNo - 1) * queryParams.pageSize + scope.$index + 1 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="编码" align="center" prop="subjectCode" />
|
|
<el-table-column label="名称" align="center" prop="subjectName" />
|
|
<el-table-column label="检验方式" align="center" prop="inspectionMethod" width="120px">
|
|
<template #default="scope">
|
|
<el-tag
|
|
effect="light" :type="getTagType('Inspection_method', scope.row.inspectionMethod)"
|
|
:color="getTagColor('Inspection_method', scope.row.inspectionMethod)"
|
|
:style="getTagStyle('Inspection_method', scope.row.inspectionMethod)" disable-transitions>
|
|
{{ getTagLabel('Inspection_method', scope.row.inspectionMethod) }}
|
|
</el-tag>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="值类型" align="center" prop="valueType" width="120px">
|
|
<template #default="scope">
|
|
<el-tag
|
|
effect="light" :type="getTagType('value_types', scope.row.valueType)"
|
|
:color="getTagColor('value_types', scope.row.valueType)"
|
|
:style="getTagStyle('value_types', scope.row.valueType)" disable-transitions>
|
|
{{ getTagLabel('value_types', scope.row.valueType) }}
|
|
</el-tag>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="判定基准" align="center" prop="judgmentCriteria" />
|
|
<el-table-column label="创建人" align="center" prop="creatorName" />
|
|
<el-table-column label="创建时间" align="center" prop="createTime" :formatter="dateFormatter" width="180px" />
|
|
<el-table-column label="操作" align="center" fixed="right" width="160px">
|
|
<template #default="scope">
|
|
<el-button
|
|
link type="primary" @click="openForm('update', scope.row.id)"
|
|
v-hasPermi="['mes:dv-subject:update']">
|
|
编辑
|
|
</el-button>
|
|
<el-button link type="danger" @click="handleDelete(scope.row.id)" v-hasPermi="['mes:dv-subject:delete']">
|
|
删除
|
|
</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
<!-- 分页 -->
|
|
<Pagination
|
|
:total="total" v-model:page="queryParams.pageNo" v-model:limit="queryParams.pageSize"
|
|
@pagination="getList" />
|
|
</ContentWrap>
|
|
|
|
<!-- 表单弹窗:添加/修改 -->
|
|
<InspectionItemsForm ref="formRef" @success="getList" />
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { getStrDictOptions } from '@/utils/dict'
|
|
import { dateFormatter } from '@/utils/formatTime'
|
|
import download from '@/utils/download'
|
|
import { DvSubjectApi, DvSubjectVO } from '@/api/mold/inspectionItems'
|
|
import InspectionItemsForm from './InspectionItemsForm.vue'
|
|
import { isHexColor } from '@/utils/color'
|
|
import { useDictStoreWithOut } from '@/store/modules/dict'
|
|
|
|
/** 维保项目 列表 */
|
|
defineOptions({ name: 'MoldInspectionItems' })
|
|
|
|
const message = useMessage() // 消息弹窗
|
|
const { t } = useI18n() // 国际化
|
|
|
|
const dictStore = useDictStoreWithOut()
|
|
const dictReady = ref(false)
|
|
|
|
const loading = ref(true) // 列表的加载中
|
|
const list = ref<DvSubjectVO[]>([]) // 列表的数据
|
|
const total = ref(0) // 列表的总页数
|
|
const tableRef = ref()
|
|
const selectedIds = ref<number[]>([])
|
|
|
|
const handleSelectionChange = (rows: any[]) => {
|
|
selectedIds.value = rows?.map((row) => row.id).filter((id) => id !== undefined) ?? []
|
|
}
|
|
|
|
const buildIdsParam = (ids: number | number[]) => {
|
|
return Array.isArray(ids) ? ids.join(',') : String(ids)
|
|
}
|
|
const queryParams = reactive({
|
|
pageNo: 1,
|
|
pageSize: 10,
|
|
subjectCode: undefined,
|
|
subjectName: undefined,
|
|
judgmentCriteria: undefined,
|
|
})
|
|
const queryFormRef = ref() // 搜索的表单
|
|
const exportLoading = ref(false) // 导出的加载中
|
|
|
|
const getTagDict = (dictType: string, value: any) => {
|
|
if (!dictReady.value) return undefined
|
|
const v = value === '' || value === null || value === undefined ? undefined : String(value)
|
|
if (!v) return undefined
|
|
return getStrDictOptions(dictType).find((d) => d.value === v)
|
|
}
|
|
|
|
const getTagLabel = (dictType: string, value: any) => {
|
|
const found = getTagDict(dictType, value)
|
|
return found?.label ?? (value ?? '')
|
|
}
|
|
|
|
const getTagType = (dictType: string, value: any) => {
|
|
const found = getTagDict(dictType, value)
|
|
const type = found?.colorType
|
|
if (type + '' === 'primary' || type + '' === 'default') return '' as any
|
|
return (type ?? '') as any
|
|
}
|
|
|
|
const getTagColor = (dictType: string, value: any) => {
|
|
const found = getTagDict(dictType, value)
|
|
if (found?.cssClass && isHexColor(found.cssClass)) return found.cssClass
|
|
return ''
|
|
}
|
|
|
|
const getTagStyle = (dictType: string, value: any) => {
|
|
const color = getTagColor(dictType, value)
|
|
if (!color) return ''
|
|
return 'color: #fff'
|
|
}
|
|
|
|
/** 查询列表 */
|
|
const getList = async () => {
|
|
loading.value = true
|
|
try {
|
|
const data = await DvSubjectApi.getDvSubjectPage(queryParams)
|
|
list.value = data.list
|
|
total.value = data.total
|
|
} finally {
|
|
loading.value = false
|
|
}
|
|
}
|
|
|
|
/** 搜索按钮操作 */
|
|
const handleQuery = () => {
|
|
queryParams.pageNo = 1
|
|
getList()
|
|
}
|
|
|
|
/** 重置按钮操作 */
|
|
const resetQuery = () => {
|
|
queryFormRef.value.resetFields()
|
|
handleQuery()
|
|
}
|
|
|
|
/** 添加/修改操作 */
|
|
const formRef = ref()
|
|
const openForm = (type: string, id?: number) => {
|
|
formRef.value.open(type, id)
|
|
}
|
|
|
|
/** 删除按钮操作 */
|
|
const handleDelete = async (ids: number | number[]) => {
|
|
try {
|
|
// 删除的二次确认
|
|
await message.delConfirm()
|
|
// 发起删除
|
|
const idsParam = buildIdsParam(ids)
|
|
await DvSubjectApi.deleteDvSubject(idsParam)
|
|
message.success(t('common.delSuccess'))
|
|
selectedIds.value = []
|
|
tableRef.value?.clearSelection?.()
|
|
// 刷新列表
|
|
await getList()
|
|
} catch { }
|
|
}
|
|
|
|
const handleBatchDelete = async () => {
|
|
if (!selectedIds.value.length) {
|
|
message.error('请选择需要删除的数据')
|
|
return
|
|
}
|
|
await handleDelete(selectedIds.value)
|
|
}
|
|
|
|
/** 导出按钮操作 */
|
|
const handleExport = async () => {
|
|
try {
|
|
await message.exportConfirm()
|
|
exportLoading.value = true
|
|
const params: any = {
|
|
...queryParams,
|
|
ids: selectedIds.value.length ? selectedIds.value.join(',') : undefined,
|
|
}
|
|
const data = await DvSubjectApi.exportDvSubject(params)
|
|
download.excel(data, '维保项目.xls')
|
|
} catch {
|
|
} finally {
|
|
exportLoading.value = false
|
|
}
|
|
}
|
|
|
|
/** 初始化 **/
|
|
onMounted(async () => {
|
|
await dictStore.setDictMap()
|
|
dictReady.value = true
|
|
getList()
|
|
})
|
|
</script>
|