|
|
|
|
<template>
|
|
|
|
|
<div>
|
|
|
|
|
<el-row class="tip-row">
|
|
|
|
|
对element的样式做了些修改
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-card>
|
|
|
|
|
<el-row type="flex">
|
|
|
|
|
<div class="el-message el-message--success" role="alert">
|
|
|
|
|
<i class="el-message__icon el-icon-success"/>
|
|
|
|
|
<p class="el-message__content">成功提示</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="el-message el-message--info" role="alert">
|
|
|
|
|
<i class="el-message__icon el-icon-info"/>
|
|
|
|
|
<p class="el-message__content">信息提示</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="el-message el-message--warning" role="alert">
|
|
|
|
|
<i class="el-message__icon el-icon-warning"/>
|
|
|
|
|
<p class="el-message__content">警告提示</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="el-message el-message--error" role="alert">
|
|
|
|
|
<i class="el-message__icon el-icon-error"/>
|
|
|
|
|
<p class="el-message__content">错误提示</p>
|
|
|
|
|
</div>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-button size="small" @click="dialog=true">默认按钮(点击打开dialog)</el-button>
|
|
|
|
|
<el-button size="small" plain type="dashed">dashed按钮</el-button>
|
|
|
|
|
<el-button size="small" type="primary">主要按钮</el-button>
|
|
|
|
|
<el-button size="small" type="success">成功按钮</el-button>
|
|
|
|
|
<el-button size="small" type="info">信息按钮</el-button>
|
|
|
|
|
<el-button size="small" type="warning">警告按钮</el-button>
|
|
|
|
|
<el-button size="small" type="danger">危险按钮</el-button>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row class="table-container">
|
|
|
|
|
<liner-progress show/>
|
|
|
|
|
<el-table :data="tableData" highlight-current-row>
|
|
|
|
|
<el-table-column label="姓名" prop="name"/>
|
|
|
|
|
<el-table-column label="住址" prop="address"/>
|
|
|
|
|
<el-table-column label="电话" prop="tel"/>
|
|
|
|
|
<el-table-column label="年龄" prop="age"/>
|
|
|
|
|
</el-table>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row style="min-height: 50px">
|
|
|
|
|
<el-tree
|
|
|
|
|
:data="treeData"
|
|
|
|
|
:expand-on-click-node="false"
|
|
|
|
|
highlight-current
|
|
|
|
|
/>
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-card>
|
|
|
|
|
|
|
|
|
|
<dialog-form v-model="dialog" :loading="false" title="封装的dialog">
|
|
|
|
|
<p v-for="i in 50" :key="i">超出部分滚动...</p>
|
|
|
|
|
<template v-slot:footer>
|
|
|
|
|
<el-button plain size="small" @click="dialog=false">取 消</el-button>
|
|
|
|
|
<el-button size="small" type="primary" @click="dialog=false">保 存</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</dialog-form>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import LinerProgress from '@/components/LinerProgress'
|
|
|
|
|
import DialogForm from "@/components/DialogForm"
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: "stylePage",
|
|
|
|
|
components: {LinerProgress, DialogForm},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
dialog: false,
|
|
|
|
|
tableData: [
|
|
|
|
|
{name: '老王', address: '中国', tel: '13232423232', age: 18},
|
|
|
|
|
{name: '老王', address: '中国', tel: '13232423232', age: 18},
|
|
|
|
|
{name: '老王', address: '中国', tel: '13232423232', age: 18}
|
|
|
|
|
],
|
|
|
|
|
treeData: [
|
|
|
|
|
{
|
|
|
|
|
id: 1, label: '测试',
|
|
|
|
|
children: [{id: 2, label: '测试1'}, {id: 3, label: '测试2'}]
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
mounted() {
|
|
|
|
|
const f = (type, time = 0) => {
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
this.$notify({
|
|
|
|
|
title: type,
|
|
|
|
|
message: '不会自动关闭',
|
|
|
|
|
type,
|
|
|
|
|
duration: 0
|
|
|
|
|
})
|
|
|
|
|
}, time)
|
|
|
|
|
}
|
|
|
|
|
let i = 0;
|
|
|
|
|
['success', 'info', 'warning', 'error'].forEach(t => {
|
|
|
|
|
f(t, i)
|
|
|
|
|
i += 200
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
beforeDestroy() {
|
|
|
|
|
this.$notify.closeAll()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
.el-message {
|
|
|
|
|
position: static;
|
|
|
|
|
transform: translateX(0);
|
|
|
|
|
|
|
|
|
|
& + .el-message {
|
|
|
|
|
margin-left: 20px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.el-row + .el-row {
|
|
|
|
|
margin-top: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.el-tag + .el-tag {
|
|
|
|
|
margin-left: 20px;
|
|
|
|
|
}
|
|
|
|
|
</style>
|