|
@@ -94,9 +94,16 @@ export default {
|
|
|
}}
|
|
|
placeholder="请选择"
|
|
|
>
|
|
|
- {this.classifyList.map((item, index_) => (
|
|
|
- <el-option key={index_} label={item.name} value={item.categoryId}></el-option>
|
|
|
- ))}
|
|
|
+ {this.classifyList
|
|
|
+ .filter(val_ => {
|
|
|
+ var v_ = this.orderInfo?.orderProducts?.find(item => item[column.columnAttributes.prop])?.[
|
|
|
+ column.columnAttributes.prop
|
|
|
+ ]
|
|
|
+ return v_ ? val_.categoryId === v_ : true
|
|
|
+ })
|
|
|
+ .map((item, index_) => (
|
|
|
+ <el-option key={index_} label={item.name} value={item.categoryId}></el-option>
|
|
|
+ ))}
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
</div>
|