This commit is contained in:
bb_pan 2026-01-06 13:59:03 +08:00
parent abea090cd4
commit e20b454925
4 changed files with 6 additions and 4 deletions

View File

@ -474,7 +474,7 @@ export default {
},
methods: {
goBack() {
this.$router.push({ path: '/business/outbound/addApply' })
this.$router.push({ path: '/business/outbound/applyList' })
},
// 使
async getUseProjectList() {

View File

@ -28,7 +28,7 @@
style="color: #13ce66; margin-right: 5px; cursor: pointer"
@click="openAddress"
/>
<el-select v-model="dialogForm.supplierId" placeholder="请选择厂家" clearable style="width: 240px">
<el-select v-model="dialogForm.supplierId" placeholder="请选择厂家" clearable filterable style="width: 240px">
<el-option
v-for="item in manufacturerSelect"
:key="item.id"

View File

@ -30,7 +30,7 @@
</el-form-item>
<el-form-item prop="manufacturerId" label="生产厂家">
<el-select v-model="queryParams.manufacturerId" placeholder="请选择生产厂家" clearable style="width: 200px">
<el-select v-model="queryParams.manufacturerId" placeholder="请选择生产厂家" clearable filterable style="width: 200px">
<el-option v-for="item in manufacturerList" :key="item.id" :label="item.label" :value="item.id"/>
</el-select>
</el-form-item>
@ -239,7 +239,7 @@
<el-table-column prop="manufacturer" label="生产厂家" show-overflow-tooltip align="center" min-width="200px">
<template v-slot="{ row }">
<span v-if="!row.isNew">{{ row.manufacturer }}</span>
<el-select v-else v-model="row.manufacturerId" placeholder="请选择生产厂家" clearable style="width: 100%">
<el-select v-else v-model="row.manufacturerId" placeholder="请选择生产厂家" clearable filterable style="width: 100%">
<el-option v-for="item in manufacturerList" :key="item.id" :label="item.label" :value="item.id"/>
</el-select>
</template>

View File

@ -230,6 +230,8 @@
placeholder="组织机构下辖部门"
:normalizer="orgDeptNormalizer"
:key="orgTreeKey"
no-options-text="暂无数据"
no-results-text="未找到匹配数据"
/>
</el-form-item>