This commit is contained in:
linfso 2024-07-10 15:43:28 +08:00
parent 944c279587
commit 3e67cff92b

125
src/views/oms/index.vue Normal file
View File

@ -0,0 +1,125 @@
<template>
<div class="app-container home">
<el-row :gutter="20">
<el-col :sm="24" :lg="24">
<blockquote class="text-warning" style="font-size: 14px">
欢迎使用系统
</blockquote>
<hr />
</el-col>
</el-row>
</div>
</template>
<script>
export default {
name: "Index",
components: {
},
data() {
return {
// 版本号
version: "1.0.0",
layout:[],
layoutUpdatedEvent: function(newLayout) {
this.layout = newLayout;
},
};
},
created() {
},
methods: {
goTarget(href) {
window.open(href, "_blank");
},
save() {
// var param = JSON.parse(JSON.stringify(this.layout));
// var layouttype = JSON.parse(JSON.stringify(this.layouttype));
// saveLayout(param).then(r => {
// saveLayouttype(layouttype).then(r => {
// this.$notify({
// title: '保存成功',
// message: '保存布局成功',
// type: 'success'
// });
// })
// })
// this.diyStatus = "close";
// this.isdiy = false;
},
},
};
</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>