52 lines
1.3 KiB
Vue
52 lines
1.3 KiB
Vue
<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> |