| | |
| | | </el-form-item> |
| | | <el-form-item label="供应商:"> |
| | | <el-select v-model="searchForm.supplierId" placeholder="请选择供应商" clearable style="width: 200px"> |
| | | <el-option v-for="supplier in supplierList" :key="supplier.id" :label="supplier.name" :value="supplier.id" /> |
| | | <el-option v-for="supplier in supplierList" :key="supplier.id" :label="supplier.supplierName" :value="supplier.id" /> |
| | | </el-select> |
| | | </el-form-item> |
| | | <el-form-item> |
| | |
| | | }); |
| | | |
| | | const supplierList = ref([ |
| | | { id: 1, name: '优质五金供应商' }, |
| | | { id: 2, name: '钢材贸易公司' }, |
| | | { id: 3, name: '建材批发商' } |
| | | ]) |
| | | |
| | | const productList = ref([ |
| | | { id: 1, name: '高强度螺栓' }, |
| | | { id: 2, name: '不锈钢管' }, |
| | | { id: 3, name: '铝合金型材' } |
| | | ]) |
| | | |
| | | |