queenwuli
2020-12-27 cc499362b6eba119792e113796e4da029a70fc6d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<template>
    <view class="container">
        <view class="list-item">
            <navigator url="./skinDetectionDetail?title=皮肤色斑检测分析" hover-class="">
                <view class="list-header">
                    <text class="name">皮肤色斑检测分析</text>
                    <text class="gray">2020-12-08 10:12:48</text>
                </view>
                <view class="list-content">
                    <view class="flex justify-between">
                        <text>检测师</text>
                        <text class="gray">李广</text>
                    </view>
                    <view class="flex justify-between">
                        <text>检测门店</text>
                        <text class="gray">梅溪湖店</text>
                    </view>
                </view>
            </navigator>
        </view>
        <view class="list-item">
            <navigator url="./skinDetectionDetail?title=皮肤色斑检测分析" hover-class="">
                <view class="list-header">
                    <text class="name">皮肤色斑检测分析</text>
                    <text class="gray">2020-12-08 10:12:48</text>
                </view>
                <view class="list-content">
                    <view class="flex justify-between">
                        <text>检测师</text>
                        <text class="gray">李广</text>
                    </view>
                    <view class="flex justify-between">
                        <text>检测门店</text>
                        <text class="gray">梅溪湖店</text>
                    </view>
                </view>
            </navigator>
        </view>
    </view>
</template>
 
<script>
    export default{
        components:{
            
        },
        data(){
            return {
                
            }
        },
        methods:{
            
        }
    }
</script>
 
<style>
    page{
        background: #F6F6F8;
    }
    .container{
        padding: 15px 10px;
    }
    .list-item{
        background: #FFFFFF;
        color: #3a3f3f;
        font-size: 14px;
        padding: 12px 15px;
        border-radius: 4px;
        margin-bottom: 10px;
    }
    .list-header{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .list-header .name{
        font-size: 15px;
        font-weight: bold;
    }
    .list-content{
        padding-top: 10px;
        line-height: 26px;
    }
</style>