Commit 57f8914a authored by shenshaokai's avatar shenshaokai

fix: 待审核物料-隐藏高级筛选-品牌

parent 4255bb31
...@@ -4,8 +4,8 @@ import { FORM_FILTER_PATH } from '@/formSchema/const'; ...@@ -4,8 +4,8 @@ import { FORM_FILTER_PATH } from '@/formSchema/const';
const intl = getIntl(); const intl = getIntl();
type Options = { type Options = {
showStatus: boolean showStatus: boolean
} }
export const getSchema = (options: Options) => { export const getSchema = (options: Options) => {
...@@ -49,36 +49,36 @@ export const getSchema = (options: Options) => { ...@@ -49,36 +49,36 @@ export const getSchema = (options: Options) => {
type: 'string', type: 'string',
'x-component-props': { 'x-component-props': {
placeholder: intl.formatMessage({ id: 'material.name', defaultMessage: '物料名称' }), placeholder: intl.formatMessage({ id: 'material.name', defaultMessage: '物料名称' }),
allowClear: true, allowClear: true,
}, },
}, },
materialGroupId: { materialGroupId: {
type: 'string', type: 'string',
// 'x-component': 'Cascader', // 'x-component': 'Cascader',
'x-component-props': { 'x-component-props': {
placeholder: intl.formatMessage({ id: 'material.group.title', defaultMessage: '物料组'}), placeholder: intl.formatMessage({ id: 'material.group.title', defaultMessage: '物料组'}),
allowClear: true, allowClear: true,
fieldNames: { label: 'title', value: 'id', children: 'children' }, fieldNames: { label: 'title', value: 'id', children: 'children' },
style: { width: '150px' }, style: { width: '150px' },
showSearch: true showSearch: true
}, },
},
brandId: {
type: 'string',
enum: [],
'x-component-props': {
placeholder: intl.formatMessage({ id: 'material.brand', defaultMessage: '品牌' }),
allowClear: true,
showSearch: true,
style: { width: '150px' },
},
}, },
// brandId: {
// type: 'string',
// enum: [],
// 'x-component-props': {
// placeholder: intl.formatMessage({ id: 'material.brand', defaultMessage: '品牌' }),
// allowClear: true,
// showSearch: true,
// style: { width: '150px' },
// },
// },
customerCategoryId: { customerCategoryId: {
type: 'string', type: 'string',
// 'x-component': 'Cascader', // 'x-component': 'Cascader',
'x-component-props': { 'x-component-props': {
placeholder: intl.formatMessage({ id: 'material.category', defaultMessage: '品类' }), placeholder: intl.formatMessage({ id: 'material.category', defaultMessage: '品类' }),
allowClear: true, allowClear: true,
style: { width: '150px' }, style: { width: '150px' },
showSearch: true, showSearch: true,
fieldNames: { label: 'title', value: 'id', children: 'children' }, fieldNames: { label: 'title', value: 'id', children: 'children' },
...@@ -89,7 +89,7 @@ export const getSchema = (options: Options) => { ...@@ -89,7 +89,7 @@ export const getSchema = (options: Options) => {
visible: options.showStatus, visible: options.showStatus,
'x-component-props': { 'x-component-props': {
placeholder: intl.formatMessage({ id: 'material.interiorStateName', defaultMessage: '内部状态' }), placeholder: intl.formatMessage({ id: 'material.interiorStateName', defaultMessage: '内部状态' }),
allowClear: true, allowClear: true,
enum: [], enum: [],
}, },
}, },
......
...@@ -134,7 +134,7 @@ const MaterialQuery = () => { ...@@ -134,7 +134,7 @@ const MaterialQuery = () => {
/** /**
* 冻结 0, 启动 1 * 冻结 0, 启动 1
* @param status * @param status
*/ */
const handleBatchFrozen = async (status: 0 | 1, reason?: string) => { const handleBatchFrozen = async (status: 0 | 1, reason?: string) => {
const selectedRowKeys = selectRowFns.selectedRowKeys; const selectedRowKeys = selectRowFns.selectedRowKeys;
...@@ -235,7 +235,7 @@ const MaterialQuery = () => { ...@@ -235,7 +235,7 @@ const MaterialQuery = () => {
useStateFilterSearchLinkageEffect($, actions, 'code', FORM_FILTER_PATH); useStateFilterSearchLinkageEffect($, actions, 'code', FORM_FILTER_PATH);
useAsyncCascader('materialGroupId', fetchTreeData) useAsyncCascader('materialGroupId', fetchTreeData)
useAsyncCascader('customerCategoryId', fetchCategoryData) useAsyncCascader('customerCategoryId', fetchCategoryData)
useAsyncSelect('brandId', fetchBrand, ["name", "id"]) // useAsyncSelect('brandId', fetchBrand, ["name", "id"])
useAsyncSelect('status', fetchStatus, ["name", "status"]) useAsyncSelect('status', fetchStatus, ["name", "status"])
}} }}
/> />
...@@ -253,4 +253,4 @@ const MaterialQuery = () => { ...@@ -253,4 +253,4 @@ const MaterialQuery = () => {
) )
} }
export default MaterialQuery export default MaterialQuery
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment