2015-07-28 19:00:39 +08:00
|
|
|
<?php
|
|
|
|
|
namespace User\Controller;
|
|
|
|
|
use Think\Controller;
|
|
|
|
|
|
|
|
|
|
/**
|
2016-12-03 21:42:04 +08:00
|
|
|
* @Author: Zhou Yuyang <1009465756@qq.com> 10:28 2016/12/03
|
|
|
|
|
* @Copyright 2015-2020 SISMO
|
|
|
|
|
* @Project homepage https://github.com/CNSISMO
|
|
|
|
|
* @Version 1.8
|
2015-07-28 19:00:39 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
class GiftController extends BaseController{
|
|
|
|
|
|
|
|
|
|
public function index(){
|
|
|
|
|
$gift = M('links')->select();
|
2016-01-25 10:53:12 +08:00
|
|
|
$tmodel= M('setting');
|
|
|
|
|
$title = $tmodel->where('id=1')->select();
|
|
|
|
|
$this->assign('title', $title);
|
2015-07-28 19:00:39 +08:00
|
|
|
$this->assign('gift',$gift);
|
|
|
|
|
$this->display();
|
|
|
|
|
}
|
2016-01-24 11:54:16 +08:00
|
|
|
|
|
|
|
|
public function add()
|
|
|
|
|
{
|
|
|
|
|
//默认显示添加表单
|
|
|
|
|
$id = session('userId');
|
|
|
|
|
$gid = I('get.gid',0,'intval');
|
|
|
|
|
if (!IS_POST) {
|
2016-01-25 10:53:12 +08:00
|
|
|
$tmodel= M('setting');
|
|
|
|
|
$title = $tmodel->where('id=1')->select();
|
|
|
|
|
$this->assign('title', $title);
|
2016-01-24 11:54:16 +08:00
|
|
|
$info = M('info')->where('user_id='.$id)->select();
|
|
|
|
|
$gift = M('links')->where('id='.$gid)->select();
|
|
|
|
|
$this->assign('info',$info);
|
|
|
|
|
$this->assign('gift',$gift);
|
|
|
|
|
$this->display();
|
|
|
|
|
}
|
|
|
|
|
if (IS_POST) {
|
|
|
|
|
//如果用户提交数据
|
|
|
|
|
$model = D("order");
|
|
|
|
|
$model->user_id = 1;
|
|
|
|
|
$model->username = 1;
|
2016-12-02 12:24:27 +08:00
|
|
|
if (!$model->field('username,gid,tel,alipay,realname,location,zipcode')->create()) {
|
2016-01-24 11:54:16 +08:00
|
|
|
// 如果创建失败 表示验证没有通过 输出错误提示信息
|
|
|
|
|
$this->error($model->getError());
|
|
|
|
|
exit();
|
|
|
|
|
} else {
|
|
|
|
|
if ($model->add()) {
|
|
|
|
|
$this->success("下单成功", U('index/index'));
|
|
|
|
|
} else {
|
|
|
|
|
$this->error("下单失败");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|