bick_back/src/views/index.vue

100 lines
1.6 KiB
Vue
Raw Normal View History

2024-05-20 18:07:24 +08:00
<template>
<div class="app-container home">
2024-07-08 14:19:30 +08:00
<div v-if="userName != 'admin' " >
<span>可用余额: </span><span style="color: red;font-weight: 700">{{balance}}</span>
</div>
2024-05-20 18:07:24 +08:00
</div>
</template>
<script>
2024-07-08 14:19:30 +08:00
import { getBalance } from '@/api/system/dept'
2024-05-20 18:07:24 +08:00
export default {
name: "Index",
data() {
return {
// 版本号
2024-07-08 14:19:30 +08:00
version: "3.8.7",
balance: null,
userName: null
2024-05-20 18:07:24 +08:00
};
},
2024-07-08 14:19:30 +08:00
created() {
this.userName = this.$store.state.user.name;
getBalance().then(response => {
this.balance = response.data;
});
},
2024-05-20 18:07:24 +08:00
methods: {
goTarget(href) {
window.open(href, "_blank");
}
}
};
</script>
<style scoped lang="scss">
.home {
blockquote {
padding: 10px 20px;
margin: 0 0 20px;
font-size: 17.5px;
border-left: 5px solid #eee;
}
hr {
margin-top: 20px;
margin-bottom: 20px;
border: 0;
border-top: 1px solid #eee;
}
.col-item {
margin-bottom: 20px;
}
ul {
padding: 0;
margin: 0;
}
font-family: "open sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 13px;
color: #676a6c;
overflow-x: hidden;
ul {
list-style-type: none;
}
h4 {
margin-top: 0px;
}
h2 {
margin-top: 10px;
font-size: 26px;
font-weight: 100;
}
p {
margin-top: 10px;
b {
font-weight: 700;
}
}
.update-log {
ol {
display: block;
list-style-type: decimal;
margin-block-start: 1em;
margin-block-end: 1em;
margin-inline-start: 0;
margin-inline-end: 0;
padding-inline-start: 40px;
}
}
}
</style>