You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
969 B
42 lines
969 B
<template>
|
|
<view class="p15 bc-f5">
|
|
<view class="br8 bc-fff p15lr">
|
|
<view class="flex ai-c bb1" style="height: 110rpx;">
|
|
<view class="title">体检结果</view>
|
|
<view class="ml30 fs14 cor-333 fl1">通过</view>
|
|
</view>
|
|
<view class="flex ai-c" style="height: 110rpx;">
|
|
<view class="title">体检时间</view>
|
|
<view class="ml30 fs14 cor-333 fl1">2023-08-10 14:35:23</view>
|
|
</view>
|
|
<view class="flex ai-fs" style="height: 110rpx;">
|
|
<view class="title">体检时间</view>
|
|
<image class="ml30" src="/static/image/mine/tijian.png" style="width: 333rpx;" mode="widthFix"></image>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.title {
|
|
width: 120rpx;
|
|
font-size: 14px;
|
|
color: #666;
|
|
}
|
|
.bb1 {
|
|
border-bottom: 1px solid #eee;
|
|
}
|
|
</style>
|
|
|