monitorDetails.vue
1.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<template>
<div class="details">
<div class="top mb10">
<Card class="info">
<h4 class="mb10">客户信息</h4>
<div class="item">姓名:刘非法</div>
<div class="item">性别:男</div>
<div class="item">证件类型:身份证</div>
<div class="item">证件号:232303199101294123</div>
<div class="item">微信昵称:</div>
<div class="item">状态:交流中</div>
<div class="item">年收入:7万</div>
<div class="item">地址:北京</div>
</Card>
<div class="video-wrapper">
<VideoPlayer></VideoPlayer>
</div>
</div>
<Card class="mb10">
<el-form label-width="50px" :model="form">
<el-form-item label="备注">
<el-input
type="textarea"
placeholder="请输入"
maxlength="200"
show-word-limit
:autosize="{ minRows: 4, maxRows: 6 }"
v-model.trim="form.remarks"
></el-input>
</el-form-item>
</el-form>
</Card>
<div class="bottom">
<el-button type="primary" @click="handleSubmit">提交</el-button>
</div>
</div>
</template>
<script>
import VideoPlayer from '@/components/videoPlayer'
export default {
components: {
VideoPlayer
},
data() {
return {
form: {
remarks: ''
}
}
},
methods: {
handleSubmit() {}
}
}
</script>
<style lang="scss" scoped>
.details {
display: flex;
flex-flow: column nowrap;
.top {
display: flex;
flex-flow: row nowrap;
.info {
width: 330px;
margin-right: 10px;
.item {
margin-bottom: 5px;
font-size: 14px;
}
}
.video-wrapper {
flex: 1 0 300px;
// width: 300px;
height: 400px;
}
}
.bottom {
display: flex;
justify-content: center;
}
}
</style>