You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
841 B

2 years ago
<?php
/**
* [Laike System] Copyright (c) 2018 laiketui.com
* Laike is not a free software, it under the license terms, visited http://www.laiketui.com/ for more details.
*/
class bargainInputView extends SmartyView {
public function execute() {
$request = $this->getContext()->getRequest();
$this->setAttribute("id",$request->getAttribute("id"));
$this->setAttribute("sx_id",$request->getAttribute("sx_id"));
$this->setAttribute("product_title",$request->getAttribute("product_title"));
$this->setAttribute("bargain_price",$request->getAttribute("bargain_price"));
$this->setAttribute("can_num",$request->getAttribute("can_num"));
$this->setAttribute("parameter",$request->getAttribute("parameter"));
$this->setAttribute("price",$request->getAttribute("price"));
$this->setTemplate("bargain.tpl");
}
}
?>