Files
peko-admin-web/src/views/home/index.vue
2023-10-20 16:13:22 +08:00

51 lines
1.2 KiB
Vue

<template>
<div class="wrapper">
<HeaderView/>
<MaintainerView/>
<FooterView/>
</div>
</template>
<script>
import HeaderView from "@/components/header/index.vue";
import MaintainerView from "@/components/maintainer/index.vue";
import FooterView from "@/components/footer/index.vue";
import '@/utils/ajaxfileupload';
export default {
name: 'HomeView',
components: {
HeaderView,
MaintainerView,
FooterView
}
}
/**
* 扩展date函数
* author:c3gen
*/
Date.prototype.format = function (format) {
var o = {
"M+": this.getMonth() + 1,
"d+": this.getDate(),
"h+": this.getHours(),
"m+": this.getMinutes(),
"s+": this.getSeconds(),
"q+": Math.floor((this.getMonth() + 3) / 3),
"S": this.getMilliseconds()
}
if (/(y+)/.test(format)) {
format = format.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
}
for (var k in o) {
if (new RegExp("(" + k + ")").test(format)) {
format = format.replace(RegExp.$1, RegExp.$1.length == 1 ? o[k] : ("00" + o[k]).substr(("" + o[k]).length));
}
}
return format;
}
</script>
<style scoped>
</style>