blob: 155b690ab17e83a4b94c994ca1cc1816139543f6 [file] [log] [blame]
guangchao.xu070005a2020-12-07 09:56:40 +08001<template>
2 <view class="confirm">
3 <view class="confirm-header">
4 <u-image src="./images/hospital.png" width="100" mode="widthFix"></u-image>
5 <view class="confirm-header-partmsg">
6 <text class="confirm-header-partmsg-title">心内科</text>
7 <text class="confirm-header-partmsg-subtitle">大理市第一人民医院(总院)</text>
8 </view>
9 </view>
10 <view class="confirm-part">
11 <view class="confirm-part-item">
12 <text class="confirm-part-item-title">就诊时间:</text>
13 <text class="confirm-part-item-subtitle">2020-10-20/周一/上午</text>
14 </view>
15 <view class="confirm-part-item">
16 <text class="confirm-part-item-title">就诊地点:</text>
17 <text class="confirm-part-item-subtitle">云南省大理市大苏打大撒</text>
18 </view>
19 </view>
20 <view class="confirm-member">
21 <u-cell-group>
22 <u-cell-item title="选择就诊人" value="就诊人管理" :value-style="style" @click="toPath('/pages/sub_medical/patient')"></u-cell-item>
23 </u-cell-group>
24 <view class="confirm-member-msg">
25 <u-field label="就诊人员" placeholder="李小明/男/24岁" disabled required :placeholder-style="mstyle" input-align="right" :border-bottom="false"></u-field>
26 <u-field label="证件号码" placeholder="32323423423****3123" disabled required :placeholder-style="mstyle" input-align="right" :border-bottom="false"></u-field>
27 <u-field label="就诊卡号" placeholder="321321441" disabled required :placeholder-style="mstyle" input-align="right" :border-bottom="false"></u-field>
28 <u-field label="联系电话" placeholder="130****3322" disabled :placeholder-style="mstyle" input-align="right" :border-bottom="false"></u-field>
29 </view>
30 </view>
31 <u-button :custom-style="btn">提交预约</u-button>
32 </view>
33</template>
34
35<script>
36 export default {
37 data() {
38 return {
39 style: {
40 color: '#2FA8E1'
41 },
42 mstyle:'color:#333333',
43 btn: {
44 backgroundColor: ' #2FA8E1',
45 padding: '50rpx 0',
46 color: '#FFFFFF',
47 width: ' 650rpx',
48 fontSize: '30rpx',
49 border: '1px solid #2FA8E1',
50 marginTop:'50rpx'
51 },
52 }
53 },
54 onLoad() {
55
56 },
57 methods: {
58
59 }
60 }
61</script>
62
63<style lang="scss" scoped>
64 .u-field{
65 color: #a1a1a1;
66 }
67 .u-cell {
68 padding: 30rpx 10rpx;
69 }
70 .u-cell__right-icon-wrap {
71 height: 54rpx;
72 }
73 .confirm {
74 font-family: "PingFang-SC-Medium";
75
76 &-header {
77 padding: 10rpx;
78 background-color: #FFFFFF;
79 display: flex;
80 align-items: center;
81 margin-bottom: 3rpx;
82
83 &-partmsg {
84 margin-left: 30rpx;
85 display: flex;
86 flex-direction: column;
87
88 &-title {
89 font-size: 32rpx;
90 font-weight: bold;
91 margin-bottom: 6rpx;
92 }
93
94 &-subtitle {
95 color: #6A6A6A;
96 }
97 }
98 }
99
100 &-part {
101 background-color: #FFFFFF;
102 padding: 30rpx 20rpx;
103
104 &-item {
105 margin-bottom: 10rpx;
106
107 &-title {
108 color: #A1A1A1;
109 }
110
111 &-subtitle {
112 color: #333333;
113 }
114 }
115 }
116
117 &-member {
118 background-color: #FFFFFF;
119 margin: 30rpx 0;
120 }
121 }
122</style>