95 lines
1.5 KiB
Vue
95 lines
1.5 KiB
Vue
<template>
|
|
<view class="container safe-area-inset-bottom">
|
|
<MessageNotification />
|
|
<!-- 隐私内容 -->
|
|
<view class="card">
|
|
<view class="box">
|
|
<view class="title">
|
|
服务协议
|
|
</view>
|
|
<view class="word">
|
|
{{serve}}
|
|
</view>
|
|
</view>
|
|
|
|
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
serve: "",
|
|
}
|
|
},
|
|
onLoad() {
|
|
|
|
},
|
|
methods: {
|
|
// getInfo() {
|
|
// getmyAbout({
|
|
// method: "post",
|
|
// data: {
|
|
// hospital_id: this.hospital_id
|
|
// }
|
|
// }).then((res) => {
|
|
// // console.log(res, 'info');
|
|
// if (res.data.errcode == 0) {
|
|
|
|
// this.serve = res.data.data.service
|
|
// // console.log(this.serve);
|
|
// }
|
|
// })
|
|
// },
|
|
},
|
|
mounted() {
|
|
// this.getInfo()
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.container {
|
|
width: 100vw;
|
|
min-height: 100vh;
|
|
max-height: 100%;
|
|
background-color: #F8FAFC;
|
|
padding-bottom: env(safe-area-inset-bottom);
|
|
|
|
.card {
|
|
width: 750rpx;
|
|
padding: 30rpx 40rpx;
|
|
// background: #FFFFFF;
|
|
|
|
.box {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin: 10rpx 0;
|
|
|
|
.title {
|
|
font-size: 28rpx;
|
|
font-family: PingFang SC-Bold, PingFang SC;
|
|
font-weight: bold;
|
|
color: #000000;
|
|
margin: 10rpx 0;
|
|
line-height: 46rpx;
|
|
letter-spacing: 1rpx;
|
|
}
|
|
|
|
|
|
|
|
.word {
|
|
font-size: 22rpx;
|
|
font-family: PingFang SC-Regular, PingFang SC;
|
|
font-weight: 400;
|
|
color: #555;
|
|
line-height: 44rpx;
|
|
letter-spacing: 1rpx;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|