@@ -31,6 +31,11 @@ class PtItemController extends BaseController
if (!empty($classId)) {
$where['classId'] = $classId;
}
+ //是否显示复制的花材
+ $copy = Yii::$app->request->get('copy', '');
+ if (is_numeric($copy)) {
+ $where['copy'] = $copy;
+ }
//没有删除的花材
$where['delStatus'] = 0;
$sjId = $this->sjId;