IconsTableSeeder.php 48 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424
  1. <?php
  2. use Illuminate\Database\Seeder;
  3. class IconsTableSeeder extends Seeder
  4. {
  5. /**
  6. * Auto generated seed file
  7. *
  8. * @return void
  9. */
  10. public function run()
  11. {
  12. \DB::table('icons')->delete();
  13. \DB::table('icons')->insert(array (
  14. 0 =>
  15. array (
  16. 'id' => 1,
  17. 'unicode' => '&#xe6c9;',
  18. 'class' => 'layui-icon-rate-half',
  19. 'name' => '半星',
  20. 'sort' => 0,
  21. 'created_at' => '2019-05-07 18:07:54',
  22. 'updated_at' => '2019-05-07 18:07:54',
  23. ),
  24. 1 =>
  25. array (
  26. 'id' => 2,
  27. 'unicode' => '&#xe67b;',
  28. 'class' => 'layui-icon-rate',
  29. 'name' => '星星-空心',
  30. 'sort' => 0,
  31. 'created_at' => '2019-05-07 18:07:54',
  32. 'updated_at' => '2019-05-07 18:07:54',
  33. ),
  34. 2 =>
  35. array (
  36. 'id' => 3,
  37. 'unicode' => '&#xe67a;',
  38. 'class' => 'layui-icon-rate-solid',
  39. 'name' => '星星-实心',
  40. 'sort' => 0,
  41. 'created_at' => '2019-05-07 18:07:54',
  42. 'updated_at' => '2019-05-07 18:07:54',
  43. ),
  44. 3 =>
  45. array (
  46. 'id' => 4,
  47. 'unicode' => '&#xe678;',
  48. 'class' => 'layui-icon-cellphone',
  49. 'name' => '手机',
  50. 'sort' => 0,
  51. 'created_at' => '2019-05-07 18:07:54',
  52. 'updated_at' => '2019-05-07 18:07:54',
  53. ),
  54. 4 =>
  55. array (
  56. 'id' => 5,
  57. 'unicode' => '&#xe679;',
  58. 'class' => 'layui-icon-vercode',
  59. 'name' => '验证码',
  60. 'sort' => 0,
  61. 'created_at' => '2019-05-07 18:07:54',
  62. 'updated_at' => '2019-05-07 18:07:54',
  63. ),
  64. 5 =>
  65. array (
  66. 'id' => 6,
  67. 'unicode' => '&#xe677;',
  68. 'class' => 'layui-icon-login-wechat',
  69. 'name' => '微信',
  70. 'sort' => 0,
  71. 'created_at' => '2019-05-07 18:07:54',
  72. 'updated_at' => '2019-05-07 18:07:54',
  73. ),
  74. 6 =>
  75. array (
  76. 'id' => 7,
  77. 'unicode' => '&#xe676;',
  78. 'class' => 'layui-icon-login-qq',
  79. 'name' => 'QQ',
  80. 'sort' => 0,
  81. 'created_at' => '2019-05-07 18:07:54',
  82. 'updated_at' => '2019-05-07 18:07:54',
  83. ),
  84. 7 =>
  85. array (
  86. 'id' => 8,
  87. 'unicode' => '&#xe675;',
  88. 'class' => 'layui-icon-login-weibo',
  89. 'name' => '微博',
  90. 'sort' => 0,
  91. 'created_at' => '2019-05-07 18:07:54',
  92. 'updated_at' => '2019-05-07 18:07:54',
  93. ),
  94. 8 =>
  95. array (
  96. 'id' => 9,
  97. 'unicode' => '&#xe673;',
  98. 'class' => 'layui-icon-password',
  99. 'name' => '密码',
  100. 'sort' => 0,
  101. 'created_at' => '2019-05-07 18:07:54',
  102. 'updated_at' => '2019-05-07 18:07:54',
  103. ),
  104. 9 =>
  105. array (
  106. 'id' => 10,
  107. 'unicode' => '&#xe66f;',
  108. 'class' => 'layui-icon-username',
  109. 'name' => '用户名',
  110. 'sort' => 0,
  111. 'created_at' => '2019-05-07 18:07:54',
  112. 'updated_at' => '2019-05-07 18:07:54',
  113. ),
  114. 10 =>
  115. array (
  116. 'id' => 11,
  117. 'unicode' => '&#xe9aa;',
  118. 'class' => 'layui-icon-refresh-3',
  119. 'name' => '刷新-粗',
  120. 'sort' => 0,
  121. 'created_at' => '2019-05-07 18:07:54',
  122. 'updated_at' => '2019-05-07 18:07:54',
  123. ),
  124. 11 =>
  125. array (
  126. 'id' => 12,
  127. 'unicode' => '&#xe672;',
  128. 'class' => 'layui-icon-auz',
  129. 'name' => '授权',
  130. 'sort' => 0,
  131. 'created_at' => '2019-05-07 18:07:54',
  132. 'updated_at' => '2019-05-07 18:07:54',
  133. ),
  134. 12 =>
  135. array (
  136. 'id' => 13,
  137. 'unicode' => '&#xe66b;',
  138. 'class' => 'layui-icon-spread-left',
  139. 'name' => '左向右伸缩菜单',
  140. 'sort' => 0,
  141. 'created_at' => '2019-05-07 18:07:54',
  142. 'updated_at' => '2019-05-07 18:07:54',
  143. ),
  144. 13 =>
  145. array (
  146. 'id' => 14,
  147. 'unicode' => '&#xe668;',
  148. 'class' => 'layui-icon-shrink-right',
  149. 'name' => '右向左伸缩菜单',
  150. 'sort' => 0,
  151. 'created_at' => '2019-05-07 18:07:54',
  152. 'updated_at' => '2019-05-07 18:07:54',
  153. ),
  154. 14 =>
  155. array (
  156. 'id' => 15,
  157. 'unicode' => '&#xe6b1;',
  158. 'class' => 'layui-icon-snowflake',
  159. 'name' => '雪花',
  160. 'sort' => 0,
  161. 'created_at' => '2019-05-07 18:07:54',
  162. 'updated_at' => '2019-05-07 18:07:54',
  163. ),
  164. 15 =>
  165. array (
  166. 'id' => 16,
  167. 'unicode' => '&#xe702;',
  168. 'class' => 'layui-icon-tips',
  169. 'name' => '提示说明',
  170. 'sort' => 0,
  171. 'created_at' => '2019-05-07 18:07:54',
  172. 'updated_at' => '2019-05-07 18:07:54',
  173. ),
  174. 16 =>
  175. array (
  176. 'id' => 17,
  177. 'unicode' => '&#xe66e;',
  178. 'class' => 'layui-icon-note',
  179. 'name' => '便签',
  180. 'sort' => 0,
  181. 'created_at' => '2019-05-07 18:07:54',
  182. 'updated_at' => '2019-05-07 18:07:54',
  183. ),
  184. 17 =>
  185. array (
  186. 'id' => 18,
  187. 'unicode' => '&#xe68e;',
  188. 'class' => 'layui-icon-home',
  189. 'name' => '主页',
  190. 'sort' => 0,
  191. 'created_at' => '2019-05-07 18:07:54',
  192. 'updated_at' => '2019-05-07 18:07:54',
  193. ),
  194. 18 =>
  195. array (
  196. 'id' => 19,
  197. 'unicode' => '&#xe674;',
  198. 'class' => 'layui-icon-senior',
  199. 'name' => '高级',
  200. 'sort' => 0,
  201. 'created_at' => '2019-05-07 18:07:54',
  202. 'updated_at' => '2019-05-07 18:07:54',
  203. ),
  204. 19 =>
  205. array (
  206. 'id' => 20,
  207. 'unicode' => '&#xe669;',
  208. 'class' => 'layui-icon-refresh',
  209. 'name' => '刷新',
  210. 'sort' => 0,
  211. 'created_at' => '2019-05-07 18:07:54',
  212. 'updated_at' => '2019-05-07 18:07:54',
  213. ),
  214. 20 =>
  215. array (
  216. 'id' => 21,
  217. 'unicode' => '&#xe666;',
  218. 'class' => 'layui-icon-refresh-1',
  219. 'name' => '刷新',
  220. 'sort' => 0,
  221. 'created_at' => '2019-05-07 18:07:54',
  222. 'updated_at' => '2019-05-07 18:07:54',
  223. ),
  224. 21 =>
  225. array (
  226. 'id' => 22,
  227. 'unicode' => '&#xe66c;',
  228. 'class' => 'layui-icon-flag',
  229. 'name' => '旗帜',
  230. 'sort' => 0,
  231. 'created_at' => '2019-05-07 18:07:54',
  232. 'updated_at' => '2019-05-07 18:07:54',
  233. ),
  234. 22 =>
  235. array (
  236. 'id' => 23,
  237. 'unicode' => '&#xe66a;',
  238. 'class' => 'layui-icon-theme',
  239. 'name' => '主题',
  240. 'sort' => 0,
  241. 'created_at' => '2019-05-07 18:07:54',
  242. 'updated_at' => '2019-05-07 18:07:54',
  243. ),
  244. 23 =>
  245. array (
  246. 'id' => 24,
  247. 'unicode' => '&#xe667;',
  248. 'class' => 'layui-icon-notice',
  249. 'name' => '消息-通知',
  250. 'sort' => 0,
  251. 'created_at' => '2019-05-07 18:07:54',
  252. 'updated_at' => '2019-05-07 18:07:54',
  253. ),
  254. 24 =>
  255. array (
  256. 'id' => 25,
  257. 'unicode' => '&#xe7ae;',
  258. 'class' => 'layui-icon-website',
  259. 'name' => '网站',
  260. 'sort' => 0,
  261. 'created_at' => '2019-05-07 18:07:54',
  262. 'updated_at' => '2019-05-07 18:07:54',
  263. ),
  264. 25 =>
  265. array (
  266. 'id' => 26,
  267. 'unicode' => '&#xe665;',
  268. 'class' => 'layui-icon-console',
  269. 'name' => '控制台',
  270. 'sort' => 0,
  271. 'created_at' => '2019-05-07 18:07:54',
  272. 'updated_at' => '2019-05-07 18:07:54',
  273. ),
  274. 26 =>
  275. array (
  276. 'id' => 27,
  277. 'unicode' => '&#xe664;',
  278. 'class' => 'layui-icon-face-surprised',
  279. 'name' => '表情-惊讶',
  280. 'sort' => 0,
  281. 'created_at' => '2019-05-07 18:07:54',
  282. 'updated_at' => '2019-05-07 18:07:54',
  283. ),
  284. 27 =>
  285. array (
  286. 'id' => 28,
  287. 'unicode' => '&#xe716;',
  288. 'class' => 'layui-icon-set',
  289. 'name' => '设置-空心',
  290. 'sort' => 0,
  291. 'created_at' => '2019-05-07 18:07:54',
  292. 'updated_at' => '2019-05-07 18:07:54',
  293. ),
  294. 28 =>
  295. array (
  296. 'id' => 29,
  297. 'unicode' => '&#xe656;',
  298. 'class' => 'layui-icon-template-1',
  299. 'name' => '模板',
  300. 'sort' => 0,
  301. 'created_at' => '2019-05-07 18:07:54',
  302. 'updated_at' => '2019-05-07 18:07:54',
  303. ),
  304. 29 =>
  305. array (
  306. 'id' => 30,
  307. 'unicode' => '&#xe653;',
  308. 'class' => 'layui-icon-app',
  309. 'name' => '应用',
  310. 'sort' => 0,
  311. 'created_at' => '2019-05-07 18:07:54',
  312. 'updated_at' => '2019-05-07 18:07:54',
  313. ),
  314. 30 =>
  315. array (
  316. 'id' => 31,
  317. 'unicode' => '&#xe663;',
  318. 'class' => 'layui-icon-template',
  319. 'name' => '模板',
  320. 'sort' => 0,
  321. 'created_at' => '2019-05-07 18:07:54',
  322. 'updated_at' => '2019-05-07 18:07:54',
  323. ),
  324. 31 =>
  325. array (
  326. 'id' => 32,
  327. 'unicode' => '&#xe6c6;',
  328. 'class' => 'layui-icon-praise',
  329. 'name' => '赞',
  330. 'sort' => 0,
  331. 'created_at' => '2019-05-07 18:07:54',
  332. 'updated_at' => '2019-05-07 18:07:54',
  333. ),
  334. 32 =>
  335. array (
  336. 'id' => 33,
  337. 'unicode' => '&#xe6c5;',
  338. 'class' => 'layui-icon-tread',
  339. 'name' => '踩',
  340. 'sort' => 0,
  341. 'created_at' => '2019-05-07 18:07:54',
  342. 'updated_at' => '2019-05-07 18:07:54',
  343. ),
  344. 33 =>
  345. array (
  346. 'id' => 34,
  347. 'unicode' => '&#xe662;',
  348. 'class' => 'layui-icon-male',
  349. 'name' => '男',
  350. 'sort' => 0,
  351. 'created_at' => '2019-05-07 18:07:54',
  352. 'updated_at' => '2019-05-07 18:07:54',
  353. ),
  354. 34 =>
  355. array (
  356. 'id' => 35,
  357. 'unicode' => '&#xe661;',
  358. 'class' => 'layui-icon-female',
  359. 'name' => '女',
  360. 'sort' => 0,
  361. 'created_at' => '2019-05-07 18:07:54',
  362. 'updated_at' => '2019-05-07 18:07:54',
  363. ),
  364. 35 =>
  365. array (
  366. 'id' => 36,
  367. 'unicode' => '&#xe660;',
  368. 'class' => 'layui-icon-camera',
  369. 'name' => '相机-空心',
  370. 'sort' => 0,
  371. 'created_at' => '2019-05-07 18:07:54',
  372. 'updated_at' => '2019-05-07 18:07:54',
  373. ),
  374. 36 =>
  375. array (
  376. 'id' => 37,
  377. 'unicode' => '&#xe65d;',
  378. 'class' => 'layui-icon-camera-fill',
  379. 'name' => '相机-实心',
  380. 'sort' => 0,
  381. 'created_at' => '2019-05-07 18:07:54',
  382. 'updated_at' => '2019-05-07 18:07:54',
  383. ),
  384. 37 =>
  385. array (
  386. 'id' => 38,
  387. 'unicode' => '&#xe65f;',
  388. 'class' => 'layui-icon-more',
  389. 'name' => '菜单-水平',
  390. 'sort' => 0,
  391. 'created_at' => '2019-05-07 18:07:54',
  392. 'updated_at' => '2019-05-07 18:07:54',
  393. ),
  394. 38 =>
  395. array (
  396. 'id' => 39,
  397. 'unicode' => '&#xe671;',
  398. 'class' => 'layui-icon-more-vertical',
  399. 'name' => '菜单-垂直',
  400. 'sort' => 0,
  401. 'created_at' => '2019-05-07 18:07:54',
  402. 'updated_at' => '2019-05-07 18:07:54',
  403. ),
  404. 39 =>
  405. array (
  406. 'id' => 40,
  407. 'unicode' => '&#xe65e;',
  408. 'class' => 'layui-icon-rmb',
  409. 'name' => '金额-人民币',
  410. 'sort' => 0,
  411. 'created_at' => '2019-05-07 18:07:54',
  412. 'updated_at' => '2019-05-07 18:07:54',
  413. ),
  414. 40 =>
  415. array (
  416. 'id' => 41,
  417. 'unicode' => '&#xe659;',
  418. 'class' => 'layui-icon-dollar',
  419. 'name' => '金额-美元',
  420. 'sort' => 0,
  421. 'created_at' => '2019-05-07 18:07:54',
  422. 'updated_at' => '2019-05-07 18:07:54',
  423. ),
  424. 41 =>
  425. array (
  426. 'id' => 42,
  427. 'unicode' => '&#xe735;',
  428. 'class' => 'layui-icon-diamond',
  429. 'name' => '钻石-等级',
  430. 'sort' => 0,
  431. 'created_at' => '2019-05-07 18:07:54',
  432. 'updated_at' => '2019-05-07 18:07:54',
  433. ),
  434. 42 =>
  435. array (
  436. 'id' => 43,
  437. 'unicode' => '&#xe756;',
  438. 'class' => 'layui-icon-fire',
  439. 'name' => '火',
  440. 'sort' => 0,
  441. 'created_at' => '2019-05-07 18:07:54',
  442. 'updated_at' => '2019-05-07 18:07:54',
  443. ),
  444. 43 =>
  445. array (
  446. 'id' => 44,
  447. 'unicode' => '&#xe65c;',
  448. 'class' => 'layui-icon-return',
  449. 'name' => '返回',
  450. 'sort' => 0,
  451. 'created_at' => '2019-05-07 18:07:54',
  452. 'updated_at' => '2019-05-07 18:07:54',
  453. ),
  454. 44 =>
  455. array (
  456. 'id' => 45,
  457. 'unicode' => '&#xe715;',
  458. 'class' => 'layui-icon-location',
  459. 'name' => '位置-地图',
  460. 'sort' => 0,
  461. 'created_at' => '2019-05-07 18:07:54',
  462. 'updated_at' => '2019-05-07 18:07:54',
  463. ),
  464. 45 =>
  465. array (
  466. 'id' => 46,
  467. 'unicode' => '&#xe705;',
  468. 'class' => 'layui-icon-read',
  469. 'name' => '办公-阅读',
  470. 'sort' => 0,
  471. 'created_at' => '2019-05-07 18:07:54',
  472. 'updated_at' => '2019-05-07 18:07:54',
  473. ),
  474. 46 =>
  475. array (
  476. 'id' => 47,
  477. 'unicode' => '&#xe6b2;',
  478. 'class' => 'layui-icon-survey',
  479. 'name' => '调查',
  480. 'sort' => 0,
  481. 'created_at' => '2019-05-07 18:07:54',
  482. 'updated_at' => '2019-05-07 18:07:54',
  483. ),
  484. 47 =>
  485. array (
  486. 'id' => 48,
  487. 'unicode' => '&#xe6af;',
  488. 'class' => 'layui-icon-face-smile',
  489. 'name' => '表情-微笑',
  490. 'sort' => 0,
  491. 'created_at' => '2019-05-07 18:07:54',
  492. 'updated_at' => '2019-05-07 18:07:54',
  493. ),
  494. 48 =>
  495. array (
  496. 'id' => 49,
  497. 'unicode' => '&#xe69c;',
  498. 'class' => 'layui-icon-face-cry',
  499. 'name' => '表情-哭泣',
  500. 'sort' => 0,
  501. 'created_at' => '2019-05-07 18:07:54',
  502. 'updated_at' => '2019-05-07 18:07:54',
  503. ),
  504. 49 =>
  505. array (
  506. 'id' => 50,
  507. 'unicode' => '&#xe698;',
  508. 'class' => 'layui-icon-cart-simple',
  509. 'name' => '购物车',
  510. 'sort' => 0,
  511. 'created_at' => '2019-05-07 18:07:54',
  512. 'updated_at' => '2019-05-07 18:07:54',
  513. ),
  514. 50 =>
  515. array (
  516. 'id' => 51,
  517. 'unicode' => '&#xe657;',
  518. 'class' => 'layui-icon-cart',
  519. 'name' => '购物车',
  520. 'sort' => 0,
  521. 'created_at' => '2019-05-07 18:07:54',
  522. 'updated_at' => '2019-05-07 18:07:54',
  523. ),
  524. 51 =>
  525. array (
  526. 'id' => 52,
  527. 'unicode' => '&#xe65b;',
  528. 'class' => 'layui-icon-next',
  529. 'name' => '下一页',
  530. 'sort' => 0,
  531. 'created_at' => '2019-05-07 18:07:54',
  532. 'updated_at' => '2019-05-07 18:07:54',
  533. ),
  534. 52 =>
  535. array (
  536. 'id' => 53,
  537. 'unicode' => '&#xe65a;',
  538. 'class' => 'layui-icon-prev',
  539. 'name' => '上一页',
  540. 'sort' => 0,
  541. 'created_at' => '2019-05-07 18:07:54',
  542. 'updated_at' => '2019-05-07 18:07:54',
  543. ),
  544. 53 =>
  545. array (
  546. 'id' => 54,
  547. 'unicode' => '&#xe681;',
  548. 'class' => 'layui-icon-upload-drag',
  549. 'name' => '上传-空心-拖拽',
  550. 'sort' => 0,
  551. 'created_at' => '2019-05-07 18:07:54',
  552. 'updated_at' => '2019-05-07 18:07:54',
  553. ),
  554. 54 =>
  555. array (
  556. 'id' => 55,
  557. 'unicode' => '&#xe67c;',
  558. 'class' => 'layui-icon-upload',
  559. 'name' => '上传-实心',
  560. 'sort' => 0,
  561. 'created_at' => '2019-05-07 18:07:54',
  562. 'updated_at' => '2019-05-07 18:07:54',
  563. ),
  564. 55 =>
  565. array (
  566. 'id' => 56,
  567. 'unicode' => '&#xe601;',
  568. 'class' => 'layui-icon-download-circle',
  569. 'name' => '下载-圆圈',
  570. 'sort' => 0,
  571. 'created_at' => '2019-05-07 18:07:54',
  572. 'updated_at' => '2019-05-07 18:07:54',
  573. ),
  574. 56 =>
  575. array (
  576. 'id' => 57,
  577. 'unicode' => '&#xe857;',
  578. 'class' => 'layui-icon-component',
  579. 'name' => '组件',
  580. 'sort' => 0,
  581. 'created_at' => '2019-05-07 18:07:54',
  582. 'updated_at' => '2019-05-07 18:07:54',
  583. ),
  584. 57 =>
  585. array (
  586. 'id' => 58,
  587. 'unicode' => '&#xe655;',
  588. 'class' => 'layui-icon-file-b',
  589. 'name' => '文件-粗',
  590. 'sort' => 0,
  591. 'created_at' => '2019-05-07 18:07:54',
  592. 'updated_at' => '2019-05-07 18:07:54',
  593. ),
  594. 58 =>
  595. array (
  596. 'id' => 59,
  597. 'unicode' => '&#xe770;',
  598. 'class' => 'layui-icon-user',
  599. 'name' => '用户',
  600. 'sort' => 0,
  601. 'created_at' => '2019-05-07 18:07:54',
  602. 'updated_at' => '2019-05-07 18:07:54',
  603. ),
  604. 59 =>
  605. array (
  606. 'id' => 60,
  607. 'unicode' => '&#xe670;',
  608. 'class' => 'layui-icon-find-fill',
  609. 'name' => '发现-实心',
  610. 'sort' => 0,
  611. 'created_at' => '2019-05-07 18:07:54',
  612. 'updated_at' => '2019-05-07 18:07:54',
  613. ),
  614. 60 =>
  615. array (
  616. 'id' => 61,
  617. 'unicode' => '&#xe63d;',
  618. 'class' => 'layui-icon-loading',
  619. 'name' => 'loading',
  620. 'sort' => 0,
  621. 'created_at' => '2019-05-07 18:07:54',
  622. 'updated_at' => '2019-05-07 18:07:54',
  623. ),
  624. 61 =>
  625. array (
  626. 'id' => 62,
  627. 'unicode' => '&#xe63e;',
  628. 'class' => 'layui-icon-loading-1',
  629. 'name' => 'loading',
  630. 'sort' => 0,
  631. 'created_at' => '2019-05-07 18:07:54',
  632. 'updated_at' => '2019-05-07 18:07:54',
  633. ),
  634. 62 =>
  635. array (
  636. 'id' => 63,
  637. 'unicode' => '&#xe654;',
  638. 'class' => 'layui-icon-add-1',
  639. 'name' => '添加',
  640. 'sort' => 0,
  641. 'created_at' => '2019-05-07 18:07:54',
  642. 'updated_at' => '2019-05-07 18:07:54',
  643. ),
  644. 63 =>
  645. array (
  646. 'id' => 64,
  647. 'unicode' => '&#xe652;',
  648. 'class' => 'layui-icon-play',
  649. 'name' => '播放',
  650. 'sort' => 0,
  651. 'created_at' => '2019-05-07 18:07:54',
  652. 'updated_at' => '2019-05-07 18:07:54',
  653. ),
  654. 64 =>
  655. array (
  656. 'id' => 65,
  657. 'unicode' => '&#xe651;',
  658. 'class' => 'layui-icon-pause',
  659. 'name' => '暂停',
  660. 'sort' => 0,
  661. 'created_at' => '2019-05-07 18:07:54',
  662. 'updated_at' => '2019-05-07 18:07:54',
  663. ),
  664. 65 =>
  665. array (
  666. 'id' => 66,
  667. 'unicode' => '&#xe6fc;',
  668. 'class' => 'layui-icon-headset',
  669. 'name' => '音频-耳机',
  670. 'sort' => 0,
  671. 'created_at' => '2019-05-07 18:07:54',
  672. 'updated_at' => '2019-05-07 18:07:54',
  673. ),
  674. 66 =>
  675. array (
  676. 'id' => 67,
  677. 'unicode' => '&#xe6ed;',
  678. 'class' => 'layui-icon-video',
  679. 'name' => '视频',
  680. 'sort' => 0,
  681. 'created_at' => '2019-05-07 18:07:54',
  682. 'updated_at' => '2019-05-07 18:07:54',
  683. ),
  684. 67 =>
  685. array (
  686. 'id' => 68,
  687. 'unicode' => '&#xe688;',
  688. 'class' => 'layui-icon-voice',
  689. 'name' => '语音-声音',
  690. 'sort' => 0,
  691. 'created_at' => '2019-05-07 18:07:54',
  692. 'updated_at' => '2019-05-07 18:07:54',
  693. ),
  694. 68 =>
  695. array (
  696. 'id' => 69,
  697. 'unicode' => '&#xe645;',
  698. 'class' => 'layui-icon-speaker',
  699. 'name' => '消息-通知-喇叭',
  700. 'sort' => 0,
  701. 'created_at' => '2019-05-07 18:07:54',
  702. 'updated_at' => '2019-05-07 18:07:54',
  703. ),
  704. 69 =>
  705. array (
  706. 'id' => 70,
  707. 'unicode' => '&#xe64f;',
  708. 'class' => 'layui-icon-fonts-del',
  709. 'name' => '删除线',
  710. 'sort' => 0,
  711. 'created_at' => '2019-05-07 18:07:54',
  712. 'updated_at' => '2019-05-07 18:07:54',
  713. ),
  714. 70 =>
  715. array (
  716. 'id' => 71,
  717. 'unicode' => '&#xe64e;',
  718. 'class' => 'layui-icon-fonts-code',
  719. 'name' => '代码',
  720. 'sort' => 0,
  721. 'created_at' => '2019-05-07 18:07:54',
  722. 'updated_at' => '2019-05-07 18:07:54',
  723. ),
  724. 71 =>
  725. array (
  726. 'id' => 72,
  727. 'unicode' => '&#xe64b;',
  728. 'class' => 'layui-icon-fonts-html',
  729. 'name' => 'HTML',
  730. 'sort' => 0,
  731. 'created_at' => '2019-05-07 18:07:54',
  732. 'updated_at' => '2019-05-07 18:07:54',
  733. ),
  734. 72 =>
  735. array (
  736. 'id' => 73,
  737. 'unicode' => '&#xe62b;',
  738. 'class' => 'layui-icon-fonts-strong',
  739. 'name' => '字体加粗',
  740. 'sort' => 0,
  741. 'created_at' => '2019-05-07 18:07:54',
  742. 'updated_at' => '2019-05-07 18:07:54',
  743. ),
  744. 73 =>
  745. array (
  746. 'id' => 74,
  747. 'unicode' => '&#xe64d;',
  748. 'class' => 'layui-icon-unlink',
  749. 'name' => '删除链接',
  750. 'sort' => 0,
  751. 'created_at' => '2019-05-07 18:07:54',
  752. 'updated_at' => '2019-05-07 18:07:54',
  753. ),
  754. 74 =>
  755. array (
  756. 'id' => 75,
  757. 'unicode' => '&#xe64a;',
  758. 'class' => 'layui-icon-picture',
  759. 'name' => '图片',
  760. 'sort' => 0,
  761. 'created_at' => '2019-05-07 18:07:54',
  762. 'updated_at' => '2019-05-07 18:07:54',
  763. ),
  764. 75 =>
  765. array (
  766. 'id' => 76,
  767. 'unicode' => '&#xe64c;',
  768. 'class' => 'layui-icon-link',
  769. 'name' => '链接',
  770. 'sort' => 0,
  771. 'created_at' => '2019-05-07 18:07:54',
  772. 'updated_at' => '2019-05-07 18:07:54',
  773. ),
  774. 76 =>
  775. array (
  776. 'id' => 77,
  777. 'unicode' => '&#xe650;',
  778. 'class' => 'layui-icon-face-smile-b',
  779. 'name' => '表情-笑-粗',
  780. 'sort' => 0,
  781. 'created_at' => '2019-05-07 18:07:54',
  782. 'updated_at' => '2019-05-07 18:07:54',
  783. ),
  784. 77 =>
  785. array (
  786. 'id' => 78,
  787. 'unicode' => '&#xe649;',
  788. 'class' => 'layui-icon-align-left',
  789. 'name' => '左对齐',
  790. 'sort' => 0,
  791. 'created_at' => '2019-05-07 18:07:54',
  792. 'updated_at' => '2019-05-07 18:07:54',
  793. ),
  794. 78 =>
  795. array (
  796. 'id' => 79,
  797. 'unicode' => '&#xe648;',
  798. 'class' => 'layui-icon-align-right',
  799. 'name' => '右对齐',
  800. 'sort' => 0,
  801. 'created_at' => '2019-05-07 18:07:54',
  802. 'updated_at' => '2019-05-07 18:07:54',
  803. ),
  804. 79 =>
  805. array (
  806. 'id' => 80,
  807. 'unicode' => '&#xe647;',
  808. 'class' => 'layui-icon-align-center',
  809. 'name' => '居中对齐',
  810. 'sort' => 0,
  811. 'created_at' => '2019-05-07 18:07:54',
  812. 'updated_at' => '2019-05-07 18:07:54',
  813. ),
  814. 80 =>
  815. array (
  816. 'id' => 81,
  817. 'unicode' => '&#xe646;',
  818. 'class' => 'layui-icon-fonts-u',
  819. 'name' => '字体-下划线',
  820. 'sort' => 0,
  821. 'created_at' => '2019-05-07 18:07:54',
  822. 'updated_at' => '2019-05-07 18:07:54',
  823. ),
  824. 81 =>
  825. array (
  826. 'id' => 82,
  827. 'unicode' => '&#xe644;',
  828. 'class' => 'layui-icon-fonts-i',
  829. 'name' => '字体-斜体',
  830. 'sort' => 0,
  831. 'created_at' => '2019-05-07 18:07:54',
  832. 'updated_at' => '2019-05-07 18:07:54',
  833. ),
  834. 82 =>
  835. array (
  836. 'id' => 83,
  837. 'unicode' => '&#xe62a;',
  838. 'class' => 'layui-icon-tabs',
  839. 'name' => 'Tabs 选项卡',
  840. 'sort' => 0,
  841. 'created_at' => '2019-05-07 18:07:54',
  842. 'updated_at' => '2019-05-07 18:07:54',
  843. ),
  844. 83 =>
  845. array (
  846. 'id' => 84,
  847. 'unicode' => '&#xe643;',
  848. 'class' => 'layui-icon-radio',
  849. 'name' => '单选框-选中',
  850. 'sort' => 0,
  851. 'created_at' => '2019-05-07 18:07:54',
  852. 'updated_at' => '2019-05-07 18:07:54',
  853. ),
  854. 84 =>
  855. array (
  856. 'id' => 85,
  857. 'unicode' => '&#xe63f;',
  858. 'class' => 'layui-icon-circle',
  859. 'name' => '单选框-候选',
  860. 'sort' => 0,
  861. 'created_at' => '2019-05-07 18:07:54',
  862. 'updated_at' => '2019-05-07 18:07:54',
  863. ),
  864. 85 =>
  865. array (
  866. 'id' => 86,
  867. 'unicode' => '&#xe642;',
  868. 'class' => 'layui-icon-edit',
  869. 'name' => '编辑',
  870. 'sort' => 0,
  871. 'created_at' => '2019-05-07 18:07:54',
  872. 'updated_at' => '2019-05-07 18:07:54',
  873. ),
  874. 86 =>
  875. array (
  876. 'id' => 87,
  877. 'unicode' => '&#xe641;',
  878. 'class' => 'layui-icon-share',
  879. 'name' => '分享',
  880. 'sort' => 0,
  881. 'created_at' => '2019-05-07 18:07:54',
  882. 'updated_at' => '2019-05-07 18:07:54',
  883. ),
  884. 87 =>
  885. array (
  886. 'id' => 88,
  887. 'unicode' => '&#xe640;',
  888. 'class' => 'layui-icon-delete',
  889. 'name' => '删除',
  890. 'sort' => 0,
  891. 'created_at' => '2019-05-07 18:07:54',
  892. 'updated_at' => '2019-05-07 18:07:54',
  893. ),
  894. 88 =>
  895. array (
  896. 'id' => 89,
  897. 'unicode' => '&#xe63c;',
  898. 'class' => 'layui-icon-form',
  899. 'name' => '表单',
  900. 'sort' => 0,
  901. 'created_at' => '2019-05-07 18:07:54',
  902. 'updated_at' => '2019-05-07 18:07:54',
  903. ),
  904. 89 =>
  905. array (
  906. 'id' => 90,
  907. 'unicode' => '&#xe63b;',
  908. 'class' => 'layui-icon-cellphone-fine',
  909. 'name' => '手机-细体',
  910. 'sort' => 0,
  911. 'created_at' => '2019-05-07 18:07:54',
  912. 'updated_at' => '2019-05-07 18:07:54',
  913. ),
  914. 90 =>
  915. array (
  916. 'id' => 91,
  917. 'unicode' => '&#xe63a;',
  918. 'class' => 'layui-icon-dialogue',
  919. 'name' => '聊天 对话 沟通',
  920. 'sort' => 0,
  921. 'created_at' => '2019-05-07 18:07:54',
  922. 'updated_at' => '2019-05-07 18:07:54',
  923. ),
  924. 91 =>
  925. array (
  926. 'id' => 92,
  927. 'unicode' => '&#xe639;',
  928. 'class' => 'layui-icon-fonts-clear',
  929. 'name' => '文字格式化',
  930. 'sort' => 0,
  931. 'created_at' => '2019-05-07 18:07:54',
  932. 'updated_at' => '2019-05-07 18:07:54',
  933. ),
  934. 92 =>
  935. array (
  936. 'id' => 93,
  937. 'unicode' => '&#xe638;',
  938. 'class' => 'layui-icon-layer',
  939. 'name' => '窗口',
  940. 'sort' => 0,
  941. 'created_at' => '2019-05-07 18:07:54',
  942. 'updated_at' => '2019-05-07 18:07:54',
  943. ),
  944. 93 =>
  945. array (
  946. 'id' => 94,
  947. 'unicode' => '&#xe637;',
  948. 'class' => 'layui-icon-date',
  949. 'name' => '日期',
  950. 'sort' => 0,
  951. 'created_at' => '2019-05-07 18:07:54',
  952. 'updated_at' => '2019-05-07 18:07:54',
  953. ),
  954. 94 =>
  955. array (
  956. 'id' => 95,
  957. 'unicode' => '&#xe636;',
  958. 'class' => 'layui-icon-water',
  959. 'name' => '水 下雨',
  960. 'sort' => 0,
  961. 'created_at' => '2019-05-07 18:07:54',
  962. 'updated_at' => '2019-05-07 18:07:54',
  963. ),
  964. 95 =>
  965. array (
  966. 'id' => 96,
  967. 'unicode' => '&#xe635;',
  968. 'class' => 'layui-icon-code-circle',
  969. 'name' => '代码-圆圈',
  970. 'sort' => 0,
  971. 'created_at' => '2019-05-07 18:07:54',
  972. 'updated_at' => '2019-05-07 18:07:54',
  973. ),
  974. 96 =>
  975. array (
  976. 'id' => 97,
  977. 'unicode' => '&#xe634;',
  978. 'class' => 'layui-icon-carousel',
  979. 'name' => '轮播组图',
  980. 'sort' => 0,
  981. 'created_at' => '2019-05-07 18:07:54',
  982. 'updated_at' => '2019-05-07 18:07:54',
  983. ),
  984. 97 =>
  985. array (
  986. 'id' => 98,
  987. 'unicode' => '&#xe633;',
  988. 'class' => 'layui-icon-prev-circle',
  989. 'name' => '翻页',
  990. 'sort' => 0,
  991. 'created_at' => '2019-05-07 18:07:54',
  992. 'updated_at' => '2019-05-07 18:07:54',
  993. ),
  994. 98 =>
  995. array (
  996. 'id' => 99,
  997. 'unicode' => '&#xe632;',
  998. 'class' => 'layui-icon-layouts',
  999. 'name' => '布局',
  1000. 'sort' => 0,
  1001. 'created_at' => '2019-05-07 18:07:54',
  1002. 'updated_at' => '2019-05-07 18:07:54',
  1003. ),
  1004. 99 =>
  1005. array (
  1006. 'id' => 100,
  1007. 'unicode' => '&#xe631;',
  1008. 'class' => 'layui-icon-util',
  1009. 'name' => '工具',
  1010. 'sort' => 0,
  1011. 'created_at' => '2019-05-07 18:07:54',
  1012. 'updated_at' => '2019-05-07 18:07:54',
  1013. ),
  1014. 100 =>
  1015. array (
  1016. 'id' => 101,
  1017. 'unicode' => '&#xe630;',
  1018. 'class' => 'layui-icon-templeate-1',
  1019. 'name' => '选择模板',
  1020. 'sort' => 0,
  1021. 'created_at' => '2019-05-07 18:07:54',
  1022. 'updated_at' => '2019-05-07 18:07:54',
  1023. ),
  1024. 101 =>
  1025. array (
  1026. 'id' => 102,
  1027. 'unicode' => '&#xe62f;',
  1028. 'class' => 'layui-icon-upload-circle',
  1029. 'name' => '上传-圆圈',
  1030. 'sort' => 0,
  1031. 'created_at' => '2019-05-07 18:07:54',
  1032. 'updated_at' => '2019-05-07 18:07:54',
  1033. ),
  1034. 102 =>
  1035. array (
  1036. 'id' => 103,
  1037. 'unicode' => '&#xe62e;',
  1038. 'class' => 'layui-icon-tree',
  1039. 'name' => '树',
  1040. 'sort' => 0,
  1041. 'created_at' => '2019-05-07 18:07:54',
  1042. 'updated_at' => '2019-05-07 18:07:54',
  1043. ),
  1044. 103 =>
  1045. array (
  1046. 'id' => 104,
  1047. 'unicode' => '&#xe62d;',
  1048. 'class' => 'layui-icon-table',
  1049. 'name' => '表格',
  1050. 'sort' => 0,
  1051. 'created_at' => '2019-05-07 18:07:54',
  1052. 'updated_at' => '2019-05-07 18:07:54',
  1053. ),
  1054. 104 =>
  1055. array (
  1056. 'id' => 105,
  1057. 'unicode' => '&#xe62c;',
  1058. 'class' => 'layui-icon-chart',
  1059. 'name' => '图表',
  1060. 'sort' => 0,
  1061. 'created_at' => '2019-05-07 18:07:54',
  1062. 'updated_at' => '2019-05-07 18:07:54',
  1063. ),
  1064. 105 =>
  1065. array (
  1066. 'id' => 106,
  1067. 'unicode' => '&#xe629;',
  1068. 'class' => 'layui-icon-chart-screen',
  1069. 'name' => '图标 报表 屏幕',
  1070. 'sort' => 0,
  1071. 'created_at' => '2019-05-07 18:07:54',
  1072. 'updated_at' => '2019-05-07 18:07:54',
  1073. ),
  1074. 106 =>
  1075. array (
  1076. 'id' => 107,
  1077. 'unicode' => '&#xe628;',
  1078. 'class' => 'layui-icon-engine',
  1079. 'name' => '引擎',
  1080. 'sort' => 0,
  1081. 'created_at' => '2019-05-07 18:07:54',
  1082. 'updated_at' => '2019-05-07 18:07:54',
  1083. ),
  1084. 107 =>
  1085. array (
  1086. 'id' => 108,
  1087. 'unicode' => '&#xe625;',
  1088. 'class' => 'layui-icon-triangle-d',
  1089. 'name' => '下三角',
  1090. 'sort' => 0,
  1091. 'created_at' => '2019-05-07 18:07:54',
  1092. 'updated_at' => '2019-05-07 18:07:54',
  1093. ),
  1094. 108 =>
  1095. array (
  1096. 'id' => 109,
  1097. 'unicode' => '&#xe623;',
  1098. 'class' => 'layui-icon-triangle-r',
  1099. 'name' => '右三角',
  1100. 'sort' => 0,
  1101. 'created_at' => '2019-05-07 18:07:54',
  1102. 'updated_at' => '2019-05-07 18:07:54',
  1103. ),
  1104. 109 =>
  1105. array (
  1106. 'id' => 110,
  1107. 'unicode' => '&#xe621;',
  1108. 'class' => 'layui-icon-file',
  1109. 'name' => '文件',
  1110. 'sort' => 0,
  1111. 'created_at' => '2019-05-07 18:07:54',
  1112. 'updated_at' => '2019-05-07 18:07:54',
  1113. ),
  1114. 110 =>
  1115. array (
  1116. 'id' => 111,
  1117. 'unicode' => '&#xe620;',
  1118. 'class' => 'layui-icon-set-sm',
  1119. 'name' => '设置-小型',
  1120. 'sort' => 0,
  1121. 'created_at' => '2019-05-07 18:07:54',
  1122. 'updated_at' => '2019-05-07 18:07:54',
  1123. ),
  1124. 111 =>
  1125. array (
  1126. 'id' => 112,
  1127. 'unicode' => '&#xe61f;',
  1128. 'class' => 'layui-icon-add-circle',
  1129. 'name' => '添加-圆圈',
  1130. 'sort' => 0,
  1131. 'created_at' => '2019-05-07 18:07:54',
  1132. 'updated_at' => '2019-05-07 18:07:54',
  1133. ),
  1134. 112 =>
  1135. array (
  1136. 'id' => 113,
  1137. 'unicode' => '&#xe61c;',
  1138. 'class' => 'layui-icon-404',
  1139. 'name' => '404',
  1140. 'sort' => 0,
  1141. 'created_at' => '2019-05-07 18:07:54',
  1142. 'updated_at' => '2019-05-07 18:07:54',
  1143. ),
  1144. 113 =>
  1145. array (
  1146. 'id' => 114,
  1147. 'unicode' => '&#xe60b;',
  1148. 'class' => 'layui-icon-about',
  1149. 'name' => '关于',
  1150. 'sort' => 0,
  1151. 'created_at' => '2019-05-07 18:07:54',
  1152. 'updated_at' => '2019-05-07 18:07:54',
  1153. ),
  1154. 114 =>
  1155. array (
  1156. 'id' => 115,
  1157. 'unicode' => '&#xe619;',
  1158. 'class' => 'layui-icon-up',
  1159. 'name' => '箭头 向上',
  1160. 'sort' => 0,
  1161. 'created_at' => '2019-05-07 18:07:54',
  1162. 'updated_at' => '2019-05-07 18:07:54',
  1163. ),
  1164. 115 =>
  1165. array (
  1166. 'id' => 116,
  1167. 'unicode' => '&#xe61a;',
  1168. 'class' => 'layui-icon-down',
  1169. 'name' => '箭头 向下',
  1170. 'sort' => 0,
  1171. 'created_at' => '2019-05-07 18:07:54',
  1172. 'updated_at' => '2019-05-07 18:07:54',
  1173. ),
  1174. 116 =>
  1175. array (
  1176. 'id' => 117,
  1177. 'unicode' => '&#xe603;',
  1178. 'class' => 'layui-icon-left',
  1179. 'name' => '箭头 向左',
  1180. 'sort' => 0,
  1181. 'created_at' => '2019-05-07 18:07:54',
  1182. 'updated_at' => '2019-05-07 18:07:54',
  1183. ),
  1184. 117 =>
  1185. array (
  1186. 'id' => 118,
  1187. 'unicode' => '&#xe602;',
  1188. 'class' => 'layui-icon-right',
  1189. 'name' => '箭头 向右',
  1190. 'sort' => 0,
  1191. 'created_at' => '2019-05-07 18:07:54',
  1192. 'updated_at' => '2019-05-07 18:07:54',
  1193. ),
  1194. 118 =>
  1195. array (
  1196. 'id' => 119,
  1197. 'unicode' => '&#xe617;',
  1198. 'class' => 'layui-icon-circle-dot',
  1199. 'name' => '圆点',
  1200. 'sort' => 0,
  1201. 'created_at' => '2019-05-07 18:07:54',
  1202. 'updated_at' => '2019-05-07 18:07:54',
  1203. ),
  1204. 119 =>
  1205. array (
  1206. 'id' => 120,
  1207. 'unicode' => '&#xe615;',
  1208. 'class' => 'layui-icon-search',
  1209. 'name' => '搜索',
  1210. 'sort' => 0,
  1211. 'created_at' => '2019-05-07 18:07:54',
  1212. 'updated_at' => '2019-05-07 18:07:54',
  1213. ),
  1214. 120 =>
  1215. array (
  1216. 'id' => 121,
  1217. 'unicode' => '&#xe614;',
  1218. 'class' => 'layui-icon-set-fill',
  1219. 'name' => '设置-实心',
  1220. 'sort' => 0,
  1221. 'created_at' => '2019-05-07 18:07:54',
  1222. 'updated_at' => '2019-05-07 18:07:54',
  1223. ),
  1224. 121 =>
  1225. array (
  1226. 'id' => 122,
  1227. 'unicode' => '&#xe613;',
  1228. 'class' => 'layui-icon-group',
  1229. 'name' => '群组',
  1230. 'sort' => 0,
  1231. 'created_at' => '2019-05-07 18:07:54',
  1232. 'updated_at' => '2019-05-07 18:07:54',
  1233. ),
  1234. 122 =>
  1235. array (
  1236. 'id' => 123,
  1237. 'unicode' => '&#xe612;',
  1238. 'class' => 'layui-icon-friends',
  1239. 'name' => '好友',
  1240. 'sort' => 0,
  1241. 'created_at' => '2019-05-07 18:07:54',
  1242. 'updated_at' => '2019-05-07 18:07:54',
  1243. ),
  1244. 123 =>
  1245. array (
  1246. 'id' => 124,
  1247. 'unicode' => '&#xe611;',
  1248. 'class' => 'layui-icon-reply-fill',
  1249. 'name' => '回复 评论 实心',
  1250. 'sort' => 0,
  1251. 'created_at' => '2019-05-07 18:07:54',
  1252. 'updated_at' => '2019-05-07 18:07:54',
  1253. ),
  1254. 124 =>
  1255. array (
  1256. 'id' => 125,
  1257. 'unicode' => '&#xe60f;',
  1258. 'class' => 'layui-icon-menu-fill',
  1259. 'name' => '菜单 隐身 实心',
  1260. 'sort' => 0,
  1261. 'created_at' => '2019-05-07 18:07:54',
  1262. 'updated_at' => '2019-05-07 18:07:54',
  1263. ),
  1264. 125 =>
  1265. array (
  1266. 'id' => 126,
  1267. 'unicode' => '&#xe60e;',
  1268. 'class' => 'layui-icon-log',
  1269. 'name' => '记录',
  1270. 'sort' => 0,
  1271. 'created_at' => '2019-05-07 18:07:54',
  1272. 'updated_at' => '2019-05-07 18:07:54',
  1273. ),
  1274. 126 =>
  1275. array (
  1276. 'id' => 127,
  1277. 'unicode' => '&#xe60d;',
  1278. 'class' => 'layui-icon-picture-fine',
  1279. 'name' => '图片-细体',
  1280. 'sort' => 0,
  1281. 'created_at' => '2019-05-07 18:07:54',
  1282. 'updated_at' => '2019-05-07 18:07:54',
  1283. ),
  1284. 127 =>
  1285. array (
  1286. 'id' => 128,
  1287. 'unicode' => '&#xe60c;',
  1288. 'class' => 'layui-icon-face-smile-fine',
  1289. 'name' => '表情-笑-细体',
  1290. 'sort' => 0,
  1291. 'created_at' => '2019-05-07 18:07:54',
  1292. 'updated_at' => '2019-05-07 18:07:54',
  1293. ),
  1294. 128 =>
  1295. array (
  1296. 'id' => 129,
  1297. 'unicode' => '&#xe60a;',
  1298. 'class' => 'layui-icon-list',
  1299. 'name' => '列表',
  1300. 'sort' => 0,
  1301. 'created_at' => '2019-05-07 18:07:54',
  1302. 'updated_at' => '2019-05-07 18:07:54',
  1303. ),
  1304. 129 =>
  1305. array (
  1306. 'id' => 130,
  1307. 'unicode' => '&#xe609;',
  1308. 'class' => 'layui-icon-release',
  1309. 'name' => '发布 纸飞机',
  1310. 'sort' => 0,
  1311. 'created_at' => '2019-05-07 18:07:54',
  1312. 'updated_at' => '2019-05-07 18:07:54',
  1313. ),
  1314. 130 =>
  1315. array (
  1316. 'id' => 131,
  1317. 'unicode' => '&#xe605;',
  1318. 'class' => 'layui-icon-ok',
  1319. 'name' => '对 OK',
  1320. 'sort' => 0,
  1321. 'created_at' => '2019-05-07 18:07:54',
  1322. 'updated_at' => '2019-05-07 18:07:54',
  1323. ),
  1324. 131 =>
  1325. array (
  1326. 'id' => 132,
  1327. 'unicode' => '&#xe607;',
  1328. 'class' => 'layui-icon-help',
  1329. 'name' => '帮助',
  1330. 'sort' => 0,
  1331. 'created_at' => '2019-05-07 18:07:54',
  1332. 'updated_at' => '2019-05-07 18:07:54',
  1333. ),
  1334. 132 =>
  1335. array (
  1336. 'id' => 133,
  1337. 'unicode' => '&#xe606;',
  1338. 'class' => 'layui-icon-chat',
  1339. 'name' => '客服',
  1340. 'sort' => 0,
  1341. 'created_at' => '2019-05-07 18:07:54',
  1342. 'updated_at' => '2019-05-07 18:07:54',
  1343. ),
  1344. 133 =>
  1345. array (
  1346. 'id' => 134,
  1347. 'unicode' => '&#xe604;',
  1348. 'class' => 'layui-icon-top',
  1349. 'name' => 'top 置顶',
  1350. 'sort' => 0,
  1351. 'created_at' => '2019-05-07 18:07:54',
  1352. 'updated_at' => '2019-05-07 18:07:54',
  1353. ),
  1354. 134 =>
  1355. array (
  1356. 'id' => 135,
  1357. 'unicode' => '&#xe600;',
  1358. 'class' => 'layui-icon-star',
  1359. 'name' => '收藏-空心',
  1360. 'sort' => 0,
  1361. 'created_at' => '2019-05-07 18:07:54',
  1362. 'updated_at' => '2019-05-07 18:07:54',
  1363. ),
  1364. 135 =>
  1365. array (
  1366. 'id' => 136,
  1367. 'unicode' => '&#xe658;',
  1368. 'class' => 'layui-icon-star-fill',
  1369. 'name' => '收藏-实心',
  1370. 'sort' => 0,
  1371. 'created_at' => '2019-05-07 18:07:54',
  1372. 'updated_at' => '2019-05-07 18:07:54',
  1373. ),
  1374. 136 =>
  1375. array (
  1376. 'id' => 137,
  1377. 'unicode' => '&#x1007;',
  1378. 'class' => 'layui-icon-close-fill',
  1379. 'name' => '关闭-实心',
  1380. 'sort' => 0,
  1381. 'created_at' => '2019-05-07 18:07:54',
  1382. 'updated_at' => '2019-05-07 18:07:54',
  1383. ),
  1384. 137 =>
  1385. array (
  1386. 'id' => 138,
  1387. 'unicode' => '&#x1006;',
  1388. 'class' => 'layui-icon-close',
  1389. 'name' => '关闭-空心',
  1390. 'sort' => 0,
  1391. 'created_at' => '2019-05-07 18:07:54',
  1392. 'updated_at' => '2019-05-07 18:07:54',
  1393. ),
  1394. 138 =>
  1395. array (
  1396. 'id' => 139,
  1397. 'unicode' => '&#x1005;',
  1398. 'class' => 'layui-icon-ok-circle',
  1399. 'name' => '正确',
  1400. 'sort' => 0,
  1401. 'created_at' => '2019-05-07 18:07:54',
  1402. 'updated_at' => '2019-05-07 18:07:54',
  1403. ),
  1404. 139 =>
  1405. array (
  1406. 'id' => 140,
  1407. 'unicode' => '&#xe608;',
  1408. 'class' => 'layui-icon-add-circle-fine',
  1409. 'name' => '添加-圆圈-细体',
  1410. 'sort' => 0,
  1411. 'created_at' => '2019-05-07 18:07:54',
  1412. 'updated_at' => '2019-05-07 18:07:54',
  1413. ),
  1414. ));
  1415. }
  1416. }