You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
396 lines
11 KiB
396 lines
11 KiB
<template>
|
|
<ContentWrap>
|
|
<!-- 搜索工作栏 -->
|
|
<Search
|
|
:schema="SamplingProcess.allSchemas.searchSchema"
|
|
@search="setSearchParams"
|
|
@reset="setSearchParams"
|
|
/>
|
|
</ContentWrap>
|
|
|
|
<!-- 列表头部 -->
|
|
<TableHead
|
|
:HeadButttondata="HeadButttondata"
|
|
@button-base-click="buttonBaseClick"
|
|
:routeName="routeName"
|
|
@updataTableColumns="updataTableColumns"
|
|
@searchFormClick="searchFormClick"
|
|
:allSchemas="SamplingProcess.allSchemas"
|
|
/>
|
|
|
|
<!-- 列表 -->
|
|
<ContentWrap>
|
|
<Table
|
|
v-clientTable
|
|
: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(row)"
|
|
@button-base-click="buttonTableClick($event, row)"
|
|
/>
|
|
</template>
|
|
</Table>
|
|
</ContentWrap>
|
|
|
|
<!-- 表单弹窗:添加/修改 -->
|
|
<BasicForm
|
|
ref="basicFormRef"
|
|
@success="formsSuccess"
|
|
:rules="SamplingProcessRules"
|
|
:formAllSchemas="SamplingProcess.allSchemas"
|
|
:apiUpdate="SamplingProcessApi.updateSamplingProcess"
|
|
:apiCreate="SamplingProcessApi.createSamplingProcess"
|
|
@searchTableSuccess="searchTableSuccess"
|
|
:isBusiness="false"
|
|
@onChange="onChange"
|
|
/>
|
|
|
|
<!-- 详情 -->
|
|
<Detail ref="detailRef" :isBasic="true" :allSchemas="SamplingProcess.allSchemas" />
|
|
|
|
<!-- 导入 -->
|
|
<ImportForm
|
|
ref="importFormRef"
|
|
url="/qms/sampling-process/import"
|
|
:importTemplateData="importTemplateData"
|
|
@success="importSuccess"
|
|
:updateIsDisable="true"
|
|
:coverIsDisable="true"
|
|
:mode="2"
|
|
/>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import download from '@/utils/download'
|
|
import { SamplingProcess, SamplingProcessRules } from './samplingProcess.data'
|
|
import * as SamplingProcessApi from '@/api/qms/samplingProcess'
|
|
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'
|
|
import { validatePercent, validateInteger, validateTwoNum } from '@/utils/validator'
|
|
import { formatDate } from '@/utils/formatTime'
|
|
import { usePageLoading } from '@/hooks/web/usePageLoading'
|
|
const { loadStart, loadDone } = usePageLoading()
|
|
defineOptions({ name: 'SamplingProcess' })
|
|
|
|
const message = useMessage() // 消息弹窗
|
|
const { t } = useI18n() // 国际化
|
|
|
|
const route = useRoute() // 路由信息
|
|
const routeName = ref()
|
|
routeName.value = route.name
|
|
const tableColumns = ref(SamplingProcess.allSchemas.tableColumns)
|
|
|
|
// 查询页面返回
|
|
const searchTableSuccess = (formField, searchField, val, formRef) => {
|
|
nextTick(() => {
|
|
const setV = {}
|
|
setV[formField] = val[0][searchField]
|
|
formRef.setValues(setV)
|
|
})
|
|
}
|
|
|
|
// 字段设置 更新主列表字段
|
|
const updataTableColumns = (val) => {
|
|
tableColumns.value = val
|
|
}
|
|
|
|
const { tableObject, tableMethods } = useTable({
|
|
getListApi: SamplingProcessApi.getSamplingProcessPage // 分页接口
|
|
})
|
|
|
|
// 获得表格的各种操作
|
|
const { getList, setSearchParams } = tableMethods
|
|
|
|
// 列表头部按钮
|
|
const HeadButttondata = [
|
|
defaultButtons.defaultAddBtn({ hasPermi: 'qms:sampling-process:create' }), // 新增
|
|
defaultButtons.defaultImportBtn({ hasPermi: 'qms:sampling-process:import' }), // 导入
|
|
defaultButtons.defaultExportBtn({ hasPermi: 'qms:sampling-process: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 isShowMainButton = (row, val) => {
|
|
if (val.indexOf(row.available) > -1) {
|
|
return false
|
|
} else {
|
|
return true
|
|
}
|
|
}
|
|
|
|
const butttondata = (row) => {
|
|
return [
|
|
defaultButtons.mainListEditBtn({ hasPermi: 'qms:sampling-process:update' }),
|
|
defaultButtons.mainListEnableBtn({
|
|
hide: isShowMainButton(row, ['FALSE']),
|
|
hasPermi: 'qms:sampling-process:enable'
|
|
}),
|
|
defaultButtons.mainListDisableBtn({
|
|
hide: isShowMainButton(row, ['TRUE']),
|
|
hasPermi: 'qms:sampling-process:disable'
|
|
}),
|
|
defaultButtons.mainListDeleteBtn({ hasPermi: 'qms:sampling-process:delete' }) // 删除
|
|
]
|
|
}
|
|
|
|
// 列表-操作按钮事件
|
|
const buttonTableClick = async (val, row) => {
|
|
if (val == 'edit') {
|
|
// 编辑
|
|
openForm('update', row)
|
|
} else if (val == 'delete') {
|
|
// 删除
|
|
handleDelete(row.id)
|
|
} else if (val == 'enable') {
|
|
handleEnable(row.id)
|
|
} else if (val == 'disable') {
|
|
handleDisable(row.id)
|
|
}
|
|
}
|
|
|
|
/** 添加/修改操作 */
|
|
const basicFormRef = ref()
|
|
|
|
// form表单提交
|
|
const formsSuccess = async (formType, data) => {
|
|
var isHave = SamplingProcess.allSchemas.formSchema.some(function (item) {
|
|
return item.field === 'activeTime' || item.field === 'expireTime'
|
|
})
|
|
if (isHave) {
|
|
if (data.activeTime && data.expireTime && data.activeTime >= data.expireTime) {
|
|
message.error('失效时间要大于生效时间')
|
|
return
|
|
}
|
|
}
|
|
if (data.activeTime == 0) data.activeTime = null
|
|
if (data.expireTime == 0) data.expireTime = null
|
|
|
|
try {
|
|
basicFormRef.value.formLoading = true
|
|
if (formType === 'create') {
|
|
await SamplingProcessApi.createSamplingProcess(data)
|
|
message.success(t('common.createSuccess'))
|
|
} else {
|
|
await SamplingProcessApi.updateSamplingProcess(data)
|
|
message.success(t('common.updateSuccess'))
|
|
}
|
|
basicFormRef.value.dialogVisible = false
|
|
basicFormRef.value.formLoading = false
|
|
getList()
|
|
} finally {
|
|
basicFormRef.value.formLoading = false
|
|
}
|
|
}
|
|
|
|
/** 详情操作 */
|
|
const detailRef = ref()
|
|
const openDetail = (row: any, titleName: any, titleValue: any) => {
|
|
detailRef.value.openDetail(row, titleName, titleValue, 'basicSamplingProcess')
|
|
}
|
|
|
|
/** 删除按钮操作 */
|
|
const handleDelete = async (id: number) => {
|
|
try {
|
|
// 删除的二次确认
|
|
await message.delConfirm()
|
|
// 发起删除
|
|
await SamplingProcessApi.deleteSamplingProcess(id)
|
|
message.success(t('common.delSuccess'))
|
|
// 刷新列表
|
|
await getList()
|
|
} catch {}
|
|
}
|
|
const handleEnable = async (id: number) => {
|
|
try {
|
|
await SamplingProcessApi.enableSamplingProcess(id)
|
|
message.success(t('common.updateSuccess'))
|
|
// 刷新列表
|
|
await getList()
|
|
} catch {}
|
|
}
|
|
const handleDisable = async (id: number) => {
|
|
try {
|
|
await SamplingProcessApi.disableSamplingProcess(id)
|
|
message.success(t('common.updateSuccess'))
|
|
// 刷新列表
|
|
await getList()
|
|
} catch {}
|
|
}
|
|
|
|
/** 导出按钮操作 */
|
|
const handleExport = async () => {
|
|
try {
|
|
// 导出的二次确认
|
|
await message.exportConfirm()
|
|
// 发起导出
|
|
loadStart()
|
|
const excelTitle = ref(route.meta.title)
|
|
const data = await SamplingProcessApi.exportSamplingProcess(tableObject.params)
|
|
download.excel(data, `【${excelTitle.value}】【${formatDate(new Date())}】.xlsx`)
|
|
} catch {
|
|
} finally {
|
|
loadDone()
|
|
}
|
|
}
|
|
|
|
/** 导入 */
|
|
const importFormRef = ref()
|
|
const handleImport = () => {
|
|
importFormRef.value.open()
|
|
}
|
|
// 导入附件弹窗所需的参数
|
|
const importTemplateData = reactive({
|
|
templateUrl: '',
|
|
templateTitle: `【${route.meta.title}】导入模版.xlsx`
|
|
})
|
|
// 导入成功之后
|
|
const importSuccess = () => {
|
|
getList()
|
|
}
|
|
|
|
const updateFormFields = (sampleType, formRef) => {
|
|
let sampleQtyLabel = ''
|
|
let sampleQtyDisabled = false
|
|
let sampleProgCodeDisabled = true
|
|
let sampleQtyRequired = false
|
|
let sampleProgCodeRequired = false
|
|
|
|
switch (sampleType) {
|
|
case '1':
|
|
sampleQtyLabel = '样品份数'
|
|
sampleQtyDisabled = true
|
|
sampleQtyRequired = false
|
|
SamplingProcessRules.sampleQty = [
|
|
{ required: false, message: '该项为必填项', trigger: 'blur' }
|
|
]
|
|
break
|
|
case '2':
|
|
sampleQtyLabel = '样品份数(%)'
|
|
sampleQtyDisabled = false
|
|
sampleQtyRequired = true
|
|
SamplingProcessRules.sampleQty = [
|
|
{ required: true, message: '该项为必填项', trigger: 'blur' },
|
|
{ validator: validatePercent, message: '百分比范围 0 ~ 100', trigger: 'blur' },
|
|
{ validator: validateTwoNum, message: '小数点后最多2位', trigger: 'blur' }
|
|
]
|
|
|
|
break
|
|
case '3':
|
|
sampleQtyLabel = '样品份数'
|
|
sampleQtyDisabled = false
|
|
sampleQtyRequired = true
|
|
SamplingProcessRules.sampleQty = [
|
|
{ required: true, message: '该项为必填项', trigger: 'blur' },
|
|
{ validator: validateInteger, message: '样品份数必须为正整数', trigger: 'blur' }
|
|
]
|
|
|
|
break
|
|
case '4':
|
|
sampleQtyLabel = '样品份数'
|
|
sampleQtyDisabled = true
|
|
sampleQtyRequired = false
|
|
sampleProgCodeDisabled = false
|
|
sampleProgCodeRequired = true
|
|
SamplingProcessRules.sampleQty = [
|
|
{ required: false, message: '该项为必填项', trigger: 'blur' }
|
|
]
|
|
break
|
|
default:
|
|
break
|
|
}
|
|
|
|
SamplingProcess.allSchemas.formSchema.forEach((item) => {
|
|
if (item.field === 'sampleQty') {
|
|
item.label = sampleQtyLabel
|
|
item.componentProps.disabled = sampleQtyDisabled
|
|
}
|
|
if (item.field === 'sampleProgCode') {
|
|
item.componentProps.disabled = sampleProgCodeDisabled
|
|
}
|
|
})
|
|
|
|
SamplingProcessRules.sampleQty[0].required = sampleQtyRequired
|
|
SamplingProcessRules.sampleProgCode[0].required = sampleProgCodeRequired
|
|
|
|
formRef?.value?.setValues({
|
|
sampleQty: '',
|
|
sampleProgCode: ''
|
|
})
|
|
}
|
|
|
|
const openForm = async (type, row) => {
|
|
basicFormRef.value.open(type, row)
|
|
updateFormFields(row?.sampleType, basicFormRef)
|
|
}
|
|
|
|
const onChange = async (field, value, formRef) => {
|
|
if (field === 'sampleType') {
|
|
updateFormFields(value, formRef)
|
|
}
|
|
}
|
|
|
|
// 筛选提交
|
|
const searchFormClick = (searchData) => {
|
|
tableObject.params = {
|
|
isSearch: true,
|
|
filters: searchData.filters
|
|
}
|
|
getList() // 刷新当前列表
|
|
}
|
|
|
|
/** 初始化 **/
|
|
onMounted(async () => {
|
|
tableObject.params = {
|
|
available: 'TRUE'
|
|
}
|
|
getList()
|
|
importTemplateData.templateUrl = await SamplingProcessApi.importTemplate()
|
|
})
|
|
</script>
|
|
|