| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- 、<template>
- <view class="content">
- <view class="top"></view>
- <view class="title-box">
- <view class="title-item flex">
- <view class="title-font">订单号:</view>
- <view class="title-main">9876543211025666</view>
- </view>
- <view class="title-item flex">
- <view class="title-font">名称:</view>
- <view class="title-main">豆豆鞋</view>
- </view>
- <view class="title-item flex">
- <view class="title-font">数量:</view>
- <view class="title-main">2000</view>
- </view>
- <view class="title-item flex">
- <view class="title-font">进行阶段:</view>
- <view class="title-main">打样</view>
- </view>
- <view class="title-item flex">
- <view class="title-font">阶段预警时间:</view>
- <view class="title-main">2022年03月22日</view>
- </view>
- </view>
- <view class="main-box flex">
- <view class="main" v-for="(item,index) in 7">
- <view class="main-title">下料:</view>
- <view class="main-font">计划:2022年02月25日</view>
- <view class="main-font">实际:2022年02月25日</view>
- <view class="main-font">已完成数量:230</view>
- <view class="main-font">剩余完成数量:653</view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {};
- },
- onLoad() {},
- onShow() {},
- onReachBottom() {},
- onReady() {},
- methods: {}
- };
- </script>
- <style lang="scss">
- page,
- .content {
- min-height: 100%;
- height: auto;
- background: #ffffff;
- }
- .top {
- width: 100%;
- height: 20rpx;
- background: #f8f8f8;
- }
- .title-box {
- margin: 20rpx auto 0;
- width: 702rpx;
- background: #FFFFFF;
- border: 2px dashed #EAECED;
- box-shadow: 0rpx 0rpx 20rpx 0rpx rgba(50, 50, 52, 0.06);
- border-radius: 20rpx;
- padding: 0 20rpx;
- .title-item {
- padding: 20rpx 0;
- border-bottom: 2px dashed #EAECED;
- }
- .title-item:last-child {
- border-bottom: none;
- }
- .title-font {
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #666666;
- }
- .title-main {
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #333333;
- }
- }
- .main-box {
- padding: 0 20rpx;
- flex-wrap: wrap;
- .main {
- padding: 0 20rpx;
- margin-top: 20rpx;
- width: 342rpx;
- background: #FFFFFF;
- border: 2px dashed #EAECED;
- box-shadow: 0rpx 0rpx 20rpx 0rpx rgba(50, 50, 52, 0.06);
- border-radius: 20rpx;
- .main-title {
- padding: 20rpx 0;
- border-bottom: 1px dashed #EAECED;
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #333333;
- }
- .main-font {
- padding: 20rpx 0;
- border-bottom: 1px dashed #EAECED;
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #333333;
- }
- .main-font:last-child {
- border-bottom: none;
- }
- }
- }
- </style>
|