25 lines
530 B
JavaScript
25 lines
530 B
JavaScript
import React from "react";
|
|
import { WeaLocaleProvider } from "ecCom";
|
|
|
|
const getLabel = WeaLocaleProvider.getLabel;
|
|
//薪资核算-自定义导出-模板设置
|
|
export const tempConditions = [
|
|
{
|
|
items: [
|
|
{
|
|
colSpan: 1,
|
|
conditionType: "INPUT",
|
|
domkey: ["templateName"],
|
|
fieldcol: 16,
|
|
label: getLabel(111, "导出模板名称"),
|
|
labelcol: 8,
|
|
value: "",
|
|
rules: "required|string",
|
|
viewAttr: 3
|
|
}
|
|
],
|
|
defaultshow: true,
|
|
title: ""
|
|
}
|
|
];
|