zhangzengfei
2022-07-20 4a800a8fc83c6bd1f86a8e847b079a51a7532c09
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<template>
  <div class="telephone-box">
      <div class="title">
          <span class="icon iconfont">&#xe7cc;</span>
          <span>去电</span>
      </div>
      <div class="info">
          <div class="id">1139</div>
          <div class="sip">sip:1139@47.112.193.0</div>
      </div>
 
      <div class="video">1</div>
 
      <div class="control">
          <img src="/images/InternetData/挂断.png" />
          <img src="/images/InternetData/声音.png" class="mid" />
          <img src="/images/InternetData/话筒.png" />
      </div>
 
      <div class="close el-icon-close" @click="close"></div>
  </div>
</template>
 
<script>
export default {
    props:{
        tele:{
            type:Object
        }
    },
    data (){
        return {
    
        }
    },
    
    methods:{
        close (){
            this.$emit("close",this.tele)
        }
    }
}
</script>
 
<style scoped lang="scss">
.telephone-box {
    box-sizing: border-box;
    position: fixed;
    z-index: 2;
    padding: 32px 28px 28px 55px;
 
    width: 420px;
    height: 382px;
    left: 50%;
    top: 50%;
    margin-top: -15%;
    margin-left: -15%;
 
    background: #FFFFFF;
    border-radius: 8px;
        color: #4F4F4F;
 
    .title {
        text-align: left;
        font-size: 16px;
        font-weight: 700;
 
        .icon {
            margin-right: 2px;
            font-size: 18px;
            font-weight: normal;
        }
    }
 
    .info {
        margin-top: 18px;
        font-weight: bold;
        font-size: 16px;
 
        .sip {
            margin-top: 2px;
            font-size: 12px;
            font-weight: normal;
        }
    }
 
    .video {
        margin: 0 auto;
        margin-top: 20px;
        box-sizing: border-box;
        width: 104px;
        height: 104px;
        background: #454141;
        border: 5px solid #FFAA44;
        border-radius: 50%;
 
        font-size: 36px;
        color: #fff;
        line-height: 94px;
    }
 
    .control {
        margin-top: 50px;
 
        img {
            width: 37px;
            height: 37px;
        }
 
        .mid {
            margin: 0 37px;
        }
    }
 
    .close {
        position: absolute;
        top: 12px;
        right: 12px;
        font-size: 12px;
        font-weight: 700;
    }
 
}
 
</style>