|
|
|
|
@ -8,32 +8,30 @@
|
|
|
|
|
:inline="true"
|
|
|
|
|
label-width="68px"
|
|
|
|
|
>
|
|
|
|
|
<el-form-item label="项目名称" prop="subjectName">
|
|
|
|
|
<el-form-item label="编码" prop="subjectCode">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="queryParams.subjectName"
|
|
|
|
|
placeholder="请输入项目名称"
|
|
|
|
|
v-model="queryParams.subjectCode"
|
|
|
|
|
placeholder="请输入编码"
|
|
|
|
|
clearable
|
|
|
|
|
@keyup.enter="handleQuery"
|
|
|
|
|
class="!w-240px"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="项目类型" prop="subjectType">
|
|
|
|
|
<el-form-item label="名称" prop="subjectName">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="queryParams.subjectType"
|
|
|
|
|
placeholder="请输入项目类型"
|
|
|
|
|
v-model="queryParams.subjectName"
|
|
|
|
|
placeholder="请输入名称"
|
|
|
|
|
clearable
|
|
|
|
|
@keyup.enter="handleQuery"
|
|
|
|
|
class="!w-240px"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="创建时间" prop="createTime">
|
|
|
|
|
<el-date-picker
|
|
|
|
|
v-model="queryParams.createTime"
|
|
|
|
|
value-format="YYYY-MM-DD HH:mm:ss"
|
|
|
|
|
type="daterange"
|
|
|
|
|
start-placeholder="开始日期"
|
|
|
|
|
end-placeholder="结束日期"
|
|
|
|
|
:default-time="[new Date('1 00:00:00'), new Date('1 23:59:59')]"
|
|
|
|
|
<el-form-item label="判定基准" prop="judgmentCriteria">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="queryParams.judgmentCriteria"
|
|
|
|
|
placeholder="请输入判定基准"
|
|
|
|
|
clearable
|
|
|
|
|
@keyup.enter="handleQuery"
|
|
|
|
|
class="!w-240px"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
@ -48,6 +46,9 @@
|
|
|
|
|
>
|
|
|
|
|
<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
|
|
|
|
|
@ -63,25 +64,53 @@
|
|
|
|
|
|
|
|
|
|
<!-- 列表 -->
|
|
|
|
|
<ContentWrap>
|
|
|
|
|
<el-table v-loading="loading" :data="list" :stripe="true" :show-overflow-tooltip="true">
|
|
|
|
|
<el-table-column label="项目编码" align="center" prop="subjectCode" />
|
|
|
|
|
<el-table-column label="项目名称" align="center" prop="subjectName" />
|
|
|
|
|
<el-table-column label="项目类型" align="center" prop="subjectType" />
|
|
|
|
|
<el-table-column label="项目内容" align="center" prop="subjectContent" />
|
|
|
|
|
<el-table-column label="标准" align="center" prop="subjectStandard" />
|
|
|
|
|
<el-table-column label="是否启用" align="center" prop="isEnable">
|
|
|
|
|
<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">
|
|
|
|
|
<dict-tag :type="DICT_TYPE.INFRA_BOOLEAN_STRING" :value="scope.row.isEnable" />
|
|
|
|
|
{{ (queryParams.pageNo - 1) * queryParams.pageSize + scope.$index + 1 }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="创建时间"
|
|
|
|
|
align="center"
|
|
|
|
|
prop="createTime"
|
|
|
|
|
:formatter="dateFormatter"
|
|
|
|
|
width="180px"
|
|
|
|
|
/>
|
|
|
|
|
<el-table-column label="操作" align="center">
|
|
|
|
|
<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="creator" />
|
|
|
|
|
<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
|
|
|
|
|
@ -116,11 +145,13 @@
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
|
import { getBoolDictOptions, DICT_TYPE } from '@/utils/dict'
|
|
|
|
|
import { getStrDictOptions } from '@/utils/dict'
|
|
|
|
|
import { dateFormatter } from '@/utils/formatTime'
|
|
|
|
|
import download from '@/utils/download'
|
|
|
|
|
import { DvSubjectApi, DvSubjectVO } from '@/api/mes/dvsubject'
|
|
|
|
|
import DvSubjectForm from './DvSubjectForm.vue'
|
|
|
|
|
import { isHexColor } from '@/utils/color'
|
|
|
|
|
import { useDictStoreWithOut } from '@/store/modules/dict'
|
|
|
|
|
|
|
|
|
|
/** 维保项目 列表 */
|
|
|
|
|
defineOptions({ name: 'DvSubject' })
|
|
|
|
|
@ -128,23 +159,63 @@ defineOptions({ name: 'DvSubject' })
|
|
|
|
|
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,
|
|
|
|
|
subjectType: undefined,
|
|
|
|
|
subjectContent: undefined,
|
|
|
|
|
subjectStandard: undefined,
|
|
|
|
|
isEnable: undefined,
|
|
|
|
|
createTime: [],
|
|
|
|
|
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
|
|
|
|
|
@ -176,26 +247,41 @@ const openForm = (type: string, id?: number) => {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 删除按钮操作 */
|
|
|
|
|
const handleDelete = async (id: number) => {
|
|
|
|
|
const handleDelete = async (ids: number | number[]) => {
|
|
|
|
|
try {
|
|
|
|
|
// 删除的二次确认
|
|
|
|
|
await message.delConfirm()
|
|
|
|
|
// 发起删除
|
|
|
|
|
await DvSubjectApi.deleteDvSubject(id)
|
|
|
|
|
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 () => {
|
|
|
|
|
if (!selectedIds.value.length) {
|
|
|
|
|
message.error('请选择需要导出的数据')
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
try {
|
|
|
|
|
// 导出的二次确认
|
|
|
|
|
await message.exportConfirm()
|
|
|
|
|
// 发起导出
|
|
|
|
|
exportLoading.value = true
|
|
|
|
|
const data = await DvSubjectApi.exportDvSubject(queryParams)
|
|
|
|
|
const data = await DvSubjectApi.exportDvSubject({ ids: selectedIds.value.join(',') })
|
|
|
|
|
download.excel(data, '维保项目.xls')
|
|
|
|
|
} catch {
|
|
|
|
|
} finally {
|
|
|
|
|
@ -204,7 +290,9 @@ const handleExport = async () => {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 初始化 **/
|
|
|
|
|
onMounted(() => {
|
|
|
|
|
onMounted(async () => {
|
|
|
|
|
await dictStore.setDictMap()
|
|
|
|
|
dictReady.value = true
|
|
|
|
|
getList()
|
|
|
|
|
})
|
|
|
|
|
</script>
|
|
|
|
|
|