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.

331 lines
8.8 KiB

1 year ago
<template>
<ContentWrap>
<!-- 搜索工作栏 -->
1 year ago
<Search
:schema="SampleCode.allSchemas.searchSchema"
@search="setSearchParams"
@reset="setSearchParams"
/>
1 year ago
</ContentWrap>
1 year ago
<!-- 列表头部 -->
<TableHead
:HeadButttondata="HeadButttondata"
@button-base-click="buttonBaseClick"
:routeName="routeName"
@updataTableColumns="updataTableColumns"
@searchFormClick="searchFormClick"
:allSchemas="SampleCode.allSchemas"
/>
1 year ago
<!-- 列表 -->
<ContentWrap>
1 year ago
<Table
v-clientTable
1 year ago
: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"
>
1 year ago
<template #code="{ row }">
1 year ago
<el-button type="primary" link @click="openDetail(row, '代码', row.code)">
<span>{{ row.code }}</span>
</el-button>
</template>
<template #action="{ row }">
1 year ago
<ButtonBase
:Butttondata="butttondata(row)"
@button-base-click="buttonTableClick($event, row)"
/>
1 year ago
</template>
</Table>
</ContentWrap>
<!-- 表单弹窗添加/修改 -->
<BasicForm
ref="basicFormRef"
@success="formsSuccess"
:rules="SampleCodeRules"
:formAllSchemas="SampleCode.allSchemas"
:apiUpdate="SampleCodeApi.updateSampleCode"
:apiCreate="SampleCodeApi.createSampleCode"
@searchTableSuccess="searchTableSuccess"
:isBusiness="false"
1 year ago
@onChange="onChange"
1 year ago
/>
<!-- 详情 -->
<Detail ref="detailRef" :isBasic="true" :allSchemas="SampleCode.allSchemas" />
<!-- 导入 -->
1 year ago
<ImportForm
ref="importFormRef"
url="/qms/sample-code/import"
:importTemplateData="importTemplateData"
@success="importSuccess"
/>
1 year ago
</template>
<script setup lang="ts">
import download from '@/utils/download'
1 year ago
import { SampleCode, SampleCodeRules } from './sampleCode.data'
1 year ago
import * as SampleCodeApi from '@/api/qms/sampleCode'
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: 'SampleCode' })
const message = useMessage() // 消息弹窗
const { t } = useI18n() // 国际化
const route = useRoute() // 路由信息
const routeName = ref()
routeName.value = route.name
const tableColumns = ref(SampleCode.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: SampleCodeApi.getSampleCodePage // 分页接口
})
// 获得表格的各种操作
const { getList, setSearchParams } = tableMethods
// 列表头部按钮
const HeadButttondata = [
1 year ago
defaultButtons.defaultAddBtn({ hasPermi: 'qms:sample-code:create' }), // 新增
defaultButtons.defaultImportBtn({ hasPermi: 'qms:sample-code:import' }), // 导入
defaultButtons.defaultExportBtn({ hasPermi: 'qms:sample-code:export' }), // 导出
1 year ago
defaultButtons.defaultFreshBtn(null), // 刷新
defaultButtons.defaultFilterBtn(null), // 筛选
1 year ago
defaultButtons.defaultSetBtn(null) // 设置
1 year ago
// {
// label: '自定义扩展按钮',
// name: 'zdy',
// hide: false,
// type: 'primary',
// icon: 'Select',
// color: ''
// },
]
// 头部按钮事件
const buttonBaseClick = (val, item) => {
1 year ago
if (val == 'add') {
// 新增
1 year ago
openForm('create')
1 year ago
} else if (val == 'import') {
// 导入
1 year ago
handleImport()
1 year ago
} else if (val == 'export') {
// 导出
1 year ago
handleExport()
1 year ago
} else if (val == 'refresh') {
// 刷新
tableObject.params.isSearch = false
tableObject.params.filters = ''
1 year ago
// tableObject.params = {
// isSearch: true,
// filters: searchData.filters
// }
1 year ago
getList()
1 year ago
} else if (val == 'filtrate') {
// 筛选
} else {
// 其他按钮
1 year ago
console.log('其他按钮', item)
}
}
1 year ago
const isShowMainButton = (row, val) => {
if (val.indexOf(row.available) > -1) {
return false
} else {
return true
}
}
const butttondata = (row) => {
return [
1 year ago
defaultButtons.mainListEditBtn({ hasPermi: 'qms:sample-code:update' }),
defaultButtons.mainListEnableBtn({
hide: isShowMainButton(row, ['FALSE']),
hasPermi: 'qms:sample-code:enable'
}),
defaultButtons.mainListDisableBtn({
hide: isShowMainButton(row, ['TRUE']),
hasPermi: 'qms:sample-code:disable'
}),
defaultButtons.mainListDeleteBtn({ hasPermi: 'qms:sample-code:delete' }) // 删除
]
}
1 year ago
// 列表-操作按钮事件
const buttonTableClick = async (val, row) => {
1 year ago
if (val == 'edit') {
// 编辑
1 year ago
openForm('update', row)
1 year ago
} else if (val == 'delete') {
// 删除
1 year ago
handleDelete(row.id)
1 year ago
} else if (val == 'enable') {
handleEnable(row.id)
1 year ago
} else if (val == 'disable') {
handleDisable(row.id)
1 year ago
}
}
/** 添加/修改操作 */
const basicFormRef = ref()
const openForm = (type: string, row?: any) => {
basicFormRef.value.open(type, row)
}
// form表单提交
1 year ago
const formsSuccess = async (formType, data) => {
if (data.batchLowLimiting >= data.batchUpperLimiting) {
1 year ago
message.alertWarning('批量上限须大于批量下限')
basicFormRef.value.formLoading = false
return
}
1 year ago
var isHave = SampleCode.allSchemas.formSchema.some(function (item) {
return item.field === 'activeTime' || item.field === 'expireTime'
})
if (isHave) {
if (data.activeTime && data.expireTime && data.activeTime >= data.expireTime) {
1 year ago
message.error('失效时间要大于生效时间')
1 year ago
return
1 year ago
}
}
1 year ago
if (data.activeTime == 0) data.activeTime = null
if (data.expireTime == 0) data.expireTime = null
try {
basicFormRef.value.formLoading = true
if (formType === 'create') {
await SampleCodeApi.createSampleCode(data)
message.success(t('common.createSuccess'))
} else {
await SampleCodeApi.updateSampleCode(data)
message.success(t('common.updateSuccess'))
}
basicFormRef.value.dialogVisible = false
basicFormRef.value.formLoading = false
getList()
} finally {
basicFormRef.value.formLoading = false
1 year ago
}
}
/** 详情操作 */
const detailRef = ref()
const openDetail = (row: any, titleName: any, titleValue: any) => {
detailRef.value.openDetail(row, titleName, titleValue, 'basicSampleCode')
}
/** 删除按钮操作 */
const handleDelete = async (id: number) => {
try {
// 删除的二次确认
await message.delConfirm()
// 发起删除
await SampleCodeApi.deleteSampleCode(id)
message.success(t('common.delSuccess'))
// 刷新列表
await getList()
} catch {}
}
const handleEnable = async (id: number) => {
try {
await SampleCodeApi.enableSampleCode(id)
1 year ago
message.success(t('common.updateSuccess'))
// 刷新列表
await getList()
} catch {}
}
const handleDisable = async (id: number) => {
try {
await SampleCodeApi.disableSampleCode(id)
1 year ago
message.success(t('common.updateSuccess'))
// 刷新列表
await getList()
} catch {}
}
1 year ago
/** 导出按钮操作 */
const exportLoading = ref(false) // 导出的加载中
const handleExport = async () => {
try {
// 导出的二次确认
await message.exportConfirm()
// 发起导出
exportLoading.value = true
const data = await SampleCodeApi.exportSampleCode(tableObject.params)
download.excel(data, '样本字码.xlsx')
} catch {
} finally {
exportLoading.value = false
}
}
/** 导入 */
const importFormRef = ref()
const handleImport = () => {
importFormRef.value.open()
}
// 导入附件弹窗所需的参数
const importTemplateData = reactive({
templateUrl: '',
templateTitle: '样本字码导入模版.xlsx'
})
// 导入成功之后
const importSuccess = () => {
getList()
}
// 筛选提交
const searchFormClick = (searchData) => {
tableObject.params = {
isSearch: true,
filters: searchData.filters
}
getList() // 刷新当前列表
}
1 year ago
const onChange = async (field, value, formRef) => {
1 year ago
if (field == 'batchLowLimiting' || field == 'batchUpperLimiting') {
1 year ago
var upperLimit = formRef.value.formModel.batchUpperLimiting
var lowLimit = formRef.value.formModel.batchLowLimiting
1 year ago
if (parseInt(upperLimit) <= parseInt(lowLimit)) {
message.warning('批量上限须大于批量下限')
1 year ago
}
1 year ago
}
1 year ago
}
1 year ago
/** 初始化 **/
onMounted(async () => {
1 year ago
tableObject.params = {
1 year ago
available: true
}
1 year ago
getList()
importTemplateData.templateUrl = await SampleCodeApi.importTemplate()
})
</script>