DefaultCategory.json 59 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001
  1. {
  2. "page": [
  3. {
  4. "name": "home",
  5. "title": "首页",
  6. "content": {
  7. "type": "Home",
  8. "props": {
  9. "title": "世界闽南文化交流中心",
  10. "subTitle": "闽南文化生态保护区(厦门市)",
  11. "homeBanner": "https://mncdn.wenlvti.net/app_static/minnan/images/home/BackgroundBanner5.jpg",
  12. "homeButtons": [
  13. {
  14. "title": "常识一点通",
  15. "icon": "https://mn.wenlvti.net/uploads/20260205/ccc542ae733ba89a887541839241d533.png",
  16. "size": 50,
  17. "link": "/pages/article/data/list?pageConfigName=explore",
  18. "style": "large-bg",
  19. "showTitle": false
  20. },
  21. {
  22. "title": "闽南新鲜事",
  23. "icon": "https://mn.wenlvti.net/uploads/20260205/c1bfe5a093217f00f775af0b6ff60398.png",
  24. "size": 50,
  25. "link": "/pages/article/data/list?pageConfigName=news",
  26. "style": "large-bg",
  27. "showTitle": false
  28. },
  29. {
  30. "title": "文化遗产说",
  31. "icon": "http://mnwh.wenlvti.net/uploads/20260206/ebb8c0f75d49ddb6afed633bece0ca50.png",
  32. "size": 50,
  33. "link": "/pages/article/data/list?pageConfigName=inhert",
  34. "style": "large-bg",
  35. "showTitle": false
  36. },
  37. {
  38. "title": "文化新视角",
  39. "icon": "https://mn.wenlvti.net/uploads/20260206/b96b9353f7a458fee33c3b1028921607.png",
  40. "size": 50,
  41. "link": "/pages/article/data/list?pageConfigName=research",
  42. "style": "large-bg",
  43. "showTitle": false
  44. },
  45. {
  46. "title": "世界走透透",
  47. "icon": "https://mn.wenlvti.net/uploads/20260205/28273ceae512f8f5f9a615acead54d4e.png",
  48. "size": 50,
  49. "link": "/pages/article/data/list?pageConfigName=communicate",
  50. "style": "large-bg",
  51. "showTitle": false
  52. },
  53. {
  54. "title": "来厦门逛逛",
  55. "icon": "https://mn.wenlvti.net/uploads/20260205/69c0b025d566811dc275fb76198a619c.png",
  56. "size": 50,
  57. "link": "/pages/article/data/list?pageConfigName=travel",
  58. "style": "large-bg",
  59. "showTitle": false
  60. }
  61. ],
  62. "categorys": [
  63. {
  64. "text": "数据统计",
  65. "showTitle": false,
  66. "blockProps": {
  67. "statsNameConfig": [
  68. {
  69. "name": "projects",
  70. "title": "非物质文化遗产代表性项目"
  71. },
  72. {
  73. "name": "inheritors",
  74. "title": "非物质文化遗产代表性传承人"
  75. },
  76. {
  77. "name": "ichCenter",
  78. "title": "非遗传习中心(所)"
  79. },
  80. {
  81. "name": "historyData",
  82. "title": "重要相关历史风貌区"
  83. },
  84. {
  85. "name": "minnanCr",
  86. "title": "闽南文化重要相关文物古迹"
  87. }
  88. ]
  89. },
  90. "type": "StatsBlock",
  91. "visible": false
  92. },
  93. {
  94. "text": "学讲闽南话常用语",
  95. "showTitle": true,
  96. "type": "AudioBlock",
  97. "visible": true,
  98. "detailsPage": "/pages/inhert/language/list",
  99. "morePage": "/pages/inhert/language/list"
  100. },
  101. {
  102. "text": "文化地图",
  103. "blockProps": {
  104. "mapConfigItems": [
  105. {
  106. "title": "非遗项目",
  107. "icon": "icon-read",
  108. "data": {
  109. "type": "serializedApi",
  110. "name": "ProjectsContent"
  111. }
  112. },
  113. {
  114. "title": "非遗传习中心(所)",
  115. "icon": "icon-task-trip",
  116. "data": {
  117. "type": "serializedApi",
  118. "name": "SeminarContent"
  119. }
  120. },
  121. {
  122. "title": "文物古迹",
  123. "icon": "icon-task-buliding",
  124. "data": {
  125. "type": "serializedApi",
  126. "name": "UnmoveableContent"
  127. }
  128. },
  129. {
  130. "title": "传统村落",
  131. "icon": "icon-place",
  132. "data": {
  133. "type": "serializedApi",
  134. "name": "ProjectsContent"
  135. }
  136. },
  137. {
  138. "title": "景区、景点",
  139. "icon": "icon-task-environment-3",
  140. "data": {
  141. "type": "serializedApi",
  142. "name": "ProjectsContent"
  143. }
  144. }
  145. ]
  146. },
  147. "morePage": "/pages/inhert/map/index",
  148. "type": "MapBlock"
  149. },
  150. {
  151. "text": "精彩瞬间",
  152. "data": {
  153. "type": "serializedApi",
  154. "name": "NewsIndexContent",
  155. "params": {
  156. "mainBodyColumnId": [
  157. 228,
  158. 298,
  159. 299
  160. ]
  161. }
  162. },
  163. "showMore": false,
  164. "detailsPage": "/pages/article/details?pageConfigName=intangible-details",
  165. "dataSolve": [
  166. "common"
  167. ],
  168. "type": "small-grid2",
  169. "count": 4,
  170. "visible": true
  171. },
  172. {
  173. "text": "精彩瞬间",
  174. "data": {
  175. "type": "serializedApi",
  176. "name": "ProjectsContent"
  177. },
  178. "showMore": false,
  179. "detailsPage": "/pages/article/data/details?pageConfigName=intangible-details",
  180. "dataSolve": [
  181. "common"
  182. ],
  183. "type": "small-grid2",
  184. "visible": true,
  185. "showTitle": false
  186. },
  187. {
  188. "text": "推荐文物",
  189. "data": {
  190. "type": "serializedApi",
  191. "name": "UnmoveableContent"
  192. },
  193. "showTitle": false,
  194. "detailsPage": "/pages/article/data/details?pageConfigName=artifact-details",
  195. "dataSolve": [
  196. "common"
  197. ],
  198. "type": "small-grid2",
  199. "visible": true
  200. }
  201. ],
  202. "tabs": [
  203. {
  204. "title": "首页",
  205. "icon": "https://mncdn.wenlvti.net/app_static/minnan/images/tabs/icon_home_off.png",
  206. "activeIcon": "https://mncdn.wenlvti.net/app_static/minnan/images/tabs/icon_home_on.png",
  207. "type": "home"
  208. },
  209. {
  210. "title": "资讯",
  211. "icon": "https://mncdn.wenlvti.net/app_static/minnan/images/tabs/icon_discover_off.png",
  212. "activeIcon": "https://mncdn.wenlvti.net/app_static/minnan/images/tabs/icon_discover_on.png",
  213. "type": "list",
  214. "pageConfigName": "explore",
  215. "pageHeadImage": "https://mn.wenlvti.net/app_static/minnan/images/discover/Title2.png",
  216. "pageHeadImageWidth": 210
  217. },
  218. {
  219. "title": "传承",
  220. "icon": "https://mn.wenlvti.net/app_static/minnan/images/tabs/icon_inhert_off.png",
  221. "activeIcon": "https://mn.wenlvti.net/app_static/minnan/images/tabs/icon_inhert_on.png",
  222. "hump": true,
  223. "humpHeight": [
  224. 0,
  225. 0
  226. ],
  227. "humpSpace": [
  228. 20,
  229. 20
  230. ],
  231. "iconSize": 140,
  232. "type": "list",
  233. "pageConfigName": "inhert",
  234. "pageHeadImage": "http://mnwh.wenlvti.net/uploads/20260206/0b799e1b1f2f6cc66f819a0a19fc0837.png",
  235. "pageHeadImageWidth": 200
  236. },
  237. {
  238. "title": "乐游",
  239. "icon": "https://mncdn.wenlvti.net/app_static/minnan/images/tabs/icon_shop_off.png",
  240. "activeIcon": "https://mncdn.wenlvti.net/app_static/minnan/images/tabs/icon_shop_on.png",
  241. "type": "list",
  242. "pageConfigName": "travel",
  243. "pageHeadImage": "https://mn.wenlvti.net/app_static/minnan/images/travel/Title4.png",
  244. "pageHeadImageWidth": 210
  245. },
  246. {
  247. "title": "我的",
  248. "icon": "https://mncdn.wenlvti.net/app_static/minnan/images/tabs/icon_profile_off.png",
  249. "activeIcon": "https://mncdn.wenlvti.net/app_static/minnan/images/tabs/icon_profile_on.png",
  250. "type": "user"
  251. }
  252. ]
  253. }
  254. }
  255. },
  256. {
  257. "name": "explore",
  258. "title": "常识一点通",
  259. "content": {
  260. "type": "CommonList",
  261. "props": {
  262. "showTab": false,
  263. "tabs": [
  264. {
  265. "text": "Root",
  266. "type": "nestCategory",
  267. "categorys": [
  268. {
  269. "text": "文化生态保护区",
  270. "data": {
  271. "type": "serializedApi",
  272. "name": "HistoryContent"
  273. },
  274. "dataSolve": [
  275. "common"
  276. ],
  277. "type": "article"
  278. },
  279. {
  280. "text": "世界闽南文化交流中心",
  281. "type": "article",
  282. "data": {
  283. "type": "commonContent",
  284. "params": {
  285. "modelId": 18,
  286. "mainBodyColumnId": 232
  287. },
  288. "otherParams": {}
  289. },
  290. "showMore": false,
  291. "dataSolve": [
  292. "common"
  293. ],
  294. "count": 1
  295. },
  296. {
  297. "text": "闽南文化",
  298. "type": "",
  299. "showMore": false
  300. },
  301. {
  302. "text": "闽南百问",
  303. "detailsPage": "/pages/article/details",
  304. "itemType": "article-common",
  305. "data": {
  306. "type": "commonContent",
  307. "params": {
  308. "mainBodyColumnId": 320,
  309. "modelId": 18
  310. }
  311. },
  312. "type": "simple-article",
  313. "textLevel": "h3"
  314. },
  315. {
  316. "text": "历史人物",
  317. "data": {
  318. "type": "serializedApi",
  319. "name": "CharacterContent"
  320. },
  321. "dataSolve": [
  322. "inheritor"
  323. ],
  324. "detailsPage": "/pages/article/data/details?pageConfigName=character-details",
  325. "morePage": "/pages/article/data/list?pageConfigName=character",
  326. "type": "",
  327. "textLevel": "h3"
  328. },
  329. {
  330. "text": "民间习俗",
  331. "data": {
  332. "type": "serializedApi",
  333. "name": "CustomContent"
  334. },
  335. "dataSolve": [
  336. "common"
  337. ],
  338. "morePage": "",
  339. "type": "article",
  340. "textLevel": "h3"
  341. },
  342. {
  343. "text": "艺术特色",
  344. "data": {
  345. "type": "serializedApi",
  346. "name": "FeatureContent"
  347. },
  348. "dataSolve": [
  349. "common"
  350. ],
  351. "type": "",
  352. "visible": false
  353. },
  354. {
  355. "text": "海洋文化",
  356. "data": {
  357. "type": "serializedApi",
  358. "name": "SeaContent"
  359. },
  360. "dataSolve": [
  361. "common"
  362. ],
  363. "type": "",
  364. "visible": false
  365. },
  366. {
  367. "text": "闽南话在线课程",
  368. "type": "horizontal-large",
  369. "data": {
  370. "type": "commonContent",
  371. "params": {
  372. "mainBodyColumnId": 257,
  373. "modelId": 5
  374. }
  375. },
  376. "visible": true,
  377. "detailsPage": "/pages/video/details"
  378. },
  379. {
  380. "text": "政策法规",
  381. "data": {
  382. "type": "serializedApi",
  383. "name": "PolicyContent"
  384. },
  385. "dataSolve": [
  386. "date"
  387. ],
  388. "type": "",
  389. "morePage": "/pages/article/data/list?pageConfigName=laws",
  390. "visible": false
  391. },
  392. {
  393. "text": "闽南话常用语",
  394. "showTitle": true,
  395. "type": "AudioBlock",
  396. "visible": false,
  397. "detailsPage": "/pages/inhert/language/list",
  398. "morePage": "/pages/inhert/language/list"
  399. }
  400. ]
  401. }
  402. ]
  403. }
  404. }
  405. },
  406. {
  407. "name": "research",
  408. "title": "文化新视角",
  409. "content": {
  410. "type": "CommonList",
  411. "props": {
  412. "showTab": true,
  413. "tabs": [
  414. {
  415. "text": "文化新视角",
  416. "type": "nestCategory",
  417. "categorys": [
  418. {
  419. "text": "“双歌赛”",
  420. "data": {
  421. "type": "commonContent",
  422. "params": {
  423. "mainBodyColumnId": 374,
  424. "modelId": 18,
  425. "otherParams": {
  426. "pid": "0"
  427. }
  428. },
  429. "otherParams": {
  430. "pid": "0"
  431. }
  432. },
  433. "morePage": "/pages/travel/fashion/list",
  434. "detailsPage": "/pages/article/data/details?pageConfigName=songs-details",
  435. "type": "large-image",
  436. "showMore": false
  437. },
  438. {
  439. "text": "“世界闽南语金曲盛典”",
  440. "data": {
  441. "type": "commonContent",
  442. "params": {
  443. "mainBodyColumnId": [
  444. 375
  445. ],
  446. "modelId": 18,
  447. "otherParams": {
  448. "pid": "0"
  449. }
  450. },
  451. "otherParams": {
  452. "pid": "0"
  453. }
  454. },
  455. "morePage": "/pages/travel/fashion/list",
  456. "detailsPage": "/pages/article/data/details?pageConfigName=songs-details",
  457. "type": "large-image",
  458. "showMore": false
  459. },
  460. {
  461. "text": "精品剧目",
  462. "data": {
  463. "type": "commonContent",
  464. "params": {
  465. "mainBodyColumnId": 369,
  466. "modelId": 18
  467. }
  468. },
  469. "dataSolve": [
  470. "common"
  471. ],
  472. "detailsPage": "byContent",
  473. "type": "article"
  474. },
  475. {
  476. "text": "非遗秀",
  477. "data": {
  478. "type": "commonContent",
  479. "params": {
  480. "mainBodyColumnId": 365,
  481. "modelId": 18
  482. }
  483. },
  484. "dataSolve": [
  485. "common"
  486. ],
  487. "detailsPage": "byContent",
  488. "type": "article"
  489. },
  490. {
  491. "text": "非遗新青年",
  492. "data": {
  493. "type": "commonContent",
  494. "params": {
  495. "mainBodyColumnId": 364,
  496. "modelId": 18
  497. }
  498. },
  499. "dataSolve": [
  500. "common"
  501. ],
  502. "detailsPage": "byContent",
  503. "type": "small-grid2"
  504. },
  505. {
  506. "text": "非遗巴士研学",
  507. "data": {
  508. "type": "commonContent",
  509. "params": {
  510. "mainBodyColumnId": 363,
  511. "modelId": 18
  512. }
  513. },
  514. "dataSolve": [
  515. "common"
  516. ],
  517. "detailsPage": "byContent",
  518. "type": ""
  519. },
  520. {
  521. "text": "各区重大节庆活动(一区一节)",
  522. "data": {
  523. "type": "commonContent",
  524. "params": {
  525. "mainBodyColumnId": 367,
  526. "modelId": 18
  527. }
  528. },
  529. "visible": false,
  530. "dataSolve": [
  531. "common"
  532. ],
  533. "detailsPage": "byContent",
  534. "type": ""
  535. },
  536. {
  537. "text": "文创好物",
  538. "data": {
  539. "type": "commonContent",
  540. "params": {
  541. "mainBodyColumnId": 48,
  542. "modelId": 9
  543. }
  544. },
  545. "dataSolve": [
  546. "common"
  547. ],
  548. "detailsPage": "byContent",
  549. "type": "horizontal-large"
  550. },
  551. {
  552. "text": "其他闽南文化品牌活动",
  553. "data": {
  554. "type": "commonContent",
  555. "params": {
  556. "mainBodyColumnId": 368,
  557. "modelId": 18
  558. }
  559. },
  560. "dataSolve": [
  561. "common"
  562. ],
  563. "detailsPage": "byContent",
  564. "visible": false,
  565. "type": ""
  566. }
  567. ]
  568. },
  569. {
  570. "text": "研讨交流",
  571. "type": "nestCategory",
  572. "categorys": [
  573. {
  574. "text": "研究机构",
  575. "data": {
  576. "type": "serializedApi",
  577. "name": "TeamsContent"
  578. },
  579. "dataSolve": [
  580. "common"
  581. ],
  582. "detailsPage": "byContent",
  583. "type": ""
  584. },
  585. {
  586. "text": "研究活动",
  587. "data": {
  588. "type": "serializedApi",
  589. "name": "DiscussContent"
  590. },
  591. "dataSolve": [
  592. "common"
  593. ],
  594. "detailsPage": "byContent",
  595. "type": ""
  596. },
  597. {
  598. "text": "研究成果",
  599. "data": {
  600. "type": "serializedApi",
  601. "name": "ResultContent",
  602. "params": {
  603. "mainBodyColumnId": 271
  604. }
  605. },
  606. "dataSolve": [
  607. "common"
  608. ],
  609. "detailsPage": "byContent",
  610. "type": ""
  611. }
  612. ]
  613. }
  614. ]
  615. }
  616. }
  617. },
  618. {
  619. "name": "communicate",
  620. "title": "世界走透透",
  621. "content": {
  622. "type": "CommonList",
  623. "props": {
  624. "showTab": false,
  625. "tabs": [
  626. {
  627. "text": "交流活动",
  628. "type": "nestCategory",
  629. "categorys": [
  630. {
  631. "text": "交流活动",
  632. "data": {
  633. "type": "commonContent",
  634. "params": {
  635. "mainBodyColumnId": [
  636. 260,
  637. 261,
  638. 262
  639. ],
  640. "modelId": 18
  641. }
  642. },
  643. "dataSolve": [
  644. "common"
  645. ],
  646. "visible": false
  647. },
  648. {
  649. "text": "闽南语在线课程",
  650. "type": "horizontal-large",
  651. "data": {
  652. "type": "commonContent",
  653. "params": {
  654. "mainBodyColumnId": 257,
  655. "modelId": 5
  656. }
  657. },
  658. "visible": false,
  659. "detailsPage": "/pages/video/details"
  660. },
  661. {
  662. "type": "speicalMergeItem:getColumns:large-image",
  663. "params": {
  664. "mainBodyColumnId": 366,
  665. "modelId": 18,
  666. "overrideItems": [],
  667. "otherParams": {
  668. "pid": "0"
  669. }
  670. },
  671. "dataSolve": [
  672. "common"
  673. ],
  674. "detailsPage": "/pages/article/data/details?pageConfigName=expand-details"
  675. }
  676. ]
  677. }
  678. ]
  679. }
  680. }
  681. },
  682. {
  683. "name": "travel",
  684. "title": "来厦门𨑨迌",
  685. "content": {
  686. "type": "CommonList",
  687. "props": {
  688. "showTab": false,
  689. "tabs": [
  690. {
  691. "text": "Root",
  692. "type": "nestCategory",
  693. "categorys": [
  694. {
  695. "text": "景区、景点",
  696. "data": {
  697. "type": "commonContent",
  698. "params": {
  699. "mainBodyColumnId": 273,
  700. "modelId": 17
  701. }
  702. },
  703. "morePage": "/pages/travel/scenic-spot/list",
  704. "detailsPage": "/pages/article/data/details?pageConfigName=intangible-details",
  705. "type": ""
  706. },
  707. {
  708. "text": "文化旅游路线",
  709. "data": {
  710. "type": "commonContent",
  711. "params": {
  712. "mainBodyColumnId": [
  713. 274,
  714. 275,
  715. 276,
  716. 277
  717. ],
  718. "modelId": 17
  719. }
  720. },
  721. "detailsPage": "byContent",
  722. "type": "horizontal-large"
  723. },
  724. {
  725. "text": "闽南节庆日历",
  726. "data": null,
  727. "morePage": "/pages/travel/calendar/index",
  728. "type": "CalendarBlock"
  729. },
  730. {
  731. "text": "闽南美食",
  732. "data": {
  733. "type": "commonContent",
  734. "params": {
  735. "mainBodyColumnId": 253,
  736. "modelId": 3
  737. }
  738. },
  739. "detailsPage": "byContent",
  740. "type": "large-grid2",
  741. "visible": true
  742. },
  743. {
  744. "text": "美食动态",
  745. "type": "",
  746. "data": {
  747. "type": "commonContent",
  748. "params": {
  749. "modelId": 3,
  750. "mainBodyColumnId": 386
  751. }
  752. },
  753. "textLevel": "h2",
  754. "showMore": true,
  755. "visible": false
  756. },
  757. {
  758. "text": "市民文化汇",
  759. "data": {
  760. "type": "commonContent",
  761. "params": {
  762. "mainBodyColumnId": 370,
  763. "modelId": 18
  764. }
  765. },
  766. "dataSolve": [
  767. "common"
  768. ],
  769. "detailsPage": "byContent",
  770. "type": "article"
  771. },
  772. {
  773. "text": "闽南歌曲",
  774. "data": {
  775. "type": "commonContent",
  776. "params": {
  777. "mainBodyColumnId": [
  778. 315
  779. ],
  780. "modelId": 16
  781. }
  782. },
  783. "visible": false,
  784. "morePage": "/pages/travel/fashion/list",
  785. "detailsPage": "/pages/video/details",
  786. "type": "large-grid2"
  787. }
  788. ]
  789. }
  790. ]
  791. }
  792. }
  793. },
  794. {
  795. "name": "seminar",
  796. "title": "非遗传习中心(所)",
  797. "content": {
  798. "type": "CommonList",
  799. "props": {
  800. "itemType": "article-common",
  801. "showTab": false,
  802. "showTotal": true,
  803. "tabs": [
  804. {
  805. "text": "非遗传习中心(所)",
  806. "type": "list",
  807. "data": {
  808. "type": "serializedApi",
  809. "name": "SeminarContent"
  810. },
  811. "dataSolve": [
  812. "ich"
  813. ],
  814. "detailsPage": "/pages/article/data/details?pageConfigName=seminar-details",
  815. "dropdownDefines": [
  816. {
  817. "key": "level",
  818. "text": "级别",
  819. "addAll": "全部级别",
  820. "formQueryKey": "level",
  821. "data": {
  822. "type": "commonContent",
  823. "typeId": 2
  824. }
  825. },
  826. {
  827. "key": "region",
  828. "text": "地区",
  829. "defaultValue": 0,
  830. "addAll": "全部地区",
  831. "formQueryKey": "region",
  832. "data": {
  833. "type": "commonContent",
  834. "typeId": 1
  835. }
  836. }
  837. ]
  838. },
  839. {
  840. "text": "保护单位",
  841. "type": "list",
  842. "data": {
  843. "type": "serializedApi",
  844. "name": "UnitContent"
  845. },
  846. "dataSolve": [
  847. "ich"
  848. ]
  849. }
  850. ]
  851. }
  852. }
  853. },
  854. {
  855. "name": "intangible",
  856. "title": "非物质文化遗产",
  857. "content": {
  858. "type": "CommonList",
  859. "props": {
  860. "itemType": "image-large-2",
  861. "tabsScrollable": true,
  862. "showTab": true,
  863. "showTotal": true,
  864. "tabs": [
  865. {
  866. "text": "非遗项目",
  867. "type": "list",
  868. "width": 150,
  869. "data": {
  870. "type": "serializedApi",
  871. "name": "ProjectsContent"
  872. },
  873. "dataSolve": [
  874. "ich"
  875. ],
  876. "detailsPage": "/pages/article/data/details?pageConfigName=intangible-details",
  877. "dropdownDefines": [
  878. {
  879. "key": "ichType",
  880. "text": "分类",
  881. "addAll": "全部分类",
  882. "defaultValue": 0,
  883. "data": {
  884. "type": "commonContent",
  885. "typeId": 4
  886. }
  887. },
  888. {
  889. "key": "level",
  890. "text": "级别",
  891. "addAll": "全部级别",
  892. "formQueryKey": "level",
  893. "data": {
  894. "type": "commonContent",
  895. "typeId": 2
  896. }
  897. },
  898. {
  899. "key": "region",
  900. "text": "地区",
  901. "defaultValue": 0,
  902. "addAll": "全部地区",
  903. "data": {
  904. "type": "commonContent",
  905. "typeId": 1
  906. }
  907. }
  908. ]
  909. },
  910. {
  911. "text": "非遗传承人",
  912. "type": "jump",
  913. "width": 150,
  914. "url": "/pages/inhert/inheritor/list"
  915. },
  916. {
  917. "text": "非遗传习中心(所)",
  918. "type": "list",
  919. "width": 250,
  920. "data": {
  921. "type": "serializedApi",
  922. "name": "SeminarContent"
  923. },
  924. "dataSolve": [
  925. "ich"
  926. ],
  927. "detailsPage": "/pages/article/data/details?pageConfigName=seminar-details",
  928. "dropdownDefines": [
  929. {
  930. "key": "region",
  931. "text": "地区",
  932. "defaultValue": 0,
  933. "addAll": "全部地区",
  934. "data": {
  935. "type": "commonContent",
  936. "typeId": 1
  937. }
  938. }
  939. ]
  940. },
  941. {
  942. "text": "保护单位",
  943. "width": 150,
  944. "type": "list",
  945. "data": {
  946. "type": "serializedApi",
  947. "name": "UnitContent"
  948. },
  949. "dataSolve": [
  950. "ich"
  951. ]
  952. }
  953. ]
  954. }
  955. }
  956. },
  957. {
  958. "name": "artifact",
  959. "title": "相关文物古迹",
  960. "content": {
  961. "type": "CommonList",
  962. "props": {
  963. "showTab": false,
  964. "tabs": [
  965. {
  966. "text": "物质文化遗产",
  967. "type": "list",
  968. "data": {
  969. "type": "serializedApi",
  970. "name": "UnmoveableContent"
  971. },
  972. "dataSolve": [
  973. "ich"
  974. ],
  975. "detailsPage": "/pages/article/data/details?pageConfigName=artifact-details",
  976. "itemType": "image-large-2",
  977. "showTotal": true,
  978. "dropdownDefines": [
  979. {
  980. "key": "crType",
  981. "text": "分类",
  982. "defaultValue": 0,
  983. "addAll": "全部分类",
  984. "data": {
  985. "type": "commonContent",
  986. "typeId": 3
  987. }
  988. },
  989. {
  990. "key": "level",
  991. "text": "级别",
  992. "defaultValue": 0,
  993. "formQueryKey": "level",
  994. "addAll": "全部级别",
  995. "data": {
  996. "type": "commonContent",
  997. "typeId": 2
  998. }
  999. },
  1000. {
  1001. "key": "region",
  1002. "text": "地区",
  1003. "defaultValue": 0,
  1004. "addAll": "全部地区",
  1005. "data": {
  1006. "type": "commonContent",
  1007. "typeId": 1
  1008. }
  1009. }
  1010. ]
  1011. }
  1012. ]
  1013. }
  1014. }
  1015. },
  1016. {
  1017. "name": "character",
  1018. "title": "历史人物",
  1019. "content": {
  1020. "type": "CommonList",
  1021. "props": {
  1022. "showTab": false,
  1023. "tabs": [
  1024. {
  1025. "text": "历史人物",
  1026. "type": "list",
  1027. "data": {
  1028. "type": "serializedApi",
  1029. "name": "CharacterContent"
  1030. },
  1031. "dataSolve": [
  1032. "inheritor"
  1033. ],
  1034. "detailsPage": "/pages/article/data/details?pageConfigName=character-details",
  1035. "itemType": "article-common",
  1036. "showTotal": true,
  1037. "dropdownDefines": []
  1038. }
  1039. ]
  1040. }
  1041. }
  1042. },
  1043. {
  1044. "name": "inhert",
  1045. "title": "文化遗产说",
  1046. "content": {
  1047. "type": "CommonList",
  1048. "props": {
  1049. "tabsScrollable": false,
  1050. "showTab": true,
  1051. "tabs": [
  1052. {
  1053. "text": "非物质文化遗产",
  1054. "type": "nestCategory",
  1055. "categorys": [
  1056. {
  1057. "text": "数据统计",
  1058. "showTitle": false,
  1059. "blockProps": {
  1060. "statsNameConfig": [
  1061. {
  1062. "name": "projects",
  1063. "title": "非物质文化遗产代表性项目",
  1064. "showTotalText": "1"
  1065. },
  1066. {
  1067. "name": "inheritors",
  1068. "title": "非物质文化遗产代表性传承人",
  1069. "showTotalText": "2"
  1070. }
  1071. ]
  1072. },
  1073. "type": "StatsBlock"
  1074. },
  1075. {
  1076. "text": "非遗项目",
  1077. "data": {
  1078. "type": "serializedApi",
  1079. "name": "ProjectsContent"
  1080. },
  1081. "dataSolve": [
  1082. "ich"
  1083. ],
  1084. "morePage": "/pages/article/data/list?pageConfigName=intangible&tab=0",
  1085. "detailsPage": "/pages/article/data/details?pageConfigName=intangible-details",
  1086. "type": "horizontal-large"
  1087. },
  1088. {
  1089. "text": "非遗传承人",
  1090. "data": {
  1091. "type": "serializedApi",
  1092. "name": "InheritorContent"
  1093. },
  1094. "dataSolve": [
  1095. "ich",
  1096. "inheritor-deadbox"
  1097. ],
  1098. "morePage": "/pages/inhert/inheritor/list",
  1099. "detailsPage": "/pages/article/data/details?pageConfigName=inheritor-details",
  1100. "type": "horizontal-large"
  1101. },
  1102. {
  1103. "text": "非遗保护单位",
  1104. "data": {
  1105. "type": "serializedApi",
  1106. "name": "UnitContent"
  1107. },
  1108. "dataSolve": [
  1109. "ich"
  1110. ],
  1111. "morePage": "",
  1112. "type": "simple-text",
  1113. "detailsPage": "disabled",
  1114. "itemType": "simple-text",
  1115. "showMore": true
  1116. },
  1117. {
  1118. "text": "非遗传习中心(所)",
  1119. "data": {
  1120. "type": "serializedApi",
  1121. "name": "SeminarContent"
  1122. },
  1123. "dataSolve": [
  1124. "ich"
  1125. ],
  1126. "morePage": "/pages/article/data/list?pageConfigName=seminar&tab=0",
  1127. "detailsPage": "/pages/article/data/details?pageConfigName=seminar-details",
  1128. "type": ""
  1129. },
  1130. {
  1131. "text": "非遗活动",
  1132. "data": {
  1133. "type": "commonContent",
  1134. "params": {
  1135. "mainBodyColumnId": 290,
  1136. "modelId": 18
  1137. }
  1138. },
  1139. "dataSolve": [
  1140. "common"
  1141. ],
  1142. "detailsPage": "byContent",
  1143. "type": "large-grid2"
  1144. }
  1145. ],
  1146. "width": 250
  1147. },
  1148. {
  1149. "text": "物质文化遗产",
  1150. "type": "list",
  1151. "data": {
  1152. "type": "serializedApi",
  1153. "name": "UnmoveableContent"
  1154. },
  1155. "dataSolve": [
  1156. "ich"
  1157. ],
  1158. "morePage": "/pages/article/data/list?pageConfigName=artifact&tab=0",
  1159. "detailsPage": "/pages/article/data/details?pageConfigName=artifact-details",
  1160. "itemType": "image-large-2",
  1161. "dropdownDefines": [
  1162. {
  1163. "key": "crType",
  1164. "text": "分类",
  1165. "defaultValue": 0,
  1166. "addAll": "全部分类",
  1167. "data": {
  1168. "type": "commonContent",
  1169. "typeId": 3
  1170. }
  1171. },
  1172. {
  1173. "key": "level",
  1174. "text": "级别",
  1175. "defaultValue": 0,
  1176. "addAll": "全部级别",
  1177. "data": {
  1178. "type": "commonContent",
  1179. "typeId": 2
  1180. }
  1181. },
  1182. {
  1183. "key": "region",
  1184. "text": "地区",
  1185. "defaultValue": 0,
  1186. "addAll": "全部地区",
  1187. "data": {
  1188. "type": "commonContent",
  1189. "typeId": 1
  1190. }
  1191. }
  1192. ],
  1193. "preInsertCategorys": [
  1194. {
  1195. "text": "数据统计",
  1196. "showTitle": false,
  1197. "blockProps": {
  1198. "statsNameConfig": [
  1199. {
  1200. "name": "minnanCr",
  1201. "title": "闽南文化重要相关文物古迹"
  1202. }
  1203. ]
  1204. },
  1205. "type": "StatsBlock"
  1206. }
  1207. ],
  1208. "width": 250
  1209. },
  1210. {
  1211. "text": "重点保护区域",
  1212. "type": "list",
  1213. "data": {
  1214. "type": "commonContent",
  1215. "params": {
  1216. "mainBodyColumnId": 283,
  1217. "modelId": 17
  1218. }
  1219. },
  1220. "dataSolve": [
  1221. "ich"
  1222. ],
  1223. "detailsPage": "/pages/article/data/details?pageConfigName=artifact-details",
  1224. "itemType": "image-large-2",
  1225. "dropdownDefines": [],
  1226. "preInsertCategorys": [
  1227. {
  1228. "text": "数据统计",
  1229. "showTitle": false,
  1230. "blockProps": {
  1231. "statsNameConfig": [
  1232. {
  1233. "name": "historyData",
  1234. "title": "重要相关历史风貌区"
  1235. }
  1236. ]
  1237. },
  1238. "type": "StatsBlock"
  1239. }
  1240. ],
  1241. "width": 250
  1242. },
  1243. {
  1244. "text": "世界文化遗产",
  1245. "type": "list",
  1246. "data": {
  1247. "type": "commonContent",
  1248. "params": {
  1249. "modelId": 17,
  1250. "mainBodyColumnId": 310
  1251. }
  1252. },
  1253. "dropdownDefines": [],
  1254. "dataSolve": [
  1255. "ich"
  1256. ],
  1257. "width": 250,
  1258. "visible": false
  1259. }
  1260. ]
  1261. }
  1262. }
  1263. },
  1264. {
  1265. "name": "laws",
  1266. "title": "政策法规",
  1267. "content": {
  1268. "type": "CommonList",
  1269. "props": {
  1270. "tabsScrollable": false,
  1271. "showTab": false,
  1272. "tabs": [
  1273. {
  1274. "text": "Root",
  1275. "type": "list",
  1276. "data": {
  1277. "type": "serializedApi",
  1278. "name": "PolicyContent"
  1279. },
  1280. "dataSolve": [
  1281. "date"
  1282. ],
  1283. "detailsPage": "/pages/article/details",
  1284. "itemType": "article-common"
  1285. }
  1286. ]
  1287. }
  1288. }
  1289. },
  1290. {
  1291. "name": "news",
  1292. "title": "闽南新鲜事",
  1293. "content": {
  1294. "type": "CommonList",
  1295. "props": {
  1296. "showTab": false,
  1297. "showSearch": true,
  1298. "showTotal": false,
  1299. "tabs": [
  1300. {
  1301. "text": "新 Tab",
  1302. "type": "list",
  1303. "data": {
  1304. "type": "serializedApi",
  1305. "name": "NewsIndexContent",
  1306. "params": {
  1307. "mainBodyColumnId": [
  1308. 228,
  1309. 298,
  1310. 299
  1311. ]
  1312. }
  1313. },
  1314. "dataSolve": [
  1315. "date",
  1316. "form",
  1317. "common"
  1318. ]
  1319. }
  1320. ],
  1321. "itemType": "article-common"
  1322. }
  1323. }
  1324. },
  1325. {
  1326. "name": "intangible-details",
  1327. "title": "非遗详情页",
  1328. "content": {
  1329. "type": "Details",
  1330. "props": {
  1331. "introBlockDescs": [
  1332. {
  1333. "label": "项目级别",
  1334. "key": "levelText"
  1335. },
  1336. {
  1337. "label": "项目类别",
  1338. "key": "ichTypeText"
  1339. },
  1340. {
  1341. "label": "批次时间",
  1342. "key": "batchText"
  1343. },
  1344. {
  1345. "label": "所属区域",
  1346. "key": "regionText"
  1347. },
  1348. {
  1349. "label": "保护单位",
  1350. "key": "unit"
  1351. },
  1352. {
  1353. "label": "地址",
  1354. "key": "address"
  1355. },
  1356. {
  1357. "label": "其他级别保护单位",
  1358. "key": "otherLevelCount"
  1359. },
  1360. {
  1361. "label": "字号名称",
  1362. "key": "fontName"
  1363. },
  1364. {
  1365. "label": "认定类型",
  1366. "key": "brandType"
  1367. }
  1368. ],
  1369. "introBlocks": [
  1370. {
  1371. "type": "OtherLevelList",
  1372. "props": {}
  1373. }
  1374. ],
  1375. "tabs": [
  1376. {
  1377. "text": "简介",
  1378. "type": "intro"
  1379. },
  1380. {
  1381. "text": "图片",
  1382. "type": "images"
  1383. },
  1384. {
  1385. "text": "资料影像",
  1386. "width": 170,
  1387. "type": "video"
  1388. },
  1389. {
  1390. "text": "音频",
  1391. "type": "audio"
  1392. },
  1393. {
  1394. "text": "传习所",
  1395. "type": "list",
  1396. "define": {
  1397. "props": {
  1398. "showTab": false,
  1399. "showSearch": false,
  1400. "itemType": "article-common",
  1401. "detailsPage": "/pages/article/data/details?pageConfigName=seminar-details",
  1402. "tabs": [
  1403. {
  1404. "text": "Root",
  1405. "type": "list",
  1406. "data": {
  1407. "type": "parentKey",
  1408. "key": "ichSitesList"
  1409. },
  1410. "dataSolve": []
  1411. }
  1412. ]
  1413. }
  1414. },
  1415. "key": "ichSitesList",
  1416. "width": 160
  1417. },
  1418. {
  1419. "text": "传承人",
  1420. "type": "list",
  1421. "key": "inheritorsList",
  1422. "define": {
  1423. "props": {
  1424. "showTab": false,
  1425. "showSearch": false,
  1426. "itemType": "image-large-2",
  1427. "detailsPage": "/pages/article/data/details?pageConfigName=inheritor-details",
  1428. "tabs": [
  1429. {
  1430. "text": "Root",
  1431. "type": "list",
  1432. "data": {
  1433. "type": "parentKey",
  1434. "key": "inheritorsList"
  1435. },
  1436. "dataSolve": []
  1437. }
  1438. ]
  1439. }
  1440. }
  1441. },
  1442. {
  1443. "text": "传承谱系",
  1444. "width": 200,
  1445. "type": "rich",
  1446. "key": "pedigree"
  1447. },
  1448. {
  1449. "text": "非遗作品",
  1450. "width": 200,
  1451. "type": "list",
  1452. "key": "worksList",
  1453. "visible": false,
  1454. "define": {
  1455. "props": {
  1456. "showTab": false,
  1457. "showSearch": false,
  1458. "itemType": "image-large-2",
  1459. "detailsPage": "/pages/article/data/details?pageConfigName=product-details",
  1460. "tabs": [
  1461. {
  1462. "text": "Root",
  1463. "type": "list",
  1464. "data": {
  1465. "type": "parentKey",
  1466. "key": "worksList"
  1467. },
  1468. "dataSolve": []
  1469. }
  1470. ]
  1471. }
  1472. }
  1473. },
  1474. {
  1475. "text": "相关资讯",
  1476. "type": "list",
  1477. "key": "associationMeList",
  1478. "define": {
  1479. "props": {
  1480. "showTab": false,
  1481. "showSearch": false,
  1482. "itemType": "article-common",
  1483. "detailsPage": "/pages/article/details",
  1484. "tabs": [
  1485. {
  1486. "text": "Root",
  1487. "type": "list",
  1488. "data": {
  1489. "type": "parentKey",
  1490. "key": "associationMeList"
  1491. },
  1492. "dataSolve": []
  1493. }
  1494. ]
  1495. }
  1496. }
  1497. },
  1498. {
  1499. "text": "地理位置",
  1500. "type": "map"
  1501. }
  1502. ]
  1503. }
  1504. }
  1505. },
  1506. {
  1507. "name": "seminar-details",
  1508. "title": "传习所详情页",
  1509. "content": {
  1510. "type": "Details",
  1511. "props": {
  1512. "introBlockDescs": [
  1513. {
  1514. "label": "项目级别",
  1515. "key": "levelText"
  1516. },
  1517. {
  1518. "label": "项目类别",
  1519. "key": "ichTypeText"
  1520. },
  1521. {
  1522. "label": "批次时间",
  1523. "key": "batchText"
  1524. },
  1525. {
  1526. "label": "所属区域",
  1527. "key": "regionText"
  1528. },
  1529. {
  1530. "label": "保护单位",
  1531. "key": "unit"
  1532. },
  1533. {
  1534. "label": "地址",
  1535. "key": "address"
  1536. }
  1537. ],
  1538. "introBlocks": [],
  1539. "tabs": [
  1540. {
  1541. "text": "简介",
  1542. "type": "intro"
  1543. },
  1544. {
  1545. "text": "图片",
  1546. "type": "images"
  1547. },
  1548. {
  1549. "text": "视频",
  1550. "type": "video"
  1551. },
  1552. {
  1553. "text": "音频",
  1554. "type": "audio"
  1555. },
  1556. {
  1557. "text": "传习所",
  1558. "width": 200,
  1559. "type": "list",
  1560. "key": "ichSitesList",
  1561. "define": {
  1562. "props": {
  1563. "showTab": false,
  1564. "showSearch": false,
  1565. "itemType": "article-common",
  1566. "detailsPage": "/pages/article/data/details?pageConfigName=seminar-details",
  1567. "tabs": [
  1568. {
  1569. "text": "Root",
  1570. "type": "list",
  1571. "data": {
  1572. "type": "parentKey",
  1573. "key": "ichSitesList"
  1574. },
  1575. "dataSolve": []
  1576. }
  1577. ]
  1578. }
  1579. }
  1580. },
  1581. {
  1582. "text": "传承人",
  1583. "width": 200,
  1584. "type": "list",
  1585. "key": "inheritorsList",
  1586. "define": {
  1587. "props": {
  1588. "showTab": false,
  1589. "showSearch": false,
  1590. "itemType": "image-large-2",
  1591. "detailsPage": "/pages/article/data/details?pageConfigName=inheritor-details",
  1592. "tabs": [
  1593. {
  1594. "text": "Root",
  1595. "type": "list",
  1596. "data": {
  1597. "type": "parentKey",
  1598. "key": "inheritorsList"
  1599. },
  1600. "dataSolve": []
  1601. }
  1602. ]
  1603. }
  1604. }
  1605. },
  1606. {
  1607. "text": "相关项目",
  1608. "width": 200,
  1609. "type": "list",
  1610. "key": "associationMeList",
  1611. "define": {
  1612. "props": {
  1613. "showTab": false,
  1614. "showSearch": false,
  1615. "itemType": "image-large-2",
  1616. "detailsPage": "/pages/article/data/details?pageConfigName=intangible-details",
  1617. "tabs": [
  1618. {
  1619. "text": "Root",
  1620. "type": "list",
  1621. "data": {
  1622. "type": "parentKey",
  1623. "key": "associationMeList"
  1624. },
  1625. "dataSolve": []
  1626. }
  1627. ]
  1628. }
  1629. }
  1630. },
  1631. {
  1632. "text": "地理位置",
  1633. "type": "map",
  1634. "key": "200"
  1635. }
  1636. ]
  1637. }
  1638. }
  1639. },
  1640. {
  1641. "name": "inheritor-details",
  1642. "title": "传承人详情页",
  1643. "content": {
  1644. "type": "Details",
  1645. "props": {
  1646. "introBlockDescs": [
  1647. {
  1648. "label": "年代",
  1649. "key": "age"
  1650. },
  1651. {
  1652. "label": "民族",
  1653. "key": "nation"
  1654. },
  1655. {
  1656. "label": "性别",
  1657. "key": "gender",
  1658. "map": {
  1659. "1": "男",
  1660. "2": "女"
  1661. }
  1662. },
  1663. {
  1664. "label": "出生日期",
  1665. "key": "dateBirth"
  1666. },
  1667. {
  1668. "label": "出生地区",
  1669. "key": "birthplace"
  1670. },
  1671. {
  1672. "label": "单位",
  1673. "key": "unit"
  1674. },
  1675. {
  1676. "label": "传承项目",
  1677. "key": "associationMeFirstTitle"
  1678. },
  1679. {
  1680. "label": "传承人级别",
  1681. "key": "levelText"
  1682. },
  1683. {
  1684. "label": "公布批次",
  1685. "key": "batchText"
  1686. }
  1687. ],
  1688. "introBlocks": [],
  1689. "tabs": [
  1690. {
  1691. "text": "简介",
  1692. "type": "intro"
  1693. },
  1694. {
  1695. "text": "图片",
  1696. "type": "images",
  1697. "prefix": "以下照片由传承人提供"
  1698. },
  1699. {
  1700. "text": "资料影像",
  1701. "type": "video"
  1702. },
  1703. {
  1704. "text": "音频",
  1705. "type": "audio"
  1706. },
  1707. {
  1708. "text": "荣誉奖项",
  1709. "type": "rich",
  1710. "key": "prize",
  1711. "width": 200
  1712. },
  1713. {
  1714. "text": "非遗项目",
  1715. "type": "list",
  1716. "key": "associationMeList",
  1717. "define": {
  1718. "props": {
  1719. "showTab": false,
  1720. "showSearch": false,
  1721. "itemType": "article-common",
  1722. "detailsPage": "/pages/article/data/details?pageConfigName=intangible-details",
  1723. "tabs": [
  1724. {
  1725. "text": "Root",
  1726. "type": "list",
  1727. "data": {
  1728. "type": "parentKey",
  1729. "key": "associationMeList"
  1730. },
  1731. "dataSolve": []
  1732. }
  1733. ]
  1734. }
  1735. },
  1736. "width": 200
  1737. },
  1738. {
  1739. "text": "传习所",
  1740. "width": 200,
  1741. "type": "list",
  1742. "key": "ichSitesList",
  1743. "define": {
  1744. "props": {
  1745. "showTab": false,
  1746. "showSearch": false,
  1747. "itemType": "article-common",
  1748. "detailsPage": "/pages/article/data/details?pageConfigName=seminar-details",
  1749. "tabs": [
  1750. {
  1751. "text": "Root",
  1752. "type": "list",
  1753. "data": {
  1754. "type": "parentKey",
  1755. "key": "ichSitesList"
  1756. },
  1757. "dataSolve": []
  1758. }
  1759. ]
  1760. }
  1761. }
  1762. }
  1763. ],
  1764. "showTag": true,
  1765. "showDeadBox": true
  1766. }
  1767. }
  1768. },
  1769. {
  1770. "name": "character-details",
  1771. "title": "历史人物详情页",
  1772. "content": {
  1773. "type": "Details",
  1774. "props": {
  1775. "introBlockDescs": [
  1776. {
  1777. "label": "年代",
  1778. "key": "age"
  1779. },
  1780. {
  1781. "label": "民族",
  1782. "key": "nation"
  1783. },
  1784. {
  1785. "label": "性别",
  1786. "key": "gender",
  1787. "map": {
  1788. "1": "男",
  1789. "2": "女"
  1790. }
  1791. },
  1792. {
  1793. "label": "出生日期",
  1794. "key": "dateBirth"
  1795. },
  1796. {
  1797. "label": "出生地区",
  1798. "key": "birthplace"
  1799. }
  1800. ],
  1801. "introBlocks": [],
  1802. "tabs": [
  1803. {
  1804. "text": "简介",
  1805. "type": "intro"
  1806. },
  1807. {
  1808. "text": "图片",
  1809. "type": "images",
  1810. "prefix": "",
  1811. "visible": false
  1812. },
  1813. {
  1814. "text": "视频",
  1815. "type": "video"
  1816. },
  1817. {
  1818. "text": "音频",
  1819. "type": "audio"
  1820. },
  1821. {
  1822. "text": "荣誉奖项",
  1823. "type": "rich",
  1824. "key": "prize",
  1825. "width": 200
  1826. }
  1827. ],
  1828. "showTag": false,
  1829. "showDeadBox": false
  1830. }
  1831. }
  1832. },
  1833. {
  1834. "name": "songs-details",
  1835. "title": "双哥赛详情页",
  1836. "content": {
  1837. "type": "Details",
  1838. "props": {
  1839. "introBlockDescs": [],
  1840. "introBlocks": [],
  1841. "tabs": [
  1842. {
  1843. "text": "简介",
  1844. "type": "intro"
  1845. },
  1846. {
  1847. "text": "图片",
  1848. "type": "images"
  1849. },
  1850. {
  1851. "text": "视频",
  1852. "type": "list",
  1853. "key": "associationMeList",
  1854. "define": {
  1855. "props": {
  1856. "showTab": false,
  1857. "showSearch": false,
  1858. "itemType": "image-large-2",
  1859. "detailsPage": "/pages/video/details",
  1860. "tabs": [
  1861. {
  1862. "text": "Root",
  1863. "type": "list",
  1864. "data": {
  1865. "type": "parentKey",
  1866. "key": "associationMeList"
  1867. },
  1868. "dataSolve": []
  1869. }
  1870. ]
  1871. }
  1872. }
  1873. }
  1874. ]
  1875. }
  1876. }
  1877. },
  1878. {
  1879. "name": "expand-details",
  1880. "title": "拓展详情页",
  1881. "content": {
  1882. "type": "Details",
  1883. "props": {
  1884. "introBlockDescs": [],
  1885. "introBlocks": [],
  1886. "tabs": [
  1887. {
  1888. "text": "简介",
  1889. "type": "intro"
  1890. },
  1891. {
  1892. "text": "图片",
  1893. "type": "images"
  1894. },
  1895. {
  1896. "text": "相关文章",
  1897. "type": "list",
  1898. "key": "associationMeList",
  1899. "define": {
  1900. "props": {
  1901. "showTab": false,
  1902. "showSearch": false,
  1903. "itemType": "article-common",
  1904. "detailsPage": "/pages/video/details",
  1905. "tabs": [
  1906. {
  1907. "text": "Root",
  1908. "type": "list",
  1909. "data": {
  1910. "type": "parentKey",
  1911. "key": "associationMeList"
  1912. },
  1913. "dataSolve": []
  1914. }
  1915. ]
  1916. }
  1917. }
  1918. }
  1919. ]
  1920. }
  1921. }
  1922. },
  1923. {
  1924. "name": "artifact-details",
  1925. "title": "文物详情",
  1926. "content": {
  1927. "type": "Details",
  1928. "props": {
  1929. "introBlockDescs": [
  1930. {
  1931. "label": "开放时间",
  1932. "key": "openStatusText"
  1933. },
  1934. {
  1935. "label": "年代",
  1936. "key": "age"
  1937. },
  1938. {
  1939. "label": "级别",
  1940. "key": "levelText"
  1941. },
  1942. {
  1943. "label": "所属区域",
  1944. "key": "regionText"
  1945. },
  1946. {
  1947. "label": "文物类型",
  1948. "key": "crTypeText"
  1949. }
  1950. ],
  1951. "introBlocks": [
  1952. {
  1953. "type": "NavTo"
  1954. }
  1955. ],
  1956. "tabs": [
  1957. {
  1958. "text": "简介",
  1959. "type": "intro"
  1960. },
  1961. {
  1962. "text": "图片",
  1963. "type": "images"
  1964. },
  1965. {
  1966. "text": "视频",
  1967. "type": "video"
  1968. },
  1969. {
  1970. "text": "音频",
  1971. "type": "audio"
  1972. },
  1973. {
  1974. "text": "保护范围",
  1975. "width": 200,
  1976. "type": "rich",
  1977. "key": "protectedArea"
  1978. },
  1979. {
  1980. "text": "建筑环境",
  1981. "width": 200,
  1982. "type": "rich",
  1983. "key": "environment"
  1984. },
  1985. {
  1986. "text": "价值评估",
  1987. "width": 200,
  1988. "type": "rich",
  1989. "key": "value"
  1990. },
  1991. {
  1992. "text": "地理位置",
  1993. "width": 200,
  1994. "type": "map"
  1995. }
  1996. ]
  1997. }
  1998. }
  1999. }
  2000. ]
  2001. }