// +----------------------------------------------------------------------
// | 主机管理 By Bty5.0
// +----------------------------------------------------------------------
// | Copyright (c) 2020 https://www.youngxj.cn
// +----------------------------------------------------------------------
// | Author: Youngxj 1170535111@qq.com
// +--------------------------------------------------------------------
更新时间:
2020年5月31日
发布人:
Youngxj
更新介绍:
- 修复控制台服务器操作
- 修复自定义产品续费处理按钮
- 修复工单费用相关、账号相关无法提交工单
- 修复后台主机批量操作按钮报错
- 更新文章链接伪静态
- 新增模版管理(在线模版开发请参考《Bty5模版教程》)
- 更多细节优化
截图

更新方式:
sql:
仅供参考,请勿直接执行
INSERT INTO `__db_prefix__auth_rule` (`type`, `pid`, `name`, `title`, `icon`, `condition`, `remark`, `ismenu`, `createtime`, `updatetime`, `weigh`, `status`) VALUES ('file', '2', 'general/theme', '模版管理', 'fa fa-html5', '', '', '1', '1590893436', '1590893436', '0', 'normal');
DROP TABLE IF EXISTS `__db_prefix__theme`;
CREATE TABLE `__db_prefix__theme` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL COMMENT '主题名称',
`type` enum('index','user','vhost') NOT NULL COMMENT '主体模版类型',
`status` enum('0','1') DEFAULT '0' COMMENT '是否启用',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='模版主题';
INSERT INTO `__db_prefix__theme` VALUES ('1', 'Hustbe', 'index', '1');
INSERT INTO `__db_prefix__theme` VALUES ('2', 'Hustbe', 'user', '1');
涉及文件: