You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
114 lines
2.2 KiB
114 lines
2.2 KiB
<style lang="scss">
|
|
.container{
|
|
height:100%;
|
|
background:#f6f6f6;
|
|
|
|
scroll-view{
|
|
flex-grow: 1;
|
|
height: 1rpx;
|
|
|
|
.card{
|
|
margin-top:0;
|
|
.head{
|
|
border-bottom:1px solid #D8D8D8;
|
|
display:flex;
|
|
align-items: center;
|
|
padding-bottom:20rpx;
|
|
margin-bottom:10rpx;
|
|
text{
|
|
flex-shrink: 0;
|
|
&:first-child{
|
|
color:#10C176;
|
|
}
|
|
&:nth-child(2){
|
|
margin:0 auto 0 15rpx;
|
|
flex-shrink: 1;
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
}
|
|
.item{
|
|
display:flex;
|
|
height:50rpx;
|
|
align-items: center;
|
|
color:#777;
|
|
text{
|
|
&:first-child{
|
|
margin-right:auto;
|
|
}
|
|
}
|
|
}
|
|
.foot{
|
|
background:rgba(223, 225, 224, 0.3);
|
|
min-height:88rpx;
|
|
margin:0 -30rpx -30rpx;
|
|
color:#999;
|
|
display:flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding:20rpx 30rpx;
|
|
.examine{
|
|
flex-grow: 1;
|
|
width:1rpx;
|
|
display:flex;
|
|
justify-content: space-evenly;
|
|
flex-direction: column;
|
|
}
|
|
.type{
|
|
flex-shrink: 0;
|
|
margin-left:40rpx;
|
|
font-size:24rpx;
|
|
color:#fff;
|
|
background:var(--bg,#FFCB69);
|
|
border-radius: 6rpx;
|
|
height:48rpx;
|
|
line-height: 48rpx;
|
|
min-width: 94rpx;
|
|
padding:0 8rpx;
|
|
text-align: center;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|
|
<template>
|
|
<view class="container flex">
|
|
<d-search/>
|
|
|
|
<scroll-view scroll-y>
|
|
<view class="card" @click="$u.route({url:'pages/purchase/detail'})">
|
|
<view class="head">
|
|
<text class="plant-edifice"/>
|
|
<text>一号基地</text>
|
|
<text>张召忠</text>
|
|
</view>
|
|
<view class="item">
|
|
<text>申请日期</text>
|
|
<text>2022-12-29</text>
|
|
</view>
|
|
<view class="item">
|
|
<text>种类</text>
|
|
<text>20种</text>
|
|
<text class="plant-youbian"/>
|
|
</view>
|
|
<view class="foot">
|
|
<view class="examine">
|
|
<text>审核人:章晓华</text>
|
|
<text class="over">原因:此处是原因此处是原因此处是处是原因此处是原因此处是</text>
|
|
</view>
|
|
<text class="type">审核中</text>
|
|
</view>
|
|
</view>
|
|
</scroll-view>
|
|
</view>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data(){
|
|
return{
|
|
|
|
}
|
|
}
|
|
}
|
|
</script>
|