jsy-app/pages/irrigation/task/record.vue
2025-01-23 22:48:11 +08:00

41 lines
1.1 KiB
Vue
Raw 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>
<!-- 顶部导航栏 -->
<custom-nav-bar :left="true" leftText="" @leftClick="" title="轮灌履历"></custom-nav-bar>
<view class="card">
<uni-collapse>
<uni-collapse-item title-border="none" :border="false" :show-arrow="false" :open="true">
<template v-slot:title>
<view class="cards-title">
<view>
<view class="text">2-1</view>
<uni-tag class="bg-green" :circle="true" text="①开" />
</view>
<view class="title-r">
<view>F0003001</view>
</view>
</view>
</template>
<view class="content">
<view class="cards-content">
<view class="txt-list" @click="rotationrecord" >
<view class="list1">
<view><text>开阀时间</text>2025-01-05&nbsp;&nbsp;10:11</view>
<view><text>关阀时间</text>2025-01-05&nbsp;&nbsp;10:11</view>
<view><text>运行时长</text>1:12:22</view>
</view>
</view>
</view>
</view>
</uni-collapse-item>
</uni-collapse>
</view>
</template>
<script>
</script>
<style lang="scss" scoped>
.title-r{font-weight: bold;}
</style>