|
@@ -53,9 +53,9 @@
|
|
|
<a-input placeholder="请输入" v-model:value="queryParams.productCode"></a-input>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
- <a-col :span="12">
|
|
|
- <a-form-item label="采购询价组(procurement inquiry team)" >
|
|
|
- <JDictSelectTag v-model:value="queryParams.inquiryTeam" placeholder="请选择" dictCode="procurement_inquiry_team"/>
|
|
|
+ <a-col :md="8" :sm="8">
|
|
|
+ <a-form-item label="采购询价组(procurement inquiry team)" :label-col="labelCol1" :wrapper-col="wrapperCol1">
|
|
|
+ <JSelectDept v-model:value="queryParams.inquiryTeam" :multiple="false"/>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
</template>
|
|
@@ -110,6 +110,7 @@
|
|
|
import { filterObj, getFileAccessHttpUrl } from '/@/utils/common/compUtils';
|
|
|
import { JDictSelectTag} from '/@/components/Form';
|
|
|
import JSelectInput from '/@/components/Form/src/jeecg/components/JSelectInput.vue';
|
|
|
+ import JSelectDept from '/@/components/Form/src/jeecg/components/JSelectDept.vue';
|
|
|
const emit = defineEmits([ 'selectCustomerInquiry']); //定义emit
|
|
|
let classOption = ref([])
|
|
|
var visible = ref(false)
|
|
@@ -245,11 +246,11 @@
|
|
|
});
|
|
|
const labelCol1 = ref({
|
|
|
xs: { span: 24 },
|
|
|
- sm: { span: 12 },
|
|
|
+ sm: { span: 11 },
|
|
|
});
|
|
|
const wrapperCol1 = ref({
|
|
|
xs: { span: 24 },
|
|
|
- sm: { span: 12 },
|
|
|
+ sm: { span: 13 },
|
|
|
});
|
|
|
const dataSource =ref([]);
|
|
|
let selectedRowKeys = ref([]);
|