fastlion-amis
Version:
一种MIS页面生成工具
72 lines (71 loc) • 2.85 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.sizeOptions = exports.pageOptions = exports.duplexPrintOptions = exports.fontSizeOptions = exports.fontFamilyOptions = void 0;
exports.fontFamilyOptions = [
{ label: '宋体', value: '宋体' },
{ label: '微软雅黑', value: '微软雅黑' },
{ label: '楷体', value: '楷体' }
];
exports.fontSizeOptions = [
{ label: '12px', value: 12 },
{ label: '13px', value: 13 },
{ label: '14px', value: 14 },
{ label: '15px', value: 15 },
{ label: '16px', value: 16 },
{ label: '17px', value: 17 },
{ label: '18px', value: 18 },
{ label: '21px', value: 21 }
];
exports.duplexPrintOptions = [
{ label: '不控制', value: 0 },
{ label: '不双面', value: 1 },
{ label: '双面(长边翻转)', value: 2 },
{ label: '双面(短边翻转)', value: 3 }
];
exports.pageOptions = [
{ value: 'A4', label: 'A4 (210.0*297.0)' },
{ value: 'A3', label: 'A3 (297.0*420.0)' },
{ value: 'A5', label: 'A5 (148.0*210.0)' },
{ value: 'B4', label: 'B4 (250.0*354.0)' },
{ value: 'B5', label: 'B5 (182.0*257.0)' },
{ value: '信封 #9', label: '信封 #9 (98.4*225.4)' },
{ value: '信封 #10', label: '信封 #10 (104.8*241.3)' },
{ value: '信封 #11', label: '信封 #11 (114.3*263.5)' },
{ value: '信封 #12', label: '信封 #12 (101.6*279.4)' },
{ value: '信封 #14', label: '信封 #14 (127.0*292.1)' },
{ value: '2开', label: '2开 (215.9*330.2)' },
{ value: '4开', label: '4开 (215.0*275.0)' },
{ value: '大4开', label: '大4开 (254.0*355.6)' },
{ value: '信纸', label: '信纸 (215.9*279.4)' },
{ value: '小报', label: '小报 (279.4*431.8)' },
{ value: '文书', label: '文书 (215.9*355.6)' },
{ value: '申明', label: '申明 (139.7*215.9)' },
{ value: '公函', label: '公函 (190.5*254.0)' },
{ value: '便条', label: '便条 (215.9*279.0)' },
{ value: '方纸', label: '方纸 (100.0*100.0)' },
{ value: '自定义', label: '自定义' }
];
exports.sizeOptions = {
"A4": [210.0, 297.0],
"A3": [297.0, 420.0],
"A5": [148.0, 210.0],
"B4": [250.0, 354.0],
"B5": [182.0, 257.0],
"信封 #9": [98.4, 225.4],
"信封 #10": [104.8, 241.3],
"信封 #11": [114.3, 263.5],
"信封 #12": [101.6, 279.4],
"信封 #14": [127.0, 292.1],
"2开": [215.9, 330.2],
"4开": [215.0, 275.0],
"大4开": [254.0, 355.6],
"信纸": [215.9, 279.4],
"小报": [279.4, 431.8],
"文书": [215.9, 355.6],
"申明": [139.7, 215.9],
"公函": [190.5, 254.0],
"便条": [215.9, 279.0],
"方纸": [100.0, 100.0],
"自定义": [0, 0]
};
//# sourceMappingURL=./renderers/Lion/LabelPrint/types.js.map