zhaoxuebing
8 months ago
4 changed files with 321 additions and 15 deletions
@ -0,0 +1,203 @@ |
|||
<template> |
|||
<ContentWrap> |
|||
<!-- 搜索工作栏 --> |
|||
<Search :schema="Package.allSchemas.searchSchema" @search="setSearchParams" @reset="setSearchParams" /> |
|||
</ContentWrap> |
|||
|
|||
<!-- 列表头部 --> |
|||
<TableHead |
|||
:HeadButttondata="HeadButttondata" |
|||
@button-base-click="buttonBaseClick" |
|||
:routeName="routeName" |
|||
@updataTableColumns="updataTableColumns" |
|||
@searchFormClick="searchFormClick" |
|||
:allSchemas="Package.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 #number="{row}"> |
|||
<el-button type="primary" link @click="openDetail(row, '单据号', row.number)"> |
|||
<span>{{ row.number }}</span> |
|||
</el-button> |
|||
</template> |
|||
<template #action="{ row }"> |
|||
<ButtonBase :Butttondata="butttondata" @button-base-click="buttonTableClick($event,row)" /> |
|||
</template> |
|||
</Table> |
|||
</ContentWrap> |
|||
|
|||
<!-- 详情 --> |
|||
<Detail ref="detailRef" :isBasic="true" :allSchemas="Package.allSchemas" /> |
|||
|
|||
</template> |
|||
|
|||
<script setup lang="ts"> |
|||
import download from '@/utils/download' |
|||
import { getAccessToken } from '@/utils/auth' |
|||
import { Package,PackageRules } from './locationLabel.data' |
|||
import * as BarbasicApi from '@/api/wms/barbasic' |
|||
import * as defaultButtons from '@/utils/disposition/defaultButtons' |
|||
import * as PackageApi from '@/api/wms/package' |
|||
import { formatTime } from '@/utils/index' |
|||
import * as Itempackaging from '@/api/wms/itempackaging' |
|||
|
|||
// 库位标签 |
|||
defineOptions({ name: 'LocationLabel' }) |
|||
|
|||
const message = useMessage() // 消息弹窗 |
|||
const { t } = useI18n() // 国际化 |
|||
|
|||
const route = useRoute() // 路由信息 |
|||
const routeName = ref() |
|||
routeName.value = route.name |
|||
const tableColumns = ref(Package.allSchemas.tableColumns) |
|||
|
|||
|
|||
/** |
|||
* PurchasePackage type = PurchaseLabel 采购件标签记录页面 |
|||
* ManufacturePackage type = MakeLabel 制造件标签记录页面 |
|||
* UtensilPackage type = ContainerLabel 器具标签记录页面 |
|||
* SupplierPackage type = PurchaseLabel 供应商发货标签记录(用采购标签) |
|||
* LocationLabel type = LocationLabel 库位标签记录页面 |
|||
*/ |
|||
const type = ref('LocationLabel') |
|||
|
|||
// 字段设置 更新主列表字段 |
|||
const updataTableColumns = (val) => { |
|||
tableColumns.value = val |
|||
} |
|||
|
|||
const { tableObject, tableMethods } = useTable({ |
|||
getListApi: BarbasicApi.getBarbasicPage // 分页接口 |
|||
}) |
|||
tableObject.params.type = type.value |
|||
// 获得表格的各种操作 |
|||
const { getList, setSearchParams } = tableMethods |
|||
|
|||
// 列表头部按钮 |
|||
const HeadButttondata = [ |
|||
defaultButtons.defaultAddBtn({hasPermi:'wms:package:create'}), // 新增 |
|||
defaultButtons.defaultExportBtn({hasPermi:'wms:package:export'}), // 导出 |
|||
defaultButtons.defaultFreshBtn(null), // 刷新 |
|||
defaultButtons.defaultFilterBtn(null), // 筛选 |
|||
defaultButtons.defaultSetBtn(null), // 设置 |
|||
] |
|||
|
|||
// 头部按钮事件 |
|||
const buttonBaseClick = (val, item) => { |
|||
if (val == 'add') { // 新增 |
|||
openForm('create') |
|||
} else if (val == 'export') { // 导出 |
|||
handleExport() |
|||
} else if (val == 'refresh') { // 刷新 |
|||
if (tableObject.params.filters && tableObject.params.filters.length > 0 ) { |
|||
searchFormClick({ |
|||
filters: tableObject.params.filters |
|||
}) |
|||
} else { |
|||
getList() |
|||
} |
|||
} else if (val == 'filtrate') { // 筛选 |
|||
} else { // 其他按钮 |
|||
console.log('其他按钮', item) |
|||
} |
|||
} |
|||
|
|||
// 列表-操作按钮 |
|||
const butttondata = [ |
|||
defaultButtons.mainListPointBtn(null), // 标签打印 |
|||
] |
|||
|
|||
// 列表-操作按钮事件 |
|||
const buttonTableClick = async (val, row) => { |
|||
if (val == 'edit') { // 编辑 |
|||
openForm('update', row) |
|||
} else if (val == 'delete') { // 删除 |
|||
handleDelete(row.id) |
|||
} else if (val == 'point') { // 标签打印 |
|||
handlePoint(row) |
|||
} |
|||
} |
|||
|
|||
/** 添加/修改操作 */ |
|||
const basicFormRef = ref() |
|||
const openForm = (type: string, row?: number) => { |
|||
basicFormRef.value.open(type, row) |
|||
if (type == 'create') { |
|||
nextTick(() => { |
|||
basicFormRef.value.formRef.formModel.batch = formatTime(new Date(), 'yyyyMMdd') |
|||
}) |
|||
} |
|||
} |
|||
|
|||
/** 详情操作 */ |
|||
const detailRef = ref() |
|||
const openDetail = (row: any, titleName: any, titleValue: any) => { |
|||
detailRef.value.openDetail(row, titleName, titleValue) |
|||
} |
|||
|
|||
/** 删除按钮操作 */ |
|||
const handleDelete = async (id: number) => { |
|||
try { |
|||
// 删除的二次确认 |
|||
await message.delConfirm() |
|||
tableObject.loading = true |
|||
// 发起删除 |
|||
await BarbasicApi.deleteBarbasic(id) |
|||
tableObject.loading = false |
|||
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 BarbasicApi.exportBarbasic(tableObject.params) |
|||
download.excel(data, '库位标签.xlsx') |
|||
} catch { |
|||
} finally { |
|||
exportLoading.value = false |
|||
} |
|||
} |
|||
|
|||
const BASE_URL = import.meta.env.VITE_JMREPORT_BASE_URL |
|||
const src = ref(BASE_URL + '/jmreport/view/929174607016689664?token=' + getAccessToken()) |
|||
// 标签打印 |
|||
const handlePoint = async (row) => { |
|||
window.open(src.value+'&id='+row.id) |
|||
} |
|||
|
|||
// 筛选提交 |
|||
const searchFormClick = (searchData) => { |
|||
tableObject.params = { |
|||
isSearch: true, |
|||
filters: searchData.filters, |
|||
type:type.value |
|||
} |
|||
getList() // 刷新当前列表 |
|||
} |
|||
|
|||
/** 初始化 **/ |
|||
onMounted(async () => { |
|||
getList() |
|||
}) |
|||
</script> |
@ -0,0 +1,103 @@ |
|||
import type { CrudSchema } from '@/hooks/web/useCrudSchemas' |
|||
import { dateFormatter } from '@/utils/formatTime' |
|||
|
|||
// 表单校验
|
|||
export const PackageRules = reactive({ |
|||
number: [required], |
|||
itemCode: [required], |
|||
itemName: [required], |
|||
}) |
|||
export const Package = useCrudSchemas(reactive<CrudSchema[]>([ |
|||
{ |
|||
label: '标签号', |
|||
field: 'number', |
|||
sort: 'custom', |
|||
isSearch: true, |
|||
table: { |
|||
fixed: 'left' |
|||
} |
|||
}, |
|||
{ |
|||
label: '标签类型', |
|||
field: 'type', |
|||
sort: 'custom', |
|||
isSearch: true, |
|||
dictType: DICT_TYPE.LABEL_TYPE, |
|||
dictClass: 'string' |
|||
}, |
|||
// {
|
|||
// label: '标签模板',
|
|||
// field: 'template',
|
|||
// sort: 'custom',
|
|||
// },
|
|||
{ |
|||
label: '标签状态', |
|||
field: 'status', |
|||
sort: 'custom', |
|||
isSearch: true, |
|||
dictType: DICT_TYPE.LABEL_STATUS, |
|||
dictClass: 'string' |
|||
}, |
|||
{ |
|||
label: '关联号', |
|||
field: 'relateNumber', |
|||
sort: 'custom', |
|||
}, |
|||
{ |
|||
label: '标签条码字符串', |
|||
field: 'barcodeString', |
|||
sort: 'custom', |
|||
table: { |
|||
width: 170, |
|||
} |
|||
}, |
|||
{ |
|||
label: '打印次数', |
|||
field: 'printTimes', |
|||
sort: 'custom', |
|||
form: { |
|||
component: 'InputNumber', |
|||
componentProps: { |
|||
min: 0 |
|||
}, |
|||
value: 0 |
|||
}, |
|||
}, |
|||
{ |
|||
label: '最后打印时间', |
|||
field: 'lastPrintTime', |
|||
sort: 'custom', |
|||
formatter: dateFormatter, |
|||
form: { |
|||
component: 'DatePicker', |
|||
componentProps: { |
|||
style: {width:'100%'}, |
|||
type: 'datetime', |
|||
dateFormat: 'YYYY-MM-DD HH:mm:ss', |
|||
valueFormat: 'x', |
|||
} |
|||
}, |
|||
}, |
|||
{ |
|||
label: '最后打印人ID', |
|||
field: 'lastPrintUserId', |
|||
sort: 'custom' |
|||
}, |
|||
{ |
|||
label: '最后打印人用户名', |
|||
field: 'lastPrintUserName', |
|||
sort: 'custom', |
|||
table: { |
|||
width: 170, |
|||
} |
|||
}, |
|||
{ |
|||
label: '操作', |
|||
field: 'action', |
|||
isForm: false, |
|||
table: { |
|||
width: 150, |
|||
fixed: 'right' |
|||
} |
|||
} |
|||
])) |
Loading…
Reference in new issue