From c216803eca7bfed76aceffa597ee227b58a63108 Mon Sep 17 00:00:00 2001 From: cloudroam <cloudroam> Date: 星期二, 10 九月 2024 14:01:23 +0800 Subject: [PATCH] 1.新增筛选:已加价/未加价2.新增“售价”字段,售价=底价+加价 --- utils/form-item-config.js | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/utils/form-item-config.js b/utils/form-item-config.js index 1499942..93beef5 100644 --- a/utils/form-item-config.js +++ b/utils/form-item-config.js @@ -10,7 +10,7 @@ } } -export const getGoodsCategoryListConfig = (checkStrictly = false) => { +export const getGoodsCategoryListConfig = (checkStrictly = false, multiple = false) => { return { label: '商品分类:', id: 'categoryId', @@ -22,7 +22,9 @@ value: 'id', emitPath: false, checkStrictly, + multiple, }, + filterable: true, clearable: true, style: 'width:100%', }, -- Gitblit v1.9.3