admin/app/event/AddStoreDiyView.php

113 lines
4.0 KiB
PHP

<?php
/**
* ThinkShop商城系统 - 团队十年电商经验汇集巨献!
* =========================================================
* Copy right 2019-2029 成都云之牛科技有限公司, 保留所有权利。
* ----------------------------------------------
* 官方网址: https://www.cdcloudshop.com
* =========================================================
*/
namespace app\event;
use app\model\web\DiyView as DiyViewModel;
/**
* 增加默认自定义数据:门店主页
*/
class AddStoreDiyView
{
public function handle($param)
{
if (!empty($param[ 'site_id' ]) && addon_is_exit('store', $param[ 'site_id' ])) {
$diy_view_model = new DiyViewModel();
// 添加自定义主页装修
$value = json_encode(
[
"global" => [
"title" => "门店详情",
"pageBgColor" => "#F5F6FA",
"topNavColor" => "#FFFFFF",
"topNavBg" => false,
"navBarSwitch" => true,
"textNavColor" => "#333333",
"topNavImg" => "",
"moreLink" => [
"name" => ""
],
"openBottomNav" => true,
"navStyle" => 1,
"textImgPosLink" => "center",
"mpCollect" => false,
"popWindow" => [
"imageUrl" => "",
"count" => -1,
"show" => 0,
"link" => [
"name" => ""
],
"imgWidth" => "",
"imgHeight" => ""
],
"bgUrl" => "",
"imgWidth" => "",
"imgHeight" => "",
"template" => [
"pageBgColor" => "",
"textColor" => "#303133",
"componentBgColor" => "",
"componentAngle" => "round",
"topAroundRadius" => 0,
"bottomAroundRadius" => 0,
"elementBgColor" => "",
"elementAngle" => "round",
"topElementAroundRadius" => 0,
"bottomElementAroundRadius" => 0,
"margin" => [
"top" => 0,
"bottom" => 0,
"both" => 12
]
]
],
"value" => [
[
"id" => "7h2wl2fl1y40",
"componentName" => "StoreInfo",
"componentTitle" => "门店信息",
"isDelete" => 0,
"pageBgColor" => "",
"topAroundRadius" => 0,
"bottomAroundRadius" => 0,
"elementBgColor" => "",
"topElementAroundRadius" => 0,
"bottomElementAroundRadius" => 0,
"margin" => [
"top" => 20,
"bottom" => 0,
"both" => 12
]
]
]
]
);
// 门店主页
$data = [
'site_id' => $param[ 'site_id' ],
'title' => '门店主页',
'name' => 'DIY_STORE',
'is_default' => 1,
'value' => $value
];
$res = $diy_view_model->addSiteDiyView($data);
return $res;
}
}
}