|
@@ -79,6 +79,22 @@
|
|
<JDictSelectTag v-model:value="queryParam.model" placeholder="请选择" dictCode="model_typer" />
|
|
<JDictSelectTag v-model:value="queryParam.model" placeholder="请选择" dictCode="model_typer" />
|
|
</a-form-item>
|
|
</a-form-item>
|
|
</a-col>
|
|
</a-col>
|
|
|
|
+ <a-col :lg="8">
|
|
|
|
+ <a-form-item name="createBy">
|
|
|
|
+ <template #label><span title="制单人(createBy)">制单人(createBy)</span></template>
|
|
|
|
+ <ApiSelect
|
|
|
|
+ :api="UserList"
|
|
|
|
+ showSearch
|
|
|
|
+ v-model:value="queryParam.createBy"
|
|
|
|
+ :filterOption="true"
|
|
|
|
+ resultField="records"
|
|
|
|
+ labelField="realname"
|
|
|
|
+ valueField="username"
|
|
|
|
+ :params="{ pageSize: -1 }"
|
|
|
|
+ optionFilterProp="label"
|
|
|
|
+ />
|
|
|
|
+ </a-form-item>
|
|
|
|
+ </a-col>
|
|
<a-col :lg="8">
|
|
<a-col :lg="8">
|
|
<a-form-item name="maker">
|
|
<a-form-item name="maker">
|
|
<template #label><span title="厂家(maker)">厂家(maker)</span></template>
|
|
<template #label><span title="厂家(maker)">厂家(maker)</span></template>
|
|
@@ -181,6 +197,7 @@
|
|
ProjectOption,
|
|
ProjectOption,
|
|
supplierOption,
|
|
supplierOption,
|
|
ClassList,
|
|
ClassList,
|
|
|
|
+ UserList
|
|
} from './purchaseInquiryForm.api';
|
|
} from './purchaseInquiryForm.api';
|
|
import { cloneDeep } from 'lodash-es';
|
|
import { cloneDeep } from 'lodash-es';
|
|
import { JDictSelectTag, ApiSelect, JInput,JSelect } from '/@/components/Form';
|
|
import { JDictSelectTag, ApiSelect, JInput,JSelect } from '/@/components/Form';
|