2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 | 男
12 | 女
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
42 | {{item.name}}
43 |
44 |
45 |
46 |
47 | 编辑
48 | 保存
49 | 取消
50 |
51 |
52 |
53 |
54 |
55 |
126 |
127 |
132 |
--------------------------------------------------------------------------------
/hospital-web/theme/reset.css:
--------------------------------------------------------------------------------
1 | @charset "UTF-8";
2 | /* Element Chalk Variables */
3 | /* Transition
4 | -------------------------- */
5 | /* Color
6 | -------------------------- */
7 | /* 53a8ff */
8 | /* 66b1ff */
9 | /* 79bbff */
10 | /* 8cc5ff */
11 | /* a0cfff */
12 | /* b3d8ff */
13 | /* c6e2ff */
14 | /* d9ecff */
15 | /* ecf5ff */
16 | /* Link
17 | -------------------------- */
18 | /* Border
19 | -------------------------- */
20 | /* Fill
21 | -------------------------- */
22 | /* Typography
23 | -------------------------- */
24 | /* Size
25 | -------------------------- */
26 | /* z-index
27 | -------------------------- */
28 | /* Disable base
29 | -------------------------- */
30 | /* Icon
31 | -------------------------- */
32 | /* Checkbox
33 | -------------------------- */
34 | /* Radio
35 | -------------------------- */
36 | /* Select
37 | -------------------------- */
38 | /* Alert
39 | -------------------------- */
40 | /* MessageBox
41 | -------------------------- */
42 | /* Message
43 | -------------------------- */
44 | /* Notification
45 | -------------------------- */
46 | /* Input
47 | -------------------------- */
48 | /* Cascader
49 | -------------------------- */
50 | /* Group
51 | -------------------------- */
52 | /* Tab
53 | -------------------------- */
54 | /* Button
55 | -------------------------- */
56 | /* cascader
57 | -------------------------- */
58 | /* Switch
59 | -------------------------- */
60 | /* Dialog
61 | -------------------------- */
62 | /* Table
63 | -------------------------- */
64 | /* Pagination
65 | -------------------------- */
66 | /* Popup
67 | -------------------------- */
68 | /* Popover
69 | -------------------------- */
70 | /* Tooltip
71 | -------------------------- */
72 | /* Tag
73 | -------------------------- */
74 | /* Tree
75 | -------------------------- */
76 | /* Dropdown
77 | -------------------------- */
78 | /* Badge
79 | -------------------------- */
80 | /* Card
81 | --------------------------*/
82 | /* Slider
83 | --------------------------*/
84 | /* Steps
85 | --------------------------*/
86 | /* Menu
87 | --------------------------*/
88 | /* Rate
89 | --------------------------*/
90 | /* DatePicker
91 | --------------------------*/
92 | /* Loading
93 | --------------------------*/
94 | /* Scrollbar
95 | --------------------------*/
96 | /* Carousel
97 | --------------------------*/
98 | /* Collapse
99 | --------------------------*/
100 | /* Transfer
101 | --------------------------*/
102 | /* Header
103 | --------------------------*/
104 | /* Footer
105 | --------------------------*/
106 | /* Main
107 | --------------------------*/
108 | /* Timeline
109 | --------------------------*/
110 | /* Backtop
111 | --------------------------*/
112 | /* Link
113 | --------------------------*/
114 | /* Calendar
115 | --------------------------*/
116 | /* Form
117 | -------------------------- */
118 | /* Avatar
119 | --------------------------*/
120 | /* Break-point
121 | --------------------------*/
122 | body {
123 | font-family: "Helvetica Neue",Helvetica,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","微软雅黑",Arial,sans-serif;
124 | font-weight: 400;
125 | font-size: 14px;
126 | color: #000000;
127 | -webkit-font-smoothing: antialiased; }
128 |
129 | a {
130 | color: #409EFF;
131 | text-decoration: none; }
132 | a:hover, a:focus {
133 | color: #66b1ff; }
134 | a:active {
135 | color: #3a8ee6; }
136 |
137 | h1, h2, h3, h4, h5, h6 {
138 | color: #606266;
139 | font-weight: inherit; }
140 | h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
141 | margin-top: 0; }
142 | h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child {
143 | margin-bottom: 0; }
144 |
145 | h1 {
146 | font-size: 20px; }
147 |
148 | h2 {
149 | font-size: 18px; }
150 |
151 | h3 {
152 | font-size: 16px; }
153 |
154 | h4, h5, h6, p {
155 | font-size: inherit; }
156 |
157 | p {
158 | line-height: 1.8; }
159 | p:first-child {
160 | margin-top: 0; }
161 | p:last-child {
162 | margin-bottom: 0; }
163 |
164 | sup, sub {
165 | font-size: 13px; }
166 |
167 | small {
168 | font-size: 12px; }
169 |
170 | hr {
171 | margin-top: 20px;
172 | margin-bottom: 20px;
173 | border: 0;
174 | border-top: 1px solid #eeeeee; }
175 |
--------------------------------------------------------------------------------
/hospital-web/src/views/index.vue:
--------------------------------------------------------------------------------
1 |