12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?php
- /**
- * lionfish 商城系统
- *
- *
- * @author fish
- *
- */
- namespace Seller\Controller;
- class ApplicationController extends CommonController{
-
- protected function _initialize(){
- parent::_initialize();
- }
- public function index()
- {
- $app_arr = [];
- $app_arr['mptradecomponts'] = [
- 'url' => U('mptradecomponts/index'),
- 'icon' => '/static/images/mptradecomponts.png',
- 'title' => '交易组件',
- 'desc' => '视频号打通小程序',
- ];
- $app_arr['cashondelivery'] = [
- 'url' => U('cashondelivery/config'),
- 'icon' => '/static/images/cashondelivery.png',
- 'title' => '货到付款',
- 'desc' => '商品支持货到付款',
- ];
- /**
- $app_arr['allform'] = [
- 'url' => U('allform/index'),
- 'icon' => '/static/images/allform.png',
- 'title' => '万能表单',
- 'desc' => '万能表单收集数据',
- ];
- **/
- $app_arr['platformmobile'] = [
- 'url' => U('platformmobile/config'),
- 'icon' => '/static/images/platformmobile.png',
- 'title' => '平台手机端',
- 'desc' => '平台手机端',
- ];
- $this->app_arr = $app_arr;
- $this->display();
- }
- }
- ?>
|