first commit

This commit is contained in:
2025-12-29 14:59:44 +08:00
commit 10c3fbb0d7
5315 changed files with 795443 additions and 0 deletions

View File

@@ -0,0 +1,52 @@
<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>