<?php
|
|
namespace app\operations\controller\plus\bargain;
|
|
|
use app\operations\controller\Controller;
|
use app\operations\model\settings\Setting as SettingModel;
|
|
/**
|
* 砍价设置
|
*/
|
class Setting extends Controller
|
{
|
|
/**
|
* 拼团设置
|
*/
|
public function index()
|
{
|
if($this->request->isGet()){
|
return $this->getSetting();
|
}
|
$model = new SettingModel;
|
if ($model->edit('bargain', $this->postData())) {
|
return $this->renderSuccess('操作成功');
|
}
|
return $this->renderError('操作失败');
|
}
|
/**
|
* 设置开启砍价
|
*/
|
public function getSetting()
|
{
|
$vars['values'] = SettingModel::getItem('bargain');
|
return $this->renderSuccess('', compact('vars'));
|
}
|
|
}
|