diff --git a/.env.development b/.env.development index 52553ff..d96f96c 100644 --- a/.env.development +++ b/.env.development @@ -1,5 +1,5 @@ # 页面标题 -VITE_APP_TITLE = RuoYi-Vue-Plus多租户管理系统 +VITE_APP_TITLE = Rime-Lin-Vue多租户管理系统 # 开发环境配置 VITE_APP_ENV = 'development' diff --git a/.env.production b/.env.production index bf9e644..e47ac42 100644 --- a/.env.production +++ b/.env.production @@ -1,5 +1,5 @@ # 页面标题 -VITE_APP_TITLE = RuoYi-Vue-Plus多租户管理系统 +VITE_APP_TITLE = Rime-Lin-Vue多租户管理系统 # 生产环境配置 VITE_APP_ENV = 'production' diff --git a/public/favicon.ico b/public/favicon.ico index 3f919d8..8e16376 100644 Binary files a/public/favicon.ico and b/public/favicon.ico differ diff --git a/src/api/test/ollama/index.ts b/src/api/test/ollama/index.ts new file mode 100644 index 0000000..7fa3552 --- /dev/null +++ b/src/api/test/ollama/index.ts @@ -0,0 +1,64 @@ +import {OllamaForm, OllamaQuery, OllamaVO} from "@/api/test/ollama/types"; +import {AxiosPromise} from "axios"; +import request from "@/utils/request"; +import {DemoForm} from "@/api/demo/demo/types"; + +/** + * 查询列表 + * @param query + * @returns {*} + */ +export const listOllama = (query?: OllamaQuery): AxiosPromise => { + return request({ + url: '/test/ollama/list', + method: 'get', + params: query + }); +}; + +/** + * 查询详情 + * @param id + * @return {*} + */ +export const getOllama = (id: string | number): AxiosPromise => { + return request({ + url: '/test/ollama' + id, + method: 'get' + }); +}; + +/** + * 新增 + * @param data + */ +export const addOllama = (data: OllamaForm) => { + return request({ + url: '/test/ollama', + method: 'post', + data: data + }); +}; + +/** + * 更新 + * @param data + */ +export const updateOllama = (data: DemoForm) => { + return request({ + url: '/test/ollama', + method: 'put', + data: data + }); +}; + +/** + * 删除 + * @param id + */ +export const delOllama = (id: string | number | Array) => { + return request({ + url: 'test/ollama/' + id, + method: 'delete' + }); +}; diff --git a/src/api/test/ollama/types.ts b/src/api/test/ollama/types.ts new file mode 100644 index 0000000..52bfb07 --- /dev/null +++ b/src/api/test/ollama/types.ts @@ -0,0 +1,12 @@ +export interface OllamaVO { + +} + +export interface OllamaForm extends BaseEntity { + +} + +export interface OllamaQuery extends PageQuery { + +} + diff --git a/src/assets/images/background.svg b/src/assets/images/background.svg new file mode 100644 index 0000000..89c2597 --- /dev/null +++ b/src/assets/images/background.svg @@ -0,0 +1,69 @@ + + + + Group 21 + Created with Sketch. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/assets/logo/logo.png b/src/assets/logo/logo.png index 3f919d8..8e16376 100644 Binary files a/src/assets/logo/logo.png and b/src/assets/logo/logo.png differ diff --git a/src/layout/components/Navbar.vue b/src/layout/components/Navbar.vue index fd4eb8c..2c753ee 100644 --- a/src/layout/components/Navbar.vue +++ b/src/layout/components/Navbar.vue @@ -43,13 +43,17 @@ + + diff --git a/src/layout/components/Sidebar/Logo.vue b/src/layout/components/Sidebar/Logo.vue index 631c261..b97c327 100644 --- a/src/layout/components/Sidebar/Logo.vue +++ b/src/layout/components/Sidebar/Logo.vue @@ -34,7 +34,7 @@ defineProps({ } }); -const title = ref('RuoYi-Vue-Plus'); +const title = ref('Rime-Lin-Vue'); const settingsStore = useSettingsStore(); const sideTheme = computed(() => settingsStore.sideTheme); diff --git a/src/layout/components/notice/index.vue b/src/layout/components/notice/index.vue index e43b2b8..4f8dbfa 100644 --- a/src/layout/components/notice/index.vue +++ b/src/layout/components/notice/index.vue @@ -19,7 +19,6 @@ -
前往gitee
@@ -54,9 +53,6 @@ const onNewsClick = (item: any) => { }; // 前往通知中心点击 -const onGoToGiteeClick = () => { - window.open('https://gitee.com/dromara/RuoYi-Vue-Plus/tree/5.X/'); -}; onMounted(() => { nextTick(() => { diff --git a/src/views/index.vue b/src/views/index.vue index aa60a9b..649d1f1 100644 --- a/src/views/index.vue +++ b/src/views/index.vue @@ -2,92 +2,7 @@
-

RuoYi-Vue-Plus多租户管理系统

-

- RuoYi-Vue-Plus 是基于 RuoYi-Vue 针对 分布式集群 场景升级(不兼容原框架) -
- * 前端开发框架 Vue3、TS、Element Plus
- * 后端开发框架 Spring Boot
- * 容器框架 Undertow 基于 Netty 的高性能容器
- * 权限认证框架 Sa-Token 支持多终端认证系统
- * 关系数据库 MySQL 适配 8.X 最低 5.7
- * 缓存数据库 Redis 适配 6.X 最低 4.X
- * 数据库框架 Mybatis-Plus 快速 CRUD 增加开发效率
- * 数据库框架 p6spy 更强劲的 SQL 分析
- * 多数据源框架 dynamic-datasource 支持主从与多种类数据库异构
- * 序列化框架 Jackson 统一使用 jackson 高效可靠
- * Redis客户端 Redisson 性能强劲、API丰富
- * 分布式限流 Redisson 全局、请求IP、集群ID 多种限流
- * 分布式锁 Lock4j 注解锁、工具锁 多种多样
- * 分布式幂等 Lock4j 基于分布式锁实现
- * 分布式链路追踪 SkyWalking 支持链路追踪、网格分析、度量聚合、可视化
- * 分布式任务调度 SnailJob 高性能 高可靠 易扩展
- * 文件存储 Minio 本地存储
- * 文件存储 七牛、阿里、腾讯 云存储
- * 监控框架 SpringBoot-Admin 全方位服务监控
- * 校验框架 Validation 增强接口安全性 严谨性
- * Excel框架 Alibaba EasyExcel 性能优异 扩展性强
- * 文档框架 SpringDoc、javadoc 无注解零入侵基于java注释
- * 工具类框架 Hutool、Lombok 减少代码冗余 增加安全性
- * 代码生成器 适配MP、SpringDoc规范化代码 一键生成前后端代码
- * 部署方式 Docker 容器编排 一键部署业务集群
- * 国际化 SpringMessage Spring标准国际化方案
-

-

当前版本: v5.2.1

-

- ¥免费开源 -

-

- 访问码云 - 访问GitHub - 更新日志 -

-
- - -

RuoYi-Cloud-Plus多租户微服务管理系统

-

- RuoYi-Cloud-Plus 微服务通用权限管理系统 重写 RuoYi-Cloud 全方位升级(不兼容原框架) -
- * 前端开发框架 Vue3、TS、Element UI
- * 后端开发框架 Spring Boot
- * 微服务开发框架 Spring Cloud、Spring Cloud Alibaba
- * 容器框架 Undertow 基于 XNIO 的高性能容器
- * 权限认证框架 Sa-Token、Jwt 支持多终端认证系统
- * 关系数据库 MySQL 适配 8.X 最低 5.7
- * 关系数据库 Oracle 适配 11g 12c
- * 关系数据库 PostgreSQL 适配 13 14
- * 关系数据库 SQLServer 适配 2017 2019
- * 缓存数据库 Redis 适配 6.X 最低 5.X
- * 分布式注册中心 Alibaba Nacos 采用2.X 基于GRPC通信高性能
- * 分布式配置中心 Alibaba Nacos 采用2.X 基于GRPC通信高性能
- * 服务网关 Spring Cloud Gateway 响应式高性能网关
- * 负载均衡 Spring Cloud Loadbalancer 负载均衡处理
- * RPC远程调用 Apache Dubbo 原生态使用体验、高性能
- * 分布式限流熔断 Alibaba Sentinel 无侵入、高扩展
- * 分布式事务 Alibaba Seata 无侵入、高扩展 支持 四种模式
- * 分布式消息队列 Apache Kafka 高性能高速度
- * 分布式消息队列 Apache RocketMQ 高可用功能多样
- * 分布式消息队列 RabbitMQ 支持各种扩展插件功能多样性
- * 分布式搜索引擎 ElasticSearch 业界知名
- * 分布式链路追踪 Apache SkyWalking 链路追踪、网格分析、度量聚合、可视化
- * 分布式日志中心 ELK 业界成熟解决方案
- * 分布式监控 Prometheus、Grafana 全方位性能监控
- * 其余与 Vue 版本一致
-

-

当前版本: v2.2.0

-

- ¥免费开源 -

-

- 访问码云 - 访问GitHub - 更新日志 -

+

Rime-Lin-Vue多租户管理系统

diff --git a/src/views/login-bak.txt b/src/views/login-bak.txt new file mode 100644 index 0000000..dd722ff --- /dev/null +++ b/src/views/login-bak.txt @@ -0,0 +1,283 @@ + + + + + diff --git a/src/views/login.vue b/src/views/login.vue index ca2903f..a2f2f62 100644 --- a/src/views/login.vue +++ b/src/views/login.vue @@ -1,71 +1,146 @@ + diff --git a/src/views/register.vue b/src/views/register.vue index c3d1930..65c1715 100644 --- a/src/views/register.vue +++ b/src/views/register.vue @@ -1,7 +1,7 @@ diff --git a/src/views/system/user/profile/index.vue b/src/views/system/user/profile/index.vue index 7c1389a..b0932df 100644 --- a/src/views/system/user/profile/index.vue +++ b/src/views/system/user/profile/index.vue @@ -55,9 +55,9 @@ - + diff --git a/src/views/test/ollama/index.vue b/src/views/test/ollama/index.vue new file mode 100644 index 0000000..5598b67 --- /dev/null +++ b/src/views/test/ollama/index.vue @@ -0,0 +1,158 @@ + +