| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <template>
- <view class="">
- <navigator url="./deatil" class="mine_order_statue" v-for="(item,index) in 6" :key="index">
- <view class="flex justify-between" style="padding: 10rpx 0 10rpx 10rpx ;">
- <view class="flex">
- <image mode="heightFix" src="http://139.9.103.171:1888/miniofile/xlyq/del/ldx.png" ></image>
- <view class="flex flex-direction justify-around padding-left-30">
- <view class="">
- <text class="text-bold">姓名:</text>
- <text>李德希</text>
- </view>
- <view class="">
- <text class="text-bold">温度:</text>
- <text>36.5 ℃</text>
- </view>
- <view class="">
- <text class="text-bold">测温时间:</text>
- <text>2020-12-15 14:18:56</text>
- </view>
- </view>
- </view>
- <view class="flex align-center justify-center">
- <text class="cuIcon-right"></text>
- </view>
- </view>
- </navigator>
- <u-divider bg-color="#f1f1f1" height="100">没有更多了</u-divider>
- </view>
- </template>
- <script>
- export default {
- name: '',
- data() {
- return {
-
- };
- },
- onLoad() {
-
- },
- methods:{
-
- }
- };
- </script>
- <style lang="scss" scoped>
- .mine_order_statue {
- margin: 18upx 14upx 0;
- background: #fff;
- padding: 10upx 20upx;
- border-radius: 20rpx;
- image{
- background-color: #FFFFFF;
- width: 160rpx;
- height: 160rpx;
- }
- }
- </style>
|