no message
parent
827e867187
commit
d1ee99a823
|
|
@ -6,10 +6,10 @@
|
|||
<a-row>
|
||||
<a-col :span="24">
|
||||
<a-form-item label="容器" v-bind="validateInfos.carrierCode" id="AgvTaskForm-carrierCode" name="carrierCode">
|
||||
<JDictSelectTag
|
||||
<JSearchSelect
|
||||
v-model:value="formData.carrierCode"
|
||||
placeholder="请选择容器"
|
||||
dictCode="base_stock where iz_active=1 and del_flag=0,stock_code,stock_code"
|
||||
dict="base_stock where iz_active=1 and del_flag=0,stock_code,stock_code"
|
||||
allowClear
|
||||
/>
|
||||
</a-form-item>
|
||||
|
|
@ -36,10 +36,10 @@
|
|||
</a-col>
|
||||
<a-col :span="24">
|
||||
<a-form-item label="目标库位" v-bind="validateInfos.endCode" id="AgvTaskForm-endCode" name="endCode">
|
||||
<JDictSelectTag
|
||||
<JSearchSelect
|
||||
v-model:value="formData.endCode"
|
||||
placeholder="请选择目标库位"
|
||||
dictCode="base_point where iz_active=1 and del_flag=0 ,point_code,point_code"
|
||||
dict="base_point where status=0 and iz_active=1 and del_flag=0 ,point_code,point_code"
|
||||
allowClear
|
||||
/>
|
||||
</a-form-item>
|
||||
|
|
@ -64,7 +64,7 @@
|
|||
import { saveOrUpdate } from '../AgvTask.api';
|
||||
import { Form } from 'ant-design-vue';
|
||||
import JFormContainer from '/@/components/Form/src/container/JFormContainer.vue';
|
||||
import { JDictSelectTag } from '@/components/Form';
|
||||
import {JDictSelectTag, JSearchSelect} from '@/components/Form';
|
||||
|
||||
const props = defineProps({
|
||||
formDisabled: { type: Boolean, default: false },
|
||||
|
|
@ -78,6 +78,9 @@
|
|||
let tenantId = getTenantId();
|
||||
const formData = reactive<Record<string, any>>({
|
||||
id: '',
|
||||
businessDetailId: '',
|
||||
itemId: '',
|
||||
conNo: '',
|
||||
carrierCode: '',
|
||||
carrierType: 'TRAY',
|
||||
taskType: '',
|
||||
|
|
|
|||
Loading…
Reference in New Issue