123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223 |
- <template>
- <div class="page">
- <div class="page-top flex flex-col justify-center items-center">
- <img class="logo" src="https://picsum.photos/200/200" />
- <span class="name mt-2">上海品辉医疗科技有限公司</span>
- </div>
- <div class="page-content">
- <!-- 搜索区域 -->
- <div class="search">
- <simple-search />
- </div>
- <!-- 标题 -->
- <div class="title px-4 pt-12 pb-6">共<span>4</span>位医师</div>
- <!-- 列表 -->
- <div class="list">
- <div class="section flex justify-between mb-4">
- <img class="cover" src="https://picsum.photos/400/400" />
- <div class="info">
- <div class="name">王医师</div>
- <div class="code">资格证编号:ZHIP1710034</div>
- <div class="club-name">所在机构:丽颜科美复兴广场店</div>
- </div>
- </div>
- <div class="section flex justify-between mb-4">
- <img class="cover" src="https://picsum.photos/400/400" />
- <div class="info">
- <div class="name">王医师</div>
- <div class="code">资格证编号:ZHIP1710034</div>
- <div class="club-name">所在机构:丽颜科美复兴广场店</div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script>
- export default {
- layout: 'app',
- }
- </script>
- <style scoped lang="scss">
- .page {
- min-height: calc(100vh - 80px - 80px);
- background-color: #fff;
- }
- // pc 端
- @media screen and (min-width: 768px) {
- .page-top {
- height: 420px;
- background: url(https://static.caimei365.com/www/authentic/h5/bg-doctor.png);
- background-size: auto 420px;
- .logo {
- display: block;
- width: 120px;
- height: 120px;
- border-radius: 50%;
- }
- .name {
- font-size: 30px;
- color: #fff;
- }
- }
- .page-content {
- width: 1200px;
- margin: 0 auto;
- position: relative;
- .search {
- display: none;
- }
- .title {
- font-size: 16px;
- color: #404040;
- span {
- color: #bc1724;
- }
- }
- .list {
- display: flex;
- align-items: center;
- flex-wrap: wrap;
- justify-content: space-between;
- .section {
- width: 390px;
- height: 108px;
- background-color: #f3f5f6;
- border-radius: 4px;
- box-sizing: border-box;
- padding: 12px;
- .cover {
- display: block;
- width: 84px;
- height: 84px;
- }
- .info {
- width: 270px;
- position: relative;
- margin-left: 12px;
- .name {
- font-size: 16px;
- color: #101010;
- font-weight: bold;
- margin-bottom: 16px;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- }
- .code,
- .club-name {
- position: relative;
- font-size: 14px;
- color: #404040;
- line-height: 24px;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- span {
- color: #6d9eff;
- }
- }
- }
- }
- }
- }
- }
- // 移动 端
- @media screen and (max-width: 768px) {
- .page-top {
- height: 46vw;
- background: url(https://static.caimei365.com/www/authentic/h5/bg-doctor.png);
- background-size: auto 46vw;
- .logo {
- display: block;
- width: 14.8vw;
- height: 14.8vw;
- border-radius: 50%;
- }
- .name {
- font-size: 4vw;
- color: #fff;
- }
- }
- .page-content {
- position: relative;
- .search {
- position: absolute;
- left: 50%;
- top: 0;
- transform: translate(-50%, -50%);
- }
- .city {
- padding-top: 12vw;
- }
- .title {
- font-size: 3.4vw;
- color: #404040;
- span {
- color: #bc1724;
- }
- }
- .list {
- display: flex;
- align-items: center;
- flex-direction: column;
- .section {
- width: 93.6vw;
- height: 26vw;
- background-color: #f3f5f6;
- border-radius: 4px;
- box-sizing: border-box;
- padding: 3.2vw;
- .cover {
- display: block;
- width: 19.6vw;
- height: 19.6vw;
- }
- .info {
- position: relative;
- margin-left: 3.2vw;
- .name {
- font-size: 4vw;
- color: #101010;
- font-weight: bold;
- margin-bottom: 4vw;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- }
- .code,
- .club-name {
- width: 66vw;
- position: relative;
- font-size: 3vw;
- color: #404040;
- line-height: 5vw;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- span {
- color: #6d9eff;
- }
- }
- }
- }
- }
- }
- }
- </style>
|