提交 | 用户 | age
|
bb2b08
|
1 |
<template> |
J |
2 |
<div class="mask hide"> |
|
3 |
<div class="xio_customer_select_dialog"> |
|
4 |
<div class="title">是否选择客人[张怀民],使用当前房间?</div> |
|
5 |
<div class="content flex flex-sb"> |
|
6 |
<div class="tx flex-1" style="text-align: left;">医生:张怀民</div> |
|
7 |
<div class="tx flex-1">护士:张怀民</div> |
|
8 |
<div class="tx flex-1" style="text-align: right;">顾问:张怀民</div> |
|
9 |
</div> |
|
10 |
<div class="content flex flex-ver"> |
|
11 |
<div class="tx">治疗项目:phis-Fotona4D</div> |
|
12 |
</div> |
|
13 |
<div class="btn_box flex flex-center"> |
|
14 |
<div class="flex flex-ver"> |
|
15 |
<div class="btn_box__item flex flex-center">取消</div> |
|
16 |
<div class="btn_box__item flex flex-center">确定</div> |
|
17 |
</div> |
|
18 |
</div> |
|
19 |
</div> |
|
20 |
</div> |
|
21 |
</template> |
|
22 |
|
|
23 |
<script> |
|
24 |
export default { |
|
25 |
name: 'XioCustomerSelect', |
|
26 |
props: { |
|
27 |
isActive: { |
|
28 |
type: Boolean, |
|
29 |
default: false |
|
30 |
} |
|
31 |
}, |
|
32 |
data() { |
|
33 |
return { |
|
34 |
isShow: false |
|
35 |
} |
|
36 |
}, |
|
37 |
methods: { |
|
38 |
toggleClick() { |
|
39 |
this.$emit('toggleClick') |
|
40 |
} |
|
41 |
} |
|
42 |
} |
|
43 |
</script> |
|
44 |
|
|
45 |
<style scoped> |
|
46 |
.xio_customer_select_dialog { |
|
47 |
position: absolute; |
|
48 |
width: 1105px; |
|
49 |
min-height: 602px; |
|
50 |
top: 50%; |
|
51 |
left: 50%; |
|
52 |
transform: translate(-50%, -50%); |
|
53 |
-webkit-transform: translate(-50%, -50%); |
|
54 |
z-index: 1; |
|
55 |
border-radius: 10px; |
|
56 |
background-color: rgba(255,255,255,1); |
|
57 |
box-sizing: border-box; |
|
58 |
padding: 90px 90px 78px 90px; |
|
59 |
} |
|
60 |
.xio_customer_select_dialog .title { |
|
61 |
line-height: 70px; |
|
62 |
color: rgba(16,16,16,1); |
|
63 |
font-size: 50px; |
|
64 |
font-family: PingFangSC-medium; |
|
65 |
font-weight: bold; |
|
66 |
} |
|
67 |
|
|
68 |
.xio_customer_select_dialog .content { |
|
69 |
margin-top: 25px; |
|
70 |
} |
|
71 |
|
|
72 |
.xio_customer_select_dialog .content .tx { |
|
73 |
line-height: 53px; |
|
74 |
color: rgba(108,108,108,1); |
|
75 |
font-size: 38px; |
|
76 |
text-align: center; |
|
77 |
font-family: PingFangSC-regular; |
|
78 |
box-sizing: border-box; |
|
79 |
} |
|
80 |
.xio_customer_select_dialog .content .tx:nth-child(2) { |
|
81 |
padding: 0 10px; |
|
82 |
} |
|
83 |
|
|
84 |
.xio_customer_select_dialog .btn_box { |
|
85 |
margin-top: 107px; |
|
86 |
} |
|
87 |
|
|
88 |
.xio_customer_select_dialog .btn_box__item { |
|
89 |
width: 300px; |
|
90 |
height: 100px; |
|
91 |
line-height: 52px; |
|
92 |
border-radius: 4px; |
|
93 |
font-size: 36px; |
|
94 |
text-align: center; |
|
95 |
font-family: Microsoft Yahei; |
|
96 |
} |
|
97 |
.xio_customer_select_dialog .btn_box__item:nth-child(1) { |
|
98 |
color: rgba(34,123,235,1); |
|
99 |
border: 1px solid rgba(34,123,235,1); |
|
100 |
} |
|
101 |
.xio_customer_select_dialog .btn_box__item:nth-child(2) { |
|
102 |
color: rgba(255,255,255,1); |
|
103 |
background-color: rgba(34,123,235,1); |
|
104 |
margin-left: 87px; |
|
105 |
} |
|
106 |
</style> |