no message
parent
27602a4f3e
commit
2f50ccf7e0
|
|
@ -38,18 +38,30 @@ export const columns: BasicColumn[] = [
|
|||
width: 100,
|
||||
|
||||
},
|
||||
{
|
||||
title: '批次号',
|
||||
align: 'center',
|
||||
dataIndex: 'propC1',
|
||||
width: 100,
|
||||
},
|
||||
{
|
||||
title: '外部仓库',
|
||||
align: 'center',
|
||||
dataIndex: 'whCode',
|
||||
width: 100,
|
||||
},
|
||||
{
|
||||
title: '项目号',
|
||||
align: 'center',
|
||||
dataIndex: 'project',
|
||||
width: 100,
|
||||
},
|
||||
{
|
||||
title: '任务号',
|
||||
align: 'center',
|
||||
dataIndex: 'taskNo',
|
||||
width: 100,
|
||||
},
|
||||
{
|
||||
title: '批次号',
|
||||
align: 'center',
|
||||
dataIndex: 'propC1',
|
||||
width: 100,
|
||||
},
|
||||
{
|
||||
title: '外部库存状态',
|
||||
align: 'center',
|
||||
|
|
@ -57,17 +69,7 @@ export const columns: BasicColumn[] = [
|
|||
width: 110,
|
||||
},
|
||||
{
|
||||
title: '生产日期',
|
||||
align: 'center',
|
||||
dataIndex: 'propD1',
|
||||
width: 100,
|
||||
customRender: ({ text }) => {
|
||||
text = !text ? '' : text.length > 10 ? text.substr(0, 10) : text;
|
||||
return text;
|
||||
},
|
||||
},
|
||||
{
|
||||
title: '描述',
|
||||
title: '备注',
|
||||
align: 'center',
|
||||
dataIndex: 'description',
|
||||
},
|
||||
|
|
|
|||
|
|
@ -121,7 +121,7 @@
|
|||
pointId: undefined,
|
||||
stockId: undefined,
|
||||
quantity: '',
|
||||
queuedQty: '',
|
||||
queuedQty: 0,
|
||||
whCode: '',
|
||||
propC1: '',
|
||||
propC2: '',
|
||||
|
|
|
|||
|
|
@ -61,6 +61,18 @@ export const columns: BasicColumn[] = [
|
|||
dataIndex: 'afterAllocatedQty',
|
||||
width: 120,
|
||||
},
|
||||
{
|
||||
title: '项目号',
|
||||
align: 'center',
|
||||
dataIndex: 'project',
|
||||
width: 100,
|
||||
},
|
||||
{
|
||||
title: '任务号',
|
||||
align: 'center',
|
||||
dataIndex: 'taskNo',
|
||||
width: 100,
|
||||
},
|
||||
{
|
||||
title: '批次号',
|
||||
align: 'center',
|
||||
|
|
@ -68,7 +80,13 @@ export const columns: BasicColumn[] = [
|
|||
width: 100,
|
||||
},
|
||||
{
|
||||
title: '描述',
|
||||
title: '外部库存状态',
|
||||
align: 'center',
|
||||
dataIndex: 'propC3',
|
||||
width: 100,
|
||||
},
|
||||
{
|
||||
title: '备注',
|
||||
align: 'center',
|
||||
dataIndex: 'description',
|
||||
ellipsis: true,
|
||||
|
|
|
|||
|
|
@ -18,13 +18,20 @@
|
|||
<template #expandedRowRender="{ record }">
|
||||
<div v-if="searchInfo.logType == 2">
|
||||
<div style="margin-bottom: 5px">
|
||||
<a-badge status="success" style="vertical-align: middle" />
|
||||
<span style="vertical-align: middle">请求方法:{{ record.method }}</span></div
|
||||
>
|
||||
<div>
|
||||
<a-badge status="warning" style="vertical-align: middle" />
|
||||
<span style="vertical-align: middle">请求地址:{{ record.requestUrl }}</span>
|
||||
</div>
|
||||
|
||||
<div style="margin-bottom: 5px">
|
||||
<a-badge status="processing" style="vertical-align: middle" />
|
||||
<span style="vertical-align: middle">请求参数:{{ record.requestParam }}</span></div
|
||||
>
|
||||
<span style="vertical-align: middle">请求参数:{{ record.requestParam }}</span>
|
||||
</div >
|
||||
|
||||
<div style="margin-bottom: 5px">
|
||||
<a-badge status="success" style="vertical-align: middle" />
|
||||
<span style="vertical-align: middle">响应结果:{{ record.returnData }}</span>
|
||||
</div >
|
||||
|
||||
</div>
|
||||
<div v-if="searchInfo.logType == 4">
|
||||
<div style="margin-bottom: 5px">
|
||||
|
|
|
|||
|
|
@ -1,38 +1,39 @@
|
|||
import { BasicColumn, FormSchema } from '/@/components/Table';
|
||||
|
||||
export const columns: BasicColumn[] = [
|
||||
{
|
||||
title: '操作类型',
|
||||
dataIndex: 'operateType_dictText',
|
||||
width: 25,
|
||||
},
|
||||
{
|
||||
title: 'IP',
|
||||
dataIndex: 'ip',
|
||||
width: 35,
|
||||
},
|
||||
{
|
||||
title: '耗时(毫秒)',
|
||||
dataIndex: 'costTime',
|
||||
width: 30,
|
||||
},
|
||||
{
|
||||
title: '操作人',
|
||||
dataIndex: 'username',
|
||||
width: 25,
|
||||
width: 30,
|
||||
},
|
||||
|
||||
{
|
||||
title: '请求地址',
|
||||
dataIndex: 'requestUrl',
|
||||
width: 100,
|
||||
},
|
||||
{
|
||||
title: '请求参数',
|
||||
dataIndex: 'method',
|
||||
width: 60,
|
||||
},
|
||||
{
|
||||
title: '日志内容',
|
||||
dataIndex: 'logContent',
|
||||
width: 200,
|
||||
width: 100,
|
||||
align: 'left',
|
||||
},
|
||||
|
||||
{
|
||||
title: '创建时间',
|
||||
dataIndex: 'createTime',
|
||||
sorter: true,
|
||||
width: 40,
|
||||
width: 60,
|
||||
},
|
||||
];
|
||||
|
||||
|
|
@ -40,6 +41,7 @@ export const columns: BasicColumn[] = [
|
|||
* 操作日志需要操作类型
|
||||
*/
|
||||
export const operationLogColumn: BasicColumn[] = [
|
||||
|
||||
...columns,
|
||||
/* {
|
||||
title: '操作类型',
|
||||
|
|
@ -49,6 +51,7 @@ export const operationLogColumn: BasicColumn[] = [
|
|||
];
|
||||
|
||||
export const exceptionColumns: BasicColumn[] = [
|
||||
|
||||
{
|
||||
title: 'IP',
|
||||
dataIndex: 'ip',
|
||||
|
|
@ -57,7 +60,7 @@ export const exceptionColumns: BasicColumn[] = [
|
|||
{
|
||||
title: '操作人',
|
||||
dataIndex: 'username',
|
||||
width: 25,
|
||||
width: 30,
|
||||
},
|
||||
|
||||
{
|
||||
|
|
|
|||
|
|
@ -134,12 +134,6 @@ export const asnDetailColumns: JVxeColumn[] = [
|
|||
//查询状态为可用、启用、未删除的库位
|
||||
dictCode: 'base_point where area_id = 1983454124619755521 and iz_active=1 and del_flag=0,point_code,id',
|
||||
tipsContent: '请搜索库位',
|
||||
validateRules: [
|
||||
{
|
||||
required: true, // 必填
|
||||
message: '请选择${title}', // 显示的文本
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: '需求数量',
|
||||
|
|
|
|||
Loading…
Reference in New Issue