yyb
5 天以前 b8a2d6da97b148e661997a97fa46d75bdea961e5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
.page {
  box-sizing: border-box;
  padding: 30rpx;
}
.u-checkbox-group {
  display: flex;
  flex-direction: column;
}
.u-form-item {
  padding: 0;
}
 
.packer-popup {
  ::v-deep .u-mode-center-box {
    border-radius: 30rpx;
  }
  .popup-row {
    background-image: url("~@/static/custom/packing/row_bg.png");
    background-size: 100% auto;
    background-repeat: no-repeat;
    height: 89rpx;
    width: 520rpx;
    display: flex;
    justify-content: space-between;
    padding-top: 12rpx;
    padding-left: 14rpx;
    padding-right: 20rpx;
  }
}
.wrap .packing-registration-scroll-list {
  height: calc(100vh - var(--window-top) - var(--window-bottom) - 100rpx);
  width: 100%;
}
 
.packing-registration-scroll-list-group {
  ::v-deep .u-cell-item-box {
    background-color: rgba(250, 252, 255, 0.36) !important;
    padding: 0rpx 30rpx;
  }
 
  .content {
    font-size: 12px;
    background-color: #ffffff;
    box-sizing: border-box;
    border-radius: 10rpx;
    margin: 0rpx 0rpx 16rpx;
    padding: 20rpx 8rpx;
    box-shadow: none;
    display: flex;
    align-items: center;
 
    .content-header {
      width: 40rpx;
      height: 90rpx;
      display: flex;
      align-items: center;
 
      .content-header-icon {
        background-image: url("~@/static/custom/moveWareHouse/header_icon.png");
        background-size: 100% auto;
        background-repeat: no-repeat;
        height: 28rpx;
        width: 28rpx;
      }
 
      .content-header-title {
        margin-left: 11rpx;
        font-size: 26rpx;
        font-weight: bold;
        color: #626369;
      }
    }
 
    .content-body {
      flex: 1;
      background-color: #ffffff;
      border-radius: 10rpx;
      padding: 0rpx 23rpx;
 
      .row-list {
        height: 60rpx;
        display: flex;
        flex-direction: row;
        padding: 0px;
        align-items: center;
      }
 
      .row-list ._label {
        display: flex;
        flex: 0.8;
        color: #909399;
        align-items: center;
 
        ._label-name {
          margin-left: 11rpx;
          font-size: 26rpx;
          font-weight: 500;
          color: #666666;
        }
      }
 
      .row-list ._content {
        flex: 1.5;
        text-align: right;
        color: #909399;
        font-size: 24rpx;
      }
 
      .row-list .s1 {
        color: #d35651;
      }
    }
  }
}