songguoqiang
1 year ago
15 changed files with 947 additions and 28 deletions
@ -0,0 +1,63 @@ |
|||||
|
import request from '@/config/axios' |
||||
|
|
||||
|
export interface RecordsDetailsVO { |
||||
|
id: number |
||||
|
templateItemId: number |
||||
|
templateId: number |
||||
|
detectValue: number |
||||
|
result: string |
||||
|
saveStatus: string |
||||
|
remark: string |
||||
|
version: string |
||||
|
contents?:string |
||||
|
methods?:string |
||||
|
upLimit?:string |
||||
|
downLimit?:string |
||||
|
|
||||
|
} |
||||
|
|
||||
|
// 查询检测记录详细列表
|
||||
|
export const getRecordsDetailsPage = async (params) => { |
||||
|
if (params.isSearch) { |
||||
|
delete params.isSearch |
||||
|
const data = {...params} |
||||
|
return await request.post({ url: '/detection/recordsdetails/senior', data }) |
||||
|
} else { |
||||
|
return await request.get({ url: `/detection/recordsdetails/page`, params }) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 查询检测记录详细详情
|
||||
|
export const getRecordsDetails = async (id: number) => { |
||||
|
return await request.get({ url: `/detection/recordsdetails/get?id=` + id }) |
||||
|
} |
||||
|
|
||||
|
// 新增检测记录详细
|
||||
|
export const createRecordsDetails = async (data: RecordsDetailsVO) => { |
||||
|
return await request.post({ url: `/detection/recordsdetails/create`, data }) |
||||
|
} |
||||
|
|
||||
|
// 修改检测记录详细
|
||||
|
export const updateRecordsDetails = async (data: RecordsDetailsVO) => { |
||||
|
return await request.put({ url: `/detection/recordsdetails/update`, data }) |
||||
|
} |
||||
|
|
||||
|
// 删除检测记录详细
|
||||
|
export const deleteRecordsDetails = async (id: number) => { |
||||
|
return await request.delete({ url: `/detection/recordsdetails/delete?id=` + id }) |
||||
|
} |
||||
|
|
||||
|
// 删除检测记录详细
|
||||
|
export const batchDeleteRecordDetails = async (ids: Array<number>) => { |
||||
|
return await request.delete({ url: `/detection/recordsdetails/batchDelete?ids=` + ids}) |
||||
|
} |
||||
|
|
||||
|
// 导出检测记录详细 Excel
|
||||
|
export const exportRecordsDetails = async (params) => { |
||||
|
return await request.download({ url: `/detection/recordsdetails/export-excel`, params }) |
||||
|
} |
||||
|
|
||||
|
// 下载导入模板
|
||||
|
export const importTemplate = () => { |
||||
|
return request.download({ url: '/detection/recordsdetails/get-import-template' }) |
||||
|
} |
@ -0,0 +1,305 @@ |
|||||
|
<template> |
||||
|
<div> |
||||
|
<el-drawer v-model="isShowDrawer" title="检测记录明细" direction="rtl" size="80%" v-loading="detailLoading"> |
||||
|
<ContentWrap> |
||||
|
<!-- 搜索工作栏 --> |
||||
|
<Search :schema="RecordsDetails.allSchemas.searchSchema" @search="setSearchParams" @reset="setSearchParams" /> |
||||
|
</ContentWrap> |
||||
|
|
||||
|
<!-- 列表头部 --> |
||||
|
<TableHead |
||||
|
:HeadButttondata="HeadButttondata" |
||||
|
@button-base-click="buttonBaseClick" |
||||
|
:routeName="routeName" |
||||
|
@updataTableColumns="updataTableColumns" |
||||
|
@searchFormClick="searchFormClick" |
||||
|
:allSchemas="RecordsDetails.allSchemas" |
||||
|
/> |
||||
|
|
||||
|
<!-- 列表 --> |
||||
|
<ContentWrap> |
||||
|
<Table |
||||
|
ref="tableid" |
||||
|
:columns="tableColumns" |
||||
|
:data="tableObject.tableList" |
||||
|
:loading="tableObject.loading" |
||||
|
:selection="true" |
||||
|
:pagination="{ |
||||
|
total: tableObject.total |
||||
|
}" |
||||
|
v-model:pageSize="tableObject.pageSize" |
||||
|
v-model:currentPage="tableObject.currentPage" |
||||
|
v-model:sort="tableObject.sort" |
||||
|
> |
||||
|
<template #code="{row}"> |
||||
|
<el-button type="primary" link @click="openDetail(row, '代码', row.code)"> |
||||
|
<span>{{ row.code }}</span> |
||||
|
</el-button> |
||||
|
</template> |
||||
|
<template #action="{ row }"> |
||||
|
<ButtonBase :Butttondata="butttondata" @button-base-click="buttonTableClick($event,row)" /> |
||||
|
</template> |
||||
|
</Table> |
||||
|
</ContentWrap> |
||||
|
</el-drawer> |
||||
|
</div> |
||||
|
</template> |
||||
|
|
||||
|
<script lang="ts" setup> |
||||
|
defineOptions({ name: 'RecordDetails' }) |
||||
|
import download from '@/utils/download' |
||||
|
import { RecordsDetails,RecordsDetailsRules } from '@/views/detection/recordsDetails/recordsDetails.data' |
||||
|
import * as RecordDetailsApi from '@/api/detection/recordsDetails/index' |
||||
|
import * as defaultButtons from '@/utils/disposition/defaultButtons' |
||||
|
import * as ContentAPI from '@/api/spc/templateItemDetails' |
||||
|
const message = useMessage() // 消息弹窗 |
||||
|
const { t } = useI18n() // 国际化 |
||||
|
const route = useRoute() // 路由信息 |
||||
|
const routeName = ref() |
||||
|
const isShowDrawer = ref(false) |
||||
|
const decRecId = ref("") |
||||
|
// routeName.value = route.name |
||||
|
// routeName.value = routeName.value.substring(0,routeName.value.length - 4) + 'Detail' |
||||
|
const props = defineProps({ |
||||
|
// 标签参数 |
||||
|
tabs: { |
||||
|
type: Object, |
||||
|
required: true, |
||||
|
default: null |
||||
|
}, |
||||
|
// 是否是基础数据 展现详情顶部表单 |
||||
|
isBasic: { |
||||
|
type: Boolean, |
||||
|
required: false, |
||||
|
default: false |
||||
|
}, |
||||
|
// 表单,列表 相关信息 |
||||
|
allSchemas: { |
||||
|
type: Object, |
||||
|
required: true, |
||||
|
default: null |
||||
|
}, |
||||
|
|
||||
|
// 回显字段 |
||||
|
Echo: { |
||||
|
type: Array, |
||||
|
required: false, |
||||
|
default: null |
||||
|
}, |
||||
|
}) |
||||
|
|
||||
|
|
||||
|
const openDetail = async (row: any, titleName: any, titleValue: any, tableName: any) => { |
||||
|
if(row){ |
||||
|
isShowDrawer.value = true |
||||
|
decRecId.value = row.id; |
||||
|
ContentAPI.acceptParam({templateId:row.id}); |
||||
|
let param = { |
||||
|
decRecId:decRecId.value |
||||
|
} |
||||
|
setSearchParams(param); |
||||
|
} |
||||
|
|
||||
|
} |
||||
|
defineExpose({ openDetail }) // 提供 open 方法,用于打开弹窗 |
||||
|
const formsSuccess = async (formType,data) => { |
||||
|
data.templateId = decRecId.value; |
||||
|
if(data.type=='NUMBER'&& data.upLimit<data.downLimit){ |
||||
|
message.error('数值型上限值要大于下限') |
||||
|
return; |
||||
|
} |
||||
|
if(data.activeTime==0)data.activeTime = null; |
||||
|
if(data.expireTime==0)data.expireTime = null; |
||||
|
if (formType === 'create') { |
||||
|
await RecordDetailsApi.createRecordsDetails(data) |
||||
|
message.success(t('common.createSuccess')) |
||||
|
} else { |
||||
|
await RecordDetailsApi.updateRecordsDetails(data) |
||||
|
message.success(t('common.updateSuccess')) |
||||
|
} |
||||
|
basicFormRef.value.dialogVisible = false |
||||
|
getList() |
||||
|
} |
||||
|
//主表所需的参数 |
||||
|
const masterParmas=ref({ |
||||
|
masterId:'',//主表id |
||||
|
number: '',//主表单据号 |
||||
|
status: '',//主表状态 用于控制子表新增编辑按钮显示情况 |
||||
|
}) |
||||
|
routeName.value = route.name |
||||
|
const tableColumns = ref(RecordsDetails.allSchemas.tableColumns) |
||||
|
|
||||
|
// 字段设置 更新主列表字段 |
||||
|
const updataTableColumns = (val) => { |
||||
|
tableColumns.value = val |
||||
|
} |
||||
|
|
||||
|
// 查询列表页面参数设置 |
||||
|
const searchTableParams = ref([ |
||||
|
//{ |
||||
|
// formField: 'productItemCode', |
||||
|
// searchTableTitle: '物料信息', |
||||
|
// searchTableAllSchemas: Itembasic.allSchemas, |
||||
|
// searchTablePage: ItembasicApi.getItembasicPage |
||||
|
//} |
||||
|
]) |
||||
|
|
||||
|
const { tableObject, tableMethods } = useTable({ |
||||
|
getListApi: RecordDetailsApi.getRecordsDetailsPage // 分页接口 |
||||
|
}) |
||||
|
|
||||
|
// 获得表格的各种操作 |
||||
|
const { getList, setSearchParams } = tableMethods |
||||
|
|
||||
|
// 列表头部按钮 |
||||
|
const HeadButttondata = [ |
||||
|
//defaultButtons.defaultAddBtn(null), // 新增 |
||||
|
// defaultButtons.defaultImportBtn({hasPermi:'wms:templateItemDetails:import'}), // 导入 |
||||
|
// defaultButtons.defaultExportBtn({hasPermi:'wms:templateItemDetails:export'}), // 导出 |
||||
|
defaultButtons.defaultBatchDeletionBtn(null), // 批量删除 |
||||
|
defaultButtons.defaultFreshBtn(null), // 刷新 |
||||
|
// defaultButtons.defaultFilterBtn(null), // 筛选 |
||||
|
defaultButtons.defaultSetBtn(null), // 设置 |
||||
|
// { |
||||
|
// label: '自定义扩展按钮', |
||||
|
// name: 'zdy', |
||||
|
// hide: false, |
||||
|
// type: 'primary', |
||||
|
// icon: 'Select', |
||||
|
// color: '' |
||||
|
// }, |
||||
|
] |
||||
|
const tableid=ref(); |
||||
|
// 头部按钮事件 |
||||
|
const buttonBaseClick = (val, item) => { |
||||
|
if (val == 'add') { // 新增 |
||||
|
openForm('create') |
||||
|
} else if (val == 'import') { // 导入 |
||||
|
handleImport() |
||||
|
} else if (val == 'export') { // 导出 |
||||
|
handleExport() |
||||
|
} else if (val == 'refresh') { // 刷新 |
||||
|
getList() |
||||
|
} else if (val == 'filtrate') { // 筛选 |
||||
|
} else if(val == 'batch'){//批量删除 |
||||
|
let params = []; |
||||
|
let ids = tableid.value.selections; |
||||
|
if(ids.length > 0){ |
||||
|
for(let i = 0; i < ids.length; i++){ |
||||
|
params[i] = ids[i].id; |
||||
|
} |
||||
|
console.info(params); |
||||
|
handleBatchDelete(params); |
||||
|
} |
||||
|
|
||||
|
|
||||
|
} else { // 其他按钮 |
||||
|
console.log('其他按钮', item) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 列表-操作按钮 |
||||
|
const butttondata = [ |
||||
|
//defaultButtons.mainListEditBtn(null), // 编辑 |
||||
|
defaultButtons.mainListDeleteBtn(null), // 删除 |
||||
|
] |
||||
|
|
||||
|
// 列表-操作按钮事件 |
||||
|
const buttonTableClick = async (val, row) => { |
||||
|
if (val == 'edit') { // 编辑 |
||||
|
openForm('update', row) |
||||
|
} else if (val == 'delete') { // 删除 |
||||
|
handleDelete(row.id) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
|
||||
|
/*批量删除操作*/ |
||||
|
const handleBatchDelete = async (ids:any) => { |
||||
|
try { |
||||
|
// 删除的二次确认 |
||||
|
await message.delConfirm() |
||||
|
// 发起删除 |
||||
|
await RecordDetailsApi.batchDeleteRecordDetails(ids) |
||||
|
message.success(t('common.delSuccess')) |
||||
|
// 刷新列表 |
||||
|
await getList() |
||||
|
} catch {} |
||||
|
} |
||||
|
|
||||
|
/** 添加/修改操作 */ |
||||
|
const basicFormRef = ref() |
||||
|
const openForm = (type: string, row?: any) => { |
||||
|
basicFormRef.value.open(type, row) |
||||
|
} |
||||
|
|
||||
|
// 查询页面返回 |
||||
|
const searchTableSuccess = (formField, searchField, val, formRef) => { |
||||
|
nextTick(() => { |
||||
|
const setV = {} |
||||
|
setV[formField] = val[0][searchField] |
||||
|
formRef.setValues(setV) |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
/** 删除按钮操作 */ |
||||
|
const handleDelete = async (id: number) => { |
||||
|
try { |
||||
|
// 删除的二次确认 |
||||
|
await message.delConfirm() |
||||
|
// 发起删除 |
||||
|
await RecordDetailsApi.deleteRecordsDetails(id) |
||||
|
message.success(t('common.delSuccess')) |
||||
|
// 刷新列表 |
||||
|
await getList() |
||||
|
} catch {} |
||||
|
} |
||||
|
|
||||
|
/** 导出按钮操作 */ |
||||
|
const exportLoading = ref(false) // 导出的加载中 |
||||
|
const handleExport = async () => { |
||||
|
try { |
||||
|
// 导出的二次确认 |
||||
|
await message.exportConfirm() |
||||
|
// 发起导出 |
||||
|
exportLoading.value = true |
||||
|
const data = await RecordDetailsApi.exportRecordsDetails(setSearchParams) |
||||
|
download.excel(data, '检测记录明细.xls') |
||||
|
} catch { |
||||
|
} finally { |
||||
|
exportLoading.value = false |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/** 导入 */ |
||||
|
const importFormRef = ref() |
||||
|
const handleImport = () => { |
||||
|
importFormRef.value.open() |
||||
|
} |
||||
|
// 导入附件弹窗所需的参数 |
||||
|
const importTemplateData = reactive({ |
||||
|
templateUrl: '', |
||||
|
templateTitle: '检测记录明细导入模版.xls' |
||||
|
}) |
||||
|
// 导入成功之后 |
||||
|
const importSuccess = () => { |
||||
|
getList() |
||||
|
} |
||||
|
|
||||
|
// 筛选提交 |
||||
|
const searchFormClick = (searchData) => { |
||||
|
tableObject.params = { |
||||
|
isSearch: true, |
||||
|
filters: searchData.filters |
||||
|
} |
||||
|
getList() // 刷新当前列表 |
||||
|
} |
||||
|
|
||||
|
/** 初始化 **/ |
||||
|
onMounted(async () => { |
||||
|
|
||||
|
// importTemplateData.templateUrl = await TemplateItemDetailsApi.importTemplate() |
||||
|
}) |
||||
|
|
||||
|
</script> |
||||
|
|
@ -0,0 +1,231 @@ |
|||||
|
<template> |
||||
|
<ContentWrap> |
||||
|
<!-- 搜索工作栏 --> |
||||
|
<Search :schema="RecordsDetails.allSchemas.searchSchema" @search="setSearchParams" @reset="setSearchParams" /> |
||||
|
</ContentWrap> |
||||
|
|
||||
|
<!-- 列表头部 --> |
||||
|
<TableHead |
||||
|
:HeadButttondata="HeadButttondata" |
||||
|
@button-base-click="buttonBaseClick" |
||||
|
:routeName="routeName" |
||||
|
@updataTableColumns="updataTableColumns" |
||||
|
@searchFormClick="searchFormClick" |
||||
|
:allSchemas="RecordsDetails.allSchemas" |
||||
|
/> |
||||
|
|
||||
|
<!-- 列表 --> |
||||
|
<ContentWrap> |
||||
|
<Table |
||||
|
:columns="tableColumns" |
||||
|
:data="tableObject.tableList" |
||||
|
:loading="tableObject.loading" |
||||
|
:pagination="{ |
||||
|
total: tableObject.total |
||||
|
}" |
||||
|
v-model:pageSize="tableObject.pageSize" |
||||
|
v-model:currentPage="tableObject.currentPage" |
||||
|
v-model:sort="tableObject.sort" |
||||
|
> |
||||
|
<template #code="{row}"> |
||||
|
<el-button type="primary" link @click="openDetail(row, '代码', row.code)"> |
||||
|
<span>{{ row.code }}</span> |
||||
|
</el-button> |
||||
|
</template> |
||||
|
<template #action="{ row }"> |
||||
|
<ButtonBase :Butttondata="butttondata" @button-base-click="buttonTableClick($event,row)" /> |
||||
|
</template> |
||||
|
</Table> |
||||
|
</ContentWrap> |
||||
|
|
||||
|
<!-- 表单弹窗:添加/修改 --> |
||||
|
<BasicForm |
||||
|
ref="basicFormRef" |
||||
|
@success="getList" |
||||
|
:rules="RecordsDetailsRules" |
||||
|
:formAllSchemas="RecordsDetails.allSchemas" |
||||
|
:searchTableParams="searchTableParams" |
||||
|
:apiUpdate="RecordsDetailsApi.updateRecordsDetails" |
||||
|
:apiCreate="RecordsDetailsApi.createRecordsDetails" |
||||
|
@searchTableSuccess="searchTableSuccess" |
||||
|
:isBusiness="false" |
||||
|
/> |
||||
|
|
||||
|
<!-- 详情 --> |
||||
|
<Detail ref="detailRef" :isBasic="true" :allSchemas="RecordsDetails.allSchemas" /> |
||||
|
|
||||
|
<!-- 导入 --> |
||||
|
<ImportForm ref="importFormRef" url="/detection/records-details/import" :importTemplateData="importTemplateData" @success="importSuccess" /> |
||||
|
</template> |
||||
|
|
||||
|
<script setup lang="ts"> |
||||
|
import download from '@/utils/download' |
||||
|
import { RecordsDetails,RecordsDetailsRules } from './recordsDetails.data' |
||||
|
import * as RecordsDetailsApi from '@/api/detection/recordsDetails' |
||||
|
import * as defaultButtons from '@/utils/disposition/defaultButtons' |
||||
|
import TableHead from '@/components/TableHead/src/TableHead.vue' |
||||
|
import ImportForm from '@/components/ImportForm/src/ImportForm.vue' |
||||
|
import Detail from '@/components/Detail/src/Detail.vue' |
||||
|
|
||||
|
defineOptions({ name: 'RecordsDetails' }) |
||||
|
|
||||
|
const message = useMessage() // 消息弹窗 |
||||
|
const { t } = useI18n() // 国际化 |
||||
|
|
||||
|
const route = useRoute() // 路由信息 |
||||
|
const routeName = ref() |
||||
|
routeName.value = route.name |
||||
|
const tableColumns = ref(RecordsDetails.allSchemas.tableColumns) |
||||
|
|
||||
|
// 字段设置 更新主列表字段 |
||||
|
const updataTableColumns = (val) => { |
||||
|
tableColumns.value = val |
||||
|
} |
||||
|
|
||||
|
// 查询列表页面参数设置 |
||||
|
const searchTableParams = ref([ |
||||
|
//{ |
||||
|
// formField: 'productItemCode', |
||||
|
// searchTableTitle: '物料信息', |
||||
|
// searchTableAllSchemas: Itembasic.allSchemas, |
||||
|
// searchTablePage: ItembasicApi.getItembasicPage |
||||
|
//} |
||||
|
]) |
||||
|
|
||||
|
const { tableObject, tableMethods } = useTable({ |
||||
|
getListApi: RecordsDetailsApi.getRecordsDetailsPage // 分页接口 |
||||
|
}) |
||||
|
|
||||
|
// 获得表格的各种操作 |
||||
|
const { getList, setSearchParams } = tableMethods |
||||
|
|
||||
|
// 列表头部按钮 |
||||
|
const HeadButttondata = [ |
||||
|
defaultButtons.defaultAddBtn({hasPermi:'wms:recordsDetails:create'}), // 新增 |
||||
|
defaultButtons.defaultImportBtn({hasPermi:'wms:recordsDetails:import'}), // 导入 |
||||
|
defaultButtons.defaultExportBtn({hasPermi:'wms:recordsDetails:export'}), // 导出 |
||||
|
defaultButtons.defaultFreshBtn(null), // 刷新 |
||||
|
defaultButtons.defaultFilterBtn(null), // 筛选 |
||||
|
defaultButtons.defaultSetBtn(null), // 设置 |
||||
|
// { |
||||
|
// label: '自定义扩展按钮', |
||||
|
// name: 'zdy', |
||||
|
// hide: false, |
||||
|
// type: 'primary', |
||||
|
// icon: 'Select', |
||||
|
// color: '' |
||||
|
// }, |
||||
|
] |
||||
|
|
||||
|
// 头部按钮事件 |
||||
|
const buttonBaseClick = (val, item) => { |
||||
|
if (val == 'add') { // 新增 |
||||
|
openForm('create') |
||||
|
} else if (val == 'import') { // 导入 |
||||
|
handleImport() |
||||
|
} else if (val == 'export') { // 导出 |
||||
|
handleExport() |
||||
|
} else if (val == 'refresh') { // 刷新 |
||||
|
getList() |
||||
|
} else if (val == 'filtrate') { // 筛选 |
||||
|
} else { // 其他按钮 |
||||
|
console.log('其他按钮', item) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 列表-操作按钮 |
||||
|
const butttondata = [ |
||||
|
defaultButtons.mainListEditBtn({hasPermi:'wms:recordsDetails:update'}), // 编辑 |
||||
|
defaultButtons.mainListDeleteBtn({hasPermi:'wms:recordsDetails:delete'}), // 删除 |
||||
|
] |
||||
|
|
||||
|
// 列表-操作按钮事件 |
||||
|
const buttonTableClick = async (val, row) => { |
||||
|
if (val == 'edit') { // 编辑 |
||||
|
openForm('update', row) |
||||
|
} else if (val == 'delete') { // 删除 |
||||
|
handleDelete(row.id) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/** 添加/修改操作 */ |
||||
|
const basicFormRef = ref() |
||||
|
const openForm = (type: string, row?: any) => { |
||||
|
basicFormRef.value.open(type, row) |
||||
|
} |
||||
|
|
||||
|
// 查询页面返回 |
||||
|
const searchTableSuccess = (formField, searchField, val, formRef) => { |
||||
|
nextTick(() => { |
||||
|
const setV = {} |
||||
|
setV[formField] = val[0][searchField] |
||||
|
formRef.setValues(setV) |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
/** 详情操作 */ |
||||
|
const detailRef = ref() |
||||
|
const openDetail = (row: any, titleName: any, titleValue: any) => { |
||||
|
detailRef.value.openDetail(row, titleName, titleValue, 'basicRecordsDetails') |
||||
|
} |
||||
|
|
||||
|
/** 删除按钮操作 */ |
||||
|
const handleDelete = async (id: number) => { |
||||
|
try { |
||||
|
// 删除的二次确认 |
||||
|
await message.delConfirm() |
||||
|
// 发起删除 |
||||
|
await RecordsDetailsApi.deleteRecordsDetails(id) |
||||
|
message.success(t('common.delSuccess')) |
||||
|
// 刷新列表 |
||||
|
await getList() |
||||
|
} catch {} |
||||
|
} |
||||
|
|
||||
|
/** 导出按钮操作 */ |
||||
|
const exportLoading = ref(false) // 导出的加载中 |
||||
|
const handleExport = async () => { |
||||
|
try { |
||||
|
// 导出的二次确认 |
||||
|
await message.exportConfirm() |
||||
|
// 发起导出 |
||||
|
exportLoading.value = true |
||||
|
const data = await RecordsDetailsApi.exportRecordsDetails(setSearchParams) |
||||
|
download.excel(data, '检测记录详细.xls') |
||||
|
} catch { |
||||
|
} finally { |
||||
|
exportLoading.value = false |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/** 导入 */ |
||||
|
const importFormRef = ref() |
||||
|
const handleImport = () => { |
||||
|
importFormRef.value.open() |
||||
|
} |
||||
|
// 导入附件弹窗所需的参数 |
||||
|
const importTemplateData = reactive({ |
||||
|
templateUrl: '', |
||||
|
templateTitle: '检测记录详细导入模版.xls' |
||||
|
}) |
||||
|
// 导入成功之后 |
||||
|
const importSuccess = () => { |
||||
|
getList() |
||||
|
} |
||||
|
|
||||
|
// 筛选提交 |
||||
|
const searchFormClick = (searchData) => { |
||||
|
tableObject.params = { |
||||
|
isSearch: true, |
||||
|
filters: searchData.filters |
||||
|
} |
||||
|
getList() // 刷新当前列表 |
||||
|
} |
||||
|
|
||||
|
/** 初始化 **/ |
||||
|
onMounted(async () => { |
||||
|
getList() |
||||
|
importTemplateData.templateUrl = await RecordsDetailsApi.importTemplate() |
||||
|
}) |
||||
|
|
||||
|
</script> |
@ -0,0 +1,130 @@ |
|||||
|
import type { CrudSchema } from '@/hooks/web/useCrudSchemas' |
||||
|
import { dateFormatter } from '@/utils/formatTime' |
||||
|
import * as ContentAPI from '@/api/spc/templateItemDetails' |
||||
|
|
||||
|
|
||||
|
// 表单校验
|
||||
|
export const RecordsDetailsRules = reactive({ |
||||
|
result: [required] |
||||
|
}) |
||||
|
// 表单校验
|
||||
|
const getlsit = await ContentAPI.getTemplateItemDetailsList({ |
||||
|
}); |
||||
|
|
||||
|
export const RecordsDetails = useCrudSchemas(reactive<CrudSchema[]>([ |
||||
|
{ |
||||
|
label: 'id', |
||||
|
field: 'id', |
||||
|
sort: 'custom', |
||||
|
isSearch: false, |
||||
|
isTable:false, |
||||
|
}, |
||||
|
{ |
||||
|
label: '检测项主键', |
||||
|
field: 'templateItemId', |
||||
|
sort: 'custom', |
||||
|
isSearch: false, |
||||
|
isTable:false, |
||||
|
form: { |
||||
|
component: 'InputNumber', |
||||
|
value: 0 |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '模版id', |
||||
|
field: 'templateId', |
||||
|
sort: 'custom', |
||||
|
isSearch: false, |
||||
|
isTable:false, |
||||
|
form: { |
||||
|
component: 'InputNumber', |
||||
|
value: 0 |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '检测内容', |
||||
|
field: 'contents', |
||||
|
isSearch: true, |
||||
|
isTable:true, |
||||
|
search: { |
||||
|
show: true, |
||||
|
component: 'Select', |
||||
|
api: () => getlsit(), |
||||
|
componentProps: { |
||||
|
filterable:true, |
||||
|
optionsAlias: { |
||||
|
labelField: 'contents', |
||||
|
valueField: 'contents' |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: '检测方法', |
||||
|
field: 'methods', |
||||
|
isSearch: false, |
||||
|
isTable:true, |
||||
|
}, |
||||
|
{ |
||||
|
label: '检测值', |
||||
|
field: 'detectValue', |
||||
|
isSearch: false, |
||||
|
isTable:true, |
||||
|
}, |
||||
|
{ |
||||
|
label: '检测结果', |
||||
|
field: 'result', |
||||
|
isSearch: false, |
||||
|
isTable:true, |
||||
|
}, |
||||
|
{ |
||||
|
label: '保存状态0保存1草稿', |
||||
|
field: 'saveStatus', |
||||
|
sort: 'custom', |
||||
|
isSearch: false, |
||||
|
isTable:false, |
||||
|
form: { |
||||
|
component: 'Radio' |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '备注', |
||||
|
field: 'remark', |
||||
|
sort: 'custom', |
||||
|
isSearch: false, |
||||
|
isTable:false, |
||||
|
}, |
||||
|
{ |
||||
|
label: '版本号', |
||||
|
field: 'version', |
||||
|
sort: 'custom', |
||||
|
isSearch: false, |
||||
|
isTable:false, |
||||
|
}, |
||||
|
{ |
||||
|
label: '创建时间', |
||||
|
field: 'createTime', |
||||
|
sort: 'custom', |
||||
|
formatter: dateFormatter, |
||||
|
isSearch: true, |
||||
|
isTable:true, |
||||
|
search: { |
||||
|
component: 'DatePicker', |
||||
|
componentProps: { |
||||
|
valueFormat: 'YYYY-MM-DD HH:mm:ss', |
||||
|
type: 'daterange', |
||||
|
defaultTime: [new Date('1 00:00:00'), new Date('1 23:59:59')] |
||||
|
} |
||||
|
}, |
||||
|
isForm: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '操作', |
||||
|
field: 'action', |
||||
|
isForm: false, |
||||
|
table: { |
||||
|
width: 150, |
||||
|
fixed: 'right' |
||||
|
} |
||||
|
} |
||||
|
])) |
Loading…
Reference in new issue