<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>
|