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.
299 lines
10 KiB
Vue
299 lines
10 KiB
Vue
<template>
|
|
<ContentWrap>
|
|
<!-- 搜索工作栏 -->
|
|
<el-form class="-mb-15px" :model="queryParams" ref="queryFormRef" :inline="true" label-width="68px">
|
|
<el-form-item :label="t('QualityManagement.ZjSchema.name')" prop="name">
|
|
<el-input
|
|
v-model="queryParams.name"
|
|
:placeholder="t('QualityManagement.ZjSchema.placeholderName')"
|
|
clearable
|
|
@keyup.enter="handleQuery"
|
|
class="!w-240px"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item :label="t('QualityManagement.ZjSchema.type')" prop="type">
|
|
<el-select
|
|
v-model="queryParams.type"
|
|
:placeholder="t('QualityManagement.ZjSchema.placeholderType')"
|
|
clearable
|
|
class="!w-240px"
|
|
>
|
|
<el-option
|
|
v-for="dict in getDictOptions('mes_zj_schema_type')" :key="dict.value" :label="dict.label"
|
|
:value="dict.value" />
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item :label="t('QualityManagement.ZjSchema.sampleMethod')" prop="sampleMethod">
|
|
<el-select
|
|
v-model="queryParams.sampleMethod"
|
|
:placeholder="t('QualityManagement.ZjSchema.placeholderSampleMethod')"
|
|
clearable
|
|
class="!w-240px"
|
|
>
|
|
<el-option
|
|
v-for="dict in getDictOptions('mes_zj_schema_sample_method')" :key="dict.value" :label="dict.label"
|
|
:value="dict.value" />
|
|
</el-select>
|
|
</el-form-item>
|
|
<!-- <el-form-item :label="t('QualityManagement.ZjSchema.val')" prop="val">
|
|
<el-input
|
|
v-model="queryParams.val"
|
|
:placeholder="t('QualityManagement.ZjSchema.placeholderVal')"
|
|
clearable
|
|
@keyup.enter="handleQuery"
|
|
class="!w-240px"
|
|
/>
|
|
</el-form-item> -->
|
|
<el-form-item :label="t('QualityManagement.ZjSchema.remark')" prop="remark">
|
|
<el-input
|
|
v-model="queryParams.remark"
|
|
:placeholder="t('QualityManagement.ZjSchema.placeholderRemark')"
|
|
clearable
|
|
@keyup.enter="handleQuery"
|
|
class="!w-240px"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item :label="t('QualityManagement.ZjSchema.item')" prop="item">
|
|
<el-input
|
|
v-model="queryParams.item"
|
|
:placeholder="t('QualityManagement.ZjSchema.placeholderItem')"
|
|
clearable
|
|
@keyup.enter="handleQuery"
|
|
class="!w-240px"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item :label="t('QualityManagement.ZjSchema.createTime')" prop="createTime">
|
|
<el-date-picker
|
|
v-model="queryParams.createTime"
|
|
value-format="YYYY-MM-DD HH:mm:ss"
|
|
type="daterange"
|
|
:start-placeholder="t('QualityManagement.ZjSchema.placeholderCreateTimeStart')"
|
|
:end-placeholder="t('QualityManagement.ZjSchema.placeholderCreateTimeEnd')"
|
|
:default-time="[new Date('1 00:00:00'), new Date('1 23:59:59')]"
|
|
class="!w-220px"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-button @click="handleQuery">
|
|
<Icon icon="ep:search" class="mr-5px" /> {{ t('common.query') }}
|
|
</el-button>
|
|
<el-button @click="resetQuery">
|
|
<Icon icon="ep:refresh" class="mr-5px" /> {{ t('common.reset') }}
|
|
</el-button>
|
|
<el-button type="primary" plain @click="openForm('create')" v-hasPermi="['mes:zj-schema:create']">
|
|
<Icon icon="ep:plus" class="mr-5px" /> {{ t('action.create') }}
|
|
</el-button>
|
|
<el-button
|
|
type="success" plain @click="handleExport" :loading="exportLoading"
|
|
v-hasPermi="['mes:zj-schema:export']">
|
|
<Icon icon="ep:download" class="mr-5px" /> {{ t('action.export') }}
|
|
</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
</ContentWrap>
|
|
|
|
<!-- 列表 -->
|
|
<ContentWrap>
|
|
<el-table
|
|
v-loading="loading"
|
|
:data="list"
|
|
:show-overflow-tooltip="true"
|
|
row-key="id"
|
|
@expand-change="handleExpandChange"
|
|
@selection-change="handleSelectionChange"
|
|
>
|
|
<!-- <el-table-column type="selection" width="55" fixed="left" reserve-selection /> -->
|
|
<el-table-column type="expand">
|
|
<template #default="scope">
|
|
<el-table
|
|
v-loading="scope.row._itemLoading"
|
|
:data="scope.row._items || []"
|
|
size="small"
|
|
:show-overflow-tooltip="true"
|
|
>
|
|
<el-table-column :label="t('QualityManagement.ZjItem.name')" prop="name" align="center" />
|
|
<el-table-column :label="t('QualityManagement.ZjItem.tool')" prop="tool" align="center" />
|
|
<el-table-column :label="t('QualityManagement.ZjItem.standardVal')" prop="standardVal" align="center" />
|
|
<el-table-column :label="t('QualityManagement.ZjItem.unit')" prop="unitName" align="center" />
|
|
<el-table-column :label="t('QualityManagement.ZjItem.upperVal')" prop="upperVal" align="center" />
|
|
<el-table-column :label="t('QualityManagement.ZjItem.lowerVal')" prop="lowerVal" align="center" />
|
|
<el-table-column :label="t('QualityManagement.ZjItem.remark')" prop="remark" align="center" />
|
|
</el-table>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column :label="t('QualityManagement.ZjSchema.name')" align="center" prop="name" />
|
|
<el-table-column :label="t('QualityManagement.ZjSchema.type')" align="center" prop="type">
|
|
<template #default="scope">
|
|
<dict-tag type="mes_zj_schema_type" :value="scope.row.type" />
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column :label="t('QualityManagement.ZjSchema.sampleMethod')" align="center" prop="sampleMethod">
|
|
<template #default="scope">
|
|
<dict-tag type="mes_zj_schema_sample_method" :value="scope.row.sampleMethod" />
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column :label="t('QualityManagement.ZjSchema.val')" align="center" prop="val">
|
|
<template #default="scope">
|
|
{{ formatValDisplay(scope.row.val) }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column :label="t('QualityManagement.ZjSchema.remark')" align="center" prop="remark" />
|
|
<el-table-column
|
|
:label="t('QualityManagement.ZjSchema.createTime')"
|
|
align="center"
|
|
prop="createTime"
|
|
:formatter="dateFormatter"
|
|
width="180px"
|
|
/>
|
|
<el-table-column :label="t('QualityManagement.ZjSchema.operate')" align="center" min-width="120px">
|
|
<template #default="scope">
|
|
<el-button
|
|
link type="primary" @click="openForm('update', scope.row.id)"
|
|
v-hasPermi="['mes:zj-schema:update']">
|
|
{{ t('action.update') }}
|
|
</el-button>
|
|
<el-button link type="danger" @click="handleDelete(scope.row.id)" v-hasPermi="['mes:zj-schema:delete']">
|
|
{{ t('action.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>
|
|
|
|
<!-- 表单弹窗:添加/修改 -->
|
|
<ZjSchemaForm ref="formRef" @success="getList" />
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { DictTag } from '@/components/DictTag'
|
|
import { getDictOptions } from '@/utils/dict'
|
|
import { dateFormatter } from '@/utils/formatTime'
|
|
import download from '@/utils/download'
|
|
import { ZjSchemaApi, ZjSchemaVO } from '@/api/mes/zjschema'
|
|
import ZjSchemaForm from './ZjSchemaForm.vue'
|
|
|
|
/** 检验方案 列表 */
|
|
defineOptions({ name: 'ZjSchema' })
|
|
|
|
const message = useMessage() // 消息弹窗
|
|
const { t } = useI18n() // 国际化
|
|
|
|
const loading = ref(true) // 列表的加载中
|
|
const list = ref<ZjSchemaVO[]>([]) // 列表的数据
|
|
const total = ref(0) // 列表的总页数
|
|
const queryParams = reactive({
|
|
pageNo: 1,
|
|
pageSize: 10,
|
|
type: undefined,
|
|
name: undefined,
|
|
remark: undefined,
|
|
sampleMethod: undefined,
|
|
val: undefined,
|
|
item: undefined,
|
|
createTime: [],
|
|
})
|
|
const queryFormRef = ref() // 搜索的表单
|
|
const exportLoading = ref(false) // 导出的加载中
|
|
const selectedIds = ref<number[]>([])
|
|
|
|
const formatValDisplay = (val: any) => {
|
|
if (val === undefined || val === null || val === '') return ''
|
|
const str = String(val)
|
|
if (str.includes(',')) {
|
|
const [interval, take] = str.split(',')
|
|
const i = interval?.trim()
|
|
const t = take?.trim()
|
|
if (i && t) return `每间隔${i}抽取${t}`
|
|
return str
|
|
}
|
|
return `${str}%`
|
|
}
|
|
|
|
/** 查询列表 */
|
|
const getList = async () => {
|
|
loading.value = true
|
|
try {
|
|
const data = await ZjSchemaApi.getZjSchemaPage(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 (id: number) => {
|
|
try {
|
|
// 删除的二次确认
|
|
await message.delConfirm()
|
|
// 发起删除
|
|
await ZjSchemaApi.deleteZjSchema(id)
|
|
message.success(t('common.delSuccess'))
|
|
// 刷新列表
|
|
await getList()
|
|
} catch { }
|
|
}
|
|
|
|
const handleSelectionChange = (rows: any[]) => {
|
|
selectedIds.value = rows?.map((row) => row.id).filter((id) => id !== undefined) ?? []
|
|
}
|
|
|
|
/** 导出按钮操作 */
|
|
const handleExport = async () => {
|
|
try {
|
|
// 导出的二次确认
|
|
await message.exportConfirm()
|
|
// 发起导出
|
|
exportLoading.value = true
|
|
const params = {
|
|
...queryParams,
|
|
ids: selectedIds.value.length ? selectedIds.value.join(',') : undefined,
|
|
}
|
|
const data = await ZjSchemaApi.exportZjSchema(params)
|
|
download.excel(data, t('QualityManagement.ZjSchema.exportFilename'))
|
|
} catch {
|
|
} finally {
|
|
exportLoading.value = false
|
|
}
|
|
}
|
|
|
|
const handleExpandChange = async (row: any) => {
|
|
if (!row || !row.id) return
|
|
if (row._items && Array.isArray(row._items)) return
|
|
row._itemLoading = true
|
|
try {
|
|
const data = await ZjSchemaApi.getItemList(row.id)
|
|
row._items = data || []
|
|
} finally {
|
|
row._itemLoading = false
|
|
}
|
|
}
|
|
|
|
/** 初始化 **/
|
|
onMounted(() => {
|
|
getList()
|
|
})
|
|
</script>
|