This commit is contained in:
parent
abea090cd4
commit
e20b454925
|
|
@ -474,7 +474,7 @@ export default {
|
|||
},
|
||||
methods: {
|
||||
goBack() {
|
||||
this.$router.push({ path: '/business/outbound/addApply' })
|
||||
this.$router.push({ path: '/business/outbound/applyList' })
|
||||
},
|
||||
// 获取使用项目的下拉选
|
||||
async getUseProjectList() {
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -230,6 +230,8 @@
|
|||
placeholder="组织机构下辖部门"
|
||||
:normalizer="orgDeptNormalizer"
|
||||
:key="orgTreeKey"
|
||||
no-options-text="暂无数据"
|
||||
no-results-text="未找到匹配数据"
|
||||
/>
|
||||
</el-form-item>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue