实时在线用户功能

This commit is contained in:
橙子
2022-10-03 17:04:59 +08:00
parent e963a4051f
commit 3943536485
25 changed files with 528 additions and 33 deletions

View File

@@ -40,6 +40,7 @@
<el-row :gutter="20">
<el-col :sm="24" :lg="12" style="padding-left: 20px">
<h2>意框架-若依后台管理框架</h2>
<h3>当前在线人数{{onlineNum}}</h3>
<p>
Ruoyi:一直想做一款后台管理系统看了很多优秀的开源项目但是发现没有合适自己的于是利用空闲休息时间开始自己写一套后台系统如此有了若依管理系统她可以用于所有的Web应用程序如网站管理后台网站会员中心CMSCRMOA等等当然您也可以对她进行深度定制以做出更强系统所有前端后台代码封装过后十分精简易上手出错概率低同时支持移动客户端访问系统会陆续更新一些实用功能
</p>
@@ -854,8 +855,14 @@
</template>
<script setup name="Index">
import useSocketStore from '@/store/modules/socket'
import { ref } from 'vue-demi';
import { storeToRefs } from 'pinia';
const socketStore=useSocketStore();
const {onlineNum}=storeToRefs(socketStore);
const version = ref('3.8.3')
function goTarget(url) {
window.open(url, '__blank')
}