@bee-hole/server 1.79.0 → 1.80.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/storage/patch/patch.sql +3 -3
- package/version +1 -1
package/package.json
CHANGED
package/storage/patch/patch.sql
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
DELETE FROM `admin_menu` WHERE
|
|
2
|
-
DELETE FROM `admin_menu` WHERE
|
|
1
|
+
DELETE FROM `admin_menu` WHERE `name`='app.menus.left.item.alibaba';
|
|
2
|
+
DELETE FROM `admin_menu` WHERE `name`='app.menus.left.item.gigab2b';
|
|
3
3
|
|
|
4
4
|
INSERT INTO `admin_menu` (`pid`, `name`, `code`, `icon`, `type`, `perms`, `path`, `component`, `query`, `is_frame`, `is_cache`, `is_visible`, `remark`, `level`, `tree`, `sort`, `status`, `created_at`, `updated_at`) VALUES ('0', 'app.menus.left.goodsSource', 'goodsSource', 'bank', 'M', '', '/goodsSource', '', '', '1', '2', '2', '', '1', '', '10', '1', '2024-09-02 02:56:29', '2024-09-02 02:56:49');
|
|
5
5
|
INSERT INTO `admin_menu` (`pid`, `name`, `code`, `icon`, `type`, `perms`, `path`, `component`, `query`, `is_frame`, `is_cache`, `is_visible`, `remark`, `level`, `tree`, `sort`, `status`, `created_at`, `updated_at`) VALUES ('2166', 'app.menus.left.goodsSource.gigab2b', 'gigab2b', 'shop', 'C', '', 'gigab2b', 'goodsSource/gigab2b/index', '', '1', '2', '2', '', '2', '', '12', '1', '2024-08-28 00:21:30', '2024-09-02 03:02:02');
|
|
6
6
|
INSERT INTO `admin_menu` (`pid`, `name`, `code`, `icon`, `type`, `perms`, `path`, `component`, `query`, `is_frame`, `is_cache`, `is_visible`, `remark`, `level`, `tree`, `sort`, `status`, `created_at`, `updated_at`) VALUES ('2166', 'app.menus.left.goodsSource.alibaba', 'search-alibaba', 'shop', 'C', '', 'searchalibaba', 'goodsSource/alibaba/index', '', '1', '2', '2', '', '2', '', '12', '1', '2024-06-20 06:44:02', '2024-09-02 03:01:56');
|
|
7
7
|
INSERT INTO `admin_menu` (`pid`, `name`, `code`, `icon`, `type`, `perms`, `path`, `component`, `query`, `is_frame`, `is_cache`, `is_visible`, `remark`, `level`, `tree`, `sort`, `status`, `created_at`, `updated_at`) VALUES ('2166', 'app.menus.left.goodsSource.beehole', 'beehole-goods', 'shop', 'C', '', 'beehole', 'goodsSource/beehole/index', '', '1', '2', '2', '', '2', '', '20', '1', '2024-09-02 03:54:14', '2024-09-02 03:54:14');
|
|
8
8
|
|
|
9
|
-
ALTER TABLE `mall_scats` ADD COLUMN `is_rich_text`
|
|
9
|
+
ALTER TABLE `mall_scats` ADD COLUMN `is_rich_text` int(1) NOT NULL DEFAULT 0 COMMENT '是否富文本 0=>否 1=>是' AFTER `deduction_ratio`;
|
|
10
10
|
ALTER TABLE `mall_good_info_values` MODIFY COLUMN `value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '产品参数值' AFTER `good_id`;
|
|
11
11
|
|
|
12
12
|
UPDATE `admin_configs` SET `value` = '[\"/member/captcha\",\"/member/login\",\"/member/register\",\"/member/logout\",\"/good/list\",\"/good/info\",\"/shop/view\",\"/cat/list\",\"/standard/cat\",\"/config/list\",\"/config/all\",\"/article/list\",\"/article/get\",\"/article/cat/list\",\"/article/new-list\",\"/good/same/cat\",\"/review/list\",\"/order/query\",\"/order/payment\",\"/shop/view\",\"/shop-config/get\",\"/shop-config/all\",\"/sitemap.xml\",\"/member/phone/verify\",\"/member/email/verify\",\"/guest/login\",\"/guest/make/key\",\"/guest/get/token\",\"/mall/product/search\",\"/good/wholesale/get\"]' WHERE `admin_configs`.`name` = 'router.mall.exceptLogin';
|
package/version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
v1.
|
|
1
|
+
v1.80.0
|