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.
198 lines
4.2 KiB
198 lines
4.2 KiB
1 year ago
|
<template>
|
||
|
<u-navbar title="滞留" bgColor='#D3832A' leftIconColor='#ffffff' titleStyle='color:#ffffff'
|
||
|
placeholder :autoBack="true" leftIconSize='35'></u-navbar>
|
||
|
<view class="topbox">
|
||
|
<view class="scanbox">
|
||
|
<image src="/pagesHome/static/miniqc.png"></image>
|
||
|
<input placeholder="扫描或输入包条码"/>
|
||
|
</view>
|
||
|
<view class="viewboxs">
|
||
|
<view>数量:10</view>
|
||
|
<view>滞留日期:<text class="siz">2023-08-01 至 2023-08-12</text></view>
|
||
|
</view>
|
||
|
</view>
|
||
|
<scroll-view class="scvm" scroll-y="true">
|
||
|
<view class="itembox">
|
||
|
<view class="topon1">
|
||
|
<view>2</view>
|
||
|
<view>
|
||
|
<view class="xzc">正常</view>
|
||
|
<view>异常</view>
|
||
|
<image src="/pagesHome/static/removeitem.png"></image>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="topon2">
|
||
|
<image src="/pagesHome/static/checi.png"></image>
|
||
|
<view>滞留车次:D001</view>
|
||
|
</view>
|
||
|
<view class="topon2">
|
||
|
<image src="/pagesHome/static/checi.png"></image>
|
||
|
<view>订单号:DS258932</view>
|
||
|
</view>
|
||
|
<view class="topon2">
|
||
|
<image src="/pagesHome/static/checi.png"></image>
|
||
|
<view>包装号:DF25642332563</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</scroll-view>
|
||
|
<view class="butys">
|
||
|
<view class="qut">取消</view>
|
||
|
<view class="conf">确认合并</view>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts" setup>
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss">
|
||
|
.butys{
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
margin-top: 20upx;
|
||
|
justify-content: space-around;
|
||
|
>.conf{
|
||
|
width: 320upx;
|
||
|
height: 100upx;
|
||
|
border-radius: 20upx;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
font-size: 32upx;
|
||
|
font-weight: 400;
|
||
|
color: #FFFFFF;
|
||
|
background-color: #D3832A;
|
||
|
}
|
||
|
>.qut{
|
||
|
width: 320upx;
|
||
|
height: 100upx;
|
||
|
border-radius: 20upx;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
font-size: 32upx;
|
||
|
font-weight: 400;
|
||
|
color: #5A6875;
|
||
|
background-color: #FFFFFF;
|
||
|
}
|
||
|
}
|
||
|
.scvm{
|
||
|
width: 100%;
|
||
|
height: 64vh;
|
||
|
margin-top: 20upx;
|
||
|
.itembox{
|
||
|
width: 686upx;
|
||
|
border-radius: 20upx;
|
||
|
padding: 0 20upx;
|
||
|
box-sizing: border-box;
|
||
|
background-color: #ffffff;
|
||
|
margin: auto;
|
||
|
margin-bottom: 20upx;
|
||
|
>.topon1{
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: space-between;
|
||
|
padding: 20upx 10upx;
|
||
|
box-sizing: border-box;
|
||
|
border-bottom: 4upx solid #EEEEEE;
|
||
|
>view:nth-of-type(1){
|
||
|
width: 50rpx;
|
||
|
height: 50rpx;
|
||
|
background: #178AF220;
|
||
|
border-radius: 50%;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
font-size: 28upx;
|
||
|
font-weight: 500;
|
||
|
color: #178AF2;
|
||
|
}
|
||
|
>view:nth-of-type(2){
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
>view{
|
||
|
width: 136upx;
|
||
|
height: 64upx;
|
||
|
border-radius: 8upx;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
font-size: 28rpx;
|
||
|
font-weight: 400;
|
||
|
color: #90A0AF;
|
||
|
background-color: #F5F5F6;
|
||
|
margin-right: 20upx;
|
||
|
}
|
||
|
.xzc{
|
||
|
background-color: #178AF2 !important;
|
||
|
color: #ffffff !important;
|
||
|
}
|
||
|
.xze{
|
||
|
background-color: #F8544B !important;
|
||
|
color: #ffffff !important;
|
||
|
}
|
||
|
>image{
|
||
|
width: 64upx;
|
||
|
height: 64upx;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
>.topon2{
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: flex-start;
|
||
|
padding: 20upx 10upx;
|
||
|
box-sizing: border-box;
|
||
|
border-bottom: 4upx solid #EEEEEE;
|
||
|
>image{
|
||
|
width: 64upx;
|
||
|
height: 64upx;
|
||
|
margin-right: 20upx;
|
||
|
}
|
||
|
>view{
|
||
|
font-size: 28upx;
|
||
|
font-weight: 400;
|
||
|
color: #020B18;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
.topbox{
|
||
|
width: 100%;
|
||
|
padding: 20upx 32upx;
|
||
|
box-sizing: border-box;
|
||
|
background-color: #ffffff;
|
||
|
>.scanbox{
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
width: 686upx;
|
||
|
height: 80upx;
|
||
|
background: #F5F5F6;
|
||
|
border-radius: 8upx;
|
||
|
box-sizing: border-box;
|
||
|
padding: 20upx 30upx;
|
||
|
font-size: 28upx;
|
||
|
color: #020B18;
|
||
|
>image{
|
||
|
width: 32upx;
|
||
|
height: 32upx;
|
||
|
margin-right: 12upx;
|
||
|
}
|
||
|
}
|
||
|
.viewboxs{
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: space-between;
|
||
|
margin-top: 20upx;
|
||
|
>view{
|
||
|
font-size: 30upx;
|
||
|
font-weight: 400;
|
||
|
color: #020B18;
|
||
|
}
|
||
|
.siz{
|
||
|
font-size: 28upx;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</style>
|