ApplicationController.class.php 1.2 KB

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