forked from zhongyuanhaiju/uniapp
407 lines
6.6 KiB
SCSS
407 lines
6.6 KiB
SCSS
$margin-both: 24rpx;
|
|
|
|
.order-container {
|
|
width: 100vw;
|
|
}
|
|
|
|
.align-right {
|
|
text-align: right;
|
|
}
|
|
|
|
.cate-search {
|
|
width: calc(100% - 48rpx);
|
|
background: #ffffff;
|
|
padding: 10rpx 24rpx 0 24rpx;
|
|
/* #ifdef H5 */
|
|
padding-top: 30rpx;
|
|
/* #endif */
|
|
position: relative;
|
|
z-index: 998;
|
|
|
|
input {
|
|
font-size: $font-size-base;
|
|
height: 76rpx;
|
|
padding: 0 25rpx 0 30rpx;
|
|
line-height: 60rpx;
|
|
width: calc(100% - 120rpx);
|
|
}
|
|
|
|
text {
|
|
font-size: 32rpx;
|
|
color: $color-tip;
|
|
width: 120rpx;
|
|
text-align: center;
|
|
}
|
|
|
|
.search-box {
|
|
width: 100%;
|
|
background: $color-bg;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
border-radius: 100rpx;
|
|
}
|
|
}
|
|
|
|
.order-nav {
|
|
width: 100vw;
|
|
height: 80rpx;
|
|
flex-direction: row;
|
|
/* #ifndef APP-PLUS */
|
|
white-space: nowrap;
|
|
/* #endif */
|
|
background: #fff;
|
|
display: flex;
|
|
position: fixed;
|
|
left: 0;
|
|
z-index: 998;
|
|
justify-content: space-around;
|
|
border-radius: 0px 0px 24rpx 24rpx;
|
|
|
|
.uni-tab-item {
|
|
width: 120rpx;
|
|
text-align: center;
|
|
}
|
|
|
|
.uni-tab-item-title {
|
|
font-size: $font-size-base;
|
|
display: inline-block;
|
|
height: 80rpx;
|
|
line-height: 80rpx;
|
|
border-bottom: 1px solid #fff;
|
|
flex-wrap: nowrap;
|
|
/* #ifndef APP-PLUS */
|
|
white-space: nowrap;
|
|
/* #endif */
|
|
text-align: center;
|
|
font-size: 30rpx;
|
|
position: relative;
|
|
}
|
|
|
|
.uni-tab-item-title-active::after {
|
|
content: " ";
|
|
display: block;
|
|
position: absolute;
|
|
left: 0;
|
|
bottom: 0;
|
|
width: 100%;
|
|
height: 6rpx;
|
|
background: linear-gradient(270deg, var(--base-color-light-9) 0%, var(--base-color) 100%);
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 0;
|
|
height: 0;
|
|
color: transparent;
|
|
}
|
|
}
|
|
|
|
.order-item {
|
|
margin: $margin-updown $margin-both;
|
|
border-radius: 12rpx;
|
|
background: #fff;
|
|
position: relative;
|
|
|
|
.order-header {
|
|
display: flex;
|
|
align-items: center;
|
|
position: relative;
|
|
padding: $padding 24rpx 26rpx 24rpx;
|
|
|
|
&.waitpay {
|
|
padding-left: 70rpx;
|
|
|
|
.icon-yuan_checked,
|
|
.icon-yuan_checkbox {
|
|
font-size: $font-size-toolbar;
|
|
position: absolute;
|
|
top: 48%;
|
|
left: 20rpx;
|
|
transform: translateY(-50%);
|
|
}
|
|
.icon-yuan_checkbox {
|
|
color: $color-tip;
|
|
}
|
|
}
|
|
|
|
.icon-dianpu {
|
|
display: inline-block;
|
|
line-height: 1;
|
|
margin-right: 12rpx;
|
|
font-size: $font-size-base;
|
|
}
|
|
|
|
.order-no {
|
|
font-size: 26rpx;
|
|
}
|
|
|
|
.status-name {
|
|
flex: 1;
|
|
text-align: right;
|
|
font-size: 26rpx;
|
|
font-weight: 600;
|
|
}
|
|
}
|
|
|
|
.order-body {
|
|
.goods-wrap {
|
|
display: flex;
|
|
position: relative;
|
|
padding: 0 24rpx 30rpx 24rpx;
|
|
|
|
&:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.goods-img {
|
|
width: 160rpx;
|
|
height: 160rpx;
|
|
margin-right: 20rpx;
|
|
|
|
image {
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: $border-radius;
|
|
}
|
|
}
|
|
|
|
.goods-info {
|
|
flex: 1;
|
|
position: relative;
|
|
max-width: calc(100% - 180rpx);
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
.pro-info {
|
|
flex: 1;
|
|
}
|
|
|
|
.goods-name {
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-line-clamp: 2;
|
|
overflow: hidden;
|
|
line-height: 1.5;
|
|
font-size: $font-size-base;
|
|
color: $color-title;
|
|
}
|
|
|
|
.goods-sub-section {
|
|
width: 100%;
|
|
line-height: 1.3;
|
|
display: flex;
|
|
margin-top: 14rpx;
|
|
|
|
.goods-price {
|
|
font-size: $font-size-tag;
|
|
color: var(--price-color);
|
|
flex: 1;
|
|
font-weight: bold;
|
|
}
|
|
.goods-num {
|
|
font-size: $font-size-tag;
|
|
color: $color-tip;
|
|
flex: 1;
|
|
text-align: right;
|
|
line-height: 1;
|
|
|
|
.iconfont {
|
|
font-size: $font-size-tag;
|
|
}
|
|
}
|
|
.goods-type {
|
|
font-size: $font-size-tag;
|
|
}
|
|
|
|
.unit {
|
|
font-size: $font-size-tag;
|
|
margin-right: 2rpx;
|
|
}
|
|
|
|
view {
|
|
flex: 1;
|
|
line-height: 1.3;
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
&:last-of-type {
|
|
text-align: right;
|
|
|
|
.iconfont {
|
|
line-height: 1;
|
|
font-size: $font-size-tag;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.goods-action {
|
|
text-align: right;
|
|
|
|
.action-btn {
|
|
line-height: 1;
|
|
padding: 14rpx 20rpx;
|
|
color: $color-title;
|
|
display: inline-block;
|
|
border-radius: $border-radius;
|
|
background: #fff;
|
|
border: 2rpx solid #999;
|
|
font-size: $font-size-tag;
|
|
margin-left: 10rpx;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.multi-order-goods {
|
|
width: calc(100vw - 96rpx);
|
|
white-space: nowrap;
|
|
margin: 0 24rpx 30rpx 24rpx!important;
|
|
position: relative;
|
|
|
|
.scroll-view {
|
|
width: 100%;
|
|
}
|
|
|
|
.goods-wrap {
|
|
padding: 0;
|
|
}
|
|
|
|
.goods-img {
|
|
min-width: 160rpx;
|
|
}
|
|
|
|
.shade {
|
|
position: absolute;
|
|
z-index: 5;
|
|
height: 100%;
|
|
width: 44rpx;
|
|
right: 0;
|
|
top: 0;
|
|
|
|
image {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.order-footer {
|
|
.order-base-info {
|
|
.total {
|
|
padding: $padding;
|
|
font-size: $font-size-tag;
|
|
background: rgba(248, 248, 248, 0.5);
|
|
display: flex;
|
|
margin: 0 24rpx;
|
|
|
|
& > text {
|
|
flex: 1;
|
|
line-height: 1;
|
|
margin-left: 10rpx;
|
|
}
|
|
}
|
|
|
|
.order-type {
|
|
padding-top: 20rpx;
|
|
flex: 0.5;
|
|
|
|
& > text {
|
|
line-height: 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
.order-action {
|
|
text-align: right;
|
|
padding: 30rpx 24rpx;
|
|
position: relative;
|
|
|
|
.order-time {
|
|
position: absolute;
|
|
top: 35rpx;
|
|
left: 30rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: 10px;
|
|
color:#b5b6b9;
|
|
|
|
image {
|
|
width: 26rpx;
|
|
height: 26rpx;
|
|
margin-right: 6rpx;
|
|
}
|
|
}
|
|
|
|
.action-btn {
|
|
line-height: 1;
|
|
padding: 20rpx 26rpx;
|
|
color: #333;
|
|
display: inline-block;
|
|
border-radius: $border-radius;
|
|
background: #fff;
|
|
border: 2rpx solid #999;
|
|
font-size: $font-size-tag;
|
|
margin-left: 10rpx;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/deep/ #action-date .uni-countdown .uni-countdown__number {
|
|
border: none !important;
|
|
padding: 0 !important;
|
|
margin: 0 !important;
|
|
}
|
|
|
|
.order-batch-action {
|
|
position: fixed;
|
|
z-index: 5;
|
|
left: 0;
|
|
bottom: 0;
|
|
width: 100vw;
|
|
height: 100rpx;
|
|
background: #fff;
|
|
box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
|
|
text-align: right;
|
|
|
|
&.bottom-safe-area {
|
|
padding-bottom: constant(safe-area-inset-bottom);
|
|
padding-bottom: env(safe-area-inset-bottom);
|
|
}
|
|
|
|
.action-btn {
|
|
height: 68rpx;
|
|
line-height: 68rpx;
|
|
background: #fff;
|
|
padding: 0 40rpx;
|
|
display: inline-block;
|
|
text-align: center;
|
|
margin: 16rpx 20rpx 16rpx 0;
|
|
border-radius: $border-radius;
|
|
border: 1px solid #ffffff;
|
|
|
|
&.white {
|
|
height: 68rpx;
|
|
line-height: 68rpx;
|
|
color: #333;
|
|
border: 1px solid #999;
|
|
background: #fff;
|
|
}
|
|
}
|
|
}
|
|
.sku {
|
|
display: flex;
|
|
line-height: 1;
|
|
margin-top: 10rpx;
|
|
}
|
|
.goods-spec {
|
|
color: $color-tip;
|
|
font-size: $font-size-goods-tag;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
flex: 1;
|
|
}
|