| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <template>
- <view class="history bg-white" >
- <view style="margin: -10rpx 0 50rpx -10rpx;" class="text-bold">
- 报修进度
- </view>
- <u-time-line>
- <u-time-line-item nodeTop="2" v-for="(item,index) in 10" :key="index">
- <template v-slot:node>
- <view class="u-node bg-white">
- <u-icon name="clock-fill" color="#5064eb" :size="28"></u-icon>
- </view>
- </template>
- <template v-slot:content>
- <view>
- <view class="">2022-03-30 15:17:04</view>
- <view style="width: 636rpx;">
- <view class="content">
- <view class="flex justify-between">
- <view class="">
- <view class="nav-title">
- <text class="">人员姓名:</text>
- <text class="">黄明潘</text>
- </view>
- <view class="nav-title">
- <text>测量体温:</text>
- <text class="text-red">36.9 ℃</text>
- </view>
- <view class="nav-title">
- <text>所属企业:</text>
- <text>所属企业</text>
- </view>
- </view>
- <view class="">
- <image
- @click="$util.preview('http://192.168.1.218:1889/miniofile/cyzh/upload/20220330/d5557aceee4b8cad094c1d0083dd80cf.jpg')"
- src="http://192.168.1.218:1889/miniofile/cyzh/upload/20220330/d5557aceee4b8cad094c1d0083dd80cf.jpg"
- style="width: 110rpx;height: 110rpx;border-radius: 10rpx;" mode=""></image>
- </view>
- </view>
- <view class="nav-title">
- <text>开门方式:</text>
- <text>人脸识别开门</text>
- </view>
- </view>
- </view>
- </view>
- </template>
- </u-time-line-item>
- </u-time-line>
- </view>
- </template>
- <script>
- export default {
- props: {
- list: {
- type: Array
- }
- },
- data() {
- return {
- };
- },
- onLoad() {
- },
- methods: {
- }
- };
- </script>
- <style lang="scss" scoped>
- page {
- background-color: #FFFFFF;
- }
- .nav-title {
- font-size: 28upx;
- font-weight: 300;
- padding-top: 20rpx;
- }
- .history {
- box-sizing: border-box;
- padding: 40rpx 20rpx 20rpx 50rpx;
- }
- .content {
- box-shadow: 0 8rpx 10rpx rgba(234, 234, 234, 0.5), 8rpx 0rpx 10rpx rgba(234, 234, 234, .5), -8rpx 0rpx 10rpx rgba(234, 234, 234, .5);
- background-color: #FFFFFF;
- padding: 20rpx;
- border-radius: 10rpx;
- margin: 20rpx 0;
- }
- </style>
|