rpt_cfg.js 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423
  1. module.exports = {
  2. "fonts" : [
  3. {
  4. "ID" : "ReportTitle_Main",
  5. "CfgDispName" : "主标题",
  6. "Name" : "宋体",
  7. "FontHeight" : "32",
  8. "FontColor" : "BLACK",
  9. "FontBold" : "T",
  10. "FontItalic" : "F",
  11. "FontUnderline" : "F",
  12. "FontStrikeOut" : "F",
  13. "FontAngle" : "0"
  14. },
  15. {
  16. "ID" : "ReportTitle_Vice_1",
  17. "CfgDispName" : "副标题",
  18. "Name" : "宋体",
  19. "FontHeight" : "22",
  20. "FontColor" : "BLACK",
  21. "FontBold" : "T",
  22. "FontItalic" : "F",
  23. "FontUnderline" : "F",
  24. "FontStrikeOut" : "F",
  25. "FontAngle" : "0"
  26. },
  27. {
  28. "ID" : "ReportTitle_Vice_2",
  29. "CfgDispName" : "副标题2",
  30. "Name" : "宋体",
  31. "FontHeight" : "18",
  32. "FontColor" : "BLACK",
  33. "FontBold" : "T",
  34. "FontItalic" : "F",
  35. "FontUnderline" : "F",
  36. "FontStrikeOut" : "F",
  37. "FontAngle" : "0"
  38. },
  39. {
  40. "ID" : "HeaderColumn",
  41. "CfgDispName" : "栏头",
  42. "Name" : "宋体",
  43. "FontHeight" : "12",
  44. "FontColor" : "BLACK",
  45. "FontBold" : "F",
  46. "FontItalic" : "F",
  47. "FontUnderline" : "F",
  48. "FontStrikeOut" : "F",
  49. "FontAngle" : "0"
  50. },
  51. {
  52. "ID" : "Header",
  53. "CfgDispName" : "表头",
  54. "Name" : "宋体",
  55. "FontHeight" : "12",
  56. "FontColor" : "BLACK",
  57. "FontBold" : "F",
  58. "FontItalic" : "F",
  59. "FontUnderline" : "F",
  60. "FontStrikeOut" : "F",
  61. "FontAngle" : "0"
  62. },
  63. {
  64. "ID" : "FooterColumn",
  65. "CfgDispName" : "栏尾",
  66. "Name" : "宋体",
  67. "FontHeight" : "12",
  68. "FontColor" : "BLACK",
  69. "FontBold" : "F",
  70. "FontItalic" : "F",
  71. "FontUnderline" : "F",
  72. "FontStrikeOut" : "F",
  73. "FontAngle" : "0"
  74. },
  75. {
  76. "ID" : "Footer",
  77. "CfgDispName" : "表尾",
  78. "Name" : "宋体",
  79. "FontHeight" : "12",
  80. "FontColor" : "BLACK",
  81. "FontBold" : "F",
  82. "FontItalic" : "F",
  83. "FontUnderline" : "F",
  84. "FontStrikeOut" : "F",
  85. "FontAngle" : "0"
  86. },
  87. {
  88. "ID" : "GrandTotal",
  89. "CfgDispName" : "总合计",
  90. "Name" : "宋体",
  91. "FontHeight" : "12",
  92. "FontColor" : "BLACK",
  93. "FontBold" : "F",
  94. "FontItalic" : "F",
  95. "FontUnderline" : "F",
  96. "FontStrikeOut" : "F",
  97. "FontAngle" : "0"
  98. },
  99. {
  100. "ID" : "SectionTotal",
  101. "CfgDispName" : "章合计",
  102. "Name" : "宋体",
  103. "FontHeight" : "12",
  104. "FontColor" : "BLACK",
  105. "FontBold" : "F",
  106. "FontItalic" : "F",
  107. "FontUnderline" : "F",
  108. "FontStrikeOut" : "F",
  109. "FontAngle" : "0"
  110. },
  111. {
  112. "ID" : "Content",
  113. "CfgDispName" : "正文内容",
  114. "Name" : "宋体",
  115. "FontHeight" : "12",
  116. "FontColor" : "BLACK",
  117. "FontBold" : "F",
  118. "FontItalic" : "F",
  119. "FontUnderline" : "F",
  120. "FontStrikeOut" : "F",
  121. "FontAngle" : "0"
  122. },
  123. {
  124. "ID" : "Content_Narrow",
  125. "CfgDispName" : "正文内容-窄体",
  126. "Name" : "Arial Narrow",
  127. "FontHeight" : "12",
  128. "FontColor" : "BLACK",
  129. "FontBold" : "F",
  130. "FontItalic" : "F",
  131. "FontUnderline" : "F",
  132. "FontStrikeOut" : "F",
  133. "FontAngle" : "0"
  134. },
  135. {
  136. "ID" : "Header_V1",
  137. "Name" : "宋体",
  138. "FontHeight" : "12",
  139. "FontColor" : "BLACK",
  140. "FontBold" : "F",
  141. "FontItalic" : "F",
  142. "FontUnderline" : "F",
  143. "FontStrikeOut" : "F",
  144. "FontAngle" : "90"
  145. },
  146. {
  147. "ID" : "Header_V2",
  148. "Name" : "宋体",
  149. "FontHeight" : "12",
  150. "FontColor" : "BLACK",
  151. "FontBold" : "F",
  152. "FontItalic" : "F",
  153. "FontUnderline" : "F",
  154. "FontStrikeOut" : "F",
  155. "FontAngle" : "-90"
  156. }
  157. ],
  158. "styles" : [
  159. {
  160. "ID" : "Default_None",
  161. "CfgDispName" : "空白",
  162. "border_style" : []
  163. },
  164. {
  165. "ID" : "Default",
  166. "CfgDispName" : "默认",
  167. "border_style" : [
  168. {
  169. "Position" : "Left",
  170. "LineWeight" : "1",
  171. "DashStyle" : "SOLID",
  172. "Color" : "BLACK"
  173. },
  174. {
  175. "Position" : "Right",
  176. "LineWeight" : "1",
  177. "DashStyle" : "SOLID",
  178. "Color" : "BLACK"
  179. },
  180. {
  181. "Position" : "Top",
  182. "LineWeight" : "0",
  183. "DashStyle" : "SOLID",
  184. "Color" : "BLACK"
  185. },
  186. {
  187. "Position" : "Bottom",
  188. "LineWeight" : "0",
  189. "DashStyle" : "SOLID",
  190. "Color" : "BLACK"
  191. }
  192. ]
  193. },
  194. {
  195. "ID" : "Default_Normal",
  196. "CfgDispName" : "正常",
  197. "border_style" : [
  198. {
  199. "Position" : "Left",
  200. "LineWeight" : "1",
  201. "DashStyle" : "SOLID",
  202. "Color" : "BLACK"
  203. },
  204. {
  205. "Position" : "Right",
  206. "LineWeight" : "1",
  207. "DashStyle" : "SOLID",
  208. "Color" : "BLACK"
  209. },
  210. {
  211. "Position" : "Top",
  212. "LineWeight" : "1",
  213. "DashStyle" : "SOLID",
  214. "Color" : "BLACK"
  215. },
  216. {
  217. "Position" : "Bottom",
  218. "LineWeight" : "1",
  219. "DashStyle" : "SOLID",
  220. "Color" : "BLACK"
  221. }
  222. ]
  223. },
  224. {
  225. "ID" : "Label_Underline",
  226. "CfgDispName" : "字符底线",
  227. "border_style" : [
  228. {
  229. "Position" : "Left",
  230. "LineWeight" : "0",
  231. "DashStyle" : "SOLID",
  232. "Color" : "BLACK"
  233. },
  234. {
  235. "Position" : "Right",
  236. "LineWeight" : "0",
  237. "DashStyle" : "SOLID",
  238. "Color" : "BLACK"
  239. },
  240. {
  241. "Position" : "Top",
  242. "LineWeight" : "0",
  243. "DashStyle" : "SOLID",
  244. "Color" : "BLACK"
  245. },
  246. {
  247. "Position" : "Bottom",
  248. "LineWeight" : "1",
  249. "DashStyle" : "SOLID",
  250. "Color" : "BLACK"
  251. }
  252. ]
  253. },
  254. {
  255. "ID" : "BORDER_ALL_AROUND",
  256. "CfgDispName" : "报表边框",
  257. "border_style" : [
  258. {
  259. "Position" : "Left",
  260. "LineWeight" : "0.0",
  261. "DashStyle" : "SOLID",
  262. "Color" : "BLACK"
  263. },
  264. {
  265. "Position" : "Right",
  266. "LineWeight" : "0.0",
  267. "DashStyle" : "SOLID",
  268. "Color" : "BLACK"
  269. },
  270. {
  271. "Position" : "Top",
  272. "LineWeight" : "2.0",
  273. "DashStyle" : "SOLID",
  274. "Color" : "BLACK"
  275. },
  276. {
  277. "Position" : "Bottom",
  278. "LineWeight" : "2.0",
  279. "DashStyle" : "SOLID",
  280. "Color" : "BLACK"
  281. }
  282. ]
  283. }
  284. ],
  285. "ctrls" : [
  286. {
  287. "ID" : "Default",
  288. "CfgDispName" : "默认",
  289. "Shrink" : "T",
  290. "ShowZero" : "T",
  291. "Horizon" : "left",
  292. "Vertical" : "bottom",
  293. "Wrap" : "false"
  294. },
  295. {
  296. "ID" : "Title",
  297. "CfgDispName" : "标题",
  298. "Shrink" : "T",
  299. "ShowZero" : "T",
  300. "Horizon" : "center",
  301. "Vertical" : "center",
  302. "Wrap" : "false"
  303. },
  304. {
  305. "ID" : "Header",
  306. "CfgDispName" : "表头",
  307. "Shrink" : "T",
  308. "ShowZero" : "T",
  309. "Horizon" : "left",
  310. "Vertical" : "center",
  311. "Wrap" : "false"
  312. },
  313. {
  314. "ID": "Header_Right",
  315. "CfgDispName": "表头_右",
  316. "Shrink": "F",
  317. "ShowZero": "T",
  318. "Horizon": "right",
  319. "Vertical": "center",
  320. "Wrap": "F"
  321. },
  322. {
  323. "ID" : "Footer",
  324. "CfgDispName" : "表尾",
  325. "Shrink" : "T",
  326. "ShowZero" : "T",
  327. "Horizon" : "left",
  328. "Vertical" : "center",
  329. "Wrap" : "false"
  330. },
  331. {
  332. "ID" : "Column",
  333. "CfgDispName" : "表栏",
  334. "Shrink" : "T",
  335. "ShowZero" : "T",
  336. "Horizon" : "center",
  337. "Vertical" : "center",
  338. "Wrap" : "false",
  339. "FillAfterWrap" : "true"
  340. },
  341. {
  342. "ID" : "Column_Left",
  343. "CfgDispName" : "表栏_左",
  344. "Shrink" : "T",
  345. "ShowZero" : "T",
  346. "Horizon" : "left",
  347. "Vertical" : "center",
  348. "Wrap" : "false"
  349. },
  350. {
  351. "ID" : "Column_Right",
  352. "CfgDispName" : "表栏_右",
  353. "Shrink" : "T",
  354. "ShowZero" : "T",
  355. "Horizon" : "right",
  356. "Vertical" : "center",
  357. "Wrap" : "false"
  358. },
  359. {
  360. "ID" : "Content_Left",
  361. "CfgDispName" : "正文内容",
  362. "Shrink" : "T",
  363. "ShowZero" : "F",
  364. "Horizon" : "left",
  365. "Vertical" : "bottom",
  366. "Wrap" : "false"
  367. },
  368. {
  369. "ID" : "Content_Right",
  370. "CfgDispName" : "正文内容_右",
  371. "Shrink" : "T",
  372. "ShowZero" : "F",
  373. "Horizon" : "right",
  374. "Vertical" : "bottom",
  375. "Wrap" : "false"
  376. },
  377. {
  378. "ID" : "Content_Center",
  379. "CfgDispName" : "正文内容_中",
  380. "Shrink" : "T",
  381. "ShowZero" : "F",
  382. "Horizon" : "center",
  383. "Vertical" : "bottom",
  384. "Wrap" : "false"
  385. },
  386. {
  387. "ID" : "Currency",
  388. "CfgDispName" : "金额型",
  389. "Shrink" : "T",
  390. "ShowZero" : "F",
  391. "Horizon" : "right",
  392. "Vertical" : "center",
  393. "Wrap" : "F"
  394. },
  395. {
  396. "ID" : "Left_Top",
  397. "CfgDispName" : "上靠_左",
  398. "Shrink" : "F",
  399. "ShowZero" : "T",
  400. "Horizon" : "left",
  401. "Vertical" : "top",
  402. "Wrap" : "F"
  403. },
  404. {
  405. "ID" : "Center_Top",
  406. "CfgDispName" : "上靠_中",
  407. "Shrink" : "F",
  408. "ShowZero" : "T",
  409. "Horizon" : "center",
  410. "Vertical" : "top",
  411. "Wrap" : "F"
  412. },
  413. {
  414. "ID" : "Right_Top",
  415. "CfgDispName" : "上靠_右",
  416. "Shrink" : "F",
  417. "ShowZero" : "T",
  418. "Horizon" : "right",
  419. "Vertical" : "top",
  420. "Wrap" : "F"
  421. }
  422. ]
  423. }