Commit 36eec2d9 authored by yanglilong's avatar yanglilong

'a'

parent 435ee0ca
...@@ -40,17 +40,17 @@ ...@@ -40,17 +40,17 @@
<div class="title"><span class="point"></span>预约详情</div> <div class="title"><span class="point"></span>预约详情</div>
<ul class="items" v-for="item in appointmentList" :key="item.id"> <ul class="items" v-for="item in appointmentList" :key="item.id">
<li> <li>
<div class="label">已选套餐</div> <div class="label">已选服务</div>
<div class="detail_content"> <div class="detail_content">
{{item.servicepackageName}} {{item.servicepackageName}}
</div> </div>
</li> </li>
<li> <li>
<div class="label">已选体检中心</div> <div class="label">已选服务门店</div>
<div class="detail_content">{{item.checkUnitName}}</div> <div class="detail_content">{{item.checkUnitName}}</div>
</li> </li>
<li> <li>
<div class="label">已选体检中心地址:</div> <div class="label">已选服务门店地址:</div>
<div class="detail_content">{{item.shopAddress}}</div> <div class="detail_content">{{item.shopAddress}}</div>
</li> </li>
<li> <li>
...@@ -61,11 +61,11 @@ ...@@ -61,11 +61,11 @@
<div class="tips"> <div class="tips">
<img :src="tips" alt="" /> <img :src="tips" alt="" />
<span class="desc" <span class="desc"
>请耐心等待体检确认,预约成功后将发送短信给您,如需改约请致电客服</span >请耐心等待服务确认,预约成功后将发送短信给您,如需改约请致电客服</span
> >
</div> </div>
<div class="btns"> <div class="btns">
<a-button type="primary" disabled> 预约中 </a-button> <a-button type="primary">预约中...</a-button>
<a-button type="primary" @click="goIndexPage"> 回首页 </a-button> <a-button type="primary" @click="goIndexPage"> 回首页 </a-button>
</div> </div>
</div> </div>
...@@ -137,9 +137,12 @@ export default { ...@@ -137,9 +137,12 @@ export default {
} }
</script> </script>
<style lang="less" scoped> <style lang="less" scoped>
/deep/ .footbar_{
position: initial;
}
.flow { .flow {
background: #fafafa; background: #fafafa;
min-height: calc(100vh - 300px); min-height: calc(100vh - 360px);
.btn { .btn {
text-align: center; text-align: center;
position: relative; position: relative;
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
<p><span class="faxicon"></span>传真:+8610 8453 9719</p> <p><span class="faxicon"></span>传真:+8610 8453 9719</p>
<p><span class="websiteicon"></span>网址:www.medilink-global.com.cn</p> <p><span class="websiteicon"></span>网址:www.medilink-global.com.cn</p>
</div> </div>
<div class="con_item2 flex_"> <div class="con_item2 flex_" v-if="false">
<div class="con_item3"> <div class="con_item3">
<p class="bold">关于中间带</p> <p class="bold">关于中间带</p>
<a href="" <a href=""
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
<img :src="logoImg" alt="" /> <img :src="logoImg" alt="" />
<span>健康服务预约平台</span> <span>健康服务预约平台</span>
</div> </div>
<div class="logout"> <div class="logout" @click.stop="logoutEvt">
<img :src="logout" alt="" /> <img :src="logout" alt="" />
<span>退出</span> <span>退出</span>
</div> </div>
...@@ -12,6 +12,7 @@ ...@@ -12,6 +12,7 @@
</template> </template>
<script> <script>
import Cookies from 'js-cookie'
export default { export default {
name: "Header", name: "Header",
components: {}, components: {},
...@@ -21,7 +22,25 @@ export default { ...@@ -21,7 +22,25 @@ export default {
logout: require("@/assets/imgs/login/logout.png"), logout: require("@/assets/imgs/login/logout.png"),
}; };
}, },
methods: {}, methods: {
logoutEvt(){
this.$confirm({
title: '提示',
content: '退出登录',
okText: '确认',
cancelText: '取消',
onOk: ()=>{
Cookies.remove('JSESSIONID');
this.$router.push({
path: '/login'
})
},
onCancel: ()=>{
}
})
}
},
}; };
</script> </script>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment