| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 | <template>	<view class="task-item">		<view class="task-head">			<view class="sn-box">单据编号:CGDD00000000692</view>			<view class="tips tips-red">待拣货</view>		</view>		<view class="task-line">			<view>客户名称:</view>			<view>快马阳光便利店</view>		</view>		<view class="task-line">			<view>客户名称:</view>			<view>快马阳光便利店</view>		</view>		<view class="task-line">			<view class="task-line2">				<view>货物总数:</view>				<view class="task-num">55件</view>			</view>			<view class="task-line2">				<view>货物种类:</view>				<view class="task-num">55件</view>			</view>		</view>		<view class="task-bottom">			<view class="btn btn-1">去出库</view>			<!-- <view class="btn btn-2">详情</view> -->		</view>	</view></template><script>	export default{		props:{			item:{				type:Object,				default:()=>{}			}		},		data() {			return{							}		}	}</script><style lang="scss" scoped>	.task-item {		width: 100%;		background-color: #fff;		border-radius: 16rpx;		padding: 24rpx 24rpx 0;		margin-bottom: 24rpx;		.task-head {			display: flex;			align-items: center;			justify-content: space-between;			.sn-box {				color: #333;				font-family: "PingFang SC";				font-size: 28rpx;				font-weight: 500;			}			.tips {				font-family: "PingFang SC";				font-size: 22rpx;				font-weight: 400;				width: 120rpx;				height: 44rpx;				border-radius: 8rpx;				display: flex;				align-items: center;				justify-content: center;			}			.tips-red {				color: #FF3B1D;				background-color: #fff;				background: rgba(255, 59, 29, 0.20);			}		}			.task-line {			display: flex;			align-items: center;			color: #666;			font-family: "PingFang SC";			font-size: 28rpx;			font-weight: 400;			margin-top: 16rpx;		}		.task-line2 {			width: 50%;			display: flex;			align-items: center;			.task-num {				color: #0256FF;;			}		}			.task-bottom {			border-top: 1px solid #F0F0F0;			margin-top: 32rpx;			height: 104rpx;			display: flex;			align-items: center;			justify-content: flex-end;			.btn {				width: 144rpx;				height: 56rpx;				border-radius: 8rpx;				font-size: 28rpx;				display: flex;				align-items: center;				justify-content: center;				font-family: "PingFang SC";			}			.btn-1 {				background: #0256FF;				color: #FFF;			}			.btn-2 {				border: 1px solid #0256FF;				background: rgba(2, 86, 255, 0.20);				color: #0256FF;			}		}	}</style>
 |