Files
threeonecheck_web/pages/Inspectionlog/Inspectionlog.vue
2025-12-29 14:59:44 +08:00

52 lines
1.3 KiB
Vue
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view class="page padding">
<view class="padding bg-white radius list">
<view class="text-bold margin-bottom text-black">和谐矿业每日巡检</view>
<view class="flex margin-bottom">
<view class="text-gray">检查时间</view>
<view>2025-11-19 10:18:40</view>
</view>
<view class="flex margin-bottom">
<view class="text-gray">检查人员</view>
<view>18174379303</view>
</view>
<view class="flex margin-bottom">
<view class="text-gray">隐患数量</view>
<view>1</view>
</view>
<view class="flex margin-bottom">
<view class="text-gray">备注</view>
<view>可以</view>
</view>
<view class="flex justify-between">
<view></view>
<button class="bg-blue round cu-btn lg " @click="Checklist()">预览清单</button>
</view>
</view>
</view>
</template>
<script setup>
import { ref } from 'vue'
const Checklist = () => {
uni.navigateTo({
url: '/pages/Inspectionchecklist/Inspectionchecklist'
})
}
</script>
<style lang="scss" scoped>
.page {
min-height: 100vh;
background: #EBF2FC;
}
.list {
background: #FFFFFF;
box-shadow: 0rpx 2rpx 6rpx 2rpx rgba(0, 0, 0, 0.08);
border-left: 5px solid #2667E9;
border-radius: 20rpx;
padding: 20rpx;
}
</style>