|
...
|
...
|
@@ -45,8 +45,14 @@ class Extension3059ModuleController extends BaseController |
|
|
|
$searchParam = [
|
|
|
|
'module_id'=>$this->param['module_id'],
|
|
|
|
];
|
|
|
|
if(isset($this->param['uuid'])){
|
|
|
|
$moduleValueModel = new ExtensionModuleValue();
|
|
|
|
if(isset($this->param['product_id'])){
|
|
|
|
$searchParam['uuid'] = $this->param['uuid'];
|
|
|
|
$info = $moduleValueModel->read(['product_id'=>$this->param['product_id']]);
|
|
|
|
if($info === false){
|
|
|
|
$this->response('success');
|
|
|
|
}
|
|
|
|
$searchParam['uuid'] = $info['uuid'];
|
|
|
|
}
|
|
|
|
$data = [];
|
|
|
|
$filedData = $this->getFiledList();
|
...
|
...
|
|