123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158 |
- .order-tabs-container {
- margin-top: 20px;
- .fl button {
- margin-top: 8px;
- }
- .fr button {
- margin-top: 8px;
- }
- }
- .order-main-container {
- height: 100%;
- width: 100%;
- font: 14px Arial, 'PingFang SC', 'Hiragino Sans GB', STHeiti, 'Microsoft YaHei', 'WenQuanYi Micro Hei', sans-serif;
- color: #495060;
- .table-top {
- background-color: #ecf5ff;
- margin-bottom: 5px;
- display: flex;
- height: 45px;
- align-items: center;
- .item {
- padding: 0 10px;
- width: 10%;
- text-align: center;
- }
- .product {
- width: 25%;
- }
- }
- .order-item {
- margin-bottom: 20px;
- .order-top {
- padding: 10px;
- background: #f8f8f9;
- border-left: 1px solid #dddee1;
- border-top: 1px solid #dddee1;
- border-right: 1px solid #dddee1;
- span {
- margin-right: 15px;
- }
- .el-checkbox,
- .el-checkbox .el-checkbox__input {
- margin-right: 0;
- }
- .el-checkbox .el-checkbox__input span {
- margin-right: 10px;
- }
- }
- .order-content {
- display: flex;
- border-top: 1px solid #dddee1;
- border-bottom: 1px solid #dddee1;
- border-left: 1px solid #dddee1;
- color: #495060;
- .col-item {
- display: flex;
- display: -webkit-flex;
- align-items: center;
- justify-content: center;
- padding: 10px;
- border-right: 1px solid #dddee1;
- text-align: center;
- height: 100%;
- flex-direction: column;
- div {
- margin-bottom: 5px;
- &:last-child {
- margin-bottom: 0;
- }
- }
- .operate {
- color: #2d8cf0;
- display: flex;
- flex-direction: column;
- button {
- margin-left: 0;
- }
- }
- .totalprice {
- color: #c00;
- }
- }
- .col-item-pro {
- display: flex;
- flex-direction: column;
- border-right: 1px solid #dddee1;
- height: 100%;
- .pro-item {
- display: flex;
- justify-content: space-between;
- position: relative;
- padding: 20px;
- // height: 100px;
- border-bottom: 1px solid #dddee1;
- .left {
- display: flex;
- .image {
- margin-right: 12px;
- width: 80px;
- height: 80px;
- img {
- width: 80px;
- height: 80px;
- display: block;
- }
- }
- .main {
- width: 70%;
- // height: 80px;
- display: flex;
- flex-direction: column;
- .spec {
- display: block;
- color: #999999;
- margin-top: 6px;
- }
- }
- }
- .right {
- text-align: right;
- span {
- display: block;
- margin-bottom: 10px;
- }
- }
- }
- .pro-item:last-child {
- border-bottom: none;
- }
- }
- }
- .order-remark {
- line-height: 34px;
- padding: 0 10px;
- border-left: 1px solid #dddee1;
- border-right: 1px solid #dddee1;
- border-bottom: 1px solid #dddee1;
- &.buyer {
- background: #faefee;
- color: #c93931;
- }
- &.saler {
- background: #fefaed;
- color: #ef9325;
- }
- }
- }
- }
- .no-data {
- display: flex;
- justify-content: center;
- align-items: center;
- height: 60px;
- font-size: 15px;
- color: #666666;
- }
|