report_defined_properties.js 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822
  1. 'use strict';
  2. /**
  3. * Created by Tony on 2019/12/26.
  4. */
  5. module.exports = {
  6. ctrls: [
  7. {
  8. ID: 'Default',
  9. Wrap: 'T',
  10. Shrink: 'F',
  11. Horizon: 'left',
  12. ShowZero: 'T',
  13. Vertical: 'bottom',
  14. CfgDispName: '默认',
  15. CloseOutput: 'F',
  16. ShrinkFirst: 'F',
  17. }, {
  18. ID: 'Title',
  19. Wrap: 'T',
  20. Shrink: 'F',
  21. Horizon: 'center',
  22. ShowZero: 'T',
  23. Vertical: 'center',
  24. CfgDispName: '标题',
  25. CloseOutput: 'F',
  26. ShrinkFirst: 'F',
  27. }, {
  28. ID: 'Header',
  29. Wrap: 'F',
  30. Shrink: 'F',
  31. Horizon: 'left',
  32. ShowZero: 'T',
  33. Vertical: 'center',
  34. CfgDispName: '表头',
  35. CloseOutput: 'F',
  36. ShrinkFirst: 'F',
  37. }, {
  38. ID: 'Header_Right',
  39. Wrap: 'F',
  40. Shrink: 'F',
  41. Horizon: 'right',
  42. ShowZero: 'T',
  43. Vertical: 'center',
  44. CfgDispName: '表头_右',
  45. CloseOutput: 'F',
  46. ShrinkFirst: 'F',
  47. }, {
  48. ID: 'Footer',
  49. Wrap: 'F',
  50. Shrink: 'F',
  51. Horizon: 'left',
  52. ShowZero: 'T',
  53. Vertical: 'center',
  54. CfgDispName: '表尾',
  55. CloseOutput: 'F',
  56. ShrinkFirst: 'F',
  57. }, {
  58. ID: 'Footer_Right',
  59. Wrap: 'F',
  60. Shrink: 'F',
  61. Horizon: 'right',
  62. ShowZero: 'T',
  63. Vertical: 'center',
  64. CfgDispName: '表尾_右',
  65. CloseOutput: 'F',
  66. ShrinkFirst: 'F',
  67. }, {
  68. ID: 'Column',
  69. Wrap: 'T',
  70. Shrink: 'F',
  71. Horizon: 'center',
  72. ShowZero: 'F',
  73. Vertical: 'center',
  74. CfgDispName: '表栏',
  75. CloseOutput: 'F',
  76. ShrinkFirst: 'F',
  77. FillAfterWrap: 'T',
  78. }, {
  79. ID: 'Column_Left',
  80. Wrap: 'T',
  81. Shrink: 'F',
  82. Horizon: 'left',
  83. ShowZero: 'F',
  84. Vertical: 'center',
  85. CfgDispName: '表栏_左',
  86. CloseOutput: 'F',
  87. ShrinkFirst: 'F',
  88. }, {
  89. ID: 'Column_Right',
  90. Wrap: 'T',
  91. Shrink: 'F',
  92. Horizon: 'right',
  93. ShowZero: 'F',
  94. Vertical: 'center',
  95. CfgDispName: '表栏_右',
  96. CloseOutput: 'F',
  97. ShrinkFirst: 'F',
  98. }, {
  99. ID: 'Content_Left',
  100. Wrap: 'F',
  101. Shrink: 'T',
  102. Horizon: 'left',
  103. ShowZero: 'F',
  104. Vertical: 'bottom',
  105. CfgDispName: '正文内容',
  106. CloseOutput: 'T',
  107. ShrinkFirst: 'F',
  108. }, {
  109. ID: 'Content_Right',
  110. Wrap: 'F',
  111. Shrink: 'T',
  112. Horizon: 'right',
  113. ShowZero: 'F',
  114. Vertical: 'bottom',
  115. CfgDispName: '正文内容_右',
  116. CloseOutput: 'T',
  117. ShrinkFirst: 'F',
  118. }, {
  119. ID: 'Content_Center',
  120. Wrap: 'F',
  121. Shrink: 'T',
  122. Horizon: 'center',
  123. ShowZero: 'F',
  124. Vertical: 'bottom',
  125. CfgDispName: '正文内容_中',
  126. CloseOutput: 'T',
  127. ShrinkFirst: 'F',
  128. }, {
  129. ID: 'NewContent_Left',
  130. Wrap: 'F',
  131. Shrink: 'T',
  132. Horizon: 'left',
  133. ShowZero: 'F',
  134. Vertical: 'center',
  135. CfgDispName: '正文内容(新)',
  136. CloseOutput: 'T',
  137. ShrinkFirst: 'F',
  138. }, {
  139. ID: 'NewContent_Right',
  140. Wrap: 'F',
  141. Shrink: 'T',
  142. Horizon: 'right',
  143. ShowZero: 'F',
  144. Vertical: 'center',
  145. CfgDispName: '正文内容(新)_右',
  146. CloseOutput: 'T',
  147. ShrinkFirst: 'F',
  148. }, {
  149. ID: 'NewContent_Center',
  150. Wrap: 'F',
  151. Shrink: 'T',
  152. Horizon: 'center',
  153. ShowZero: 'F',
  154. Vertical: 'center',
  155. CfgDispName: '正文内容(新)_中',
  156. CloseOutput: 'T',
  157. ShrinkFirst: 'F',
  158. }, {
  159. ID: 'Currency',
  160. Wrap: 'F',
  161. Shrink: 'T',
  162. Horizon: 'right',
  163. ShowZero: 'F',
  164. Vertical: 'center',
  165. CfgDispName: '金额型',
  166. CloseOutput: 'F',
  167. ShrinkFirst: 'T',
  168. }, {
  169. ID: 'Left_Top',
  170. Wrap: 'T',
  171. Shrink: 'F',
  172. Horizon: 'left',
  173. ShowZero: 'T',
  174. Vertical: 'top',
  175. CfgDispName: '上靠_左',
  176. CloseOutput: 'T',
  177. ShrinkFirst: 'F',
  178. }, {
  179. ID: 'Center_Top',
  180. Wrap: 'T',
  181. Shrink: 'F',
  182. Horizon: 'center',
  183. ShowZero: 'T',
  184. Vertical: 'top',
  185. CfgDispName: '上靠_中',
  186. CloseOutput: 'T',
  187. ShrinkFirst: 'F',
  188. }, {
  189. ID: 'Right_Top',
  190. Wrap: 'T',
  191. Shrink: 'F',
  192. Horizon: 'right',
  193. ShowZero: 'T',
  194. Vertical: 'top',
  195. CfgDispName: '上靠_右',
  196. CloseOutput: 'T',
  197. ShrinkFirst: 'F',
  198. }, {
  199. ID: 'Left_Center',
  200. Wrap: 'T',
  201. Shrink: 'F',
  202. Horizon: 'left',
  203. ShowZero: 'T',
  204. Vertical: 'center',
  205. CfgDispName: '中靠_左',
  206. CloseOutput: 'T',
  207. ShrinkFirst: 'F',
  208. }, {
  209. ID: 'Center_Center',
  210. Wrap: 'T',
  211. Shrink: 'F',
  212. Horizon: 'center',
  213. ShowZero: 'T',
  214. Vertical: 'center',
  215. CfgDispName: '中靠_中',
  216. CloseOutput: 'T',
  217. ShrinkFirst: 'F',
  218. }, {
  219. ID: 'Right_Center',
  220. Wrap: 'T',
  221. Shrink: 'F',
  222. Horizon: 'right',
  223. ShowZero: 'T',
  224. Vertical: 'center',
  225. CfgDispName: '中靠_右',
  226. CloseOutput: 'T',
  227. ShrinkFirst: 'F',
  228. },
  229. ],
  230. fonts: [
  231. {
  232. ID: 'ReportTitle_Main',
  233. Name: '宋体',
  234. FontBold: 'T',
  235. FontAngle: '0',
  236. FontColor: 'BLACK',
  237. FontHeight: '32',
  238. FontItalic: 'F',
  239. CfgDispName: '主标题',
  240. FontStrikeOut: 'F',
  241. FontUnderline: 'F',
  242. }, {
  243. ID: 'ReportTitle_Vice_1',
  244. Name: '宋体',
  245. FontBold: 'T',
  246. FontAngle: '0',
  247. FontColor: 'BLACK',
  248. FontHeight: '22',
  249. FontItalic: 'F',
  250. CfgDispName: '副标题',
  251. FontStrikeOut: 'F',
  252. FontUnderline: 'F',
  253. }, {
  254. ID: 'ReportTitle_Vice_2',
  255. Name: '宋体',
  256. FontBold: 'T',
  257. FontAngle: '0',
  258. FontColor: 'BLACK',
  259. FontHeight: '18',
  260. FontItalic: 'F',
  261. CfgDispName: '副标题2',
  262. FontStrikeOut: 'F',
  263. FontUnderline: 'F',
  264. }, {
  265. ID: 'HeaderColumn',
  266. Name: '宋体',
  267. FontBold: 'F',
  268. FontAngle: '0',
  269. FontColor: 'BLACK',
  270. FontHeight: '12',
  271. FontItalic: 'F',
  272. CfgDispName: '栏头',
  273. FontStrikeOut: 'F',
  274. FontUnderline: 'F',
  275. }, {
  276. ID: 'Header',
  277. Name: '宋体',
  278. FontBold: 'F',
  279. FontAngle: '0',
  280. FontColor: 'BLACK',
  281. FontHeight: '12',
  282. FontItalic: 'F',
  283. CfgDispName: '表头',
  284. FontStrikeOut: 'F',
  285. FontUnderline: 'F',
  286. }, {
  287. ID: 'FooterColumn',
  288. Name: '宋体',
  289. FontBold: 'F',
  290. FontAngle: '0',
  291. FontColor: 'BLACK',
  292. FontHeight: '12',
  293. FontItalic: 'F',
  294. CfgDispName: '栏尾',
  295. FontStrikeOut: 'F',
  296. FontUnderline: 'F',
  297. }, {
  298. ID: 'Footer',
  299. Name: '宋体',
  300. FontBold: 'F',
  301. FontAngle: '0',
  302. FontColor: 'BLACK',
  303. FontHeight: '12',
  304. FontItalic: 'F',
  305. CfgDispName: '表尾',
  306. FontStrikeOut: 'F',
  307. FontUnderline: 'F',
  308. }, {
  309. ID: 'GrandTotal',
  310. Name: '宋体',
  311. FontBold: 'F',
  312. FontAngle: '0',
  313. FontColor: 'BLACK',
  314. FontHeight: '12',
  315. FontItalic: 'F',
  316. CfgDispName: '总合计',
  317. FontStrikeOut: 'F',
  318. FontUnderline: 'F',
  319. }, {
  320. ID: 'SectionTotal',
  321. Name: '宋体',
  322. FontBold: 'F',
  323. FontAngle: '0',
  324. FontColor: 'BLACK',
  325. FontHeight: '12',
  326. FontItalic: 'F',
  327. CfgDispName: '章合计',
  328. FontStrikeOut: 'F',
  329. FontUnderline: 'F',
  330. }, {
  331. ID: 'Content',
  332. Name: '宋体',
  333. FontBold: 'F',
  334. FontAngle: '0',
  335. FontColor: 'BLACK',
  336. FontHeight: '12',
  337. FontItalic: 'F',
  338. CfgDispName: '正文内容',
  339. FontStrikeOut: 'F',
  340. FontUnderline: 'F',
  341. }, {
  342. ID: 'Content_Narrow',
  343. Name: 'Arial Narrow',
  344. FontBold: 'F',
  345. FontAngle: '0',
  346. FontColor: 'BLACK',
  347. FontHeight: '12',
  348. FontItalic: 'F',
  349. CfgDispName: '正文内容-窄体',
  350. FontStrikeOut: 'F',
  351. FontUnderline: 'F',
  352. }, {
  353. ID: 'Header_V1',
  354. Name: '宋体',
  355. FontBold: 'F',
  356. FontAngle: '90',
  357. FontColor: 'BLACK',
  358. FontHeight: '12',
  359. FontItalic: 'F',
  360. FontStrikeOut: 'F',
  361. FontUnderline: 'F',
  362. }, {
  363. ID: 'Header_V2',
  364. Name: '宋体',
  365. FontBold: 'F',
  366. FontAngle: '-90',
  367. FontColor: 'BLACK',
  368. FontHeight: '12',
  369. FontItalic: 'F',
  370. FontStrikeOut: 'F',
  371. FontUnderline: 'F',
  372. },
  373. ],
  374. styles: [
  375. {
  376. ID: 'Default_None',
  377. CfgDispName: '空白',
  378. border_style: [
  379. {
  380. Color: 'BLACK',
  381. Position: 'Left',
  382. DashStyle: 'SOLID',
  383. LineWeight: '0',
  384. }, {
  385. Color: 'BLACK',
  386. Position: 'Right',
  387. DashStyle: 'SOLID',
  388. LineWeight: '0',
  389. }, {
  390. Color: 'BLACK',
  391. Position: 'Top',
  392. DashStyle: 'SOLID',
  393. LineWeight: '0',
  394. }, {
  395. Color: 'BLACK',
  396. Position: 'Bottom',
  397. DashStyle: 'SOLID',
  398. LineWeight: '0',
  399. },
  400. ],
  401. }, {
  402. ID: 'Default',
  403. CfgDispName: '默认',
  404. border_style: [
  405. {
  406. Color: 'BLACK',
  407. Position: 'Left',
  408. DashStyle: 'SOLID',
  409. LineWeight: '1',
  410. }, {
  411. Color: 'BLACK',
  412. Position: 'Right',
  413. DashStyle: 'SOLID',
  414. LineWeight: '1',
  415. }, {
  416. Color: 'BLACK',
  417. Position: 'Top',
  418. DashStyle: 'SOLID',
  419. LineWeight: '0',
  420. }, {
  421. Color: 'BLACK',
  422. Position: 'Bottom',
  423. DashStyle: 'SOLID',
  424. LineWeight: '0',
  425. },
  426. ],
  427. }, {
  428. ID: 'Default_Normal',
  429. CfgDispName: '正常',
  430. border_style: [
  431. {
  432. Color: 'BLACK',
  433. Position: 'Left',
  434. DashStyle: 'SOLID',
  435. LineWeight: '1',
  436. }, {
  437. Color: 'BLACK',
  438. Position: 'Right',
  439. DashStyle: 'SOLID',
  440. LineWeight: '1',
  441. }, {
  442. Color: 'BLACK',
  443. Position: 'Top',
  444. DashStyle: 'SOLID',
  445. LineWeight: '1',
  446. }, {
  447. Color: 'BLACK',
  448. Position: 'Bottom',
  449. DashStyle: 'SOLID',
  450. LineWeight: '1',
  451. },
  452. ],
  453. }, {
  454. ID: 'Label_Underline',
  455. CfgDispName: '字符底线',
  456. border_style: [
  457. {
  458. Color: 'BLACK',
  459. Position: 'Left',
  460. DashStyle: 'SOLID',
  461. LineWeight: '0',
  462. }, {
  463. Color: 'BLACK',
  464. Position: 'Right',
  465. DashStyle: 'SOLID',
  466. LineWeight: '0',
  467. }, {
  468. Color: 'BLACK',
  469. Position: 'Top',
  470. DashStyle: 'SOLID',
  471. LineWeight: '0',
  472. }, {
  473. Color: 'BLACK',
  474. Position: 'Bottom',
  475. DashStyle: 'SOLID',
  476. LineWeight: '1',
  477. },
  478. ],
  479. }, {
  480. ID: 'Label_Left',
  481. CfgDispName: '左边线',
  482. border_style: [
  483. {
  484. Color: 'BLACK',
  485. Position: 'Left',
  486. DashStyle: 'SOLID',
  487. LineWeight: '1',
  488. }, {
  489. Color: 'BLACK',
  490. Position: 'Right',
  491. DashStyle: 'SOLID',
  492. LineWeight: '0',
  493. }, {
  494. Color: 'BLACK',
  495. Position: 'Top',
  496. DashStyle: 'SOLID',
  497. LineWeight: '0',
  498. }, {
  499. Color: 'BLACK',
  500. Position: 'Bottom',
  501. DashStyle: 'SOLID',
  502. LineWeight: '0',
  503. },
  504. ],
  505. }, {
  506. ID: 'Label_Right',
  507. CfgDispName: '右边线',
  508. border_style: [
  509. {
  510. Color: 'BLACK',
  511. Position: 'Left',
  512. DashStyle: 'SOLID',
  513. LineWeight: '0',
  514. }, {
  515. Color: 'BLACK',
  516. Position: 'Right',
  517. DashStyle: 'SOLID',
  518. LineWeight: '1',
  519. }, {
  520. Color: 'BLACK',
  521. Position: 'Top',
  522. DashStyle: 'SOLID',
  523. LineWeight: '0',
  524. }, {
  525. Color: 'BLACK',
  526. Position: 'Bottom',
  527. DashStyle: 'SOLID',
  528. LineWeight: '0',
  529. },
  530. ],
  531. }, {
  532. ID: 'Label_Top',
  533. CfgDispName: '上边线',
  534. border_style: [
  535. {
  536. Color: 'BLACK',
  537. Position: 'Left',
  538. DashStyle: 'SOLID',
  539. LineWeight: '0',
  540. }, {
  541. Color: 'BLACK',
  542. Position: 'Right',
  543. DashStyle: 'SOLID',
  544. LineWeight: '0',
  545. }, {
  546. Color: 'BLACK',
  547. Position: 'Top',
  548. DashStyle: 'SOLID',
  549. LineWeight: '1',
  550. }, {
  551. Color: 'BLACK',
  552. Position: 'Bottom',
  553. DashStyle: 'SOLID',
  554. LineWeight: '0',
  555. },
  556. ],
  557. }, {
  558. ID: 'Label_LeftTop',
  559. CfgDispName: '左上边线',
  560. border_style: [
  561. {
  562. Color: 'BLACK',
  563. Position: 'Left',
  564. DashStyle: 'SOLID',
  565. LineWeight: '1',
  566. }, {
  567. Color: 'BLACK',
  568. Position: 'Right',
  569. DashStyle: 'SOLID',
  570. LineWeight: '0',
  571. }, {
  572. Color: 'BLACK',
  573. Position: 'Top',
  574. DashStyle: 'SOLID',
  575. LineWeight: '1',
  576. }, {
  577. Color: 'BLACK',
  578. Position: 'Bottom',
  579. DashStyle: 'SOLID',
  580. LineWeight: '0',
  581. },
  582. ],
  583. }, {
  584. ID: 'Label_LeftBottom',
  585. CfgDispName: '左下边线',
  586. border_style: [
  587. {
  588. Color: 'BLACK',
  589. Position: 'Left',
  590. DashStyle: 'SOLID',
  591. LineWeight: '1',
  592. }, {
  593. Color: 'BLACK',
  594. Position: 'Right',
  595. DashStyle: 'SOLID',
  596. LineWeight: '0',
  597. }, {
  598. Color: 'BLACK',
  599. Position: 'Top',
  600. DashStyle: 'SOLID',
  601. LineWeight: '0',
  602. }, {
  603. Color: 'BLACK',
  604. Position: 'Bottom',
  605. DashStyle: 'SOLID',
  606. LineWeight: '1',
  607. },
  608. ],
  609. }, {
  610. ID: 'Label_RightTop',
  611. CfgDispName: '右上边线',
  612. border_style: [
  613. {
  614. Color: 'BLACK',
  615. Position: 'Left',
  616. DashStyle: 'SOLID',
  617. LineWeight: '0',
  618. }, {
  619. Color: 'BLACK',
  620. Position: 'Right',
  621. DashStyle: 'SOLID',
  622. LineWeight: '1',
  623. }, {
  624. Color: 'BLACK',
  625. Position: 'Top',
  626. DashStyle: 'SOLID',
  627. LineWeight: '1',
  628. }, {
  629. Color: 'BLACK',
  630. Position: 'Bottom',
  631. DashStyle: 'SOLID',
  632. LineWeight: '0',
  633. },
  634. ],
  635. }, {
  636. ID: 'Label_RightBottom',
  637. CfgDispName: '右下边线',
  638. border_style: [
  639. {
  640. Color: 'BLACK',
  641. Position: 'Left',
  642. DashStyle: 'SOLID',
  643. LineWeight: '0',
  644. }, {
  645. Color: 'BLACK',
  646. Position: 'Right',
  647. DashStyle: 'SOLID',
  648. LineWeight: '1',
  649. }, {
  650. Color: 'BLACK',
  651. Position: 'Top',
  652. DashStyle: 'SOLID',
  653. LineWeight: '0',
  654. }, {
  655. Color: 'BLACK',
  656. Position: 'Bottom',
  657. DashStyle: 'SOLID',
  658. LineWeight: '1',
  659. },
  660. ],
  661. }, {
  662. ID: 'Label_TopBottom',
  663. CfgDispName: '上下边线',
  664. border_style: [
  665. {
  666. Color: 'BLACK',
  667. Position: 'Left',
  668. DashStyle: 'SOLID',
  669. LineWeight: '0',
  670. }, {
  671. Color: 'BLACK',
  672. Position: 'Right',
  673. DashStyle: 'SOLID',
  674. LineWeight: '0',
  675. }, {
  676. Color: 'BLACK',
  677. Position: 'Top',
  678. DashStyle: 'SOLID',
  679. LineWeight: '1',
  680. }, {
  681. Color: 'BLACK',
  682. Position: 'Bottom',
  683. DashStyle: 'SOLID',
  684. LineWeight: '1',
  685. },
  686. ],
  687. }, {
  688. ID: 'Label_TopCover',
  689. CfgDispName: '上包围',
  690. border_style: [
  691. {
  692. Color: 'BLACK',
  693. Position: 'Left',
  694. DashStyle: 'SOLID',
  695. LineWeight: '1',
  696. }, {
  697. Color: 'BLACK',
  698. Position: 'Right',
  699. DashStyle: 'SOLID',
  700. LineWeight: '1',
  701. }, {
  702. Color: 'BLACK',
  703. Position: 'Top',
  704. DashStyle: 'SOLID',
  705. LineWeight: '1',
  706. }, {
  707. Color: 'BLACK',
  708. Position: 'Bottom',
  709. DashStyle: 'SOLID',
  710. LineWeight: '0',
  711. },
  712. ],
  713. }, {
  714. ID: 'Label_BottomCover',
  715. CfgDispName: '下包围',
  716. border_style: [
  717. {
  718. Color: 'BLACK',
  719. Position: 'Left',
  720. DashStyle: 'SOLID',
  721. LineWeight: '1',
  722. }, {
  723. Color: 'BLACK',
  724. Position: 'Right',
  725. DashStyle: 'SOLID',
  726. LineWeight: '1',
  727. }, {
  728. Color: 'BLACK',
  729. Position: 'Top',
  730. DashStyle: 'SOLID',
  731. LineWeight: '0',
  732. }, {
  733. Color: 'BLACK',
  734. Position: 'Bottom',
  735. DashStyle: 'SOLID',
  736. LineWeight: '1',
  737. },
  738. ],
  739. }, {
  740. ID: 'Label_LeftCover',
  741. CfgDispName: '左包围',
  742. border_style: [
  743. {
  744. Color: 'BLACK',
  745. Position: 'Left',
  746. DashStyle: 'SOLID',
  747. LineWeight: '1',
  748. }, {
  749. Color: 'BLACK',
  750. Position: 'Right',
  751. DashStyle: 'SOLID',
  752. LineWeight: '0',
  753. }, {
  754. Color: 'BLACK',
  755. Position: 'Top',
  756. DashStyle: 'SOLID',
  757. LineWeight: '1',
  758. }, {
  759. Color: 'BLACK',
  760. Position: 'Bottom',
  761. DashStyle: 'SOLID',
  762. LineWeight: '1',
  763. },
  764. ],
  765. }, {
  766. ID: 'Label_RightCover',
  767. CfgDispName: '右包围',
  768. border_style: [
  769. {
  770. Color: 'BLACK',
  771. Position: 'Left',
  772. DashStyle: 'SOLID',
  773. LineWeight: '0',
  774. }, {
  775. Color: 'BLACK',
  776. Position: 'Right',
  777. DashStyle: 'SOLID',
  778. LineWeight: '1',
  779. }, {
  780. Color: 'BLACK',
  781. Position: 'Top',
  782. DashStyle: 'SOLID',
  783. LineWeight: '1',
  784. }, {
  785. Color: 'BLACK',
  786. Position: 'Bottom',
  787. DashStyle: 'SOLID',
  788. LineWeight: '1',
  789. },
  790. ],
  791. }, {
  792. ID: 'BORDER_ALL_AROUND',
  793. CfgDispName: '报表边框',
  794. border_style: [
  795. {
  796. Color: 'BLACK',
  797. Position: 'Left',
  798. DashStyle: 'SOLID',
  799. LineWeight: '2.0',
  800. }, {
  801. Color: 'BLACK',
  802. Position: 'Right',
  803. DashStyle: 'SOLID',
  804. LineWeight: '2.0',
  805. }, {
  806. Color: 'BLACK',
  807. Position: 'Top',
  808. DashStyle: 'SOLID',
  809. LineWeight: '2.0',
  810. }, {
  811. Color: 'BLACK',
  812. Position: 'Bottom',
  813. DashStyle: 'SOLID',
  814. LineWeight: '2.0',
  815. },
  816. ],
  817. },
  818. ],
  819. };