x-php-Admin/src/views/home/widgets/components/ver.vue

42 lines
1011 B
Vue
Raw Normal View History

2023-06-07 10:48:30 +00:00
<template>
<el-card shadow="hover" header="版本信息">
<div style="height: 210px;text-align: center;">
2023-06-11 14:57:10 +00:00
<img src="@/assets/img/ver.svg" style="height:140px"/>
2023-06-27 09:48:12 +00:00
<h2 style="margin-top: 15px;">X-PHP {{$config.CORE_VER}}</h2>
2023-06-07 10:48:30 +00:00
<p style="margin-top: 5px;">最新版本 {{ver}}</p>
</div>
<div style="margin-top: 20px;">
<el-button type="primary" plain round @click="golog">更新日志</el-button>
<el-button type="primary" plain round @click="gogit">gitee</el-button>
</div>
</el-card>
</template>
<script>
export default {
title: "版本信息",
icon: "el-icon-monitor",
description: "当前项目版本信息",
data() {
return {
ver: 'loading...'
}
},
mounted() {
this.getVer()
},
methods: {
async getVer(){
2023-06-11 14:57:10 +00:00
// const ver = await this.$api.demo.ver.get()
2023-06-08 11:38:56 +00:00
// this.ver = ver.data
2023-06-07 10:48:30 +00:00
},
golog(){
window.open("https://gitee.com/lolicode/scui/releases")
},
gogit(){
window.open("https://gitee.com/lolicode/scui")
}
}
}
</script>