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.
161 lines
5.4 KiB
161 lines
5.4 KiB
<script setup lang="ts">
|
|
import { reactive } from "vue";
|
|
import { ElButton } from "element-plus";
|
|
import { Search } from "@element-plus/icons-vue";
|
|
import DataForm from "@/components/data-form/DataForm.vue";
|
|
import type { FormField } from "@/components/data-form/DataFormTypes.ts";
|
|
import { AgGridVue } from "ag-grid-vue3";
|
|
import { type GridOptions, type IServerSideGetRowsParams } from "ag-grid-enterprise";
|
|
import type { GridApi, GridReadyEvent } from "ag-grid-community";
|
|
import { localeText as localeTextCn } from "@/components/yvTable/yv-aggrid-cn.locale";
|
|
import { Request } from "@ease-forge/shared";
|
|
import lodash from "lodash";
|
|
|
|
// 定义 Props 类型
|
|
interface ComponentProps {
|
|
}
|
|
|
|
// 读取组件 props 属性
|
|
const props = withDefaults(defineProps<ComponentProps>(), {});
|
|
|
|
// 定义 State 类型
|
|
interface ComponentState {
|
|
loading: boolean;
|
|
queryData: any;
|
|
grid1Data: Array<any>;
|
|
}
|
|
|
|
// state 属性
|
|
const state = reactive<ComponentState>({
|
|
loading: false,
|
|
queryData: {},
|
|
grid1Data: [],
|
|
});
|
|
|
|
// 定义 Data 类型
|
|
interface ComponentData {
|
|
formFields?: Array<FormField>;
|
|
gridSetting: Partial<GridOptions>;
|
|
api?: GridApi;
|
|
}
|
|
|
|
// 内部数据
|
|
const data: ComponentData = {
|
|
formFields: [
|
|
{
|
|
dataPath: 'lpn', label: '托盘条码', input: 'Input',
|
|
inputProps: {
|
|
placeholder: '托盘条码',
|
|
clearable: true,
|
|
}
|
|
},
|
|
{
|
|
dataPath: 'locCode', label: '库存位置', input: 'Input',
|
|
inputProps: {
|
|
placeholder: '库存位置',
|
|
clearable: true,
|
|
}
|
|
},
|
|
],
|
|
gridSetting: {
|
|
localeText: localeTextCn,
|
|
// suppressNoRowsOverlay: true,
|
|
// suppressLoadingOverlay: true,
|
|
// 选择行配置
|
|
rowSelection: "single",
|
|
rowModelType: "serverSide",
|
|
columnDefs: [
|
|
{ field: 'id', headerName: 'id', editable: false, hide: true },
|
|
{ field: 'loc_code', headerName: '库位编号', editable: false },
|
|
{ field: 'lpn', headerName: '容器编码', editable: false },
|
|
{ field: 'container_type', headerName: '容器类型', editable: false },
|
|
{ field: 'rack', headerName: '货位名', editable: false },
|
|
{ field: 'bay', headerName: '货位列', editable: false },
|
|
{ field: 'level', headerName: '货位层', editable: false },
|
|
{ field: 'cell', headerName: '货位格', editable: false },
|
|
{ field: 'catalog_code', headerName: '仓库楼层', editable: false },
|
|
{ field: 'way_point', headerName: '地标名', editable: false },
|
|
{ field: 'loc_direction', headerName: '地标方位', editable: false },
|
|
{
|
|
field: 'is_lock', headerName: '是否锁定', editable: false,
|
|
valueFormatter: params => lodash.toString(params.value) === "0" ? "否" : "是",
|
|
},
|
|
{
|
|
field: 'is_frozen', headerName: '是否冻结', editable: false,
|
|
valueFormatter: params => lodash.toString(params.value) === "0" ? "否" : "是",
|
|
},
|
|
{ field: 'create_at', headerName: '创建时间', editable: false },
|
|
{ field: 'create_by', headerName: '创建人', editable: false },
|
|
{ field: 'update_at', headerName: '最后更新时间', editable: false },
|
|
{ field: 'update_by', headerName: '更新人', editable: false },
|
|
],
|
|
pagination: true,
|
|
paginationPageSize: 50,
|
|
// cacheBlockSize: 50,
|
|
// suppressPaginationPanel
|
|
onGridReady(event: GridReadyEvent) {
|
|
data.api = event.api;
|
|
data.api.setServerSideDatasource({ getRows: serverSideDatasource });
|
|
},
|
|
},
|
|
};
|
|
|
|
function reload() {
|
|
data.api.paginationGoToPage(0);
|
|
data.api.setServerSideDatasource({ getRows: serverSideDatasource });
|
|
}
|
|
|
|
function serverSideDatasource(params: IServerSideGetRowsParams) {
|
|
const { startRow, endRow } = params.request;
|
|
console.log("startRow, endRow ", params.request);
|
|
const pageSize = endRow - startRow;
|
|
const pageNo = Math.floor(startRow / pageSize) + 1;
|
|
state.loading = true;
|
|
Request.request.get<PageData>(
|
|
"/api/workbench/DeviceManager@queryInvLpn",
|
|
{
|
|
params: {
|
|
...state.queryData,
|
|
pageSize,
|
|
pageNo,
|
|
},
|
|
},
|
|
).then(page => {
|
|
params.success({ rowData: page.records, rowCount: page.total })
|
|
}).finally(() => state.loading = false);
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div class="common-layout dashboard flex-column-container">
|
|
<div class="flex-item-fixed toolbar">
|
|
<ElButton :icon="Search" :loading="state.loading" @click="reload" type="warning" plain>查询</ElButton>
|
|
</div>
|
|
<DataForm
|
|
class="query-form flex-item-fixed"
|
|
:data="state.queryData"
|
|
:formFields="data.formFields"
|
|
:columnCount="4"
|
|
layout="bothFixed"
|
|
labelWidth="85px"
|
|
inputWidth="200px"
|
|
:inline="true"
|
|
/>
|
|
<AgGridVue
|
|
ref="gridRef"
|
|
:class="['ag-theme-alpine', 'yv-table', 'hi-light-selected-row','allow-vertical-line', 'flex-item-fill']"
|
|
v-bind="{...data.gridSetting}"
|
|
>
|
|
</AgGridVue>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.dashboard {
|
|
height: 100%;
|
|
}
|
|
.query-form {
|
|
height: unset;
|
|
}
|
|
</style>
|
|
|
|
|