初始上传

This commit is contained in:
2026-04-04 17:27:12 +08:00
parent 4d80d28eb4
commit b7e11774ee
11191 changed files with 1588469 additions and 0 deletions

View File

@@ -0,0 +1,83 @@
<?php
/**
* Niushop商城系统 - 团队十年电商经验汇集巨献!
* =========================================================
* Copy right 2019-2029 杭州牛之云科技有限公司, 保留所有权利。
* ----------------------------------------------
* 官方网址: https://www.niushop.com
* =========================================================
*/
return [
// 自定义模板页面类型,格式:[ 'title' => '页面类型名称', 'name' => '页面标识', 'path' => '页面路径', 'value' => '页面数据json格式' ]
'template' => [],
// 后台自定义组件——装修
'util' => [
[
'name' => 'Pintuan',
'title' => '拼团',
'type' => 'PROMOTION',
'value' => '{"style":"style-1","sources":"initial","count":6,"goodsId":[],"ornament":{"type":"default","color":"#EDEDED"},"nameLineMode":"single","template":"horizontal-slide","btnStyle":{"text":"去拼团","textColor":"#FFFFFF","theme":"default","aroundRadius":25,"control":false,"support":false,"bgColorStart":"#FF1544","bgColorEnd":"#FF1544"},"imgAroundRadius":10,"saleStyle":{"color":"#FF1544","control":false,"support":false},"slideMode":"scroll","theme":"default","goodsNameStyle":{"color":"#303133","control":true,"fontWeight":false},"priceStyle":{"mainColor":"#FF1544","mainControl":true,"lineColor":"#999CA7","lineControl":true,"lineSupport":true},"titleStyle":{"virtualNum": 999,"bgColorStart":"#6236FF","bgColorEnd":"#0091FF","isShow":true,"leftStyle":"img","leftImg":"addon/pintuan/component/view/pintuan/img/horizontal_slide_name.png","style":"style-1","styleName":"风格1","leftText":"超值拼团","fontSize":16,"fontWeight":true,"textColor":"#FFFFFF","more":"查看更多","moreColor":"#FFFFFF","moreFontSize":12,"backgroundImage":"addon/pintuan/component/view/pintuan/img/horizontal_slide_bg.png"},"goodsMarginType":"default","goodsMarginNum":10,"groupStyle":{"color":"#FFFFFF","control":true,"support":true,"bgColorStart":"#FA2379","bgColorEnd":"#FF4F61"}}',
'sort' => '30001',
'support_diy_view' => '',
'max_count' => 0,
'icon' => 'iconfont iconpintuan1'
]
],
// 自定义页面路径
'link' => [
[
'name' => 'PINTUAN',
'title' => '拼团',
'parent' => 'MARKETING_LINK',
'wap_url' => '',
'web_url' => '',
'sort' => 0,
'child_list' => [
[
'name' => 'PINTUAN_PREFECTURE',
'title' => '拼团专区',
'wap_url' => '/pages_promotion/pintuan/list',
'web_url' => '',
'sort' => 0
],
[
'name' => 'MY_PINTUAN',
'title' => '我的拼团',
'wap_url' => '/pages_promotion/pintuan/my_spell',
'web_url' => '',
'sort' => 0
],
]
],
[
'name' => 'PINTUAN_GOODS',
'title' => '拼团商品',
'parent' => 'COMMODITY',
'wap_url' => '',
'web_url' => '',
'child_list' => []
],
],
// 自定义图标库
'icon_library' => [],
// uni-app 组件,格式:[ 'name' => '组件名称/文件夹名称', 'path' => '文件路径/目录路径' ]多个逗号隔开自定义组件名称前缀必须是diy-,也可以引用第三方组件
'component' => [],
// uni-app 页面,多个逗号隔开
'pages' => [],
// 模板信息,格式:'title' => '模板名称', 'name' => '模板标识', 'cover' => '模板封面图', 'preview' => '模板预览图', 'desc' => '模板描述'
'info' => [],
// 主题风格配色格式可以自由定义扩展【在uni-app中通过this.themeStyle... 获取定义的颜色字段例如this.themeStyle.main_color】
'theme' => [],
// 自定义页面数据,格式:[ 'title' => '页面名称', 'name' => "页面标识", 'value' => [页面数据json格式] ]
'data' => []
];

78
addon/pintuan/config/event.php Executable file
View File

@@ -0,0 +1,78 @@
<?php
// 事件定义文件
return [
'bind' => [
],
'listen' => [
//展示活动
'ShowPromotion' => [
'addon\pintuan\event\ShowPromotion',
],
//订单支付事件
'OrderPay' => [
'addon\pintuan\event\OrderPay',
],
'OrderClose' => [
'addon\pintuan\event\OrderClose',
],
'PromotionType' => [
'addon\pintuan\event\PromotionType',
],
//开启拼团活动
'OpenPintuan' => [
'addon\pintuan\event\OpenPintuan',
],
//关闭拼团活动
'ClosePintuan' => [
'addon\pintuan\event\ClosePintuan',
],
//关闭拼团组
'ClosePintuanGroup' => [
'addon\pintuan\event\ClosePintuanGroup',
],
// 商品营销活动类型
'GoodsPromotionType' => [
'addon\pintuan\event\GoodsPromotionType',
],
// 商品营销活动信息
'GoodsPromotion' => [
'addon\pintuan\event\GoodsPromotion',
],
// 商品列表
'GoodsListPromotion' => [
'addon\pintuan\event\GoodsListPromotion',
],
// 商品列表
'GoodsListCategoryIds' => [
'addon\pintuan\event\GoodsListCategoryIds',
],
// 订单营销活动类型
'OrderPromotionType' => [
'addon\pintuan\event\OrderPromotionType',
],
/**
* 消息发送
*/
//消息模板
'SendMessageTemplate' => [
//拼团成功
'addon\pintuan\event\MessagePintuanComplete',
//拼团失败
'addon\pintuan\event\MessagePintuanFail',
],
// 活动专区——拼团页面配置
'PromotionZoneConfig' => [
'addon\pintuan\event\PintuanZoneConfig',
]
],
'subscribe' => [
],
];

20
addon/pintuan/config/info.php Executable file
View File

@@ -0,0 +1,20 @@
<?php
/**
* Niushop商城系统 - 团队十年电商经验汇集巨献!
* =========================================================
* Copy right 2019-2029 杭州牛之云科技有限公司, 保留所有权利。
* ----------------------------------------------
* 官方网址: https://www.niushop.com
* =========================================================
*/
return [
'name' => 'pintuan',
'title' => '拼团',
'description' => '拼团管理活动',
'type' => 'promotion', //插件类型 system :系统插件(自动安装), promotion:扩展营销插件 tool:工具插件
'status' => 1,
'author' => '',
'version' => '5.5.3',
'version_no' => '553250709001',
'content' => '',
];

View File

@@ -0,0 +1,84 @@
<?php
// +----------------------------------------------------------------------
// | 店铺端菜单设置
// +----------------------------------------------------------------------
return [
[
'name' => 'PROMOTION_PINTUAN',
'title' => '拼团',
'url' => 'pintuan://shop/pintuan/lists',
'parent' => 'PROMOTION_CENTER',
'is_show' => 1,
'sort' => 100,
'child_list' => [
[
'name' => 'PROMOTION_PINTUAN_LIST',
'title' => '拼团商品',
'url' => 'pintuan://shop/pintuan/lists',
'is_show' => 1,
'child_list' => [
[
'name' => 'PROMOTION_PINTUAN_ADD',
'title' => '添加商品',
'url' => 'pintuan://shop/pintuan/add',
'sort' => 1,
'is_show' => 0,
'type' => 'button',
],
[
'name' => 'PROMOTION_PINTUAN_EDIT',
'title' => '编辑商品',
'url' => 'pintuan://shop/pintuan/edit',
'sort' => 1,
'is_show' => 0,
'type' => 'button',
],
[
'name' => 'PROMOTION_PINTUAN_DETAIL',
'title' => '拼团详情',
'url' => 'pintuan://shop/pintuan/detail',
'sort' => 1,
'is_show' => 0,
'type' => 'button',
],
[
'name' => 'PROMOTION_PINTUAN_DELETE',
'title' => '删除商品',
'url' => 'pintuan://shop/pintuan/delete',
'sort' => 1,
'is_show' => 0,
'type' => 'button',
],
[
'name' => 'PROMOTION_PINTUAN_INVALID',
'title' => '结束活动',
'url' => 'pintuan://shop/pintuan/invalid',
'sort' => 1,
'is_show' => 0,
'type' => 'button',
],
]
],
[
'name' => 'PROMOTION_PINTUAN_GROUP',
'title' => '拼团列表',
'url' => 'pintuan://shop/pintuan/group',
'parent' => 'PROMOTION_PINTUAN',
'is_show' => 1,
'child_list' => [
[
'name' => 'PROMOTION_PINTUAN_GROUP_ORDER',
'title' => '拼团组订单列表',
'url' => 'pintuan://shop/pintuan/groupOrder',
'sort' => 1,
'is_show' => 0,
'type' => 'button',
],
]
],
]
],
];