Files
addons
app_download_files
extend
hyhproject
admin
app
common
conf
controller
Alipays.php
Appport.php
Areas.php
Articles.php
Auth.php
Base.php
Brands.php
Carts.php
Cashconfigs.php
Cashdraws.php
Chain3.php
Chain3base.php
Ect.php
Ectwallets.php
Error.php
Favorites.php
Goods.php
Goodsappraises.php
Goodscats.php
Goodsconsult.php
Index.php
Invoices.php
Juhui.php
Logmoneys.php
Messages.php
News.php
Note.php
Ordercomplains.php
Orderrefunds.php
Orders.php
Position.php
Qlgpay.php
Shoporders.php
Shopping.php
Shops.php
Switchs.php
Tag.php
Tags.php
Tmp.php
TradeRule.php
Unionpays.php
UserLevel.php
Useraddress.php
Users.php
Userscores.php
Uservouchers.php
Wallets.php
Weixinpays.php
model
validate
common
home
home2
mobile2
wechat2
.htaccess
command.php
mobile
oss
static
thinkphp
upload
vendor
wxtmp
.gitignore
.htaccess
.user.ini
404.html
H5436787D.wgt
admin.php
app-release.apk
app_download.html
cash.lock
demo.php
get_version.php
get_version_new.php
index.html
index.php
reg.lock
robots.txt
qlg.tsgz.moe/hyhproject/app/controller/Appport.php
2019-09-06 23:53:10 +08:00

131 lines
2.9 KiB
PHP
Executable File

<?php
namespace wstmart\app\controller;
use think\Loader;
use wstmart\app\model\AppPort as M;
use wstmart\common\model\LogPayParams as PM;
use wstmart\common\model\ChargeItems as CM;
use wstmart\common\model\LogMoneys as LM;
/**
* ============================================================================
* 阿里支付控制器
*/
class Appport extends Base{
/*
* app新版首页轮播图
* */
public function appBanner(){
$m=new M();
$result=$m->appBanner();
//dump($result);
exit(json_encode(WSTReturn('',1,$result)));
}
/**
* app新版首页桔子头条接口
*/
public function appNews(){
$m = new M();
$result = $m->appNews();
//dump($result);
exit(json_encode(WSTReturn('',1,$result)));
}
/**
* app新版首页桔子头条列表页接口
*/
public function appNewsLists(){
$m = new M();
$result = $m->appNewsLists();
dump($result);
//exit(json_encode(WSTReturn('',1,$result)));
}
/**
* app新版桔子头条分类接口
*/
public function appNewsClass(){
$m = new M();
$result = $m->appNewsClass();
dump($result);
//exit(json_encode(WSTReturn('',1,$result)));
}
/**
* app新版桔子头条详情页接口
*/
public function appNewsDetail(){
$m = new M();
$result = $m->appNewsDetail();
dump($result);
//exit(json_encode(WSTReturn('',1,$result)));
}
/*
* app新版秒杀接口
* */
public function appSecKill(){
$m=new M();
$result=$m->appSecKill();
//dump($result);
exit(json_encode(WSTReturn('',1,$result)));
}
/*
* app新版ect专区/活动区 图片接口
* */
public function appEctAct(){
$m=new M();
$result=$m->appEctAct();
//dump($result);
exit(json_encode(WSTReturn('',1,$result)));
}
/*
* app新版品牌热卖接口
* */
public function appBrands(){
$m=new M();
$result=$m->appBrands();
//dump($result);
exit(json_encode(WSTReturn('',1,$result)));
}
/*
* app新版居家好帮手广告位接口
* */
public function appJadvertis(){
$m=new M();
$result=$m->appJadvertis();
//dump($result);
exit(json_encode(WSTReturn('',1,$result)));
}
/*
* app新版潮流先锋广告位接口
* */
public function appCadvertis(){
$m=new M();
$result=$m->appCadvertis();
//dump($result);
exit(json_encode(WSTReturn('',1,$result)));
}
/*
* app新版食品超市广告位接口
* */
public function appSadvertis(){
$m=new M();
$result=$m->appSadvertis();
//dump($result);
exit(json_encode(WSTReturn('',1,$result)));
}
/*
* app新版家电馆广告位接口
* */
public function appDadvertis(){
$m=new M();
$result=$m->appDadvertis();
//dump($result);
exit(json_encode(WSTReturn('',1,$result)));
}
/*
* app为你推荐接口
/*/
public function recommend(){
$m=new M();
$result=$m->recommend();
//dump($result);
exit(json_encode(WSTReturn('',1,$result)));
}
}