diff --git a/app/controllers/admins/subjects_controller.rb b/app/controllers/admins/subjects_controller.rb
index ed84fcb84..88f3ca527 100644
--- a/app/controllers/admins/subjects_controller.rb
+++ b/app/controllers/admins/subjects_controller.rb
@@ -49,7 +49,7 @@ class Admins::SubjectsController < Admins::BaseController
# 设为金课
def excellent
- current_subject.update!(excellent: true)
+ current_subject.update!(excellent: true, public: 2)
render_ok
end
diff --git a/app/helpers/admins/subjects_helper.rb b/app/helpers/admins/subjects_helper.rb
index b2c1dbd55..236bf723f 100644
--- a/app/helpers/admins/subjects_helper.rb
+++ b/app/helpers/admins/subjects_helper.rb
@@ -1,11 +1,22 @@
module Admins::SubjectsHelper
def display_subject_status(subject)
style =
- case subject.status
+ case subject.public
when 0 then 'text-secondary'
when 1 then 'text-warning'
when 2 then 'text-success'
end
- raw content_tag(:span, t("subject.public.#{subject.public}"), class: style)
+
+ status =
+ if subject.public == 2
+ "publiced"
+ elsif subject.public == 1
+ "pending"
+ elsif subject.status == 2
+ "processed"
+ else
+ "editing"
+ end
+ raw content_tag(:span, t("subject.public.#{status}"), class: style)
end
end
\ No newline at end of file
diff --git a/app/helpers/subjects_helper.rb b/app/helpers/subjects_helper.rb
index 72154b0a8..fb2246a50 100644
--- a/app/helpers/subjects_helper.rb
+++ b/app/helpers/subjects_helper.rb
@@ -1,12 +1,23 @@
module SubjectsHelper
# 实训路径的发布状态
- def publish_status subject, is_manager, user
+ def publish_status subject, is_manager
status = -1
if is_manager
status = 0 if subject.status == 0
status = 1 if subject.status == 1
- status = 2 if subject.status == 2 && user.admin?
+ status = 2 if subject.status == 2
+ end
+ status
+ end
+
+ # 实训路径的公开状态
+ def public_status subject, is_manager, user
+ status = -1
+ if is_manager
+ status = 0 if subject.public == 0
+ status = 1 if subject.public == 1
+ status = 2 if subject.public == 2 && user.admin?
end
status
end
diff --git a/app/queries/admins/subject_query.rb b/app/queries/admins/subject_query.rb
index ba410312f..dc459885b 100644
--- a/app/queries/admins/subject_query.rb
+++ b/app/queries/admins/subject_query.rb
@@ -16,12 +16,14 @@ class Admins::SubjectQuery < ApplicationQuery
# 状态过滤
status =
- case params[:status].to_s.strip
- when 'pending' then 0
- when 'applying' then 1
- when 'published' then 2
- end
- subjects = subjects.where(public: status) if status
+ case params[:status].to_s.strip
+ when "editing" then {status: 0}
+ when "processed" then {status: 2, public: 0}
+ when "pending" then {public: 1}
+ when "publiced" then {public: 2}
+ end
+
+ subjects = subjects.where(status) if status
# 创建者单位
if params[:school_id].present?
diff --git a/app/services/search_service.rb b/app/services/search_service.rb
index a45875e07..8914bde88 100644
--- a/app/services/search_service.rb
+++ b/app/services/search_service.rb
@@ -41,7 +41,8 @@ class SearchService < ApplicationService
when 'shixun' then
{ where: { id: Laboratory.current.shixuns.where(public: 2, status: 2, fork_from: nil).or(Laboratory.current.shixuns.where(status: 2, id: User.current.shixuns)).pluck(:id) } }
when 'subject' then
- { where: { id: Laboratory.current.subjects.pluck(:id) } }
+ { where: { id: Laboratory.current.subjects.where(public: 2, status: 2)
+ .or( Laboratory.current.subjects.where(status: 2, id: User.current.subjects)).pluck(:id) } }
when 'course' then
{ where: { id: Laboratory.current.all_courses.pluck(:id) } }
else
diff --git a/app/services/subject_search_service.rb b/app/services/subject_search_service.rb
index 9c2776beb..dc5b069a5 100644
--- a/app/services/subject_search_service.rb
+++ b/app/services/subject_search_service.rb
@@ -17,9 +17,12 @@ class SubjectSearchService < ApplicationService
if type == "mine"
@subjects = @subjects.where(id: User.current.subjects).visible.unhidden
else
- @subjects = @subjects.visible.unhidden
+ if User.current.admin? || User.current.business?
+ @subjects = @subjects.unhidden
+ else
+ @subjects = @subjects.publiced.unhidden.or(@subjects.where(id: User.current.subjects))
+ end
end
-
Subject.search(keyword, search_options)
end
diff --git a/app/services/users/subject_service.rb b/app/services/users/subject_service.rb
index 53ff3f4b9..d0b995c8e 100644
--- a/app/services/users/subject_service.rb
+++ b/app/services/users/subject_service.rb
@@ -70,12 +70,21 @@ class Users::SubjectService
end
def manage_subject_status_filter(relations)
- status = case params[:status]
- when 'editing' then 0
- when 'applying' then 1
- when 'published' then 2
- end
- relations = relations.where(status: status) if status
+ if params[:status] == "publiced"
+ relations = relations.where(public: 2)
+ elsif params[:status] == "applying"
+ relations = relations.where(public: 1)
+ else
+ status = case params[:status]
+ when 'editing' then
+ 0
+ when 'applying' then
+ 1
+ when 'published' then
+ 2
+ end
+ relations = relations.where(status: status) if status
+ end
relations
end
diff --git a/app/views/admins/subjects/index.html.erb b/app/views/admins/subjects/index.html.erb
index 8b5569761..39c4a349b 100644
--- a/app/views/admins/subjects/index.html.erb
+++ b/app/views/admins/subjects/index.html.erb
@@ -6,7 +6,7 @@
<%= form_tag(admins_subjects_path, method: :get, class: 'form-inline search-form flex-1', remote: true) do %>
状态:
- <% status_options = [['全部', ''], ['编辑中', 'pending'], ['审核中', 'applying'], ['已发布', 'published']] %>
+ <% status_options = [['全部', ''], ["编辑中", "editing"], ["已发布", 'processed'], ["待审核", 'pending'], ["已公开", 'publiced']] %>
<%= select_tag(:status, options_for_select(status_options), class: 'form-control') %>
diff --git a/app/views/subjects/publish.json.jbuilder b/app/views/subjects/publish.json.jbuilder
index 813c3391c..fdb4b43da 100644
--- a/app/views/subjects/publish.json.jbuilder
+++ b/app/views/subjects/publish.json.jbuilder
@@ -1,2 +1,2 @@
json.status 0
-json.message "申请成功"
\ No newline at end of file
+json.message "发布成功"
\ No newline at end of file
diff --git a/app/views/subjects/show.json.jbuilder b/app/views/subjects/show.json.jbuilder
index 49ad55517..d25437f0a 100644
--- a/app/views/subjects/show.json.jbuilder
+++ b/app/views/subjects/show.json.jbuilder
@@ -6,7 +6,8 @@ json.subject_score @subject.all_score
json.member_count @subject.member_count
json.allow_delete (@subject.status != 2 && @is_creator) || @user.admin?
-json.publish_status publish_status(@subject, @is_manager, @user)
+json.publish_status publish_status(@subject, @is_manager)
+json.public_status public_status(@subject, @is_manager, @user)
json.allow_statistics @is_manager
json.allow_send @user.logged?
json.allow_visit @subject.status > 1 || @is_manager
diff --git a/config/locales/subjects/zh-CN.yml b/config/locales/subjects/zh-CN.yml
index 55d3dd9c0..718cc62b4 100644
--- a/config/locales/subjects/zh-CN.yml
+++ b/config/locales/subjects/zh-CN.yml
@@ -5,6 +5,7 @@
'1': 审核中
'2': 已发布
public:
- '0': 编辑中
- '1': 审核中
- '2': 已发布
\ No newline at end of file
+ 'editing': 编辑中
+ 'processed': 已发布
+ 'pending': 审核中
+ 'publiced': 已公开
\ No newline at end of file
diff --git a/public/react/public/css/demo_index.html b/public/react/public/css/demo_index.html
index fb3262fd4..fb08bc9cf 100644
--- a/public/react/public/css/demo_index.html
+++ b/public/react/public/css/demo_index.html
@@ -31,189 +31,195 @@
-
- round_close
- 
+
+ 播放
+ 
-
- time_fill
- 
+
+ 笔
+ 
-
- round_add_fill
- 
+
+ 警告
+ 
-
- 粗版2_上传云端
- 
+
+ 路标
+ 
-
- css3
- 
+
+ 日历
+ 
-
- html5
- 
+
+ 编辑
+ 
-
- 钻石
- 
+
+ 已关闭
+ 
-
- 章节
- 
+
+ 已关闭
+ 
-
- 关闭
- 
+
+ 垃圾桶
+ 
-
- 社区
- 
+
+ 点击量
+ 
-
- 禁止
- 
+
+ 播放
+ 
-
- vs
- 
+
+ 初始化
+ 
-
- 菜单
- 
+
+ 测试集
+ 
-
- pdf
- 
+
+ 过滤器
+ 
-
- 单选 选中
- 
+
+ 加上2
+ 
-
- 时间
- 
+
+ 减去2
+ 
-
- 设置
- 
+
+ 加上
+ 
-
- 坐标
- 
+
+ 减去
+ 
-
- 礼物
- 
+
+ 删除
+ 
-
- PHP开发
- 
+
+ 试卷
+ 
-
- 附件
- 
+
+ 左右拖动
+ 
-
- linux
- 
+
+ 上下拖动
+ 
-
- 问号
- 
+
+ 编组
+ 
-
- 坐标
- 
+
+ 复制
+ 
-
- expand
- 
+
+ 减号
+ 
-
- 重置
- 
+
+ 试题栏
+ 
-
- 浏览
- 
+
+ 删除
+ 
-
- 路由
- 
+
+ 解析
+ 
-
- 点赞2
- 
+
+ 公开
+ 
-
- 复制
- 
+
+ 编辑
+ 
-
- 点赞1
- 
+
+ 放大
+ 
+
+
+
+
+ 缩小
+ 
@@ -223,381 +229,417 @@
-
- 三角形-up
- 
+
+ 向上 箭头
+ 
-
- 三角形-down
- 
+
+ SDK问题
+ 
-
- 认证信息
- 
+
+ 创建者
+ 
-
- 关注
- 
+
+ 书
+ 
-
- 礼物
- 
+
+ 标签
+ 
-
- 消息
- 
+
+ 记录
+ 
-
- 邮件
- 
+
+ 推荐
+ 
-
- compress
- 
+
+ 警告
+ 
-
- 代码配置r
- 
+
+ 点赞
+ 
-
- 提示
- 
+
+ 评论
+ 
-
- net
- 
+
+ 对勾
+ 
-
- edit
- 
+
+ 提示
+ 
-
- 显示
- 
+
+ 编辑_Hover
+ 
-
- 锁
- 
+
+ 上移_Hover
+ 
-
- 减
- 
-
+
+ 删除_默认
+ 
+
-
- 消息
- 
+
+ 下移_Hover
+ 
-
- 下载
- 
+
+ 删除_Hover
+ 
-
- 撤销
- 
+
+ 下移_默认
+ 
-
- qq
- 
+
+ 编辑_默认
+ 
-
- 标签
- 
+
+ 恢复初始代码
+ 
-
- 大数据存储
- 
+
+ 再次载入
+ 
-
- 关注
- 
+
+ 开关
+ 
-
- 喇叭
- 
+
+ 目录
+ 
-
- mstest
- 
+
+ 缩小
+ 
-
- 添加成员
- 
+
+ 扩大
+ 
-
- 隐藏
- 
+
+ 设置
+ 
-
- 三角形
- 
+
+ 隐藏
+ 
-
- 旗帜
- 
+
+ 消息
+ 
-
- CSDN
- 
+
+ 金币
+ 
-
- 用户、角色_无数据
- 
+
+ 显示密码
+ 
-
- 模板
- 
+
+ 隐藏密码
+ 
-
- VPN
- 
+
+ 复制
+ 
-
- 加
- 
+
+ 文件
+ 
-
- 银行卡
- 
+
+ 文件夹
+ 
-
- 微博
- 
+
+ 上传
+ 
-
- 无
- 
+
+ 挑战
+ 
-
- 课程
- 
+
+ 右滑
+ 
-
- 设置
- 
+
+ 解锁
+ 
-
- 成功
- 
+
+ 锁
+ 
-
- 三点
- 
+
+ 搜索
+ 
-
- gs-beixiao-icon-基本信息
- 
+
+ 笔记
+ 
-
- 博客园
- 
+
+ 置顶
+ 
-
- base
- 
+
+ 类型
+ 
-
- 微信
- 
+
+ 标签尖头
+ 
-
- Stack Overflow
- 
+
+ 加载失败
+ 
-
- 重置
- 
+
+ 企业账号
+ 
-
- 活动
- 
+
+ 个人账号
+ 
-
- 隐藏
- 
+
+ 省略号
+ 
-
- 电话
- 
+
+ 上箭头-填充
+ 
-
- 位置
- 
+
+ 完成
+ 
-
- jquery
- 
+
+ 禁止
+ 
-
- docker
- 
+
+ 标签
+ 
-
- python
- 
+
+ 记录
+ 
-
- php
- 
+
+ 书
+ 
-
- SDK问题
- 
+
+ 推荐
+ 
-
- 银行卡
- 
+
+ 创建者
+ 
-
- linkedin
- 
+
+ 绑定手机号
+ 
-
- 文件夹
- 
+
+ 浏览
+ 
-
- SQL server
- 
+
+ 评论
+ 
-
- 质量分析
- 
+
+ 博客园
+ 
-
- 上传图片
- 
+
+ 关注
+ 
-
- 登录Ip监控
- 
+
+ 关注
+ 
-
- itsm3-流程管理
- 
+
+ 统计
+ 
+
+
+
+
+ 主页
+ 
+
+
+
+
+ 复制
+ 
+
+
+
+
+ project@1x
+ 
+
+
+
+
+ hosting@1x
+ 
+
+
+
+
+ community@1x
+ 
+
+
+
+
+ detection@1x
+ 
@@ -607,591 +649,591 @@
-
- 分支
- 
+
+ nenghaofenxi@1x
+ 
-
- 网址克隆
- 
+
+ healthmode
+ 
-
- 下载
- 
+
+ 社区
+ 
-
- 代码
- 
+
+ 工程
+ 
-
- 提交记录
- 
+
+ 单选 选中
+ 
-
- 选择题
- 
+
+ 活动
+ 
-
- 编辑
- 
+
+ menu_3voucher
+ 
-
- 向上
- 
+
+ menu_3events
+ 
-
- 删除掉
- 
+
+ menu_4map
+ 
-
- 新建
- 
+
+ menu_people1
+ 
-
- 上升排序
- 
+
+ menu_5date1
+ 
-
- 奖励
- 
+
+ yunweijiankong
+ 
-
- 删除
- 
+
+ gongyiliucheng
+ 
-
- 隐藏闭眼
- 
+
+ zhiliangkongzhi
+ 
-
- 开锁
- 
+
+ shebeiguanli
+ 
-
- 关锁
- 
+
+ shengmingzhouqi
+ 
-
- 版本库
- 
+
+ 无权限
+ 
-
- issue
- 
+
+ 学习中心
+ 
-
- 上传图片
- 
+
+ 课程
+ 
-
- 测评
- 
+
+ 身份认证
+ 
-
- tpi消息提醒
- 
+
+ 实名认证
+ 
-
- qq在线咨询
- 
+
+ Page-1 (2)
+ 
-
- 二维码
- 
+
+ Page-3
+ 
-
- 意见反馈
- 
+
+ Page2
+ 
-
- 邮箱认证
- 
+
+ 消息
+ 
-
- 手机认证
- 
+
+ 编辑
+ 
-
+
职业认证
- 
+ 
-
- 身份认证
- 
+
+ 实名认证
+ 
-
- 评分
- 
+
+ 用户、角色_无数据
+ 
-
- 评分-线
- 
+
+ 排序
+ 
-
- 作业
- 
+
+ 无
+ 
-
- 提示错误
- 
+
+ 手机
+ 
-
- 资源
- 
+
+ 银行卡
+ 
-
- 提示
- 
+
+ 设置
+ 
-
- 成员
- 
+
+ 名片
+ 
-
- 公告
- 
+
+ 警告
+ 
-
- 点赞
- 
+
+ 隐藏
+ 
-
- 点赞-线
- 
+
+ 喇叭
+ 
-
- 返回上次代码
- 
+
+ 客户留言
+ 
-
- 重置
- 
+
+ 粗版2_上传云端
+ 
-
- 旋转
- 
+
+ 隐藏
+ 
-
- 实训
- 
+
+ 显示
+ 
-
- 缩小
- 
+
+ 认证信息
+ 
-
- 下箭头
- 
+
+ gs-beixiao-icon-基本信息
+ 
-
- 勾选
- 
+
+ 安全设置
+ 
-
- 浏览眼
- 
+
+ 模板
+ 
-
- 经验
- 
+
+ 下载
+ 
-
- 消息铃铛
- 
+
+ edit
+ 
-
- 实训关卡
- 
+
+ 添加成员
+ 
-
- 搜索
- 
+
+ 提示
+ 
-
- 发布
- 
+
+ 标签
+ 
-
- 添加 放大
- 
+
+ 三点
+ 
-
- 向下移动
- 
+
+ 复制
+ 
-
- 向上移动
- 
+
+ 章节
+ 
-
- 关闭
- 
+
+ 添加导航
+ 
-
- 毕业 [转换]
- 
+
+ 上传图片
+ 
-
- 睁眼
- 
+
+ pdf
+ 
-
- 回复
- 
+
+ 设置
+ 
-
- 文件
- 
+
+ 质量分析
+ 
-
- 展开
- 
+
+ 实训带背景
+ 
-
- 收缩
- 
+
+ 成功
+ 
-
- 左键头
- 
+
+ trustie
+ 
-
- 右键头
- 
+
+ 20从属连接
+ 
-
- 上键头
- 
+
+ 重置
+ 
-
- 编辑带背景
- 
+
+ 时间
+ 
-
- 播放
- 
+
+ qq
+ 
-
- 完成
- 
+
+ CSDN
+ 
-
- 分组作业
- 
+
+ 微博
+ 
-
- 普通作业
- 
+
+ 微信
+ 
-
- 设置
- 
+
+ Stack Overflow
+ 
-
- 问卷
- 
+
+ linkedin
+ 
-
- 讨论
- 
+
+ github
+ 
-
- 分班
- 
+
+ net
+ 
-
- 动态
- 
+
+ mstest
+ 
-
- 试卷
- 
+
+ vs
+ 
-
- 菜单
- 
+
+ base
+ 
-
- 成员管理
- 
+
+ 登录Ip监控
+ 
-
- 添加
- 
+
+ itsm3-流程管理
+ 
-
- 向下移
- 
+
+ reset
+ 
-
- 向上移
- 
+
+ 重置
+ 
-
- 更多
- 
+
+ 减
+ 
-
- reset
- 
+
+ time_fill
+ 
-
- 学院管理员
- 
+
+ 代码配置r
+ 
-
- 空星
- 
+
+ 路由
+ 
-
- 实星
- 
+
+ 智能监控体系
+ 
-
- 下降
- 
+
+ PHP开发
+ 
-
- 复制
- 
+
+ SQL server
+ 
-
- 更多
- 
+
+ mongodb
+ 
-
- 过滤器
- 
+
+ css3
+ 
-
- 20从属连接
- 
+
+ html5
+ 
-
- 手机
- 
+
+ linux
+ 
-
- 智能监控体系
- 
+
+ 大数据存储
+ 
-
- 新增提示
- 
+
+ VPN
+ 
-
- 完成勾选
- 
+
+ jquery
+ 
-
- java
- 
+
+ docker
+ 
-
- 下降
- 
+
+ python
+ 
-
- fork
- 
+
+ php
+ 
-
- 名片
- 
+
+ java
+ 
@@ -1201,699 +1243,711 @@
-
- 客户留言
- 
+
+ 位置
+ 
-
- github
- 
+
+ fork
+ 
-
- mongodb
- 
+
+ 加
+ 
-
- 安全设置
- 
+
+ 更多
+ 
-
- trustie
- 
+
+ 银行卡
+ 
-
- 无权限
- 
+
+ 坐标
+ 
-
- 实训带背景
- 
+
+ round_close
+ 
-
- 评论
- 
+
+ round_add_fill
+ 
-
- 减号
- 
+
+ 添加
+ 
-
- 工程
- 
+
+ 三角形
+ 
-
- 警告
- 
+
+ 锁
+ 
-
- 添加导航
- 
+
+ 毕业 [转换]
+ 
-
- 上箭头-填充
- 
+
+ 菜单
+ 
-
- 主页
- 
+
+ 问号
+ 
-
- yunweijiankong
- 
+
+ 钻石
+ 
-
- gongyiliucheng
- 
+
+ 旗帜
+ 
-
- zhiliangkongzhi
- 
+
+ 附件
+ 
-
- shebeiguanli
- 
+
+ 设置
+ 
-
- shengmingzhouqi
- 
+
+ 完成勾选
+ 
-
- 编辑
- 
+
+ 新增提示
+ 
-
- 省略号
- 
+
+ 关闭
+ 
-
- 排序
- 
+
+ 坐标
+ 
-
- 职业认证
- 
+
+ 邮件
+ 
-
- 实名认证
- 
+
+ 电话
+ 
-
- Page-1 (2)
- 
+
+ 三角形-down
+ 
-
- Page-3
- 
+
+ 三角形-up
+ 
-
- Page2
- 
+
+ 下降
+ 
-
- 身份认证
- 
+
+ 下降
+ 
-
- 实名认证
- 
+
+ 实星
+ 
-
- 学习中心
- 
+
+ 空星
+ 
+
+
+
+
+ 学院管理员
+ 
+
+
+
+
+ 更多
+ 
-
- 统计
- 
+
+ 向下移
+ 
-
- menu_3voucher
- 
+
+ 向上移
+ 
-
- menu_3events
- 
+
+ 成员管理
+ 
-
- menu_4map
- 
+
+ 菜单
+ 
-
- menu_5date1
- 
+
+ 试卷
+ 
-
- menu_people1
- 
+
+ 动态
+ 
-
- 向上 箭头
- 
+
+ 问卷
+ 
-
- healthmode
- 
+
+ 讨论
+ 
-
- nenghaofenxi@1x
- 
+
+ 分班
+ 
-
- detection@1x
- 
+
+ 普通作业
+ 
-
- community@1x
- 
+
+ 分组作业
+ 
-
- hosting@1x
- 
+
+ 编辑带背景
+ 
-
- project@1x
- 
+
+ 播放
+ 
-
- 绑定手机号
- 
+
+ 完成
+ 
-
- 标签
- 
+
+ 左键头
+ 
-
- 记录
- 
+
+ 右键头
+ 
-
- 书
- 
+
+ 上键头
+ 
-
- 推荐
- 
+
+ 展开
+ 
-
- 创建者
- 
+
+ 收缩
+ 
-
- 创建者
- 
+
+ 公告
+ 
-
- 书
- 
+
+ 文件
+ 
-
- 标签
- 
+
+ 回复
+ 
-
- 记录
- 
+
+ 分支
+ 
-
- 推荐
- 
+
+ 网址克隆
+ 
-
- 警告
- 
+
+ 下载
+ 
-
- 点赞
- 
+
+ 代码
+ 
-
- 评论
- 
+
+ 提交记录
+ 
-
- 对勾
- 
+
+ 选择题
+ 
-
- 提示
- 
+
+ 编辑
+ 
-
- 编辑_Hover
- 
+
+ 向上
+ 
-
- 上移_Hover
- 
+
+ 删除掉
+ 
-
- 删除_默认
- 
+
+ 上升排序
+ 
-
- 下移_Hover
- 
+
+ 版本库
+ 
-
- 删除_Hover
- 
+
+ issue
+ 
-
- 下移_默认
- 
+
+ 上传图片
+ 
-
- 编辑_默认
- 
+
+ 测评
+ 
-
- 恢复初始代码
- 
+
+ qq在线咨询
+ 
-
- 再次载入
- 
+
+ 二维码
+ 
-
- 开关
- 
+
+ 意见反馈
+ 
-
- 目录
- 
+
+ 邮箱认证
+ 
-
- 缩小
- 
+
+ 手机认证
+ 
-
- 扩大
- 
+
+ 职业认证
+ 
-
- 设置
- 
+
+ 身份认证
+ 
-
- 隐藏
- 
+
+ 评分
+ 
-
- 消息
- 
+
+ 评分-线
+ 
-
- 金币
- 
+
+ 作业
+ 
-
- 显示密码
- 
+
+ 提示错误
+ 
-
- 隐藏密码
- 
+
+ 资源
+ 
-
- 复制
- 
+
+ 提示
+ 
-
- 文件
- 
+
+ 成员
+ 
-
- 文件夹
- 
+
+ 旋转
+ 
-
- 上传
- 
+
+ 实训
+ 
-
- 挑战
- 
+
+ 缩小
+ 
-
- 完成
- 
+
+ 下箭头
+ 
-
- 企业账号
- 
+
+ 勾选
+ 
-
- 个人账号
- 
+
+ 浏览眼
+ 
-
- 右滑
- 
+
+ 经验
+ 
-
- 解锁
- 
+
+ 实训关卡
+ 
-
- 锁
- 
+
+ 发布
+ 
-
- 加载失败
- 
+
+ 向下移动
+ 
-
- 搜索
- 
+
+ 向上移动
+ 
-
- 类型
- 
+
+ 关闭
+ 
-
- 标签尖头
- 
+
+ 新建
+ 
-
- 笔记
- 
+
+ 消息铃铛
+ 
-
- 置顶
- 
+
+ 搜索
+ 
-
- 缩小
- 
+
+ 添加 放大
+ 
-
- 放大
- 
+
+ 奖励
+ 
-
- 编辑
- 
+
+ 删除
+ 
-
- 公开
- 
+
+ 隐藏闭眼
+ 
-
- 解析
- 
+
+ 开锁
+ 
-
- 删除
- 
+
+ 关锁
+ 
-
- 试题栏
- 
+
+ tpi消息提醒
+ 
-
- 复制
- 
+
+ 点赞
+ 
-
- 编组
- 
+
+ 点赞-线
+ 
-
- 左右拖动
- 
+
+ 返回上次代码
+ 
-
- 上下拖动
- 
+
+ 重置
+ 
-
- 试卷
- 
+
+ 睁眼
+ 
-
- 删除
- 
+
+ expand
+ 
-
- 减去
- 
+
+ compress
+ 
-
- 加上
- 
+
+ 礼物
+ 
-
- 减去2
- 
+
+ 点赞2
+ 
-
- 加上2
- 
+
+ 点赞1
+ 
-
- 初始化
- 
+
+ 礼物
+ 
-
- 测试集
- 
+
+ 消息
+ 
-
- 点击量
- 
+
+ 撤销
+ 
-
- 播放
- 
+
+ 文件夹
+ 
@@ -1947,281 +2001,290 @@
-
+
- round_close
+ 播放
- .icon-roundclose
+
.icon-bofang2
-
+
- time_fill
+ 笔
- .icon-timefill
+
.icon-weibiaoti1
-
+
- round_add_fill
+ 警告
- .icon-roundaddfill
+
.icon-jinggao2
-
+
- 粗版2_上传云端
+ 路标
- .icon-cuban2shangchuanyunduan
+
.icon-lubiaosignpost3
-
+
- css3
+ 日历
- .icon-css3
+
.icon-rili
-
+
- html5
+ 编辑
- .icon-html5
+
.icon-bianji3
-
+
- 钻石
+ 已关闭
- .icon-31
+
.icon-yiguanbi
-
+
- 章节
+ 已关闭
- .icon-zhangjie1
+
.icon-yiguanbi1
-
+
- 关闭
+ 垃圾桶
- .icon-htmal5icon19
+
.icon-lajitong
-
+
- 社区
+ 点击量
- .icon-shequ
+
.icon-dianjiliang
-
+
- 禁止
+ 播放
- .icon-jinzhi
+
.icon-bofang1
-
+
- vs
+ 初始化
- .icon-vs
+
.icon-chushihua
-
+
- 菜单
+ 测试集
- .icon-weibiaoti12
+
.icon-ceshiji
-
+
- pdf
+ 过滤器
- .icon-pdf
+
.icon-guolvqi
-
+
- 单选 选中
+ 加上2
- .icon-danxuanxuanzhong1
+
.icon-jiashang1
-
+
- 时间
+ 减去2
- .icon-shijian
+
.icon-jianqu1
-
+
- 设置
+ 加上
- .icon-shezhi
+
.icon-jiashang
-
+
- 坐标
+ 减去
- .icon-xiazai18
+
.icon-jianqu
-
+
- 礼物
+ 删除
- .icon-liwu
+
.icon-shanchu2
-
+
- PHP开发
+ 试卷
- .icon-phpkaifa
+
.icon-shijuan1
-
+
- 附件
+ 左右拖动
- .icon-fujian
+
.icon-zuoyoutuodong
-
+
- linux
+ 上下拖动
- .icon-linux
+
.icon-shangxiatuodong
-
+
- 问号
+ 编组
- .icon-wenhao
+
.icon-bianzu2
-
+
- 坐标
+ 复制
- .icon-zuobiao
+
.icon-fuzhi3
-
+
- expand
+ 减号
- .icon-expand
+
.icon-jianhao
-
+
- 重置
+ 试题栏
- .icon-zhongzhi1
+
.icon-shitilan
-
+
- 浏览
+ 删除
- .icon-liulan
+
.icon-shanchu1
-
+
- 路由
+ 解析
- .icon-luyou
+
.icon-jiexi
-
+
- 点赞2
+ 公开
- .icon-dianzan1
+
.icon-gongkai
-
+
- 复制
+ 编辑
- .icon-fuzhi
+
.icon-bianji2
-
+
- 点赞1
+ 放大
- .icon-dianzan11
+
.icon-fangda
+
+
+
+
+
+
+ 缩小
+
+ .icon-suoxiao2
@@ -2235,2513 +2298,2585 @@
-
+
- 三角形-up
+ 向上 箭头
+
+ .icon-changyongtubiao-xianxingdaochu-zhuanqu-
+
+
+
+
+
+
+ SDK问题
+
+ .icon-wenti
+
+
+
+
+
+
+ 创建者
+
+ .icon-chuangjianzhe1
+
+
+
+
+
+
+ 书
+
+ .icon-shu1
+
+
+
+
+
+
+ 标签
+
+ .icon-biaoqian2
+
+
+
+
+
+
+ 记录
+
+ .icon-jilu1
+
+
+
+
+
+
+ 推荐
+
+ .icon-tuijian1
+
+
+
+
+
+
+ 警告
+
+ .icon-jinggao1
+
+
+
+
+
+
+ 点赞
- .icon-sanjiaoxing-up
+
.icon-dianzan2
-
+
- 三角形-down
+ 评论
- .icon-sanjiaoxing-down
+
.icon-pinglun1
-
+
- 认证信息
+ 对勾
- .icon-renzhengxinxi
+
.icon-duigou
-
+
- 关注
+ 提示
- .icon-weibiaoti105
+
.icon-tishi2
-
+
- 礼物
+ 编辑_Hover
- .icon-gift
+
.icon-bianji_Hover
-
+
- 消息
+ 上移_Hover
- .icon-xiaoxi
+
.icon-shangyi_Hover
-
+
- 邮件
+ 删除_默认
- .icon-mail
+
.icon-shanchu_moren
-
+
- compress
+ 下移_Hover
- .icon-compress
+
.icon-xiayi_Hover
-
+
- 代码配置r
+ 删除_Hover
- .icon-daimapeizhir
+
.icon-shanchu_Hover
-
+
- 提示
+ 下移_默认
- .icon-tishi1
+
.icon-xiayi_moren
-
+
- net
+ 编辑_默认
- .icon-net
+
.icon-bianji_moren
-
+
- edit
+ 恢复初始代码
- .icon-edit
+
.icon-huifuchushidaima
-
+
- 显示
+ 再次载入
- .icon-xianshi
+
.icon-zaicizairu
-
+
- 锁
+ 开关
- .icon-suo
+
.icon-kaiguan
-
+
- 减
+ 目录
- .icon-default
+
.icon-mulu
-
+
- 消息
+ 缩小
- .icon-xiaoxi1
+
.icon-suoxiao1
-
+
- 下载
+ 扩大
- .icon-xiazai1
+
.icon-kuoda
-
+
- 撤销
+ 设置
- .icon-chexiao
+
.icon-shezhi3
-
+
- qq
+ 隐藏
- .icon-qq
+
.icon-yincang2
-
+
- 标签
+ 消息
- .icon-biaoqian
+
.icon-xiaoxi11
-
+
- 大数据存储
+ 金币
- .icon-dashujucunchu
+
.icon-bianzu1
-
+
- 关注
+ 显示密码
- .icon-guanzhu
+
.icon-xianshimima
-
+
- 喇叭
+ 隐藏密码
- .icon-laba
+
.icon-yincangmima
-
+
- mstest
+ 复制
- .icon-mstest
+
.icon-fuzhi2
-
+
- 添加成员
+ 文件
- .icon-tianjiachengyuan
+
.icon-xingzhuangjiehe
-
+
- 隐藏
+ 文件夹
- .icon-yincang1
+
.icon-xingzhuangjiehebeifen
-
+
- 三角形
+ 上传
- .icon-triangle
+
.icon-shangchuan
-
+
- 旗帜
+ 挑战
- .icon-qizhi
+
.icon-tiaozhan
-
+
- CSDN
+ 右滑
- .icon-csdn
+
.icon-youhua
-
+
- 用户、角色_无数据
+ 解锁
- .icon-yonghujiaose_wushuju
+
.icon-jiesuo
-
+
- 模板
+ 锁
- .icon-moban
+
.icon-suo1
-
+
- VPN
+ 搜索
- .icon-VPN
+
.icon-bianzu11
-
+
- 加
+ 笔记
- .icon-jia
+
.icon-biji
-
+
- 银行卡
+ 置顶
- .icon-yinhangqia1
+
.icon-zhiding
-
+
- 微博
+ 类型
- .icon-weibo
+
.icon-leixing
-
+
- 无
+ 标签尖头
- .icon-kong
+
.icon-biaoqianjiantou
-
+
- 课程
+ 加载失败
- .icon-kecheng
+
.icon-jiazaishibai1
-
+
- 设置
+ 企业账号
- .icon-shezhi1
+
.icon-qiyezhanghao
-
+
- 成功
+ 个人账号
- .icon-chenggong
+
.icon-gerenzhanghao
-
+
- 三点
+ 省略号
- .icon-sandian
+
.icon-shenglvehao
-
+
- gs-beixiao-icon-基本信息
+ 上箭头-填充
- .icon-jibenxinxi
+
.icon-shangjiantou-tianchong
-
+
- 博客园
+ 完成
- .icon-bokeyuan
+
.icon-wancheng1
-
+
- base
+ 禁止
- .icon-base
+
.icon-jinzhi
-
+
- 微信
+ 标签
- .icon-weixin2
+
.icon-biaoqian1
-
+
- Stack Overflow
+ 记录
- .icon-StackOverflow
+
.icon-jilu
-
+
- 重置
+ 书
- .icon-zhongzhi2
+
.icon-shu
-
+
- 活动
+ 推荐
- .icon-huodong
+
.icon-tuijian
-
+
- 隐藏
+ 创建者
- .icon-yincang
+
.icon-chuangjianzhe
-
+
- 电话
+ 绑定手机号
- .icon-weibiaoti-
+
.icon-bangdingshoujihao
-
+
- 位置
+ 浏览
- .icon-weizhi
+
.icon-liulan
-
+
- jquery
+ 评论
- .icon-jquery
+
.icon-pinglun
-
+
- docker
+ 博客园
- .icon-docker
+
.icon-bokeyuan
-
+
- python
+ 关注
- .icon-python
+
.icon-weibiaoti105
-
+
- php
+ 关注
- .icon-php
+
.icon-guanzhu
-
+
- SDK问题
+ 统计
- .icon-wenti
+
.icon-tongji
-
+
- 银行卡
+ 主页
- .icon-yinhangqia
+
.icon-zhuye
-
+
- linkedin
+ 复制
- .icon-linkedin
+
.icon-fuzhi1
-
+
- 文件夹
+ project@1x
- .icon-wenjianjia
+
.icon-projectx
-
+
- SQL server
+ hosting@1x
- .icon-SQLserver
+
.icon-hostingx2
-
+
- 质量分析
+ community@1x
- .icon-zhiliangfenxi
+
.icon-communityx
-
+
- 上传图片
+ detection@1x
- .icon-shangchuantupian1
+
.icon-detectionx
-
+
- 登录Ip监控
+ 链接
- .icon-dengluIpjiankong
+
.icon-lianjie
-
+
- itsm3-流程管理
+ nenghaofenxi@1x
- .icon-itsm-liuchengguanli
+
.icon-nenghaofenxix
-
+
- 链接
+ healthmode
- .icon-lianjie
+
.icon-healthmode
-
+
- 分支
+ 社区
- .icon-fenzhi
+
.icon-shequ
-
+
- 网址克隆
+ 工程
- .icon-wangzhikelong
+
.icon-gongcheng
-
+
- 下载
+ 单选 选中
- .icon-xiazai
+
.icon-danxuanxuanzhong1
-
+
- 代码
+ 活动
- .icon-daima
+
.icon-huodong
-
+
- 提交记录
+ menu_3voucher
- .icon-tijiaojilu
+
.icon-menu_voucher
-
+
- 选择题
+ menu_3events
- .icon-xuanzeti
+
.icon-menu_events
-
+
- 编辑
+ menu_4map
- .icon-bianji
+
.icon-menu_map
-
+
- 向上
+ menu_people1
- .icon-xiangshang
+
.icon-menu_people
-
+
- 删除掉
+ menu_5date1
- .icon-shanchudiao
+
.icon-menu_date
-
+
- 新建
+ yunweijiankong
- .icon-xinjian
+
.icon-yunweijiankong
-
+
- 上升排序
+ gongyiliucheng
- .icon-shangshengpaixu
+
.icon-gongyiliucheng
-
+
- 奖励
+ zhiliangkongzhi
- .icon-jiangli
+
.icon-zhiliangkongzhi
-
+
- 删除
+ shebeiguanli
- .icon-shanchu
+
.icon-shebeiguanli
-
+
- 隐藏闭眼
+ shengmingzhouqi
- .icon-yincangbiyan
+
.icon-shengmingzhouqi
-
+
- 开锁
+ 无权限
- .icon-kaisuo
+
.icon-wuquanxian
-
+
- 关锁
+ 学习中心
- .icon-guansuo
+
.icon-xuexizhongxin
-
+
- 版本库
+ 课程
- .icon-banbenku
+
.icon-kecheng
-
+
- issue
+ 身份认证
- .icon-issue
+
.icon-yemian
-
+
- 上传图片
+ 实名认证
- .icon-shangchuantupian
+
.icon-bianzu
-
+
- 测评
+ Page-1 (2)
- .icon-ceping
+
.icon-Page-1
-
+
- tpi消息提醒
+ Page-3
- .icon-tpixiaoxitixing
+
.icon-Page-3
-
+
- qq在线咨询
+ Page2
- .icon-qqzaixianzixun
+
.icon-Page
-
+
- 二维码
+ 消息
- .icon-erweima
+
.icon-xiaoxi1
-
+
- 意见反馈
+ 编辑
- .icon-yijianfankui
+
.icon-bianji1
-
+
- 邮箱认证
+ 职业认证
- .icon-youxiangrenzheng
+
.icon-renzhengshangjia
-
+
- 手机认证
+ 实名认证
- .icon-shoujirenzheng
+
.icon-shenfenzhenghaomaguizheng
-
+
- 职业认证
+ 用户、角色_无数据
- .icon-zhiyerenzheng
+
.icon-yonghujiaose_wushuju
-
+
- 身份认证
+ 排序
- .icon-shenfenrenzheng
+
.icon-paixu1
-
+
- 评分
+ 无
- .icon-pingfen
+
.icon-kong
-
+
- 评分-线
+ 手机
- .icon-pingfen-xian
+
.icon-shouji
-
+
- 作业
+ 银行卡
-