18 lines
449 B
JavaScript
18 lines
449 B
JavaScript
export function splitTypeLabel(type) {
|
||
return Number(type) === 1 ? '百分比' : '固定金额';
|
||
}
|
||
|
||
export function tcmBaseLabel(type) {
|
||
return Number(type) === 1 ? '处方总价' : '药店利润';
|
||
}
|
||
|
||
export const SPLIT_TYPE_OPTIONS = [
|
||
{ label: '元/件(固定金额)', value: 0 },
|
||
{ label: '百分比(%)', value: 1 },
|
||
];
|
||
|
||
export const TCM_BASE_OPTIONS = [
|
||
{ label: '药店利润', value: 0 },
|
||
{ label: '处方总价', value: 1 },
|
||
];
|