screen7.json 152 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762
  1. {
  2. "id": 7,
  3. "dimension": "2",
  4. "name": "年度进行中项目过程跟踪大屏",
  5. "desc": "从宏观的角度跟踪年度进行中项目的过程数据情况",
  6. "cover": "static\/images\/screen6.png",
  7. "builtin": "1",
  8. "scheme": {
  9. "editCanvasConfig": {
  10. "width":1300,
  11. "height":2704,
  12. "filterShow":false,
  13. "hueRotate":0,
  14. "saturate":1,
  15. "contrast":1,
  16. "brightness":1,
  17. "opacity":1,
  18. "rotateZ":0,
  19. "rotateX":0,
  20. "rotateY":0,
  21. "skewX":0,
  22. "skewY":0,
  23. "blendMode":"normal",
  24. "background":"#001028",
  25. "selectColor":true,
  26. "chartThemeColor":"dark",
  27. "previewScaleType":"scrollY"
  28. },
  29. "componentList": [
  30. {
  31. "id": "5scfjzqsbzo000",
  32. "isGroup": true,
  33. "attr": {
  34. "w": 1300,
  35. "h": 120,
  36. "x": 0,
  37. "y": 0,
  38. "offsetX": 0,
  39. "offsetY": 0,
  40. "zIndex": -1
  41. },
  42. "chartConfig": {
  43. "key": "group",
  44. "chartKey": "group",
  45. "conKey": "group",
  46. "category": "group",
  47. "categoryName": "group",
  48. "package": "group",
  49. "chartFrame": "common",
  50. "title": "标题",
  51. "image": ""
  52. },
  53. "groupList": [
  54. {
  55. "id": "2xjom2cw2b2000",
  56. "isGroup": false,
  57. "attr": {
  58. "x": 0,
  59. "y": 0,
  60. "w": 1300,
  61. "h": 120,
  62. "offsetX": 0,
  63. "offsetY": 0,
  64. "zIndex": -1
  65. },
  66. "key": "Image",
  67. "chartConfig": {
  68. "key": "Image",
  69. "chartKey": "VImage",
  70. "conKey": "VCImage",
  71. "title": "header",
  72. "category": "Mores",
  73. "categoryName": "更多",
  74. "package": "Informations",
  75. "chartFrame": "common",
  76. "image": "static\/png\/photo-637bc05d.png"
  77. },
  78. "option": {
  79. "dataset": "static\/images\/screen_header.png",
  80. "borderRadius": 10
  81. }
  82. },
  83. {
  84. "id": "2nws38440fq000",
  85. "isGroup": false,
  86. "attr": {
  87. "x": 400,
  88. "y": 36,
  89. "w": 500,
  90. "h": 66,
  91. "offsetX": 0,
  92. "offsetY": 0,
  93. "zIndex": -1
  94. },
  95. "key": "TextCommon",
  96. "chartConfig": {
  97. "key": "TextCommon",
  98. "chartKey": "VTextCommon",
  99. "conKey": "VCTextCommon",
  100. "title": "title",
  101. "category": "Texts",
  102. "categoryName": "文本",
  103. "package": "Informations",
  104. "image": "static\/png\/text_static-b2721032.png"
  105. },
  106. "option": {
  107. "link": "",
  108. "linkHead": "http:\/\/",
  109. "dataset": " 年度进行中项目过程跟踪大屏",
  110. "fontSize": 20,
  111. "fontColor": "#b2d5e5",
  112. "paddingX": 10,
  113. "paddingY": 10,
  114. "textAlign": "center",
  115. "fontWeight": "bold",
  116. "borderWidth": 0,
  117. "borderColor": "#ffffff",
  118. "borderRadius": 5,
  119. "letterSpacing": 5,
  120. "writingMode": "horizontal-tb",
  121. "backgroundColor": "#00000000"
  122. }
  123. }
  124. ],
  125. "key": "group",
  126. "option": []
  127. },
  128. {
  129. "id": "1cfwp95aiif400",
  130. "isGroup": false,
  131. "attr": {
  132. "x": 0,
  133. "y": 171,
  134. "w": 1300,
  135. "h": 385,
  136. "offsetX": 0,
  137. "offsetY": 0,
  138. "zIndex": -1
  139. },
  140. "key": "Border03",
  141. "chartConfig": {
  142. "key": "Border03",
  143. "chartKey": "VBorder03",
  144. "conKey": "VCBorder03",
  145. "title": "summary",
  146. "category": "Borders",
  147. "categoryName": "边框",
  148. "package": "Decorates",
  149. "image": ""
  150. },
  151. "option": {
  152. "colors": [
  153. "#00102800",
  154. "#00102800"
  155. ],
  156. "backgroundColor": "#0a1c38"
  157. }
  158. },
  159. {
  160. "id": "6scfjzqsbzo000",
  161. "isGroup": true,
  162. "attr": {
  163. "w": 1300,
  164. "h": 120,
  165. "x": 0,
  166. "y": 175,
  167. "offsetX": 0,
  168. "offsetY": 0,
  169. "zIndex": -1
  170. },
  171. "chartConfig": {
  172. "key": "group",
  173. "chartKey": "group",
  174. "conKey": "group",
  175. "category": "group",
  176. "categoryName": "group",
  177. "package": "group",
  178. "chartFrame": "common",
  179. "title": "标题",
  180. "image": ""
  181. },
  182. "groupList": [
  183. {
  184. "id": "57r67ykkwxk000",
  185. "isGroup": false,
  186. "attr": {
  187. "x": 15,
  188. "y": 0,
  189. "w": 230,
  190. "h": 68,
  191. "offsetX": 0,
  192. "offsetY": 0,
  193. "zIndex": -1
  194. },
  195. "key": "TextCommon",
  196. "chartConfig": {
  197. "key": "TextCommon",
  198. "chartKey": "VTextCommon",
  199. "conKey": "VCTextCommon",
  200. "title": "summary_top",
  201. "category": "Texts",
  202. "categoryName": "文本",
  203. "package": "Informations",
  204. "image": "static\/png\/text_static-b2721032.png"
  205. },
  206. "option": {
  207. "link": "",
  208. "linkHead": "http:\/\/",
  209. "dataset": "项目进度概览",
  210. "fontSize": 14,
  211. "fontColor": "#b2d5e5",
  212. "paddingX": 10,
  213. "paddingY": 10,
  214. "textAlign": "left",
  215. "fontWeight": "bold",
  216. "borderWidth": 0,
  217. "borderColor": "#ffffff",
  218. "borderRadius": 5,
  219. "letterSpacing": 5,
  220. "writingMode": "horizontal-tb",
  221. "backgroundColor": "#00000000"
  222. }
  223. },
  224. {
  225. "id": "2xjom2cw2b2000",
  226. "isGroup": false,
  227. "attr": {
  228. "x": 145,
  229. "y": 26,
  230. "w": 14,
  231. "h": 11,
  232. "offsetX": 0,
  233. "offsetY": 0,
  234. "zIndex": -1
  235. },
  236. "key": "Image",
  237. "chartConfig": {
  238. "key": "Image",
  239. "chartKey": "VImage",
  240. "conKey": "VCImage",
  241. "title": "header",
  242. "category": "Mores",
  243. "categoryName": "更多",
  244. "package": "Informations",
  245. "chartFrame": "common",
  246. "image": "static\/png\/photo-637bc05d.png"
  247. },
  248. "option": {
  249. "dataset": "static\/images\/line_left.png",
  250. "borderRadius": 0
  251. }
  252. },
  253. {
  254. "id": "3xjom2cw2b2000",
  255. "isGroup": false,
  256. "attr": {
  257. "x": 165,
  258. "y": 28,
  259. "w": 1097,
  260. "h": 10,
  261. "offsetX": 0,
  262. "offsetY": 0,
  263. "zIndex": -1
  264. },
  265. "key": "Image",
  266. "chartConfig": {
  267. "key": "Image",
  268. "chartKey": "VImage",
  269. "conKey": "VCImage",
  270. "title": "header",
  271. "category": "Mores",
  272. "categoryName": "更多",
  273. "package": "Informations",
  274. "chartFrame": "common",
  275. "image": "static\/png\/photo-637bc05d.png"
  276. },
  277. "option": {
  278. "dataset": "static\/images\/line_right.png",
  279. "fit": "fill",
  280. "borderRadius": 0
  281. }
  282. }
  283. ],
  284. "key": "group",
  285. "option": []
  286. },
  287. {
  288. "id": "z3gs9qz8hq800",
  289. "isGroup": true,
  290. "attr": {
  291. "w": 169,
  292. "h": 159,
  293. "x": 25,
  294. "y": 250,
  295. "offsetX": 0,
  296. "offsetY": 0,
  297. "zIndex": -1
  298. },
  299. "chartConfig": {
  300. "key": "group",
  301. "chartKey": "group",
  302. "conKey": "group",
  303. "category": "group",
  304. "categoryName": "group",
  305. "package": "group",
  306. "chartFrame": "common",
  307. "title": "文档个数",
  308. "image": ""
  309. },
  310. "groupList": [
  311. {
  312. "id": "2xjom2cw2b2000",
  313. "isGroup": false,
  314. "attr": {
  315. "x": 0,
  316. "y": 0,
  317. "w": 169,
  318. "h": 127,
  319. "offsetX": 0,
  320. "offsetY": 0,
  321. "zIndex": -1
  322. },
  323. "key": "Image",
  324. "chartConfig": {
  325. "key": "Image",
  326. "chartKey": "VImage",
  327. "conKey": "VCImage",
  328. "title": "header",
  329. "category": "Mores",
  330. "categoryName": "更多",
  331. "package": "Informations",
  332. "chartFrame": "common",
  333. "image": "static\/png\/photo-637bc05d.png"
  334. },
  335. "option": {
  336. "dataset": "static\/images\/card.png",
  337. "borderRadius": 0
  338. }
  339. },
  340. {
  341. "id": "3ef3nnqh7gu00",
  342. "sourceID": 10101,
  343. "isGroup": false,
  344. "attr": {
  345. "x": 0,
  346. "y": 20,
  347. "w": 169,
  348. "h": 48,
  349. "offsetX": 0,
  350. "offsetY": 0,
  351. "zIndex": -1
  352. },
  353. "key": "TextCommon",
  354. "chartConfig": {
  355. "key": "TextCommon",
  356. "chartKey": "VTextCommon",
  357. "conKey": "VCTextCommon",
  358. "title": "一级项目集个数",
  359. "category": "Texts",
  360. "categoryName": "文本",
  361. "package": "Informations",
  362. "image": "static\/png\/text_static-b2721032.png"
  363. },
  364. "option": {
  365. "link": "",
  366. "linkHead": "http:\/\/",
  367. "dataset": "100",
  368. "fontSize": 25,
  369. "fontColor": "#ffffff",
  370. "paddingX": 0,
  371. "paddingY": 0,
  372. "textAlign": "center",
  373. "fontWeight": "bold",
  374. "borderWidth": 0,
  375. "borderColor": "#ffffff",
  376. "borderRadius": 5,
  377. "letterSpacing": 5,
  378. "writingMode": "horizontal-tb",
  379. "backgroundColor": "#00000000"
  380. }
  381. },
  382. {
  383. "id": "52mwo993eaw000",
  384. "isGroup": false,
  385. "attr": {
  386. "x": 0,
  387. "y": 50,
  388. "w": 169,
  389. "h": 78,
  390. "offsetX": 0,
  391. "offsetY": 0,
  392. "zIndex": -1
  393. },
  394. "key": "TextCommon",
  395. "chartConfig": {
  396. "key": "TextCommon",
  397. "chartKey": "VTextCommon",
  398. "conKey": "VCTextCommon",
  399. "title": "一级项目集个数",
  400. "category": "Texts",
  401. "categoryName": "文本",
  402. "package": "Informations",
  403. "image": "static\/png\/text_static-b2721032.png"
  404. },
  405. "option": {
  406. "link": "",
  407. "linkHead": "http:\/\/",
  408. "dataset": "进行中项目数",
  409. "fontSize": 15,
  410. "fontColor": "#9abdcd",
  411. "paddingX": 0,
  412. "paddingY": 0,
  413. "textAlign": "center",
  414. "fontWeight": "bold",
  415. "borderWidth": 0,
  416. "borderColor": "#ffffff",
  417. "borderRadius": 5,
  418. "letterSpacing": 1,
  419. "writingMode": "horizontal-tb",
  420. "backgroundColor": "#00000000"
  421. }
  422. }
  423. ],
  424. "key": "group",
  425. "option": []
  426. },
  427. {
  428. "id": "z3gs9qz8hq800",
  429. "isGroup": true,
  430. "attr": {
  431. "w": 169,
  432. "h": 159,
  433. "x": 206,
  434. "y": 250,
  435. "offsetX": 0,
  436. "offsetY": 0,
  437. "zIndex": -1
  438. },
  439. "chartConfig": {
  440. "key": "group",
  441. "chartKey": "group",
  442. "conKey": "group",
  443. "category": "group",
  444. "categoryName": "group",
  445. "package": "group",
  446. "chartFrame": "common",
  447. "title": "文档个数",
  448. "image": ""
  449. },
  450. "groupList": [
  451. {
  452. "id": "2xjom2cw2b2000",
  453. "isGroup": false,
  454. "attr": {
  455. "x": 0,
  456. "y": 0,
  457. "w": 169,
  458. "h": 127,
  459. "offsetX": 0,
  460. "offsetY": 0,
  461. "zIndex": -1
  462. },
  463. "key": "Image",
  464. "chartConfig": {
  465. "key": "Image",
  466. "chartKey": "VImage",
  467. "conKey": "VCImage",
  468. "title": "header",
  469. "category": "Mores",
  470. "categoryName": "更多",
  471. "package": "Informations",
  472. "chartFrame": "common",
  473. "image": "static\/png\/photo-637bc05d.png"
  474. },
  475. "option": {
  476. "dataset": "static\/images\/card.png",
  477. "borderRadius": 0
  478. }
  479. },
  480. {
  481. "id": "3ef3nnqh7gu00",
  482. "sourceID": 10103,
  483. "isGroup": false,
  484. "attr": {
  485. "x": 0,
  486. "y": 20,
  487. "w": 169,
  488. "h": 48,
  489. "offsetX": 0,
  490. "offsetY": 0,
  491. "zIndex": -1
  492. },
  493. "key": "TextCommon",
  494. "chartConfig": {
  495. "key": "TextCommon",
  496. "chartKey": "VTextCommon",
  497. "conKey": "VCTextCommon",
  498. "title": "产品个数",
  499. "category": "Texts",
  500. "categoryName": "文本",
  501. "package": "Informations",
  502. "image": "static\/png\/text_static-b2721032.png"
  503. },
  504. "option": {
  505. "link": "",
  506. "linkHead": "http:\/\/",
  507. "dataset": "100",
  508. "fontSize": 25,
  509. "fontColor": "#ffffff",
  510. "paddingX": 0,
  511. "paddingY": 0,
  512. "textAlign": "center",
  513. "fontWeight": "bold",
  514. "borderWidth": 0,
  515. "borderColor": "#ffffff",
  516. "borderRadius": 5,
  517. "letterSpacing": 5,
  518. "writingMode": "horizontal-tb",
  519. "backgroundColor": "#00000000"
  520. }
  521. },
  522. {
  523. "id": "52mwo993eaw000",
  524. "isGroup": false,
  525. "attr": {
  526. "x": 0,
  527. "y": 50,
  528. "w": 169,
  529. "h": 78,
  530. "offsetX": 0,
  531. "offsetY": 0,
  532. "zIndex": -1
  533. },
  534. "key": "TextCommon",
  535. "chartConfig": {
  536. "key": "TextCommon",
  537. "chartKey": "VTextCommon",
  538. "conKey": "VCTextCommon",
  539. "title": "产品个数",
  540. "category": "Texts",
  541. "categoryName": "文本",
  542. "package": "Informations",
  543. "image": "static\/png\/text_static-b2721032.png"
  544. },
  545. "option": {
  546. "link": "",
  547. "linkHead": "http:\/\/",
  548. "dataset": "进展顺利项目数",
  549. "fontSize": 15,
  550. "fontColor": "#9abdcd",
  551. "paddingX": 0,
  552. "paddingY": 0,
  553. "textAlign": "center",
  554. "fontWeight": "bold",
  555. "borderWidth": 0,
  556. "borderColor": "#ffffff",
  557. "borderRadius": 5,
  558. "letterSpacing": 1,
  559. "writingMode": "horizontal-tb",
  560. "backgroundColor": "#00000000"
  561. }
  562. }
  563. ],
  564. "key": "group",
  565. "option": []
  566. },
  567. {
  568. "id": "z3gs9qz8hq800",
  569. "isGroup": true,
  570. "attr": {
  571. "w": 169,
  572. "h": 159,
  573. "x": 387,
  574. "y": 250,
  575. "offsetX": 0,
  576. "offsetY": 0,
  577. "zIndex": -1
  578. },
  579. "chartConfig": {
  580. "key": "group",
  581. "chartKey": "group",
  582. "conKey": "group",
  583. "category": "group",
  584. "categoryName": "group",
  585. "package": "group",
  586. "chartFrame": "common",
  587. "title": "文档个数",
  588. "image": ""
  589. },
  590. "groupList": [
  591. {
  592. "id": "2xjom2cw2b2000",
  593. "isGroup": false,
  594. "attr": {
  595. "x": 0,
  596. "y": 0,
  597. "w": 169,
  598. "h": 127,
  599. "offsetX": 0,
  600. "offsetY": 0,
  601. "zIndex": -1
  602. },
  603. "key": "Image",
  604. "chartConfig": {
  605. "key": "Image",
  606. "chartKey": "VImage",
  607. "conKey": "VCImage",
  608. "title": "header",
  609. "category": "Mores",
  610. "categoryName": "更多",
  611. "package": "Informations",
  612. "chartFrame": "common",
  613. "image": "static\/png\/photo-637bc05d.png"
  614. },
  615. "option": {
  616. "dataset": "static\/images\/card.png",
  617. "borderRadius": 0
  618. }
  619. },
  620. {
  621. "id": "3ef3nnqh7gu00",
  622. "sourceID": 10105,
  623. "isGroup": false,
  624. "attr": {
  625. "x": 0,
  626. "y": 20,
  627. "w": 169,
  628. "h": 48,
  629. "offsetX": 0,
  630. "offsetY": 0,
  631. "zIndex": -1
  632. },
  633. "key": "TextCommon",
  634. "chartConfig": {
  635. "key": "TextCommon",
  636. "chartKey": "VTextCommon",
  637. "conKey": "VCTextCommon",
  638. "title": "需求个数",
  639. "category": "Texts",
  640. "categoryName": "文本",
  641. "package": "Informations",
  642. "image": "static\/png\/text_static-b2721032.png"
  643. },
  644. "option": {
  645. "link": "",
  646. "linkHead": "http:\/\/",
  647. "dataset": "100",
  648. "fontSize": 25,
  649. "fontColor": "#ffffff",
  650. "paddingX": 0,
  651. "paddingY": 0,
  652. "textAlign": "center",
  653. "fontWeight": "bold",
  654. "borderWidth": 0,
  655. "borderColor": "#ffffff",
  656. "borderRadius": 5,
  657. "letterSpacing": 5,
  658. "writingMode": "horizontal-tb",
  659. "backgroundColor": "#00000000"
  660. }
  661. },
  662. {
  663. "id": "52mwo993eaw000",
  664. "isGroup": false,
  665. "attr": {
  666. "x": 0,
  667. "y": 50,
  668. "w": 169,
  669. "h": 78,
  670. "offsetX": 0,
  671. "offsetY": 0,
  672. "zIndex": -1
  673. },
  674. "key": "TextCommon",
  675. "chartConfig": {
  676. "key": "TextCommon",
  677. "chartKey": "VTextCommon",
  678. "conKey": "VCTextCommon",
  679. "title": "需求个数",
  680. "category": "Texts",
  681. "categoryName": "文本",
  682. "package": "Informations",
  683. "image": "static\/png\/text_static-b2721032.png"
  684. },
  685. "option": {
  686. "link": "",
  687. "linkHead": "http:\/\/",
  688. "dataset": "进度滞后项目数",
  689. "fontSize": 15,
  690. "fontColor": "#9abdcd",
  691. "paddingX": 0,
  692. "paddingY": 0,
  693. "textAlign": "center",
  694. "fontWeight": "bold",
  695. "borderWidth": 0,
  696. "borderColor": "#ffffff",
  697. "borderRadius": 5,
  698. "letterSpacing": 1,
  699. "writingMode": "horizontal-tb",
  700. "backgroundColor": "#00000000"
  701. }
  702. }
  703. ],
  704. "key": "group",
  705. "option": []
  706. },
  707. {
  708. "id": "z3gs9qz8hq800",
  709. "isGroup": true,
  710. "attr": {
  711. "w": 169,
  712. "h": 159,
  713. "x": 568,
  714. "y": 250,
  715. "offsetX": 0,
  716. "offsetY": 0,
  717. "zIndex": -1
  718. },
  719. "chartConfig": {
  720. "key": "group",
  721. "chartKey": "group",
  722. "conKey": "group",
  723. "category": "group",
  724. "categoryName": "group",
  725. "package": "group",
  726. "chartFrame": "common",
  727. "title": "文档个数",
  728. "image": ""
  729. },
  730. "groupList": [
  731. {
  732. "id": "2xjom2cw2b2000",
  733. "isGroup": false,
  734. "attr": {
  735. "x": 0,
  736. "y": 0,
  737. "w": 169,
  738. "h": 127,
  739. "offsetX": 0,
  740. "offsetY": 0,
  741. "zIndex": -1
  742. },
  743. "key": "Image",
  744. "chartConfig": {
  745. "key": "Image",
  746. "chartKey": "VImage",
  747. "conKey": "VCImage",
  748. "title": "header",
  749. "category": "Mores",
  750. "categoryName": "更多",
  751. "package": "Informations",
  752. "chartFrame": "common",
  753. "image": "static\/png\/photo-637bc05d.png"
  754. },
  755. "option": {
  756. "dataset": "static\/images\/card.png",
  757. "borderRadius": 0
  758. }
  759. },
  760. {
  761. "id": "3ef3nnqh7gu00",
  762. "sourceID": 10107,
  763. "isGroup": false,
  764. "attr": {
  765. "x": 0,
  766. "y": 20,
  767. "w": 169,
  768. "h": 48,
  769. "offsetX": 0,
  770. "offsetY": 0,
  771. "zIndex": -1
  772. },
  773. "key": "TextCommon",
  774. "chartConfig": {
  775. "key": "TextCommon",
  776. "chartKey": "VTextCommon",
  777. "conKey": "VCTextCommon",
  778. "title": "Bug个数",
  779. "category": "Texts",
  780. "categoryName": "文本",
  781. "package": "Informations",
  782. "image": "static\/png\/text_static-b2721032.png"
  783. },
  784. "option": {
  785. "link": "",
  786. "linkHead": "http:\/\/",
  787. "dataset": "100",
  788. "fontSize": 25,
  789. "fontColor": "#ffffff",
  790. "paddingX": 0,
  791. "paddingY": 0,
  792. "textAlign": "center",
  793. "fontWeight": "bold",
  794. "borderWidth": 0,
  795. "borderColor": "#ffffff",
  796. "borderRadius": 5,
  797. "letterSpacing": 5,
  798. "writingMode": "horizontal-tb",
  799. "backgroundColor": "#00000000"
  800. }
  801. },
  802. {
  803. "id": "52mwo993eaw000",
  804. "isGroup": false,
  805. "attr": {
  806. "x": 0,
  807. "y": 50,
  808. "w": 169,
  809. "h": 78,
  810. "offsetX": 0,
  811. "offsetY": 0,
  812. "zIndex": -1
  813. },
  814. "key": "TextCommon",
  815. "chartConfig": {
  816. "key": "TextCommon",
  817. "chartKey": "VTextCommon",
  818. "conKey": "VCTextCommon",
  819. "title": "Bug个数",
  820. "category": "Texts",
  821. "categoryName": "文本",
  822. "package": "Informations",
  823. "image": "static\/png\/text_static-b2721032.png"
  824. },
  825. "option": {
  826. "link": "",
  827. "linkHead": "http:\/\/",
  828. "dataset": "已延期项目数",
  829. "fontSize": 15,
  830. "fontColor": "#9abdcd",
  831. "paddingX": 0,
  832. "paddingY": 0,
  833. "textAlign": "center",
  834. "fontWeight": "bold",
  835. "borderWidth": 0,
  836. "borderColor": "#ffffff",
  837. "borderRadius": 5,
  838. "letterSpacing": 1,
  839. "writingMode": "horizontal-tb",
  840. "backgroundColor": "#00000000"
  841. }
  842. }
  843. ],
  844. "key": "group",
  845. "option": []
  846. },
  847. {
  848. "id": "z3gs9qz8hq800",
  849. "isGroup": true,
  850. "attr": {
  851. "w": 169,
  852. "h": 159,
  853. "x": 749,
  854. "y": 250,
  855. "offsetX": 0,
  856. "offsetY": 0,
  857. "zIndex": -1
  858. },
  859. "chartConfig": {
  860. "key": "group",
  861. "chartKey": "group",
  862. "conKey": "group",
  863. "category": "group",
  864. "categoryName": "group",
  865. "package": "group",
  866. "chartFrame": "common",
  867. "title": "文档个数",
  868. "image": ""
  869. },
  870. "groupList": [
  871. {
  872. "id": "2xjom2cw2b2000",
  873. "isGroup": false,
  874. "attr": {
  875. "x": 0,
  876. "y": 0,
  877. "w": 169,
  878. "h": 127,
  879. "offsetX": 0,
  880. "offsetY": 0,
  881. "zIndex": -1
  882. },
  883. "key": "Image",
  884. "chartConfig": {
  885. "key": "Image",
  886. "chartKey": "VImage",
  887. "conKey": "VCImage",
  888. "title": "header",
  889. "category": "Mores",
  890. "categoryName": "更多",
  891. "package": "Informations",
  892. "chartFrame": "common",
  893. "image": "static\/png\/photo-637bc05d.png"
  894. },
  895. "option": {
  896. "dataset": "static\/images\/card.png",
  897. "borderRadius": 0
  898. }
  899. },
  900. {
  901. "id": "3ef3nnqh7gu00",
  902. "sourceID": 10109,
  903. "isGroup": false,
  904. "attr": {
  905. "x": 0,
  906. "y": 20,
  907. "w": 169,
  908. "h": 48,
  909. "offsetX": 0,
  910. "offsetY": 0,
  911. "zIndex": -1
  912. },
  913. "key": "TextCommon",
  914. "chartConfig": {
  915. "key": "TextCommon",
  916. "chartKey": "VTextCommon",
  917. "conKey": "VCTextCommon",
  918. "title": "计划个数",
  919. "category": "Texts",
  920. "categoryName": "文本",
  921. "package": "Informations",
  922. "image": "static\/png\/text_static-b2721032.png"
  923. },
  924. "option": {
  925. "link": "",
  926. "linkHead": "http:\/\/",
  927. "dataset": "100",
  928. "fontSize": 25,
  929. "fontColor": "#ffffff",
  930. "paddingX": 0,
  931. "paddingY": 0,
  932. "textAlign": "center",
  933. "fontWeight": "bold",
  934. "borderWidth": 0,
  935. "borderColor": "#ffffff",
  936. "borderRadius": 5,
  937. "letterSpacing": 5,
  938. "writingMode": "horizontal-tb",
  939. "backgroundColor": "#00000000"
  940. }
  941. },
  942. {
  943. "id": "52mwo993eaw000",
  944. "isGroup": false,
  945. "attr": {
  946. "x": 0,
  947. "y": 42,
  948. "w": 169,
  949. "h": 78,
  950. "offsetX": 0,
  951. "offsetY": 0,
  952. "zIndex": -1
  953. },
  954. "key": "TextCommon",
  955. "chartConfig": {
  956. "key": "TextCommon",
  957. "chartKey": "VTextCommon",
  958. "conKey": "VCTextCommon",
  959. "title": "计划个数",
  960. "category": "Texts",
  961. "categoryName": "文本",
  962. "package": "Informations",
  963. "image": "static\/png\/text_static-b2721032.png"
  964. },
  965. "option": {
  966. "link": "",
  967. "linkHead": "http:\/\/",
  968. "dataset": "未完成",
  969. "fontSize": 15,
  970. "fontColor": "#9abdcd",
  971. "paddingX": 0,
  972. "paddingY": 0,
  973. "textAlign": "center",
  974. "fontWeight": "bold",
  975. "borderWidth": 0,
  976. "borderColor": "#ffffff",
  977. "borderRadius": 5,
  978. "letterSpacing": 1,
  979. "writingMode": "horizontal-tb",
  980. "backgroundColor": "#00000000"
  981. }
  982. },
  983. {
  984. "id": "52mwo993eaw000",
  985. "isGroup": false,
  986. "attr": {
  987. "x": 0,
  988. "y": 58,
  989. "w": 169,
  990. "h": 78,
  991. "offsetX": 0,
  992. "offsetY": 0,
  993. "zIndex": -1
  994. },
  995. "key": "TextCommon",
  996. "chartConfig": {
  997. "key": "TextCommon",
  998. "chartKey": "VTextCommon",
  999. "conKey": "VCTextCommon",
  1000. "title": "计划个数",
  1001. "category": "Texts",
  1002. "categoryName": "文本",
  1003. "package": "Informations",
  1004. "image": "static\/png\/text_static-b2721032.png"
  1005. },
  1006. "option": {
  1007. "link": "",
  1008. "linkHead": "http:\/\/",
  1009. "dataset": "需求条目数",
  1010. "fontSize": 15,
  1011. "fontColor": "#9abdcd",
  1012. "paddingX": 0,
  1013. "paddingY": 0,
  1014. "textAlign": "center",
  1015. "fontWeight": "bold",
  1016. "borderWidth": 0,
  1017. "borderColor": "#ffffff",
  1018. "borderRadius": 5,
  1019. "letterSpacing": 1,
  1020. "writingMode": "horizontal-tb",
  1021. "backgroundColor": "#00000000"
  1022. }
  1023. }
  1024. ],
  1025. "key": "group",
  1026. "option": []
  1027. },
  1028. {
  1029. "id": "z3gs9qz8hq800",
  1030. "isGroup": true,
  1031. "attr": {
  1032. "w": 169,
  1033. "h": 159,
  1034. "x": 930,
  1035. "y": 250,
  1036. "offsetX": 0,
  1037. "offsetY": 0,
  1038. "zIndex": -1
  1039. },
  1040. "chartConfig": {
  1041. "key": "group",
  1042. "chartKey": "group",
  1043. "conKey": "group",
  1044. "category": "group",
  1045. "categoryName": "group",
  1046. "package": "group",
  1047. "chartFrame": "common",
  1048. "title": "文档个数",
  1049. "image": ""
  1050. },
  1051. "groupList": [
  1052. {
  1053. "id": "2xjom2cw2b2000",
  1054. "isGroup": false,
  1055. "attr": {
  1056. "x": 0,
  1057. "y": 0,
  1058. "w": 169,
  1059. "h": 127,
  1060. "offsetX": 0,
  1061. "offsetY": 0,
  1062. "zIndex": -1
  1063. },
  1064. "key": "Image",
  1065. "chartConfig": {
  1066. "key": "Image",
  1067. "chartKey": "VImage",
  1068. "conKey": "VCImage",
  1069. "title": "header",
  1070. "category": "Mores",
  1071. "categoryName": "更多",
  1072. "package": "Informations",
  1073. "chartFrame": "common",
  1074. "image": "static\/png\/photo-637bc05d.png"
  1075. },
  1076. "option": {
  1077. "dataset": "static\/images\/card.png",
  1078. "borderRadius": 0
  1079. }
  1080. },
  1081. {
  1082. "id": "3ef3nnqh7gu00",
  1083. "sourceID": 10111,
  1084. "isGroup": false,
  1085. "attr": {
  1086. "x": 0,
  1087. "y": 20,
  1088. "w": 169,
  1089. "h": 48,
  1090. "offsetX": 0,
  1091. "offsetY": 0,
  1092. "zIndex": -1
  1093. },
  1094. "key": "TextCommon",
  1095. "chartConfig": {
  1096. "key": "TextCommon",
  1097. "chartKey": "VTextCommon",
  1098. "conKey": "VCTextCommon",
  1099. "title": "计划个数",
  1100. "category": "Texts",
  1101. "categoryName": "文本",
  1102. "package": "Informations",
  1103. "image": "static\/png\/text_static-b2721032.png"
  1104. },
  1105. "option": {
  1106. "link": "",
  1107. "linkHead": "http:\/\/",
  1108. "dataset": "100",
  1109. "fontSize": 25,
  1110. "fontColor": "#ffffff",
  1111. "paddingX": 0,
  1112. "paddingY": 0,
  1113. "textAlign": "center",
  1114. "fontWeight": "bold",
  1115. "borderWidth": 0,
  1116. "borderColor": "#ffffff",
  1117. "borderRadius": 5,
  1118. "letterSpacing": 5,
  1119. "writingMode": "horizontal-tb",
  1120. "backgroundColor": "#00000000"
  1121. }
  1122. },
  1123. {
  1124. "id": "52mwo993eaw000",
  1125. "isGroup": false,
  1126. "attr": {
  1127. "x": 0,
  1128. "y": 42,
  1129. "w": 169,
  1130. "h": 78,
  1131. "offsetX": 0,
  1132. "offsetY": 0,
  1133. "zIndex": -1
  1134. },
  1135. "key": "TextCommon",
  1136. "chartConfig": {
  1137. "key": "TextCommon",
  1138. "chartKey": "VTextCommon",
  1139. "conKey": "VCTextCommon",
  1140. "title": "计划个数",
  1141. "category": "Texts",
  1142. "categoryName": "文本",
  1143. "package": "Informations",
  1144. "image": "static\/png\/text_static-b2721032.png"
  1145. },
  1146. "option": {
  1147. "link": "",
  1148. "linkHead": "http:\/\/",
  1149. "dataset": "未完成",
  1150. "fontSize": 15,
  1151. "fontColor": "#9abdcd",
  1152. "paddingX": 0,
  1153. "paddingY": 0,
  1154. "textAlign": "center",
  1155. "fontWeight": "bold",
  1156. "borderWidth": 0,
  1157. "borderColor": "#ffffff",
  1158. "borderRadius": 5,
  1159. "letterSpacing": 1,
  1160. "writingMode": "horizontal-tb",
  1161. "backgroundColor": "#00000000"
  1162. }
  1163. },
  1164. {
  1165. "id": "52mwo993eaw000",
  1166. "isGroup": false,
  1167. "attr": {
  1168. "x": 0,
  1169. "y": 58,
  1170. "w": 169,
  1171. "h": 78,
  1172. "offsetX": 0,
  1173. "offsetY": 0,
  1174. "zIndex": -1
  1175. },
  1176. "key": "TextCommon",
  1177. "chartConfig": {
  1178. "key": "TextCommon",
  1179. "chartKey": "VTextCommon",
  1180. "conKey": "VCTextCommon",
  1181. "title": "计划个数",
  1182. "category": "Texts",
  1183. "categoryName": "文本",
  1184. "package": "Informations",
  1185. "image": "static\/png\/text_static-b2721032.png"
  1186. },
  1187. "option": {
  1188. "link": "",
  1189. "linkHead": "http:\/\/",
  1190. "dataset": "需求规模数",
  1191. "fontSize": 15,
  1192. "fontColor": "#9abdcd",
  1193. "paddingX": 0,
  1194. "paddingY": 0,
  1195. "textAlign": "center",
  1196. "fontWeight": "bold",
  1197. "borderWidth": 0,
  1198. "borderColor": "#ffffff",
  1199. "borderRadius": 5,
  1200. "letterSpacing": 1,
  1201. "writingMode": "horizontal-tb",
  1202. "backgroundColor": "#00000000"
  1203. }
  1204. }
  1205. ],
  1206. "key": "group",
  1207. "option": []
  1208. },
  1209. {
  1210. "id": "z3gs9qz8hq800",
  1211. "isGroup": true,
  1212. "attr": {
  1213. "w": 169,
  1214. "h": 159,
  1215. "x": 25,
  1216. "y": 390,
  1217. "offsetX": 0,
  1218. "offsetY": 0,
  1219. "zIndex": -1
  1220. },
  1221. "chartConfig": {
  1222. "key": "group",
  1223. "chartKey": "group",
  1224. "conKey": "group",
  1225. "category": "group",
  1226. "categoryName": "group",
  1227. "package": "group",
  1228. "chartFrame": "common",
  1229. "title": "文档个数",
  1230. "image": ""
  1231. },
  1232. "groupList": [
  1233. {
  1234. "id": "2xjom2cw2b2000",
  1235. "isGroup": false,
  1236. "attr": {
  1237. "x": 0,
  1238. "y": 0,
  1239. "w": 169,
  1240. "h": 127,
  1241. "offsetX": 0,
  1242. "offsetY": 0,
  1243. "zIndex": -1
  1244. },
  1245. "key": "Image",
  1246. "chartConfig": {
  1247. "key": "Image",
  1248. "chartKey": "VImage",
  1249. "conKey": "VCImage",
  1250. "title": "header",
  1251. "category": "Mores",
  1252. "categoryName": "更多",
  1253. "package": "Informations",
  1254. "chartFrame": "common",
  1255. "image": "static\/png\/photo-637bc05d.png"
  1256. },
  1257. "option": {
  1258. "dataset": "static\/images\/card.png",
  1259. "borderRadius": 0
  1260. }
  1261. },
  1262. {
  1263. "id": "3ef3nnqh7gu00",
  1264. "sourceID": 10102,
  1265. "isGroup": false,
  1266. "attr": {
  1267. "x": 0,
  1268. "y": 20,
  1269. "w": 169,
  1270. "h": 48,
  1271. "offsetX": 0,
  1272. "offsetY": 0,
  1273. "zIndex": -1
  1274. },
  1275. "key": "TextCommon",
  1276. "chartConfig": {
  1277. "key": "TextCommon",
  1278. "chartKey": "VTextCommon",
  1279. "conKey": "VCTextCommon",
  1280. "title": "项目个数",
  1281. "category": "Texts",
  1282. "categoryName": "文本",
  1283. "package": "Informations",
  1284. "image": "static\/png\/text_static-b2721032.png"
  1285. },
  1286. "option": {
  1287. "link": "",
  1288. "linkHead": "http:\/\/",
  1289. "dataset": "100",
  1290. "fontSize": 25,
  1291. "fontColor": "#ffffff",
  1292. "paddingX": 0,
  1293. "paddingY": 0,
  1294. "textAlign": "center",
  1295. "fontWeight": "bold",
  1296. "borderWidth": 0,
  1297. "borderColor": "#ffffff",
  1298. "borderRadius": 5,
  1299. "letterSpacing": 5,
  1300. "writingMode": "horizontal-tb",
  1301. "backgroundColor": "#00000000"
  1302. }
  1303. },
  1304. {
  1305. "id": "52mwo993eaw000",
  1306. "isGroup": false,
  1307. "attr": {
  1308. "x": 0,
  1309. "y": 50,
  1310. "w": 169,
  1311. "h": 78,
  1312. "offsetX": 0,
  1313. "offsetY": 0,
  1314. "zIndex": -1
  1315. },
  1316. "key": "TextCommon",
  1317. "chartConfig": {
  1318. "key": "TextCommon",
  1319. "chartKey": "VTextCommon",
  1320. "conKey": "VCTextCommon",
  1321. "title": "项目个数",
  1322. "category": "Texts",
  1323. "categoryName": "文本",
  1324. "package": "Informations",
  1325. "image": "static\/png\/text_static-b2721032.png"
  1326. },
  1327. "option": {
  1328. "link": "",
  1329. "linkHead": "http:\/\/",
  1330. "dataset": "进行中迭代数",
  1331. "fontSize": 15,
  1332. "fontColor": "#9abdcd",
  1333. "paddingX": 0,
  1334. "paddingY": 0,
  1335. "textAlign": "center",
  1336. "fontWeight": "bold",
  1337. "borderWidth": 0,
  1338. "borderColor": "#ffffff",
  1339. "borderRadius": 5,
  1340. "letterSpacing": 1,
  1341. "writingMode": "horizontal-tb",
  1342. "backgroundColor": "#00000000"
  1343. }
  1344. }
  1345. ],
  1346. "key": "group",
  1347. "option": []
  1348. },
  1349. {
  1350. "id": "z3gs9qz8hq800",
  1351. "isGroup": true,
  1352. "attr": {
  1353. "w": 169,
  1354. "h": 159,
  1355. "x": 206,
  1356. "y": 390,
  1357. "offsetX": 0,
  1358. "offsetY": 0,
  1359. "zIndex": -1
  1360. },
  1361. "chartConfig": {
  1362. "key": "group",
  1363. "chartKey": "group",
  1364. "conKey": "group",
  1365. "category": "group",
  1366. "categoryName": "group",
  1367. "package": "group",
  1368. "chartFrame": "common",
  1369. "title": "文档个数",
  1370. "image": ""
  1371. },
  1372. "groupList": [
  1373. {
  1374. "id": "2xjom2cw2b2000",
  1375. "isGroup": false,
  1376. "attr": {
  1377. "x": 0,
  1378. "y": 0,
  1379. "w": 169,
  1380. "h": 127,
  1381. "offsetX": 0,
  1382. "offsetY": 0,
  1383. "zIndex": -1
  1384. },
  1385. "key": "Image",
  1386. "chartConfig": {
  1387. "key": "Image",
  1388. "chartKey": "VImage",
  1389. "conKey": "VCImage",
  1390. "title": "header",
  1391. "category": "Mores",
  1392. "categoryName": "更多",
  1393. "package": "Informations",
  1394. "chartFrame": "common",
  1395. "image": "static\/png\/photo-637bc05d.png"
  1396. },
  1397. "option": {
  1398. "dataset": "static\/images\/card.png",
  1399. "borderRadius": 0
  1400. }
  1401. },
  1402. {
  1403. "id": "3ef3nnqh7gu00",
  1404. "sourceID": 10104,
  1405. "isGroup": false,
  1406. "attr": {
  1407. "x": 0,
  1408. "y": 20,
  1409. "w": 169,
  1410. "h": 48,
  1411. "offsetX": 0,
  1412. "offsetY": 0,
  1413. "zIndex": -1
  1414. },
  1415. "key": "TextCommon",
  1416. "chartConfig": {
  1417. "key": "TextCommon",
  1418. "chartKey": "VTextCommon",
  1419. "conKey": "VCTextCommon",
  1420. "title": "执行个数",
  1421. "category": "Texts",
  1422. "categoryName": "文本",
  1423. "package": "Informations",
  1424. "image": "static\/png\/text_static-b2721032.png"
  1425. },
  1426. "option": {
  1427. "link": "",
  1428. "linkHead": "http:\/\/",
  1429. "dataset": "100",
  1430. "fontSize": 25,
  1431. "fontColor": "#ffffff",
  1432. "paddingX": 0,
  1433. "paddingY": 0,
  1434. "textAlign": "center",
  1435. "fontWeight": "bold",
  1436. "borderWidth": 0,
  1437. "borderColor": "#ffffff",
  1438. "borderRadius": 5,
  1439. "letterSpacing": 5,
  1440. "writingMode": "horizontal-tb",
  1441. "backgroundColor": "#00000000"
  1442. }
  1443. },
  1444. {
  1445. "id": "52mwo993eaw000",
  1446. "isGroup": false,
  1447. "attr": {
  1448. "x": 0,
  1449. "y": 50,
  1450. "w": 169,
  1451. "h": 78,
  1452. "offsetX": 0,
  1453. "offsetY": 0,
  1454. "zIndex": -1
  1455. },
  1456. "key": "TextCommon",
  1457. "chartConfig": {
  1458. "key": "TextCommon",
  1459. "chartKey": "VTextCommon",
  1460. "conKey": "VCTextCommon",
  1461. "title": "执行个数",
  1462. "category": "Texts",
  1463. "categoryName": "文本",
  1464. "package": "Informations",
  1465. "image": "static\/png\/text_static-b2721032.png"
  1466. },
  1467. "option": {
  1468. "link": "",
  1469. "linkHead": "http:\/\/",
  1470. "dataset": "进展顺利迭代数",
  1471. "fontSize": 15,
  1472. "fontColor": "#9abdcd",
  1473. "paddingX": 0,
  1474. "paddingY": 0,
  1475. "textAlign": "center",
  1476. "fontWeight": "bold",
  1477. "borderWidth": 0,
  1478. "borderColor": "#ffffff",
  1479. "borderRadius": 5,
  1480. "letterSpacing": 1,
  1481. "writingMode": "horizontal-tb",
  1482. "backgroundColor": "#00000000"
  1483. }
  1484. }
  1485. ],
  1486. "key": "group",
  1487. "option": []
  1488. },
  1489. {
  1490. "id": "z3gs9qz8hq800",
  1491. "isGroup": true,
  1492. "attr": {
  1493. "w": 169,
  1494. "h": 159,
  1495. "x": 387,
  1496. "y": 390,
  1497. "offsetX": 0,
  1498. "offsetY": 0,
  1499. "zIndex": -1
  1500. },
  1501. "chartConfig": {
  1502. "key": "group",
  1503. "chartKey": "group",
  1504. "conKey": "group",
  1505. "category": "group",
  1506. "categoryName": "group",
  1507. "package": "group",
  1508. "chartFrame": "common",
  1509. "title": "文档个数",
  1510. "image": ""
  1511. },
  1512. "groupList": [
  1513. {
  1514. "id": "2xjom2cw2b2000",
  1515. "isGroup": false,
  1516. "attr": {
  1517. "x": 0,
  1518. "y": 0,
  1519. "w": 169,
  1520. "h": 127,
  1521. "offsetX": 0,
  1522. "offsetY": 0,
  1523. "zIndex": -1
  1524. },
  1525. "key": "Image",
  1526. "chartConfig": {
  1527. "key": "Image",
  1528. "chartKey": "VImage",
  1529. "conKey": "VCImage",
  1530. "title": "header",
  1531. "category": "Mores",
  1532. "categoryName": "更多",
  1533. "package": "Informations",
  1534. "chartFrame": "common",
  1535. "image": "static\/png\/photo-637bc05d.png"
  1536. },
  1537. "option": {
  1538. "dataset": "static\/images\/card.png",
  1539. "borderRadius": 0
  1540. }
  1541. },
  1542. {
  1543. "id": "3ef3nnqh7gu00",
  1544. "sourceID": 10106,
  1545. "isGroup": false,
  1546. "attr": {
  1547. "x": 0,
  1548. "y": 20,
  1549. "w": 169,
  1550. "h": 48,
  1551. "offsetX": 0,
  1552. "offsetY": 0,
  1553. "zIndex": -1
  1554. },
  1555. "key": "TextCommon",
  1556. "chartConfig": {
  1557. "key": "TextCommon",
  1558. "chartKey": "VTextCommon",
  1559. "conKey": "VCTextCommon",
  1560. "title": "任务个数",
  1561. "category": "Texts",
  1562. "categoryName": "文本",
  1563. "package": "Informations",
  1564. "image": "static\/png\/text_static-b2721032.png"
  1565. },
  1566. "option": {
  1567. "link": "",
  1568. "linkHead": "http:\/\/",
  1569. "dataset": "100",
  1570. "fontSize": 25,
  1571. "fontColor": "#ffffff",
  1572. "paddingX": 0,
  1573. "paddingY": 0,
  1574. "textAlign": "center",
  1575. "fontWeight": "bold",
  1576. "borderWidth": 0,
  1577. "borderColor": "#ffffff",
  1578. "borderRadius": 5,
  1579. "letterSpacing": 5,
  1580. "writingMode": "horizontal-tb",
  1581. "backgroundColor": "#00000000"
  1582. }
  1583. },
  1584. {
  1585. "id": "52mwo993eaw000",
  1586. "isGroup": false,
  1587. "attr": {
  1588. "x": 0,
  1589. "y": 50,
  1590. "w": 169,
  1591. "h": 78,
  1592. "offsetX": 0,
  1593. "offsetY": 0,
  1594. "zIndex": -1
  1595. },
  1596. "key": "TextCommon",
  1597. "chartConfig": {
  1598. "key": "TextCommon",
  1599. "chartKey": "VTextCommon",
  1600. "conKey": "VCTextCommon",
  1601. "title": "任务个数",
  1602. "category": "Texts",
  1603. "categoryName": "文本",
  1604. "package": "Informations",
  1605. "image": "static\/png\/text_static-b2721032.png"
  1606. },
  1607. "option": {
  1608. "link": "",
  1609. "linkHead": "http:\/\/",
  1610. "dataset": "进度滞后迭代数",
  1611. "fontSize": 15,
  1612. "fontColor": "#9abdcd",
  1613. "paddingX": 0,
  1614. "paddingY": 0,
  1615. "textAlign": "center",
  1616. "fontWeight": "bold",
  1617. "borderWidth": 0,
  1618. "borderColor": "#ffffff",
  1619. "borderRadius": 5,
  1620. "letterSpacing": 1,
  1621. "writingMode": "horizontal-tb",
  1622. "backgroundColor": "#00000000"
  1623. }
  1624. }
  1625. ],
  1626. "key": "group",
  1627. "option": []
  1628. },
  1629. {
  1630. "id": "z3gs9qz8hq800",
  1631. "isGroup": true,
  1632. "attr": {
  1633. "w": 169,
  1634. "h": 159,
  1635. "x": 568,
  1636. "y": 390,
  1637. "offsetX": 0,
  1638. "offsetY": 0,
  1639. "zIndex": -1
  1640. },
  1641. "chartConfig": {
  1642. "key": "group",
  1643. "chartKey": "group",
  1644. "conKey": "group",
  1645. "category": "group",
  1646. "categoryName": "group",
  1647. "package": "group",
  1648. "chartFrame": "common",
  1649. "title": "文档个数",
  1650. "image": ""
  1651. },
  1652. "groupList": [
  1653. {
  1654. "id": "2xjom2cw2b2000",
  1655. "isGroup": false,
  1656. "attr": {
  1657. "x": 0,
  1658. "y": 0,
  1659. "w": 169,
  1660. "h": 127,
  1661. "offsetX": 0,
  1662. "offsetY": 0,
  1663. "zIndex": -1
  1664. },
  1665. "key": "Image",
  1666. "chartConfig": {
  1667. "key": "Image",
  1668. "chartKey": "VImage",
  1669. "conKey": "VCImage",
  1670. "title": "header",
  1671. "category": "Mores",
  1672. "categoryName": "更多",
  1673. "package": "Informations",
  1674. "chartFrame": "common",
  1675. "image": "static\/png\/photo-637bc05d.png"
  1676. },
  1677. "option": {
  1678. "dataset": "static\/images\/card.png",
  1679. "borderRadius": 0
  1680. }
  1681. },
  1682. {
  1683. "id": "3ef3nnqh7gu00",
  1684. "sourceID": 10108,
  1685. "isGroup": false,
  1686. "attr": {
  1687. "x": 0,
  1688. "y": 20,
  1689. "w": 169,
  1690. "h": 48,
  1691. "offsetX": 0,
  1692. "offsetY": 0,
  1693. "zIndex": -1
  1694. },
  1695. "key": "TextCommon",
  1696. "chartConfig": {
  1697. "key": "TextCommon",
  1698. "chartKey": "VTextCommon",
  1699. "conKey": "VCTextCommon",
  1700. "title": "发布个数",
  1701. "category": "Texts",
  1702. "categoryName": "文本",
  1703. "package": "Informations",
  1704. "image": "static\/png\/text_static-b2721032.png"
  1705. },
  1706. "option": {
  1707. "link": "",
  1708. "linkHead": "http:\/\/",
  1709. "dataset": "100",
  1710. "fontSize": 25,
  1711. "fontColor": "#ffffff",
  1712. "paddingX": 0,
  1713. "paddingY": 0,
  1714. "textAlign": "center",
  1715. "fontWeight": "bold",
  1716. "borderWidth": 0,
  1717. "borderColor": "#ffffff",
  1718. "borderRadius": 5,
  1719. "letterSpacing": 5,
  1720. "writingMode": "horizontal-tb",
  1721. "backgroundColor": "#00000000"
  1722. }
  1723. },
  1724. {
  1725. "id": "52mwo993eaw000",
  1726. "isGroup": false,
  1727. "attr": {
  1728. "x": 0,
  1729. "y": 50,
  1730. "w": 169,
  1731. "h": 78,
  1732. "offsetX": 0,
  1733. "offsetY": 0,
  1734. "zIndex": -1
  1735. },
  1736. "key": "TextCommon",
  1737. "chartConfig": {
  1738. "key": "TextCommon",
  1739. "chartKey": "VTextCommon",
  1740. "conKey": "VCTextCommon",
  1741. "title": "文档个数",
  1742. "category": "Texts",
  1743. "categoryName": "文本",
  1744. "package": "Informations",
  1745. "image": "static\/png\/text_static-b2721032.png"
  1746. },
  1747. "option": {
  1748. "link": "",
  1749. "linkHead": "http:\/\/",
  1750. "dataset": "已延期迭代数",
  1751. "fontSize": 15,
  1752. "fontColor": "#9abdcd",
  1753. "paddingX": 0,
  1754. "paddingY": 0,
  1755. "textAlign": "center",
  1756. "fontWeight": "bold",
  1757. "borderWidth": 0,
  1758. "borderColor": "#ffffff",
  1759. "borderRadius": 5,
  1760. "letterSpacing": 1,
  1761. "writingMode": "horizontal-tb",
  1762. "backgroundColor": "#00000000"
  1763. }
  1764. }
  1765. ],
  1766. "key": "group",
  1767. "option": []
  1768. },
  1769. {
  1770. "id": "z3gs9qz8hq800",
  1771. "isGroup": true,
  1772. "attr": {
  1773. "w": 169,
  1774. "h": 159,
  1775. "x": 749,
  1776. "y": 390,
  1777. "offsetX": 0,
  1778. "offsetY": 0,
  1779. "zIndex": -1
  1780. },
  1781. "chartConfig": {
  1782. "key": "group",
  1783. "chartKey": "group",
  1784. "conKey": "group",
  1785. "category": "group",
  1786. "categoryName": "group",
  1787. "package": "group",
  1788. "chartFrame": "common",
  1789. "title": "文档个数",
  1790. "image": ""
  1791. },
  1792. "groupList": [
  1793. {
  1794. "id": "2xjom2cw2b2000",
  1795. "isGroup": false,
  1796. "attr": {
  1797. "x": 0,
  1798. "y": 0,
  1799. "w": 169,
  1800. "h": 127,
  1801. "offsetX": 0,
  1802. "offsetY": 0,
  1803. "zIndex": -1
  1804. },
  1805. "key": "Image",
  1806. "chartConfig": {
  1807. "key": "Image",
  1808. "chartKey": "VImage",
  1809. "conKey": "VCImage",
  1810. "title": "header",
  1811. "category": "Mores",
  1812. "categoryName": "更多",
  1813. "package": "Informations",
  1814. "chartFrame": "common",
  1815. "image": "static\/png\/photo-637bc05d.png"
  1816. },
  1817. "option": {
  1818. "dataset": "static\/images\/card.png",
  1819. "borderRadius": 0
  1820. }
  1821. },
  1822. {
  1823. "id": "3ef3nnqh7gu00",
  1824. "sourceID": 10110,
  1825. "isGroup": false,
  1826. "attr": {
  1827. "x": 0,
  1828. "y": 20,
  1829. "w": 169,
  1830. "h": 48,
  1831. "offsetX": 0,
  1832. "offsetY": 0,
  1833. "zIndex": -1
  1834. },
  1835. "key": "TextCommon",
  1836. "chartConfig": {
  1837. "key": "TextCommon",
  1838. "chartKey": "VTextCommon",
  1839. "conKey": "VCTextCommon",
  1840. "title": "发布个数",
  1841. "category": "Texts",
  1842. "categoryName": "文本",
  1843. "package": "Informations",
  1844. "image": "static\/png\/text_static-b2721032.png"
  1845. },
  1846. "option": {
  1847. "link": "",
  1848. "linkHead": "http:\/\/",
  1849. "dataset": "100",
  1850. "fontSize": 25,
  1851. "fontColor": "#ffffff",
  1852. "paddingX": 0,
  1853. "paddingY": 0,
  1854. "textAlign": "center",
  1855. "fontWeight": "bold",
  1856. "borderWidth": 0,
  1857. "borderColor": "#ffffff",
  1858. "borderRadius": 5,
  1859. "letterSpacing": 5,
  1860. "writingMode": "horizontal-tb",
  1861. "backgroundColor": "#00000000"
  1862. }
  1863. },
  1864. {
  1865. "id": "52mwo993eaw000",
  1866. "isGroup": false,
  1867. "attr": {
  1868. "x": 0,
  1869. "y": 50,
  1870. "w": 169,
  1871. "h": 78,
  1872. "offsetX": 0,
  1873. "offsetY": 0,
  1874. "zIndex": -1
  1875. },
  1876. "key": "TextCommon",
  1877. "chartConfig": {
  1878. "key": "TextCommon",
  1879. "chartKey": "VTextCommon",
  1880. "conKey": "VCTextCommon",
  1881. "title": "发布个数",
  1882. "category": "Texts",
  1883. "categoryName": "文本",
  1884. "package": "Informations",
  1885. "image": "static\/png\/text_static-b2721032.png"
  1886. },
  1887. "option": {
  1888. "link": "",
  1889. "linkHead": "http:\/\/",
  1890. "dataset": "未完成任务数",
  1891. "fontSize": 15,
  1892. "fontColor": "#9abdcd",
  1893. "paddingX": 0,
  1894. "paddingY": 0,
  1895. "textAlign": "center",
  1896. "fontWeight": "bold",
  1897. "borderWidth": 0,
  1898. "borderColor": "#ffffff",
  1899. "borderRadius": 5,
  1900. "letterSpacing": 1,
  1901. "writingMode": "horizontal-tb",
  1902. "backgroundColor": "#00000000"
  1903. }
  1904. }
  1905. ],
  1906. "key": "group",
  1907. "option": []
  1908. },
  1909. {
  1910. "id": "z3gs9qz8hq800",
  1911. "isGroup": true,
  1912. "attr": {
  1913. "w": 169,
  1914. "h": 159,
  1915. "x": 930,
  1916. "y": 390,
  1917. "offsetX": 0,
  1918. "offsetY": 0,
  1919. "zIndex": -1
  1920. },
  1921. "chartConfig": {
  1922. "key": "group",
  1923. "chartKey": "group",
  1924. "conKey": "group",
  1925. "category": "group",
  1926. "categoryName": "group",
  1927. "package": "group",
  1928. "chartFrame": "common",
  1929. "title": "文档个数",
  1930. "image": ""
  1931. },
  1932. "groupList": [
  1933. {
  1934. "id": "2xjom2cw2b2000",
  1935. "isGroup": false,
  1936. "attr": {
  1937. "x": 0,
  1938. "y": 0,
  1939. "w": 169,
  1940. "h": 127,
  1941. "offsetX": 0,
  1942. "offsetY": 0,
  1943. "zIndex": -1
  1944. },
  1945. "key": "Image",
  1946. "chartConfig": {
  1947. "key": "Image",
  1948. "chartKey": "VImage",
  1949. "conKey": "VCImage",
  1950. "title": "header",
  1951. "category": "Mores",
  1952. "categoryName": "更多",
  1953. "package": "Informations",
  1954. "chartFrame": "common",
  1955. "image": "static\/png\/photo-637bc05d.png"
  1956. },
  1957. "option": {
  1958. "dataset": "static\/images\/card.png",
  1959. "borderRadius": 0
  1960. }
  1961. },
  1962. {
  1963. "id": "3ef3nnqh7gu00",
  1964. "sourceID": 10112,
  1965. "isGroup": false,
  1966. "attr": {
  1967. "x": 0,
  1968. "y": 20,
  1969. "w": 169,
  1970. "h": 48,
  1971. "offsetX": 0,
  1972. "offsetY": 0,
  1973. "zIndex": -1
  1974. },
  1975. "key": "TextCommon",
  1976. "chartConfig": {
  1977. "key": "TextCommon",
  1978. "chartKey": "VTextCommon",
  1979. "conKey": "VCTextCommon",
  1980. "title": "发布个数",
  1981. "category": "Texts",
  1982. "categoryName": "文本",
  1983. "package": "Informations",
  1984. "image": "static\/png\/text_static-b2721032.png"
  1985. },
  1986. "option": {
  1987. "link": "",
  1988. "linkHead": "http:\/\/",
  1989. "dataset": "100",
  1990. "fontSize": 25,
  1991. "fontColor": "#ffffff",
  1992. "paddingX": 0,
  1993. "paddingY": 0,
  1994. "textAlign": "center",
  1995. "fontWeight": "bold",
  1996. "borderWidth": 0,
  1997. "borderColor": "#ffffff",
  1998. "borderRadius": 5,
  1999. "letterSpacing": 5,
  2000. "writingMode": "horizontal-tb",
  2001. "backgroundColor": "#00000000"
  2002. }
  2003. },
  2004. {
  2005. "id": "52mwo993eaw000",
  2006. "isGroup": false,
  2007. "attr": {
  2008. "x": 0,
  2009. "y": 50,
  2010. "w": 169,
  2011. "h": 78,
  2012. "offsetX": 0,
  2013. "offsetY": 0,
  2014. "zIndex": -1
  2015. },
  2016. "key": "TextCommon",
  2017. "chartConfig": {
  2018. "key": "TextCommon",
  2019. "chartKey": "VTextCommon",
  2020. "conKey": "VCTextCommon",
  2021. "title": "发布个数",
  2022. "category": "Texts",
  2023. "categoryName": "文本",
  2024. "package": "Informations",
  2025. "image": "static\/png\/text_static-b2721032.png"
  2026. },
  2027. "option": {
  2028. "link": "",
  2029. "linkHead": "http:\/\/",
  2030. "dataset": "剩余工时数",
  2031. "fontSize": 15,
  2032. "fontColor": "#9abdcd",
  2033. "paddingX": 0,
  2034. "paddingY": 0,
  2035. "textAlign": "center",
  2036. "fontWeight": "bold",
  2037. "borderWidth": 0,
  2038. "borderColor": "#ffffff",
  2039. "borderRadius": 5,
  2040. "letterSpacing": 1,
  2041. "writingMode": "horizontal-tb",
  2042. "backgroundColor": "#00000000"
  2043. }
  2044. }
  2045. ],
  2046. "key": "group",
  2047. "option": []
  2048. },
  2049. {
  2050. "id": "z3gs9qz8hq800",
  2051. "isGroup": true,
  2052. "attr": {
  2053. "w": 159,
  2054. "h": 370,
  2055. "x": 1111,
  2056. "y": 250,
  2057. "offsetX": 0,
  2058. "offsetY": 0,
  2059. "zIndex": -1
  2060. },
  2061. "chartConfig": {
  2062. "key": "group",
  2063. "chartKey": "group",
  2064. "conKey": "group",
  2065. "category": "group",
  2066. "categoryName": "group",
  2067. "package": "group",
  2068. "chartFrame": "common",
  2069. "title": "文档个数",
  2070. "image": ""
  2071. },
  2072. "groupList": [
  2073. {
  2074. "id": "2xjom2cw2b2000",
  2075. "isGroup": false,
  2076. "attr": {
  2077. "x": 0,
  2078. "y": 0,
  2079. "w": 159,
  2080. "h": 267,
  2081. "offsetX": 0,
  2082. "offsetY": 0,
  2083. "zIndex": -1
  2084. },
  2085. "key": "Image",
  2086. "chartConfig": {
  2087. "key": "Image",
  2088. "chartKey": "VImage",
  2089. "conKey": "VCImage",
  2090. "title": "header",
  2091. "category": "Mores",
  2092. "categoryName": "更多",
  2093. "package": "Informations",
  2094. "chartFrame": "common",
  2095. "image": "static\/png\/photo-637bc05d.png"
  2096. },
  2097. "option": {
  2098. "dataset": "static\/images\/card.png",
  2099. "borderRadius": 0
  2100. }
  2101. },
  2102. {
  2103. "id": "3ef3nnqh7gu00",
  2104. "sourceID": 10113,
  2105. "isGroup": false,
  2106. "attr": {
  2107. "x": 0,
  2108. "y": 80,
  2109. "w": 159,
  2110. "h": 48,
  2111. "offsetX": 0,
  2112. "offsetY": 0,
  2113. "zIndex": -1
  2114. },
  2115. "key": "TextCommon",
  2116. "chartConfig": {
  2117. "key": "TextCommon",
  2118. "chartKey": "VTextCommon",
  2119. "conKey": "VCTextCommon",
  2120. "title": "用户个数",
  2121. "category": "Texts",
  2122. "categoryName": "文本",
  2123. "package": "Informations",
  2124. "image": "static\/png\/text_static-b2721032.png"
  2125. },
  2126. "option": {
  2127. "link": "",
  2128. "linkHead": "http:\/\/",
  2129. "dataset": "100",
  2130. "fontSize": 25,
  2131. "fontColor": "#ffffff",
  2132. "paddingX": 0,
  2133. "paddingY": 0,
  2134. "textAlign": "center",
  2135. "fontWeight": "bold",
  2136. "borderWidth": 0,
  2137. "borderColor": "#ffffff",
  2138. "borderRadius": 5,
  2139. "letterSpacing": 5,
  2140. "writingMode": "horizontal-tb",
  2141. "backgroundColor": "#00000000"
  2142. }
  2143. },
  2144. {
  2145. "id": "52mwo993eaw000",
  2146. "isGroup": false,
  2147. "attr": {
  2148. "x": 0,
  2149. "y": 130,
  2150. "w": 159,
  2151. "h": 78,
  2152. "offsetX": 0,
  2153. "offsetY": 0,
  2154. "zIndex": -1
  2155. },
  2156. "key": "TextCommon",
  2157. "chartConfig": {
  2158. "key": "TextCommon",
  2159. "chartKey": "VTextCommon",
  2160. "conKey": "VCTextCommon",
  2161. "title": "用户个数",
  2162. "category": "Texts",
  2163. "categoryName": "文本",
  2164. "package": "Informations",
  2165. "image": "static\/png\/text_static-b2721032.png"
  2166. },
  2167. "option": {
  2168. "link": "",
  2169. "linkHead": "http:\/\/",
  2170. "dataset": "投入的",
  2171. "fontSize": 15,
  2172. "fontColor": "#9abdcd",
  2173. "paddingX": 0,
  2174. "paddingY": 0,
  2175. "textAlign": "center",
  2176. "fontWeight": "bold",
  2177. "borderWidth": 0,
  2178. "borderColor": "#ffffff",
  2179. "borderRadius": 5,
  2180. "letterSpacing": 1,
  2181. "writingMode": "horizontal-tb",
  2182. "backgroundColor": "#00000000"
  2183. }
  2184. },
  2185. {
  2186. "id": "52mwo993eaw000",
  2187. "isGroup": false,
  2188. "attr": {
  2189. "x": 0,
  2190. "y": 150,
  2191. "w": 159,
  2192. "h": 78,
  2193. "offsetX": 0,
  2194. "offsetY": 0,
  2195. "zIndex": -1
  2196. },
  2197. "key": "TextCommon",
  2198. "chartConfig": {
  2199. "key": "TextCommon",
  2200. "chartKey": "VTextCommon",
  2201. "conKey": "VCTextCommon",
  2202. "title": "用户个数",
  2203. "category": "Texts",
  2204. "categoryName": "文本",
  2205. "package": "Informations",
  2206. "image": "static\/png\/text_static-b2721032.png"
  2207. },
  2208. "option": {
  2209. "link": "",
  2210. "linkHead": "http:\/\/",
  2211. "dataset": "总人次",
  2212. "fontSize": 15,
  2213. "fontColor": "#9abdcd",
  2214. "paddingX": 0,
  2215. "paddingY": 0,
  2216. "textAlign": "center",
  2217. "fontWeight": "bold",
  2218. "borderWidth": 0,
  2219. "borderColor": "#ffffff",
  2220. "borderRadius": 5,
  2221. "letterSpacing": 1,
  2222. "writingMode": "horizontal-tb",
  2223. "backgroundColor": "#00000000"
  2224. }
  2225. }
  2226. ],
  2227. "key": "group",
  2228. "option": []
  2229. },
  2230. {
  2231. "id": "fc4u6zmi58w00",
  2232. "isGroup": false,
  2233. "attr": {
  2234. "x": 1260,
  2235. "y": 186,
  2236. "w": 20,
  2237. "h": 20,
  2238. "offsetX": 0,
  2239. "offsetY": 0,
  2240. "zIndex": 1
  2241. },
  2242. "key": "Hint",
  2243. "chartConfig": {
  2244. "key": "Hint",
  2245. "chartKey": "VHint",
  2246. "conKey": "VCHint",
  2247. "title": "提示",
  2248. "category": "Mores",
  2249. "categoryName": "更多",
  2250. "package": "Informations",
  2251. "chartFrame": "common",
  2252. "image": "static\/png\/hint-2cbf6381.png"
  2253. },
  2254. "option": {
  2255. "text": "",
  2256. "icon": "",
  2257. "textSize": 15,
  2258. "textColor": "#ffffff",
  2259. "textWeight": "bold",
  2260. "placement": "left-top",
  2261. "distance": 8,
  2262. "hint": "顺利:进度百分比 ≥ (当前日期-计划开始日期)\/(计划工期)或者 长期项目\n滞后:进度百分比 <(当前日期-计划开始日期)\/(计划工期)\n延期:计划结束日期 < 当前日期",
  2263. "width": 0,
  2264. "height": 0,
  2265. "paddingX": 16,
  2266. "paddingY": 8,
  2267. "borderWidth": 1,
  2268. "borderStyle": "solid",
  2269. "borderColor": "#1a77a5",
  2270. "borderRadius": 6,
  2271. "color": "#ffffff",
  2272. "textAlign": "left",
  2273. "fontWeight": "normal",
  2274. "backgroundColor": "rgba(8, 40, 80, 0.9)",
  2275. "fontSize": 16
  2276. }
  2277. },
  2278. {
  2279. "id": "3hqq7oh18ra000",
  2280. "isGroup": true,
  2281. "attr": {
  2282. "w": 647,
  2283. "h": 500,
  2284. "x": 0,
  2285. "y": 562,
  2286. "offsetX": 0,
  2287. "offsetY": 0,
  2288. "zIndex": -1
  2289. },
  2290. "chartConfig": {
  2291. "key": "group",
  2292. "chartKey": "group",
  2293. "conKey": "group",
  2294. "category": "group",
  2295. "categoryName": "group",
  2296. "package": "group",
  2297. "chartFrame": "common",
  2298. "title": "需求年度新增和完成趋势图",
  2299. "image": ""
  2300. },
  2301. "groupList": [
  2302. {
  2303. "id": "1dlpgwe8wwe800",
  2304. "isGroup": false,
  2305. "attr": {
  2306. "x": 0,
  2307. "y": 0,
  2308. "w": 647,
  2309. "h": 500,
  2310. "offsetX": 0,
  2311. "offsetY": 0,
  2312. "zIndex": -1
  2313. },
  2314. "key": "Border03",
  2315. "chartConfig": {
  2316. "key": "Border03",
  2317. "chartKey": "VBorder03",
  2318. "conKey": "VCBorder03",
  2319. "title": "需求年度新增和完成趋势图",
  2320. "category": "Borders",
  2321. "categoryName": "边框",
  2322. "package": "Decorates",
  2323. "image": ""
  2324. },
  2325. "option": {
  2326. "colors": [
  2327. "#0a1c3700",
  2328. "#042b4d00"
  2329. ],
  2330. "backgroundColor": "#0a1c38"
  2331. }
  2332. },
  2333. {
  2334. "id": "4ocyn7hip9k000",
  2335. "sourceID": 10114,
  2336. "isGroup": false,
  2337. "attr": {
  2338. "x": 10,
  2339. "y": 50,
  2340. "w": 600,
  2341. "h": 410,
  2342. "offsetX": 0,
  2343. "offsetY": 0,
  2344. "zIndex": -1
  2345. },
  2346. "key": "PieCommon",
  2347. "chartConfig": {
  2348. "key": "PieCommon",
  2349. "chartKey": "VPieCommon",
  2350. "conKey": "VCPieCommon",
  2351. "title": "饼图",
  2352. "category": "Pies",
  2353. "categoryName": "饼图",
  2354. "package": "Charts",
  2355. "chartFrame": "echarts",
  2356. "image": "static\/png\/pie-9620f191.png"
  2357. },
  2358. "option": {
  2359. "legend": {
  2360. "show": true,
  2361. "top": "5%",
  2362. "textStyle": {
  2363. "color": "#B9B8CE"
  2364. }
  2365. },
  2366. "type": "nomal",
  2367. "tooltip": {
  2368. "show": true,
  2369. "trigger": "item"
  2370. },
  2371. "dataset": {
  2372. "dimensions": [
  2373. "product",
  2374. "data1"
  2375. ],
  2376. "source": [
  2377. {
  2378. "product": "Mon",
  2379. "data1": 120
  2380. },
  2381. {
  2382. "product": "Tue",
  2383. "data1": 200
  2384. },
  2385. {
  2386. "product": "Wed",
  2387. "data1": 150
  2388. },
  2389. {
  2390. "product": "Thu",
  2391. "data1": 80
  2392. },
  2393. {
  2394. "product": "Fri",
  2395. "data1": 70
  2396. },
  2397. {
  2398. "product": "Sat",
  2399. "data1": 110
  2400. },
  2401. {
  2402. "product": "Sun",
  2403. "data1": 130
  2404. }
  2405. ]
  2406. },
  2407. "series": [
  2408. {
  2409. "type": "pie",
  2410. "radius": [
  2411. "30%",
  2412. "30%"
  2413. ],
  2414. "label": {
  2415. "show": true,
  2416. "width": 120,
  2417. "formatter": "{b}\n{d}%",
  2418. "lineHeight": 20,
  2419. "color": "#ffffff",
  2420. "position": "outside",
  2421. "alignTo": "edge",
  2422. "margin": "10%"
  2423. },
  2424. "center": [
  2425. "50%",
  2426. "55%"
  2427. ],
  2428. "roseType": false,
  2429. "emphasis": {
  2430. "itemStyle": {
  2431. "shadowBlur": 20,
  2432. "shadowOffsetX": 2,
  2433. "shadowColor": "rgba(0, 0, 0, 0)"
  2434. }
  2435. }
  2436. }
  2437. ]
  2438. }
  2439. },
  2440. {
  2441. "id": "2u3zlsz5kk4000",
  2442. "isGroup": false,
  2443. "attr": {
  2444. "x": 15,
  2445. "y": 22,
  2446. "w": 600,
  2447. "h": 50,
  2448. "offsetX": 0,
  2449. "offsetY": 0,
  2450. "zIndex": -1
  2451. },
  2452. "key": "TextCommon",
  2453. "chartConfig": {
  2454. "key": "TextCommon",
  2455. "chartKey": "VTextCommon",
  2456. "conKey": "VCTextCommon",
  2457. "title": "需求年度新增和完成趋势图",
  2458. "category": "Texts",
  2459. "categoryName": "文本",
  2460. "package": "Informations",
  2461. "image": "static\/png\/text_static-b2721032.png"
  2462. },
  2463. "option": {
  2464. "link": "",
  2465. "linkHead": "http:\/\/",
  2466. "dataset": "项目进度分布图",
  2467. "fontSize": 14,
  2468. "fontColor": "#ffffff",
  2469. "paddingX": 10,
  2470. "paddingY": 10,
  2471. "textAlign": "center",
  2472. "fontWeight": "bold",
  2473. "borderWidth": 0,
  2474. "borderColor": "#ffffff",
  2475. "borderRadius": 5,
  2476. "letterSpacing": 5,
  2477. "writingMode": "horizontal-tb",
  2478. "backgroundColor": "#00000000"
  2479. }
  2480. }
  2481. ],
  2482. "key": "group",
  2483. "option": []
  2484. },
  2485. {
  2486. "id": "3hqq7oh18ra000",
  2487. "isGroup": true,
  2488. "attr": {
  2489. "w": 647,
  2490. "h": 500,
  2491. "x": 653,
  2492. "y": 562,
  2493. "offsetX": 0,
  2494. "offsetY": 0,
  2495. "zIndex": -1
  2496. },
  2497. "chartConfig": {
  2498. "key": "group",
  2499. "chartKey": "group",
  2500. "conKey": "group",
  2501. "category": "group",
  2502. "categoryName": "group",
  2503. "package": "group",
  2504. "chartFrame": "common",
  2505. "title": "BUG年度新增和解决趋势图",
  2506. "image": ""
  2507. },
  2508. "groupList": [
  2509. {
  2510. "id": "1dlpgwe8wwe800",
  2511. "isGroup": false,
  2512. "attr": {
  2513. "x": 0,
  2514. "y": 0,
  2515. "w": 647,
  2516. "h": 500,
  2517. "offsetX": 0,
  2518. "offsetY": 0,
  2519. "zIndex": -1
  2520. },
  2521. "key": "Border03",
  2522. "chartConfig": {
  2523. "key": "Border03",
  2524. "chartKey": "VBorder03",
  2525. "conKey": "VCBorder03",
  2526. "title": "BUG年度新增和解决趋势图",
  2527. "category": "Borders",
  2528. "categoryName": "边框",
  2529. "package": "Decorates",
  2530. "image": ""
  2531. },
  2532. "option": {
  2533. "colors": [
  2534. "#0a1c3700",
  2535. "#042b4d00"
  2536. ],
  2537. "backgroundColor": "#0a1c38"
  2538. }
  2539. },
  2540. {
  2541. "id": "4ocyn7hip9k000",
  2542. "sourceID": 10115,
  2543. "isGroup": false,
  2544. "attr": {
  2545. "x": 10,
  2546. "y": 50,
  2547. "w": 600,
  2548. "h": 410,
  2549. "offsetX": 0,
  2550. "offsetY": 0,
  2551. "zIndex": -1
  2552. },
  2553. "key": "PieCommon",
  2554. "chartConfig": {
  2555. "key": "PieCommon",
  2556. "chartKey": "VPieCommon",
  2557. "conKey": "VCPieCommon",
  2558. "title": "饼图",
  2559. "category": "Pies",
  2560. "categoryName": "饼图",
  2561. "package": "Charts",
  2562. "chartFrame": "echarts",
  2563. "image": "static\/png\/pie-9620f191.png"
  2564. },
  2565. "option": {
  2566. "legend": {
  2567. "show": true,
  2568. "top": "5%",
  2569. "textStyle": {
  2570. "color": "#B9B8CE"
  2571. }
  2572. },
  2573. "type": "nomal",
  2574. "tooltip": {
  2575. "show": true,
  2576. "trigger": "item"
  2577. },
  2578. "dataset": {
  2579. "dimensions": [
  2580. "product",
  2581. "data1"
  2582. ],
  2583. "source": [
  2584. {
  2585. "product": "Mon",
  2586. "data1": 120
  2587. },
  2588. {
  2589. "product": "Tue",
  2590. "data1": 200
  2591. },
  2592. {
  2593. "product": "Wed",
  2594. "data1": 150
  2595. },
  2596. {
  2597. "product": "Thu",
  2598. "data1": 80
  2599. },
  2600. {
  2601. "product": "Fri",
  2602. "data1": 70
  2603. },
  2604. {
  2605. "product": "Sat",
  2606. "data1": 110
  2607. },
  2608. {
  2609. "product": "Sun",
  2610. "data1": 130
  2611. }
  2612. ]
  2613. },
  2614. "series": [
  2615. {
  2616. "type": "pie",
  2617. "radius": [
  2618. "30%",
  2619. "30%"
  2620. ],
  2621. "label": {
  2622. "show": true,
  2623. "width": 120,
  2624. "formatter": "{b}\n{d}%",
  2625. "lineHeight": 20,
  2626. "color": "#ffffff",
  2627. "position": "outside",
  2628. "alignTo": "edge",
  2629. "margin": "10%"
  2630. },
  2631. "center": [
  2632. "50%",
  2633. "55%"
  2634. ],
  2635. "roseType": false,
  2636. "emphasis": {
  2637. "itemStyle": {
  2638. "shadowBlur": 20,
  2639. "shadowOffsetX": 2,
  2640. "shadowColor": "rgba(0, 0, 0, 0)"
  2641. }
  2642. }
  2643. }
  2644. ]
  2645. }
  2646. },
  2647. {
  2648. "id": "2u3zlsz5kk4000",
  2649. "isGroup": false,
  2650. "attr": {
  2651. "x": 15,
  2652. "y": 22,
  2653. "w": 600,
  2654. "h": 50,
  2655. "offsetX": 0,
  2656. "offsetY": 0,
  2657. "zIndex": -1
  2658. },
  2659. "key": "TextCommon",
  2660. "chartConfig": {
  2661. "key": "TextCommon",
  2662. "chartKey": "VTextCommon",
  2663. "conKey": "VCTextCommon",
  2664. "title": "BUG年度新增和解决趋势图",
  2665. "category": "Texts",
  2666. "categoryName": "文本",
  2667. "package": "Informations",
  2668. "image": "static\/png\/text_static-b2721032.png"
  2669. },
  2670. "option": {
  2671. "link": "",
  2672. "linkHead": "http:\/\/",
  2673. "dataset": "迭代进度分布图",
  2674. "fontSize": 14,
  2675. "fontColor": "#ffffff",
  2676. "paddingX": 10,
  2677. "paddingY": 10,
  2678. "textAlign": "center",
  2679. "fontWeight": "bold",
  2680. "borderWidth": 0,
  2681. "borderColor": "#ffffff",
  2682. "borderRadius": 5,
  2683. "letterSpacing": 5,
  2684. "writingMode": "horizontal-tb",
  2685. "backgroundColor": "#00000000"
  2686. }
  2687. }
  2688. ],
  2689. "key": "group",
  2690. "option": []
  2691. },
  2692. {
  2693. "id": "1cfwp95aiif400",
  2694. "isGroup": false,
  2695. "attr": {
  2696. "x": 0,
  2697. "y": 1068,
  2698. "w": 1300,
  2699. "h": 525,
  2700. "offsetX": 0,
  2701. "offsetY": 0,
  2702. "zIndex": -1
  2703. },
  2704. "key": "Border03",
  2705. "chartConfig": {
  2706. "key": "Border03",
  2707. "chartKey": "VBorder03",
  2708. "conKey": "VCBorder03",
  2709. "title": "summary",
  2710. "category": "Borders",
  2711. "categoryName": "边框",
  2712. "package": "Decorates",
  2713. "image": ""
  2714. },
  2715. "option": {
  2716. "colors": [
  2717. "#00102800",
  2718. "#00102800"
  2719. ],
  2720. "backgroundColor": "#0a1c38"
  2721. }
  2722. },
  2723. {
  2724. "id": "6scfjzqsbzo000",
  2725. "isGroup": true,
  2726. "attr": {
  2727. "w": 1300,
  2728. "h": 120,
  2729. "x": 0,
  2730. "y": 1068,
  2731. "offsetX": 0,
  2732. "offsetY": 0,
  2733. "zIndex": -1
  2734. },
  2735. "chartConfig": {
  2736. "key": "group",
  2737. "chartKey": "group",
  2738. "conKey": "group",
  2739. "category": "group",
  2740. "categoryName": "group",
  2741. "package": "group",
  2742. "chartFrame": "common",
  2743. "title": "标题",
  2744. "image": ""
  2745. },
  2746. "groupList": [
  2747. {
  2748. "id": "57r67ykkwxk000",
  2749. "isGroup": false,
  2750. "attr": {
  2751. "x": 15,
  2752. "y": 0,
  2753. "w": 277,
  2754. "h": 68,
  2755. "offsetX": 0,
  2756. "offsetY": 0,
  2757. "zIndex": -1
  2758. },
  2759. "key": "TextCommon",
  2760. "chartConfig": {
  2761. "key": "TextCommon",
  2762. "chartKey": "VTextCommon",
  2763. "conKey": "VCTextCommon",
  2764. "title": "summary_top",
  2765. "category": "Texts",
  2766. "categoryName": "文本",
  2767. "package": "Informations",
  2768. "image": "static\/png\/text_static-b2721032.png"
  2769. },
  2770. "option": {
  2771. "link": "",
  2772. "linkHead": "http:\/\/",
  2773. "dataset": "项目进度透视图",
  2774. "fontSize": 14,
  2775. "fontColor": "#b2d5e5",
  2776. "paddingX": 10,
  2777. "paddingY": 10,
  2778. "textAlign": "left",
  2779. "fontWeight": "bold",
  2780. "borderWidth": 0,
  2781. "borderColor": "#ffffff",
  2782. "borderRadius": 5,
  2783. "letterSpacing": 5,
  2784. "writingMode": "horizontal-tb",
  2785. "backgroundColor": "#00000000"
  2786. }
  2787. },
  2788. {
  2789. "id": "2xjom2cw2b2000",
  2790. "isGroup": false,
  2791. "attr": {
  2792. "x": 167,
  2793. "y": 26,
  2794. "w": 14,
  2795. "h": 11,
  2796. "offsetX": 0,
  2797. "offsetY": 0,
  2798. "zIndex": -1
  2799. },
  2800. "key": "Image",
  2801. "chartConfig": {
  2802. "key": "Image",
  2803. "chartKey": "VImage",
  2804. "conKey": "VCImage",
  2805. "title": "header",
  2806. "category": "Mores",
  2807. "categoryName": "更多",
  2808. "package": "Informations",
  2809. "chartFrame": "common",
  2810. "image": "static\/png\/photo-637bc05d.png"
  2811. },
  2812. "option": {
  2813. "dataset": "static\/images\/line_left.png",
  2814. "borderRadius": 0
  2815. }
  2816. },
  2817. {
  2818. "id": "3xjom2cw2b2000",
  2819. "isGroup": false,
  2820. "attr": {
  2821. "x": 187,
  2822. "y": 28,
  2823. "w": 1083,
  2824. "h": 10,
  2825. "offsetX": 0,
  2826. "offsetY": 0,
  2827. "zIndex": -1
  2828. },
  2829. "key": "Image",
  2830. "chartConfig": {
  2831. "key": "Image",
  2832. "chartKey": "VImage",
  2833. "conKey": "VCImage",
  2834. "title": "header",
  2835. "category": "Mores",
  2836. "categoryName": "更多",
  2837. "package": "Informations",
  2838. "chartFrame": "common",
  2839. "image": "static\/png\/photo-637bc05d.png"
  2840. },
  2841. "option": {
  2842. "dataset": "static\/images\/line_right.png",
  2843. "fit": "fill",
  2844. "borderRadius": 0
  2845. }
  2846. },
  2847. {
  2848. "id": "1zhfrmecpnxc00",
  2849. "sourceID": 10116,
  2850. "isGroup": false,
  2851. "attr": {
  2852. "x": 25,
  2853. "y": 57,
  2854. "w": 1250,
  2855. "h": 446,
  2856. "offsetX": 0,
  2857. "offsetY": 0,
  2858. "zIndex": -1
  2859. },
  2860. "key": "TableScrollBoard",
  2861. "chartConfig": {
  2862. "key": "TableScrollBoard",
  2863. "chartKey": "VTableScrollBoard",
  2864. "conKey": "VCTableScrollBoard",
  2865. "title": "轮播列表",
  2866. "category": "Tables",
  2867. "categoryName": "表格",
  2868. "package": "Tables",
  2869. "chartFrame": "common",
  2870. "image": "static\/png\/table_scrollboard-fb642e78.png"
  2871. },
  2872. "option": {
  2873. "header": [
  2874. "列1",
  2875. "列2",
  2876. "列3"
  2877. ],
  2878. "dataset": [
  2879. [
  2880. "行1列1",
  2881. "行1列2",
  2882. "行1列3"
  2883. ],
  2884. [
  2885. "行2列1",
  2886. "行2列2",
  2887. "行2列3"
  2888. ],
  2889. [
  2890. "行3列1",
  2891. "行3列2",
  2892. "行3列3"
  2893. ],
  2894. [
  2895. "行4列1",
  2896. "行4列2",
  2897. "行4列3"
  2898. ],
  2899. [
  2900. "行5列1",
  2901. "行5列2",
  2902. "行5列3"
  2903. ],
  2904. [
  2905. "行6列1",
  2906. "行6列2",
  2907. "行6列3"
  2908. ],
  2909. [
  2910. "行6列1",
  2911. "行6列2",
  2912. "行6列3"
  2913. ],
  2914. [
  2915. "行6列1",
  2916. "行6列2",
  2917. "行6列3"
  2918. ],
  2919. [
  2920. "行6列1",
  2921. "行6列2",
  2922. "行6列3"
  2923. ],
  2924. [
  2925. "行6列1",
  2926. "行6列2",
  2927. "行6列3"
  2928. ]
  2929. ],
  2930. "index": false,
  2931. "columnWidth": [],
  2932. "align": [
  2933. "center",
  2934. "center",
  2935. "center",
  2936. "center",
  2937. "center",
  2938. "center",
  2939. "center",
  2940. "center",
  2941. "center"
  2942. ],
  2943. "rowNum": 8,
  2944. "waitTime": 3,
  2945. "headerHeight": 45,
  2946. "carousel": "single",
  2947. "headerBGC": "#165896FF",
  2948. "oddRowBGC": "#042b4dFF",
  2949. "evenRowBGC": "#0a1c37FF"
  2950. }
  2951. }
  2952. ],
  2953. "key": "group",
  2954. "option": []
  2955. },
  2956. {
  2957. "id": "1cfwp95aiif400",
  2958. "isGroup": false,
  2959. "attr": {
  2960. "x": 0,
  2961. "y": 1597,
  2962. "w": 1300,
  2963. "h": 525,
  2964. "offsetX": 0,
  2965. "offsetY": 0,
  2966. "zIndex": -1
  2967. },
  2968. "key": "Border03",
  2969. "chartConfig": {
  2970. "key": "Border03",
  2971. "chartKey": "VBorder03",
  2972. "conKey": "VCBorder03",
  2973. "title": "summary",
  2974. "category": "Borders",
  2975. "categoryName": "边框",
  2976. "package": "Decorates",
  2977. "image": ""
  2978. },
  2979. "option": {
  2980. "colors": [
  2981. "#00102800",
  2982. "#00102800"
  2983. ],
  2984. "backgroundColor": "#0a1c38"
  2985. }
  2986. },
  2987. {
  2988. "id": "6scfjzqsbzo000",
  2989. "isGroup": true,
  2990. "attr": {
  2991. "w": 1300,
  2992. "h": 120,
  2993. "x": 0,
  2994. "y": 1597,
  2995. "offsetX": 0,
  2996. "offsetY": 0,
  2997. "zIndex": -1
  2998. },
  2999. "chartConfig": {
  3000. "key": "group",
  3001. "chartKey": "group",
  3002. "conKey": "group",
  3003. "category": "group",
  3004. "categoryName": "group",
  3005. "package": "group",
  3006. "chartFrame": "common",
  3007. "title": "标题",
  3008. "image": ""
  3009. },
  3010. "groupList": [
  3011. {
  3012. "id": "57r67ykkwxk000",
  3013. "isGroup": false,
  3014. "attr": {
  3015. "x": 15,
  3016. "y": 0,
  3017. "w": 277,
  3018. "h": 68,
  3019. "offsetX": 0,
  3020. "offsetY": 0,
  3021. "zIndex": -1
  3022. },
  3023. "key": "TextCommon",
  3024. "chartConfig": {
  3025. "key": "TextCommon",
  3026. "chartKey": "VTextCommon",
  3027. "conKey": "VCTextCommon",
  3028. "title": "summary_top",
  3029. "category": "Texts",
  3030. "categoryName": "文本",
  3031. "package": "Informations",
  3032. "image": "static\/png\/text_static-b2721032.png"
  3033. },
  3034. "option": {
  3035. "link": "",
  3036. "linkHead": "http:\/\/",
  3037. "dataset": "迭代进度透视表",
  3038. "fontSize": 14,
  3039. "fontColor": "#b2d5e5",
  3040. "paddingX": 10,
  3041. "paddingY": 10,
  3042. "textAlign": "left",
  3043. "fontWeight": "bold",
  3044. "borderWidth": 0,
  3045. "borderColor": "#ffffff",
  3046. "borderRadius": 5,
  3047. "letterSpacing": 5,
  3048. "writingMode": "horizontal-tb",
  3049. "backgroundColor": "#00000000"
  3050. }
  3051. },
  3052. {
  3053. "id": "2xjom2cw2b2000",
  3054. "isGroup": false,
  3055. "attr": {
  3056. "x": 165,
  3057. "y": 26,
  3058. "w": 14,
  3059. "h": 11,
  3060. "offsetX": 0,
  3061. "offsetY": 0,
  3062. "zIndex": -1
  3063. },
  3064. "key": "Image",
  3065. "chartConfig": {
  3066. "key": "Image",
  3067. "chartKey": "VImage",
  3068. "conKey": "VCImage",
  3069. "title": "header",
  3070. "category": "Mores",
  3071. "categoryName": "更多",
  3072. "package": "Informations",
  3073. "chartFrame": "common",
  3074. "image": "static\/png\/photo-637bc05d.png"
  3075. },
  3076. "option": {
  3077. "dataset": "static\/images\/line_left.png",
  3078. "borderRadius": 0
  3079. }
  3080. },
  3081. {
  3082. "id": "3xjom2cw2b2000",
  3083. "isGroup": false,
  3084. "attr": {
  3085. "x": 185,
  3086. "y": 28,
  3087. "w": 1090,
  3088. "h": 10,
  3089. "offsetX": 0,
  3090. "offsetY": 0,
  3091. "zIndex": -1
  3092. },
  3093. "key": "Image",
  3094. "chartConfig": {
  3095. "key": "Image",
  3096. "chartKey": "VImage",
  3097. "conKey": "VCImage",
  3098. "title": "header",
  3099. "category": "Mores",
  3100. "categoryName": "更多",
  3101. "package": "Informations",
  3102. "chartFrame": "common",
  3103. "image": "static\/png\/photo-637bc05d.png"
  3104. },
  3105. "option": {
  3106. "dataset": "static\/images\/line_right.png",
  3107. "fit": "fill",
  3108. "borderRadius": 0
  3109. }
  3110. },
  3111. {
  3112. "id": "1zhfrmecpnxc00",
  3113. "sourceID": 10117,
  3114. "isGroup": false,
  3115. "attr": {
  3116. "x": 25,
  3117. "y": 57,
  3118. "w": 1250,
  3119. "h": 446,
  3120. "offsetX": 0,
  3121. "offsetY": 0,
  3122. "zIndex": -1
  3123. },
  3124. "key": "TableScrollBoard",
  3125. "chartConfig": {
  3126. "key": "TableScrollBoard",
  3127. "chartKey": "VTableScrollBoard",
  3128. "conKey": "VCTableScrollBoard",
  3129. "title": "轮播列表",
  3130. "category": "Tables",
  3131. "categoryName": "表格",
  3132. "package": "Tables",
  3133. "chartFrame": "common",
  3134. "image": "static\/png\/table_scrollboard-fb642e78.png"
  3135. },
  3136. "option": {
  3137. "header": [
  3138. "列1",
  3139. "列2",
  3140. "列3"
  3141. ],
  3142. "dataset": [
  3143. [
  3144. "行1列1",
  3145. "行1列2",
  3146. "行1列3"
  3147. ],
  3148. [
  3149. "行2列1",
  3150. "行2列2",
  3151. "行2列3"
  3152. ],
  3153. [
  3154. "行3列1",
  3155. "行3列2",
  3156. "行3列3"
  3157. ],
  3158. [
  3159. "行4列1",
  3160. "行4列2",
  3161. "行4列3"
  3162. ],
  3163. [
  3164. "行5列1",
  3165. "行5列2",
  3166. "行5列3"
  3167. ],
  3168. [
  3169. "行6列1",
  3170. "行6列2",
  3171. "行6列3"
  3172. ],
  3173. [
  3174. "行6列1",
  3175. "行6列2",
  3176. "行6列3"
  3177. ],
  3178. [
  3179. "行6列1",
  3180. "行6列2",
  3181. "行6列3"
  3182. ],
  3183. [
  3184. "行6列1",
  3185. "行6列2",
  3186. "行6列3"
  3187. ],
  3188. [
  3189. "行6列1",
  3190. "行6列2",
  3191. "行6列3"
  3192. ]
  3193. ],
  3194. "index": false,
  3195. "columnWidth": [],
  3196. "align": [
  3197. "center",
  3198. "center",
  3199. "center",
  3200. "center",
  3201. "center",
  3202. "center",
  3203. "center",
  3204. "center",
  3205. "center"
  3206. ],
  3207. "rowNum": 8,
  3208. "waitTime": 3,
  3209. "headerHeight": 45,
  3210. "carousel": "single",
  3211. "headerBGC": "#165896FF",
  3212. "oddRowBGC": "#042b4dFF",
  3213. "evenRowBGC": "#0a1c37FF"
  3214. }
  3215. }
  3216. ],
  3217. "key": "group",
  3218. "option": []
  3219. },
  3220. {
  3221. "id": "1cfwp95aiif400",
  3222. "isGroup": false,
  3223. "attr": {
  3224. "x": 0,
  3225. "y": 2129,
  3226. "w": 647,
  3227. "h": 525,
  3228. "offsetX": 0,
  3229. "offsetY": 0,
  3230. "zIndex": -1
  3231. },
  3232. "key": "Border03",
  3233. "chartConfig": {
  3234. "key": "Border03",
  3235. "chartKey": "VBorder03",
  3236. "conKey": "VCBorder03",
  3237. "title": "summary",
  3238. "category": "Borders",
  3239. "categoryName": "边框",
  3240. "package": "Decorates",
  3241. "image": ""
  3242. },
  3243. "option": {
  3244. "colors": [
  3245. "#00102800",
  3246. "#00102800"
  3247. ],
  3248. "backgroundColor": "#0a1c38"
  3249. }
  3250. },
  3251. {
  3252. "id": "6scfjzqsbzo000",
  3253. "isGroup": true,
  3254. "attr": {
  3255. "w": 647,
  3256. "h": 120,
  3257. "x": 0,
  3258. "y": 2129,
  3259. "offsetX": 0,
  3260. "offsetY": 0,
  3261. "zIndex": -1
  3262. },
  3263. "chartConfig": {
  3264. "key": "group",
  3265. "chartKey": "group",
  3266. "conKey": "group",
  3267. "category": "group",
  3268. "categoryName": "group",
  3269. "package": "group",
  3270. "chartFrame": "common",
  3271. "title": "标题",
  3272. "image": ""
  3273. },
  3274. "groupList": [
  3275. {
  3276. "id": "57r67ykkwxk000",
  3277. "isGroup": false,
  3278. "attr": {
  3279. "x": 15,
  3280. "y": 0,
  3281. "w": 277,
  3282. "h": 68,
  3283. "offsetX": 0,
  3284. "offsetY": 0,
  3285. "zIndex": -1
  3286. },
  3287. "key": "TextCommon",
  3288. "chartConfig": {
  3289. "key": "TextCommon",
  3290. "chartKey": "VTextCommon",
  3291. "conKey": "VCTextCommon",
  3292. "title": "summary_top",
  3293. "category": "Texts",
  3294. "categoryName": "文本",
  3295. "package": "Informations",
  3296. "image": "static\/png\/text_static-b2721032.png"
  3297. },
  3298. "option": {
  3299. "link": "",
  3300. "linkHead": "http:\/\/",
  3301. "dataset": "项目剩余工作量透视表",
  3302. "fontSize": 14,
  3303. "fontColor": "#b2d5e5",
  3304. "paddingX": 10,
  3305. "paddingY": 10,
  3306. "textAlign": "left",
  3307. "fontWeight": "bold",
  3308. "borderWidth": 0,
  3309. "borderColor": "#ffffff",
  3310. "borderRadius": 5,
  3311. "letterSpacing": 5,
  3312. "writingMode": "horizontal-tb",
  3313. "backgroundColor": "#00000000"
  3314. }
  3315. },
  3316. {
  3317. "id": "2xjom2cw2b2000",
  3318. "isGroup": false,
  3319. "attr": {
  3320. "x": 225,
  3321. "y": 26,
  3322. "w": 14,
  3323. "h": 11,
  3324. "offsetX": 0,
  3325. "offsetY": 0,
  3326. "zIndex": -1
  3327. },
  3328. "key": "Image",
  3329. "chartConfig": {
  3330. "key": "Image",
  3331. "chartKey": "VImage",
  3332. "conKey": "VCImage",
  3333. "title": "header",
  3334. "category": "Mores",
  3335. "categoryName": "更多",
  3336. "package": "Informations",
  3337. "chartFrame": "common",
  3338. "image": "static\/png\/photo-637bc05d.png"
  3339. },
  3340. "option": {
  3341. "dataset": "static\/images\/line_left.png",
  3342. "borderRadius": 0
  3343. }
  3344. },
  3345. {
  3346. "id": "3xjom2cw2b2000",
  3347. "isGroup": false,
  3348. "attr": {
  3349. "x": 245,
  3350. "y": 28,
  3351. "w": 380,
  3352. "h": 8,
  3353. "offsetX": 0,
  3354. "offsetY": 0,
  3355. "zIndex": -1
  3356. },
  3357. "key": "Image",
  3358. "chartConfig": {
  3359. "key": "Image",
  3360. "chartKey": "VImage",
  3361. "conKey": "VCImage",
  3362. "title": "header",
  3363. "category": "Mores",
  3364. "categoryName": "更多",
  3365. "package": "Informations",
  3366. "chartFrame": "common",
  3367. "image": "static\/png\/photo-637bc05d.png"
  3368. },
  3369. "option": {
  3370. "dataset": "static\/images\/line_right.png",
  3371. "fit": "fill",
  3372. "borderRadius": 0
  3373. }
  3374. },
  3375. {
  3376. "id": "1zhfrmecpnxc00",
  3377. "sourceID": 10118,
  3378. "isGroup": false,
  3379. "attr": {
  3380. "x": 17,
  3381. "y": 57,
  3382. "w": 610,
  3383. "h": 446,
  3384. "offsetX": 0,
  3385. "offsetY": 0,
  3386. "zIndex": -1
  3387. },
  3388. "key": "TableScrollBoard",
  3389. "chartConfig": {
  3390. "key": "TableScrollBoard",
  3391. "chartKey": "VTableScrollBoard",
  3392. "conKey": "VCTableScrollBoard",
  3393. "title": "轮播列表",
  3394. "category": "Tables",
  3395. "categoryName": "表格",
  3396. "package": "Tables",
  3397. "chartFrame": "common",
  3398. "image": "static\/png\/table_scrollboard-fb642e78.png"
  3399. },
  3400. "option": {
  3401. "header": [
  3402. "列1",
  3403. "列2",
  3404. "列3"
  3405. ],
  3406. "dataset": [
  3407. [
  3408. "行1列1",
  3409. "行1列2",
  3410. "行1列3"
  3411. ],
  3412. [
  3413. "行2列1",
  3414. "行2列2",
  3415. "行2列3"
  3416. ],
  3417. [
  3418. "行3列1",
  3419. "行3列2",
  3420. "行3列3"
  3421. ],
  3422. [
  3423. "行4列1",
  3424. "行4列2",
  3425. "行4列3"
  3426. ],
  3427. [
  3428. "行5列1",
  3429. "行5列2",
  3430. "行5列3"
  3431. ],
  3432. [
  3433. "行6列1",
  3434. "行6列2",
  3435. "行6列3"
  3436. ],
  3437. [
  3438. "行6列1",
  3439. "行6列2",
  3440. "行6列3"
  3441. ],
  3442. [
  3443. "行6列1",
  3444. "行6列2",
  3445. "行6列3"
  3446. ],
  3447. [
  3448. "行6列1",
  3449. "行6列2",
  3450. "行6列3"
  3451. ],
  3452. [
  3453. "行6列1",
  3454. "行6列2",
  3455. "行6列3"
  3456. ]
  3457. ],
  3458. "index": false,
  3459. "columnWidth": [
  3460. "120",
  3461. "100",
  3462. "90",
  3463. "130",
  3464. "80",
  3465. "90"
  3466. ],
  3467. "align": [
  3468. "center",
  3469. "center",
  3470. "center",
  3471. "center",
  3472. "center",
  3473. "center",
  3474. "center",
  3475. "center"
  3476. ],
  3477. "rowNum": 8,
  3478. "waitTime": 3,
  3479. "headerHeight": 45,
  3480. "carousel": "single",
  3481. "headerBGC": "#165896FF",
  3482. "oddRowBGC": "#042b4dFF",
  3483. "evenRowBGC": "#0a1c37FF"
  3484. }
  3485. }
  3486. ],
  3487. "key": "group",
  3488. "option": []
  3489. },
  3490. {
  3491. "id": "1cfwp95aiif400",
  3492. "isGroup": false,
  3493. "attr": {
  3494. "x": 653,
  3495. "y": 2129,
  3496. "w": 647,
  3497. "h": 525,
  3498. "offsetX": 0,
  3499. "offsetY": 0,
  3500. "zIndex": -1
  3501. },
  3502. "key": "Border03",
  3503. "chartConfig": {
  3504. "key": "Border03",
  3505. "chartKey": "VBorder03",
  3506. "conKey": "VCBorder03",
  3507. "title": "summary",
  3508. "category": "Borders",
  3509. "categoryName": "边框",
  3510. "package": "Decorates",
  3511. "image": ""
  3512. },
  3513. "option": {
  3514. "colors": [
  3515. "#00102800",
  3516. "#00102800"
  3517. ],
  3518. "backgroundColor": "#0a1c38"
  3519. }
  3520. },
  3521. {
  3522. "id": "6scfjzqsbzo000",
  3523. "isGroup": true,
  3524. "attr": {
  3525. "w": 647,
  3526. "h": 120,
  3527. "x": 653,
  3528. "y": 2129,
  3529. "offsetX": 0,
  3530. "offsetY": 0,
  3531. "zIndex": -1
  3532. },
  3533. "chartConfig": {
  3534. "key": "group",
  3535. "chartKey": "group",
  3536. "conKey": "group",
  3537. "category": "group",
  3538. "categoryName": "group",
  3539. "package": "group",
  3540. "chartFrame": "common",
  3541. "title": "标题",
  3542. "image": ""
  3543. },
  3544. "groupList": [
  3545. {
  3546. "id": "57r67ykkwxk000",
  3547. "isGroup": false,
  3548. "attr": {
  3549. "x": 15,
  3550. "y": 0,
  3551. "w": 277,
  3552. "h": 68,
  3553. "offsetX": 0,
  3554. "offsetY": 0,
  3555. "zIndex": -1
  3556. },
  3557. "key": "TextCommon",
  3558. "chartConfig": {
  3559. "key": "TextCommon",
  3560. "chartKey": "VTextCommon",
  3561. "conKey": "VCTextCommon",
  3562. "title": "summary_top",
  3563. "category": "Texts",
  3564. "categoryName": "文本",
  3565. "package": "Informations",
  3566. "image": "static\/png\/text_static-b2721032.png"
  3567. },
  3568. "option": {
  3569. "link": "",
  3570. "linkHead": "http:\/\/",
  3571. "dataset": "迭代剩余工作量透视表",
  3572. "fontSize": 14,
  3573. "fontColor": "#b2d5e5",
  3574. "paddingX": 10,
  3575. "paddingY": 10,
  3576. "textAlign": "left",
  3577. "fontWeight": "bold",
  3578. "borderWidth": 0,
  3579. "borderColor": "#ffffff",
  3580. "borderRadius": 5,
  3581. "letterSpacing": 5,
  3582. "writingMode": "horizontal-tb",
  3583. "backgroundColor": "#00000000"
  3584. }
  3585. },
  3586. {
  3587. "id": "2xjom2cw2b2000",
  3588. "isGroup": false,
  3589. "attr": {
  3590. "x": 225,
  3591. "y": 26,
  3592. "w": 14,
  3593. "h": 11,
  3594. "offsetX": 0,
  3595. "offsetY": 0,
  3596. "zIndex": -1
  3597. },
  3598. "key": "Image",
  3599. "chartConfig": {
  3600. "key": "Image",
  3601. "chartKey": "VImage",
  3602. "conKey": "VCImage",
  3603. "title": "header",
  3604. "category": "Mores",
  3605. "categoryName": "更多",
  3606. "package": "Informations",
  3607. "chartFrame": "common",
  3608. "image": "static\/png\/photo-637bc05d.png"
  3609. },
  3610. "option": {
  3611. "dataset": "static\/images\/line_left.png",
  3612. "borderRadius": 0
  3613. }
  3614. },
  3615. {
  3616. "id": "3xjom2cw2b2000",
  3617. "isGroup": false,
  3618. "attr": {
  3619. "x": 245,
  3620. "y": 28,
  3621. "w": 380,
  3622. "h": 8,
  3623. "offsetX": 0,
  3624. "offsetY": 0,
  3625. "zIndex": -1
  3626. },
  3627. "key": "Image",
  3628. "chartConfig": {
  3629. "key": "Image",
  3630. "chartKey": "VImage",
  3631. "conKey": "VCImage",
  3632. "title": "header",
  3633. "category": "Mores",
  3634. "categoryName": "更多",
  3635. "package": "Informations",
  3636. "chartFrame": "common",
  3637. "image": "static\/png\/photo-637bc05d.png"
  3638. },
  3639. "option": {
  3640. "dataset": "static\/images\/line_right.png",
  3641. "fit": "fill",
  3642. "borderRadius": 0
  3643. }
  3644. },
  3645. {
  3646. "id": "1zhfrmecpnxc00",
  3647. "sourceID": 10119,
  3648. "isGroup": false,
  3649. "attr": {
  3650. "x": 17,
  3651. "y": 57,
  3652. "w": 610,
  3653. "h": 446,
  3654. "offsetX": 0,
  3655. "offsetY": 0,
  3656. "zIndex": -1
  3657. },
  3658. "key": "TableScrollBoard",
  3659. "chartConfig": {
  3660. "key": "TableScrollBoard",
  3661. "chartKey": "VTableScrollBoard",
  3662. "conKey": "VCTableScrollBoard",
  3663. "title": "轮播列表",
  3664. "category": "Tables",
  3665. "categoryName": "表格",
  3666. "package": "Tables",
  3667. "chartFrame": "common",
  3668. "image": "static\/png\/table_scrollboard-fb642e78.png"
  3669. },
  3670. "option": {
  3671. "header": [
  3672. "列1",
  3673. "列2",
  3674. "列3"
  3675. ],
  3676. "dataset": [
  3677. [
  3678. "行1列1",
  3679. "行1列2",
  3680. "行1列3"
  3681. ],
  3682. [
  3683. "行2列1",
  3684. "行2列2",
  3685. "行2列3"
  3686. ],
  3687. [
  3688. "行3列1",
  3689. "行3列2",
  3690. "行3列3"
  3691. ],
  3692. [
  3693. "行4列1",
  3694. "行4列2",
  3695. "行4列3"
  3696. ],
  3697. [
  3698. "行5列1",
  3699. "行5列2",
  3700. "行5列3"
  3701. ],
  3702. [
  3703. "行6列1",
  3704. "行6列2",
  3705. "行6列3"
  3706. ],
  3707. [
  3708. "行6列1",
  3709. "行6列2",
  3710. "行6列3"
  3711. ],
  3712. [
  3713. "行6列1",
  3714. "行6列2",
  3715. "行6列3"
  3716. ],
  3717. [
  3718. "行6列1",
  3719. "行6列2",
  3720. "行6列3"
  3721. ],
  3722. [
  3723. "行6列1",
  3724. "行6列2",
  3725. "行6列3"
  3726. ]
  3727. ],
  3728. "index": false,
  3729. "columnWidth": [
  3730. "140",
  3731. "120",
  3732. "90",
  3733. "130",
  3734. "80",
  3735. "90"
  3736. ],
  3737. "align": [
  3738. "center",
  3739. "center",
  3740. "center",
  3741. "center",
  3742. "center",
  3743. "center",
  3744. "center",
  3745. "center"
  3746. ],
  3747. "rowNum": 8,
  3748. "waitTime": 3,
  3749. "headerHeight": 45,
  3750. "carousel": "single",
  3751. "headerBGC": "#165896FF",
  3752. "oddRowBGC": "#042b4dFF",
  3753. "evenRowBGC": "#0a1c37FF"
  3754. }
  3755. }
  3756. ],
  3757. "key": "group",
  3758. "option": []
  3759. }
  3760. ]
  3761. }
  3762. }