diff --git a/src/api/mdm/Currency/model/CurrencyModel.ts b/src/api/mdm/Currency/model/CurrencyModel.ts index fe73bac..c0857af 100644 --- a/src/api/mdm/Currency/model/CurrencyModel.ts +++ b/src/api/mdm/Currency/model/CurrencyModel.ts @@ -7,6 +7,12 @@ export interface LngBCurrencyPageParams extends BasicPageParams { fullName: string; valid: string; + + code: string; + + localSign: string; + + note: string; } /** diff --git a/src/views/mdm/Currency/components/config.ts b/src/views/mdm/Currency/components/config.ts index c076ddc..7e692ca 100644 --- a/src/views/mdm/Currency/components/config.ts +++ b/src/views/mdm/Currency/components/config.ts @@ -24,6 +24,29 @@ export const searchFormSchema: FormSchema[] = [ getPopupContainer: () => document.body, }, }, + { + field: 'code', + label: '编码', + component: 'Input', + }, + { + field: 'localSign', + label: '是否本币', + component: 'XjrSelect', + componentProps: { + datasourceType: 'dic', + params: { itemId: '1978056598125330433' }, + labelField: 'name', + valueField: 'value', + + getPopupContainer: () => document.body, + }, + }, + { + field: 'note', + label: '备注', + component: 'Input', + }, ]; export const columns: BasicColumn[] = [