no message

main
HUOJIN\92525 2025-11-21 18:14:15 +08:00
parent c30427dcdc
commit 30bcc70a73
6 changed files with 32 additions and 21 deletions

View File

@ -39,7 +39,13 @@ export const columns: BasicColumn[] = [
}
},
{
title: '目标库位',
title: '起点',
align: "center",
width: '120px',
dataIndex: 'startCode'
},
{
title: '终点',
align: "center",
width: '120px',
dataIndex: 'endCode'

View File

@ -25,17 +25,17 @@ export const columns: BasicColumn[] = [
{
title: '排',
align: 'center',
dataIndex: 'rows',
dataIndex: 'rowNum',
},
{
title: '列',
align: 'center',
dataIndex: 'cols',
dataIndex: 'colNum',
},
{
title: '层',
align: 'center',
dataIndex: 'layers',
dataIndex: 'layerNum',
},
{
title: '是否启用',

View File

@ -33,18 +33,18 @@
</a-col>
<a-col :span="24">
<a-form-item label="排" v-bind="validateInfos.rows" id="PointForm-rows" name="rows">
<a-input v-model:value="formData.rows" placeholder="请输入排" allow-clear></a-input>
<a-form-item label="排" v-bind="validateInfos.rowNum" id="PointForm-rowNum" name="rowNum">
<a-input v-model:value="formData.rowNum" placeholder="请输入排" allow-clear></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="列" v-bind="validateInfos.cols" id="PointForm-cols" name="cols">
<a-input v-model:value="formData.cols" placeholder="请输入列" allow-clear></a-input>
<a-form-item label="列" v-bind="validateInfos.colNum" id="PointForm-colNum" name="colNum">
<a-input v-model:value="formData.colNum" placeholder="请输入列" allow-clear></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="层" v-bind="validateInfos.layers" id="PointForm-layers" name="layers">
<a-input v-model:value="formData.layers" placeholder="请输入层" allow-clear></a-input>
<a-form-item label="层" v-bind="validateInfos.layerNum" id="PointForm-layerNum" name="layerNum">
<a-input v-model:value="formData.layerNum" placeholder="请输入层" allow-clear></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
@ -90,9 +90,9 @@
areaId: '',
pointCode: '',
status: 0,
rows: '00',
cols: '00',
layers: '00',
rowNum: '00',
colNum: '00',
layerNum: '00',
description: '',
delFlag: 0,
izActive: 1,
@ -106,9 +106,9 @@
const validatorRules = reactive({
areaId: [{ required: true, message: '请选择库区!' }],
pointCode: [{ required: true, message: '请输入库位编码!' }],
row: [{ required: true, message: '请输入排!' }],
col: [{ required: true, message: '请输入列!' }],
layer: [{ required: true, message: '请输入层!' }],
rowNum: [{ required: true, message: '请输入排!' }],
colNum: [{ required: true, message: '请输入列!' }],
layerNum: [{ required: true, message: '请输入层!' }],
status: [{ required: true, message: '请选择状态!' }],
});
const { resetFields, validate, validateInfos } = useForm(formData, validatorRules, { immediate: false });

View File

@ -59,6 +59,11 @@ export const columns: BasicColumn[] = [
align: 'center',
dataIndex: 'whCode',
},
{
title: '回传报文',
align: 'center',
dataIndex: 'resMessage',
},
{
title: '订单日期',
align: 'center',
@ -120,13 +125,13 @@ export const asnDetailColumns: JVxeColumn[] = [
],
},
{
title: '库位',
key: 'pointId',
title: '起点',
key: 'fromPointId',
type: JVxeTypes.selectSearch,
width: 150,
async: true, // 异步搜索,默认为 true
//查询状态为可用、启用、未删除的库位
dictCode: 'base_point where area_id = 1986328561044119554 and iz_active=1 and del_flag=0,point_code,id',
dictCode: 'base_point where area_id = 1983454124619755521 and iz_active=1 and del_flag=0,point_code,id',
tipsContent: '请搜索库位',
validateRules: [
{

View File

@ -23,7 +23,7 @@ export const columns: BasicColumn[] = [
align: 'center',
dataIndex: 'status_dictText',
customRender: ({ text }) => {
//库状态:1.已创建;2.部分分配;3.已分配;4.拣货中;5.拣货完成;6.已关闭;7.已取消。
//库状态:1.已创建;2.部分分配;3.已分配;4.拣货中;5.拣货完成;6.已关闭;7.已取消。
const statusColorMap = {
: 'orange',
: 'cyan',

View File

@ -5,7 +5,7 @@
<span style="display: flex">
{{title}}
<a-tooltip title="AI应用文档">
<a style="color: unset" href="https://help.jeecg.com/aigc/guide/app" target="_blank">
<a style="color: unset" href="https://help.cpte.com/aigc/guide/app" target="_blank">
<Icon style="position:relative;left:2px;top:1px" icon="ant-design:question-circle-outlined"></Icon>
</a>
</a-tooltip>