60 lines
1.2 KiB
Vue
60 lines
1.2 KiB
Vue
<template>
|
|
<a-modal title="集中培训详情" :width="800" :visible="visible" :confirmLoading="confirmLoading" :footer="null">
|
|
<a-descriptions title="User Info">
|
|
<a-descriptions-item label="UserName">
|
|
Zhou Maomao
|
|
</a-descriptions-item>
|
|
<a-descriptions-item label="Telephone">
|
|
1810000000
|
|
</a-descriptions-item>
|
|
<a-descriptions-item label="Live">
|
|
Hangzhou, Zhejiang
|
|
</a-descriptions-item>
|
|
<a-descriptions-item label="Remark">
|
|
empty
|
|
</a-descriptions-item>
|
|
<a-descriptions-item label="Address">
|
|
No. 18, Wantang Road, Xihu District, Hangzhou, Zhejiang, China
|
|
</a-descriptions-item>
|
|
</a-descriptions>
|
|
</a-modal>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data () {
|
|
return {
|
|
visible: false,
|
|
confirmLoading: false
|
|
}
|
|
},
|
|
methods: {
|
|
// 开始学习
|
|
handlerStartLearn () {}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
.cover-img {
|
|
width: 100%;
|
|
height: 200px;
|
|
border: 1px solid #e8e8e8;
|
|
border-radius: 10px;
|
|
overflow: hidden;
|
|
img {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
.info-text {
|
|
font-size: 16px;
|
|
color: #666;
|
|
line-height: 1.8;
|
|
h2 {
|
|
line-height: 1.2;
|
|
}
|
|
}
|
|
</style>
|