作者 lyh

gx

... ... @@ -161,6 +161,7 @@ class SyncProject extends Command
'channel' => Channel::getProjectChannel($param['company_id'], $param['username_sales']),
'requirement' => $param['remark'],
'cooperate_date' => date('Y-m-d', $param['create_time']),
'from_order_id'=>$param['from_order_id']
],
'deploy_build' => [
'service_duration' => $param['years'],
... ...
... ... @@ -271,12 +271,12 @@ class LoginController extends BaseController
$image_info = $imageModel->read(['hash'=>$srcValue]);
if($image_info !== false){
$path = $image_info['path'];
$data['html'] = str_replace(
$v['html'] = str_replace(
'/a/image/'.$srcValue,
$path,
$v['html']
);
$templateModel->edit(['html'=>$data['html']],['id'=>$v['id']]);
$templateModel->edit(['html'=>$v['html']],['id'=>$v['id']]);
}
}
}
... ...