76 lines
1.4 KiB
JavaScript
76 lines
1.4 KiB
JavaScript
import { WeaLocaleProvider } from "ecCom";
|
|
const getLabel = WeaLocaleProvider.getLabel;
|
|
|
|
export const paymentScopeEnum = {
|
|
1: "SCOPE_COMPANY",
|
|
2: "SCOPE_PERSON"
|
|
};
|
|
|
|
export const welfareTypeEnum = {
|
|
1: "SOCIAL_SECURITY",
|
|
2: "ACCUMULATION_FUND",
|
|
3: "OTHER"
|
|
};
|
|
|
|
export const schemeFields = [
|
|
{
|
|
key: "paymentType",
|
|
label: getLabel(543163, "缴纳类型"),
|
|
lanId: 543163,
|
|
type: "SELECT",
|
|
options: [
|
|
{
|
|
key: "",
|
|
selected: false,
|
|
showname: ""
|
|
},
|
|
{
|
|
key: "SCHEME_TOWN",
|
|
selected: true,
|
|
showname: getLabel(19702, "城镇"),
|
|
lanId: 19702,
|
|
},
|
|
{
|
|
key: "SCHEME_VILLAGE",
|
|
selected: false,
|
|
showname: getLabel(19703, "农村"),
|
|
lanId: 19703,
|
|
}
|
|
],
|
|
viewAttr: 3,
|
|
tip: ""
|
|
},
|
|
{
|
|
key: "schemeName",
|
|
label: getLabel(33162, "方案名称"),
|
|
lanId: 33162,
|
|
type: "INPUT",
|
|
viewAttr: 3,
|
|
tip: ""
|
|
},
|
|
{
|
|
key: "sharedType",
|
|
label: getLabel(543164, "可见性"),
|
|
lanId: 543164,
|
|
type: "SELECT",
|
|
viewAttr: 2,
|
|
tip: ""
|
|
},
|
|
{
|
|
key: "taxAgentIds",
|
|
label: getLabel(543165, "可见性范围"),
|
|
lanId: 543165,
|
|
type: "SELECT",
|
|
viewAttr: 3,
|
|
tip: ""
|
|
},
|
|
{
|
|
key: "remarks",
|
|
label: getLabel(536726, "备注"),
|
|
lanId: 536726,
|
|
type: "TEXTAREA",
|
|
viewAttr: 2,
|
|
tip: ""
|
|
}
|
|
];
|