cy
2023-11-20 717ff115ee5c57c8df0fd491b40b848090d2c68e
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
.stock-container {
    .ml-20 {
      margin-left: 20px;
    }
    .card,.list-item {
      display: flex;
      flex-wrap: wrap;
      margin: 0px !important;
      width: 100%;
      min-height: 100%;
      .cm-item {
        width: 100%;
      }
      .cm-item .el-card__body {
        padding-bottom: 5px;
      }
    }
    .card-data {
      width: 100%;
      position: relative;
      margin-top: 8px;
      .card-container {
        .card-header {
          height: 48px;
          display: flex;
          align-items: center;
          justify-content: space-between;
          background: #f3f9fe;
          padding: 0 32px 0 15px;
          box-sizing: border-box;
        }
        .card-header-left {
          display: flex;
          align-items: center;
          color: #999999;
          font-family: 'Microsoft YaHei UI';
          font-size: 18px;
          font-weight: 700;
          .value {
            color: #3d3d3d;
          }
  
          .states {
            width: 54px;
            height: 22px;
            line-height: 22px;
            text-align: center;
            border-radius: 4px;
            border: 1px solid #f9675b99;
            background: rgba($color:#f9675b99,$alpha:0.1);
            font-family: 'Microsoft YaHei';
            color: #f9675b;
            font-size: 13px;
            font-style: normal;
            font-weight: 400;
            margin-left: 8px;
          }
          .states-success {
            border: 1px solid #39ad6199;
            background: rgba($color:#39ad6199,$alpha:0.1);
            color: #39ad61;
          }
          .states-info {
            border: 1px solid #999999;
            background: rgba($color:#999999,$alpha:0.1);
            color: #999999;
          }
          .states-warning {
            border: 1px solid #e6a23c;
            background: rgba($color:#e6a23c,$alpha:0.1);
            color: #e6a23c;
          }
        }
        .one-hed {
          margin-top: 15px;
          padding: 0 32px 0 15px;
          box-sizing: border-box;
          .box {
            display: inline-block;
            margin-right: 20px;
          }
          .span-two {
            color: #83919e;
            font-size: 14px;
          }
        }
        .card-end {
          font-size: 14px;
          color: #3d3d3d;
          margin-top: 15px;
          display: flex;
          flex-wrap: wrap;
          font-family: 'Microsoft YaHei UI';
          padding: 0 16px;
          box-sizing: border-box;
          .item {
            width: 379px;
            height: 60px;
            padding: 8px 12px 9px 12px;
            box-sizing: border-box;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
            background: #f9f9f9;
            margin-right: 15px;
            margin-bottom: 15px;
            &:last-child {
              margin-right: 0;
            }
            .name {
              height: 22px;
              line-height: 22px;
            }
            .value-box {
              display: flex;
              .value-box-item {
                margin-right: 20px;
                .label {
                  color: #99999999;
                  line-height: 22px;
                }
                .value {
                  color: #ff3131;
                }
              }
            }
          }
        }
      }
    }
  }
  .no-data{
    margin-top: 100px;
    text-align: center;
    color: #909399;
  }
  
  /*编辑*/
  .stock-edit{
    .main-w {
      width: 88%;
    }
    .goods-card {
      position: relative;
      background: #f6f6f6;
      padding: 20px;
      box-sizing: border-box;
      border-radius: 4px;
      background-color: #f9f9f9;
      margin-top: 20px;
      &:nth-of-type(1) {
        margin-top: 0;
      }
    }
    .btn-group {
      width: 80px;
      position: absolute;
      right: -94px;
      bottom: 0px;
      .el-button {
        margin-bottom: 10px;
        margin-left: 0;
        display: block;
        &:last-child {
          margin-bottom: 0;
        }
      }
    }
  }
  
  /*详情*/
  .stock-detail{
    .img-row {
      display: flex;
      align-content: center;
    }
    .img-box {
      display: inline-block;
      width: 80px;
      height: 80px;
      background: #f9f9f9;
      margin-right: 20px;
      cursor: pointer;
      .img {
        width: 100%;
      }
    }
    
    .goods-card {
      position: relative;
      background: #f6f6f6;
      padding: 20px;
      box-sizing: border-box;
      border-radius: 4px;
      background-color: #f9f9f9;
      margin-top: 20px;
      &:nth-of-type(1) {
        margin-top: 0;
      }
    }
  }