ApplicationController.class.php 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?php
  2. /**
  3. * lionfish 商城系统
  4. *
  5. * ==========================================================================
  6. * @link http://www.liofis.com/
  7. * @copyright Copyright (c) 2015 liofis.com.
  8. * @license http://www.liofis.com/license.html License
  9. * ==========================================================================
  10. *
  11. * @author fish
  12. *
  13. */
  14. namespace Seller\Controller;
  15. class ApplicationController extends CommonController{
  16. protected function _initialize(){
  17. parent::_initialize();
  18. }
  19. public function index()
  20. {
  21. $app_arr = [];
  22. $app_arr['mptradecomponts'] = [
  23. 'url' => U('mptradecomponts/index'),
  24. 'icon' => '/static/images/mptradecomponts.png',
  25. 'title' => '交易组件',
  26. 'desc' => '视频号打通小程序',
  27. ];
  28. $app_arr['cashondelivery'] = [
  29. 'url' => U('cashondelivery/config'),
  30. 'icon' => '/static/images/cashondelivery.png',
  31. 'title' => '货到付款',
  32. 'desc' => '商品支持货到付款',
  33. ];
  34. /**
  35. $app_arr['allform'] = [
  36. 'url' => U('allform/index'),
  37. 'icon' => '/static/images/allform.png',
  38. 'title' => '万能表单',
  39. 'desc' => '万能表单收集数据',
  40. ];
  41. **/
  42. $app_arr['platformmobile'] = [
  43. 'url' => U('platformmobile/config'),
  44. 'icon' => '/static/images/platformmobile.png',
  45. 'title' => '平台手机端',
  46. 'desc' => '平台手机端',
  47. ];
  48. $this->app_arr = $app_arr;
  49. $this->display();
  50. }
  51. }
  52. ?>