😎更改前端工作台数据。

This commit is contained in:
bairubing 2024-09-09 11:09:25 +08:00
parent 42691b9922
commit 1fd92cd7c4
5 changed files with 19 additions and 20 deletions

View File

@ -17,7 +17,7 @@ import { reactive, ref, onMounted, nextTick } from 'vue';
const props = defineProps({
mode: { type: String, default: '' }, // closeable link
text: { type: String, default: '欢迎使用 Admin.NET 通用权限开发框架 <a href="https://gitee.com/zuohuaijun/Admin.NET" target="_blank">https://gitee.com/zuohuaijun/Admin.NET</a>' }, //
text: { type: String, default: '欢迎使用 Manage数据集成平台' }, //
color: { type: String, default: 'var(--el-color-warning)' }, //
background: { type: String, default: 'var(--el-color-warning-light-9)' }, //
size: { type: [Number, String], default: 14 }, // px

View File

@ -5,15 +5,14 @@
<span style=""> 关于项目 </span>
</template>
<p>
基于 .NET6 (Furion/SqlSugar) 实现的通用权限开发框架前端采用
Vue3+Element-plus+Vite5整合众多优秀技术和框架模块插件式开发集成多租户缓存数据校验鉴权事件总线动态API通讯远程请求任务调度打印等众多黑科技代码结构简单清晰注释详尽易于上手与二次开发即便是复杂业务逻辑也能迅速实现真正实现开箱即用
Manage 数据集成平台是一种用于整合和管理来自不同数据源数据的工具
</p>
<p>
<a href="https://gitee.com/zuohuaijun/Admin.NET.git" target="_blank">
<!-- <a href="https://gitee.com/zuohuaijun/Admin.NET.git" target="_blank">
<img src="https://gitee.com/zuohuaijun/Admin.NET/badge/star.svg?theme=dark" alt="star" style="vertical-align: middle" />
<img src="https://gitee.com/zuohuaijun/Admin.NET/badge/fork.svg?theme=dark" alt="fork" style="vertical-align: middle" />
<img src="https://img.shields.io/badge/license-MIT-yellow" alt="license" style="vertical-align: middle" />
</a>
</a> -->
</p>
</el-card>
</template>

View File

@ -42,7 +42,7 @@ const getList = () => {
per_page: 10,
},
}).then((res: any) => {
state.list = res.data;
//state.list = res.data;
state.loading = false;
});
};

View File

@ -6,12 +6,12 @@
</template>
<div style="height: 210px; text-align: center">
<img :src="verSvg" style="height: 140px" />
<h2 style="margin-top: 15px">Admin.NET</h2>
<h2 style="margin-top: 15px">Manage数据集成平台</h2>
<p style="margin-top: 5px">最新版本 {{ version }}</p>
</div>
<div style="margin-top: 20px; margin-bottom: 20px; float: right">
<el-button type="primary" icon="ele-DocumentCopy" plain round @click="golog">更新日志</el-button>
<el-button type="primary" icon="ele-Eleme" plain round @click="gogit">gitee</el-button>
<!-- <el-button type="primary" icon="ele-DocumentCopy" plain round @click="golog">更新日志</el-button>
<el-button type="primary" icon="ele-Eleme" plain round @click="gogit">gitee</el-button> -->
</div>
</el-card>
</template>
@ -31,18 +31,18 @@ import verSvg from '/@/assets/img/ver.svg';
const version = ref<string>('loading...');
onMounted(() => {
version.value = 'v2.0.0';
version.value = 'v1.0.0';
});
const getVer = () => {
version.value = 'v2.0.0';
version.value = 'v1.0.0';
};
const golog = () => {
window.open('https://gitee.com/zuohuaijun/Admin.NET/issues');
};
// const golog = () => {
// window.open('https://gitee.com/zuohuaijun/Admin.NET/issues');
// };
const gogit = () => {
window.open('https://gitee.com/zuohuaijun/Admin.NET.git');
};
// const gogit = () => {
// window.open('https://gitee.com/zuohuaijun/Admin.NET.git');
// };
</script>

View File

@ -26,12 +26,12 @@
<div class="tips-item-icon">
<el-icon><ele-MilkTea /></el-icon>
</div>
<div class="tips-item-message">开发更简单更通用更流行</div>
<div class="tips-item-message">Manage更简单更通用更流行</div>
</div>
</div>
<div class="actions">
<!-- <div class="actions">
<el-button type="primary" icon="ele-Guide" size="large" @click="godoc">文档教程</el-button>
</div>
</div> -->
</div>
</el-card>
</template>