tmp: 部分代码与UnishopV5结合,但是代码有严重缺陷
This commit is contained in:
989
pages_promotion/bargain/public/css/detail.scss
Normal file
989
pages_promotion/bargain/public/css/detail.scss
Normal file
@@ -0,0 +1,989 @@
|
||||
.bargain {
|
||||
background-size: cover;
|
||||
background-repeat: repeat-y;
|
||||
padding-bottom: 100rpx;
|
||||
background: var(--bargain-promotion-color);
|
||||
.bargain_top {
|
||||
height: 360rpx;
|
||||
background-size: 100% auto;
|
||||
background-repeat: no-repeat;
|
||||
display: flex;
|
||||
color: #fff;
|
||||
justify-content: center;
|
||||
position: relative;
|
||||
line-height: 1;
|
||||
view {
|
||||
color: #fff;
|
||||
line-height: 50rpx;
|
||||
height: 50rpx;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
font-size: 24rpx;
|
||||
margin: 26rpx 2rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.bargin_content {
|
||||
background-color: #fff;
|
||||
border-radius: 20rpx;
|
||||
margin: 24rpx;
|
||||
padding-bottom: 60rpx;
|
||||
padding-top: 30rpx;
|
||||
margin-top: 0;
|
||||
.uer_info_base {
|
||||
display: flex;
|
||||
position: relative;
|
||||
padding: 0 0;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin-bottom: 20rpx;
|
||||
|
||||
.user_info_img {
|
||||
background-color: #fff;
|
||||
width: 120rpx;
|
||||
height: 120rpx;
|
||||
margin-top: -80rpx;
|
||||
margin-left: 0;
|
||||
border-radius: 50%;
|
||||
border: 2px solid #fff;
|
||||
overflow: hidden;
|
||||
|
||||
image {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.user_info_name {
|
||||
margin-left: 0;
|
||||
color: $color-tip;
|
||||
align-self: center;
|
||||
}
|
||||
|
||||
.rule_detail {
|
||||
position: absolute;
|
||||
height: 34rpx;
|
||||
line-height: 34rpx;
|
||||
padding: 0 12rpx;
|
||||
font-size: 18rpx;
|
||||
border: 1px solid;
|
||||
right: 24rpx;
|
||||
top: 30rpx;
|
||||
border-radius: 34rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.bargin_propaganda {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0 27rpx 30rpx;
|
||||
font-size: 34rpx;
|
||||
color: #333333;
|
||||
font-weight: bold;
|
||||
|
||||
.marks {
|
||||
font-size: 60rpx;
|
||||
line-height: 1;
|
||||
color: #b0b0b0;
|
||||
}
|
||||
}
|
||||
|
||||
.goods {
|
||||
display: flex;
|
||||
margin-top: 0;
|
||||
margin-left: 24rpx;
|
||||
margin-right: 24rpx;
|
||||
padding: 24rpx;
|
||||
background-color: #fafafa;
|
||||
border-radius: 10rpx;
|
||||
overflow: hidden;
|
||||
|
||||
.goods_img {
|
||||
min-width: 180rpx;
|
||||
width: 230rpx;
|
||||
height: 230rpx;
|
||||
margin-right: 20rpx;
|
||||
border-radius: 10rpx;
|
||||
|
||||
image {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.goods_content {
|
||||
flex: 1;
|
||||
overflow: hidden;
|
||||
|
||||
.goods_title {
|
||||
line-height: 1.3;
|
||||
font-size: 30rpx;
|
||||
margin-bottom: 10rpx;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 2;
|
||||
-webkit-box-orient: vertical;
|
||||
display: -moz-box;
|
||||
-moz-line-clamp: 2;
|
||||
-moz-box-orient: vertical;
|
||||
word-wrap: break-word;
|
||||
word-break: break-all;
|
||||
white-space: normal;
|
||||
height: 78rpx;
|
||||
}
|
||||
|
||||
.goods_price {
|
||||
display: flex;
|
||||
|
||||
> view {
|
||||
color: #666666;
|
||||
font-size: 22rpx;
|
||||
|
||||
.original_price {
|
||||
margin-left: 3rpx;
|
||||
}
|
||||
|
||||
.bottom_price {
|
||||
color: var(--price-color);
|
||||
margin-left: 3rpx;
|
||||
}
|
||||
&:first-child {
|
||||
margin-right: 10rpx;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.partake_num {
|
||||
font-size: 22rpx;
|
||||
color: #666666;
|
||||
margin-top: 4rpx;
|
||||
.residue-num {
|
||||
margin-left: 10rpx;
|
||||
}
|
||||
|
||||
.ident {
|
||||
color: #fe0b42;
|
||||
margin: 0 4rpx;
|
||||
}
|
||||
}
|
||||
.count-down {
|
||||
color: #666666;
|
||||
margin-top: 6rpx;
|
||||
text {
|
||||
margin-left: 16rpx;
|
||||
}
|
||||
}
|
||||
&.launch {
|
||||
.goods_price {
|
||||
flex-direction: column;
|
||||
.original_price {
|
||||
text-decoration: unset;
|
||||
color: var(--price-color);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.progress_info {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 40rpx 24rpx 0;
|
||||
|
||||
> view {
|
||||
font-size: $font-size-tag;
|
||||
color: #666666;
|
||||
|
||||
text {
|
||||
color: var(--price-color);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.progress {
|
||||
position: relative;
|
||||
margin: 40rpx 35rpx 0;
|
||||
height: 20rpx;
|
||||
|
||||
background-color: #fff4f4;
|
||||
border-radius: 30rpx;
|
||||
.progress_item {
|
||||
width: 5%;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
border-radius: 30rpx;
|
||||
height: 20rpx;
|
||||
background: linear-gradient(to left, var(--bargain-promotion-color), var(--bargain-promotion-aux-color));
|
||||
animation: all 1s forwards;
|
||||
|
||||
.iconfont {
|
||||
position: absolute;
|
||||
right: -20rpx;
|
||||
top: -10rpx;
|
||||
height: 40rpx;
|
||||
width: 40rpx;
|
||||
color: #fff;
|
||||
background-color: var(--bargain-promotion-color);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
line-height: 1;
|
||||
border-radius: 50%;
|
||||
font-size: 24rpx;
|
||||
z-index: 1;
|
||||
}
|
||||
}
|
||||
.progress-point {
|
||||
position: absolute;
|
||||
background-color: var(--bargain-promotion-color);
|
||||
height: 26rpx;
|
||||
width: 26rpx;
|
||||
border-radius: 50%;
|
||||
right: -13rpx;
|
||||
top: -4rpx;
|
||||
}
|
||||
}
|
||||
.info-bottom {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 10px 12px 0;
|
||||
align-items: center;
|
||||
.sale-box {
|
||||
color: var(--bargain-promotion-color);
|
||||
}
|
||||
.price-box {
|
||||
display: flex;
|
||||
line-height: 1;
|
||||
.discount-price {
|
||||
display: flex;
|
||||
font-size: 26rpx;
|
||||
line-height: 1;
|
||||
margin-top: 4rpx;
|
||||
.price {
|
||||
}
|
||||
}
|
||||
.delete-price {
|
||||
display: flex;
|
||||
font-size: 26rpx;
|
||||
line-height: 1;
|
||||
margin-top: 4rpx;
|
||||
}
|
||||
.price {
|
||||
line-height: 1.2;
|
||||
color: var(--bargain-promotion-color);
|
||||
}
|
||||
}
|
||||
.pro-info {
|
||||
line-height: 1;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
.button-border {
|
||||
border: 2rpx solid var(--bargain-promotion-color);
|
||||
color: var(--bargain-promotion-color);
|
||||
font-size: 24rpx;
|
||||
padding: 4rpx 6rpx;
|
||||
line-height: 1;
|
||||
border-radius: 4rpx;
|
||||
background-color: #fff4f4;
|
||||
position: relative;
|
||||
border-top-right-radius: 0;
|
||||
}
|
||||
.button-border::before {
|
||||
content: '';
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: -10rpx;
|
||||
right: -2rpx;
|
||||
border-left: 10rpx solid transparent;
|
||||
border-right: 0 solid transparent;
|
||||
border-bottom: 10rpx solid var(--bargain-promotion-color);
|
||||
}
|
||||
.button-border::after {
|
||||
content: '';
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: -6rpx;
|
||||
right: 0rpx;
|
||||
border-left: 10rpx solid transparent;
|
||||
border-right: 0 solid transparent;
|
||||
|
||||
border-bottom: 10rpx solid #fff4f4;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.bragain_recode {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
margin: 58rpx 24rpx 20rpx;
|
||||
|
||||
.bragain_recode_list {
|
||||
display: flex;
|
||||
margin: 0 26rpx;
|
||||
|
||||
.bragain_recode_add {
|
||||
margin-left: 44rpx;
|
||||
}
|
||||
|
||||
image {
|
||||
width: 84rpx;
|
||||
height: 84rpx;
|
||||
border: 4rpx solid #fe0b42;
|
||||
border-radius: 50%;
|
||||
margin-left: -22rpx;
|
||||
|
||||
&:first-child {
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.bragain_recode_more {
|
||||
width: 84rpx;
|
||||
height: 84rpx;
|
||||
line-height: 84rpx;
|
||||
text-align: center;
|
||||
font-size: 12rpx;
|
||||
color: #999999;
|
||||
}
|
||||
|
||||
.bragain_recode_add {
|
||||
width: 84rpx;
|
||||
height: 84rpx;
|
||||
line-height: 76rpx;
|
||||
text-align: center;
|
||||
border-radius: 50%;
|
||||
border: 1px dashed #e6e6e6;
|
||||
font-size: 60rpx;
|
||||
color: #e6e6e6;
|
||||
}
|
||||
}
|
||||
|
||||
.bragain_recode_detail {
|
||||
font-size: 24rpx;
|
||||
color: #000;
|
||||
margin: 0 34rpx 0;
|
||||
|
||||
.iconfont {
|
||||
font-size: 24rpx;
|
||||
color: #333333;
|
||||
}
|
||||
}
|
||||
|
||||
.invitation_peo {
|
||||
margin: 28rpx 30rpx 0;
|
||||
.bargain-success {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: $font-size-tag;
|
||||
margin: 40rpx 0 0;
|
||||
.iconfont {
|
||||
margin-right: 8rpx;
|
||||
color: rgb(250, 26, 26);
|
||||
}
|
||||
> view {
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
.launch-success {
|
||||
text-align: center;
|
||||
font-size: $font-size-tag;
|
||||
}
|
||||
.tip {
|
||||
text-align: center;
|
||||
color: #fe0b42;
|
||||
font-size: $font-size-goods-tag;
|
||||
}
|
||||
|
||||
.flex-box {
|
||||
display: flex;
|
||||
margin-top: 20rpx;
|
||||
button {
|
||||
flex: 1;
|
||||
|
||||
&:nth-child(2) {
|
||||
margin-left: 20rpx;
|
||||
}
|
||||
}
|
||||
&.success {
|
||||
flex-direction: column;
|
||||
.btn {
|
||||
margin: 0 !important;
|
||||
}
|
||||
.btn-vice {
|
||||
background-color: #fff;
|
||||
border: 2rpx solid var(--bargain-promotion-color);
|
||||
color: var(--bargain-promotion-color);
|
||||
margin: 0 !important;
|
||||
margin-top: 20rpx !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.btn {
|
||||
height: 80rpx;
|
||||
line-height: 80rpx;
|
||||
background: var(--bargain-promotion-color);
|
||||
border-radius: $border-radius;
|
||||
text-align: center;
|
||||
font-size: 30rpx;
|
||||
color: #fff;
|
||||
font-weight: bold;
|
||||
margin: 20rpx 0;
|
||||
}
|
||||
|
||||
.btn-vice {
|
||||
height: 80rpx;
|
||||
line-height: 80rpx;
|
||||
background: var(--bargain-promotion-aux-color);
|
||||
border-radius: $border-radius;
|
||||
text-align: center;
|
||||
font-size: 30rpx;
|
||||
color: #fff;
|
||||
font-weight: bold;
|
||||
margin: 20rpx 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.bargin_introduction {
|
||||
margin: 24rpx;
|
||||
background-color: #fff;
|
||||
border-radius: 20rpx;
|
||||
.record-empty {
|
||||
text-align: center;
|
||||
font-size: $font-size-tag;
|
||||
color: #999;
|
||||
padding: 100rpx 0;
|
||||
background-color: #fff;
|
||||
border-radius: 20rpx;
|
||||
}
|
||||
|
||||
.bargin_introduction_title {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 34rpx;
|
||||
color: #222222;
|
||||
padding: 36rpx 0 0;
|
||||
font-weight: bold;
|
||||
|
||||
&::before {
|
||||
content: '';
|
||||
background-color: #222222;
|
||||
width: 20rpx;
|
||||
height: 5rpx;
|
||||
display: block;
|
||||
margin-right: 10rpx;
|
||||
}
|
||||
&::after {
|
||||
content: '';
|
||||
background-color: #222222;
|
||||
width: 20rpx;
|
||||
height: 5rpx;
|
||||
display: block;
|
||||
margin-left: 10rpx;
|
||||
}
|
||||
}
|
||||
.detail-content {
|
||||
padding: 20rpx;
|
||||
overflow: hidden;
|
||||
* {
|
||||
max-width: 100%;
|
||||
}
|
||||
img {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
.flow {
|
||||
display: flex;
|
||||
background-color: #fff;
|
||||
border-radius: 20rpx;
|
||||
padding: 40rpx 0;
|
||||
|
||||
.flow_item {
|
||||
position: relative;
|
||||
flex: 1;
|
||||
text-align: center;
|
||||
|
||||
image {
|
||||
width: 88rpx;
|
||||
height: 88rpx;
|
||||
margin-bottom: 20rpx;
|
||||
}
|
||||
|
||||
> view {
|
||||
color: #333333;
|
||||
font-size: 24rpx;
|
||||
}
|
||||
|
||||
&::after {
|
||||
position: absolute;
|
||||
content: '';
|
||||
height: 2rpx;
|
||||
width: 100rpx;
|
||||
background-color: #fd0742;
|
||||
top: 44rpx;
|
||||
right: -22%;
|
||||
}
|
||||
|
||||
&:last-child::after {
|
||||
width: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.bargin_invitation {
|
||||
background-color: #fff;
|
||||
border-radius: 20rpx;
|
||||
padding: 27rpx;
|
||||
|
||||
.item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding: 20rpx 0;
|
||||
border-bottom: 2rpx solid rgba(237, 237, 237, 0.5);
|
||||
&:last-child {
|
||||
border-bottom: 0;
|
||||
}
|
||||
.item_left {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
overflow: hidden;
|
||||
align-items: center;
|
||||
image {
|
||||
height: 70rpx;
|
||||
width: 70rpx;
|
||||
border: 2rpx solid #979797;
|
||||
border-radius: 50%;
|
||||
margin-right: 20rpx;
|
||||
}
|
||||
|
||||
> view {
|
||||
overflow: hidden;
|
||||
align-items: center;
|
||||
display: flex;
|
||||
|
||||
color: #6d7278;
|
||||
white-space: nowrap;
|
||||
/* 不换行 */
|
||||
text-overflow: ellipsis;
|
||||
|
||||
.tip {
|
||||
font-size: 20rpx;
|
||||
color: #666666;
|
||||
}
|
||||
}
|
||||
.bargin_info {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: left;
|
||||
align-items: flex-start;
|
||||
> view:last-child {
|
||||
color: #999999;
|
||||
font-size: $font-size-tag;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.item_right {
|
||||
min-width: 100rpx;
|
||||
color: var(--bargain-promotion-color);
|
||||
font-size: $font-size-base;
|
||||
font-weight: bold;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
text {
|
||||
font-size: $font-size-base;
|
||||
color: var(--bargain-promotion-color);
|
||||
font-weight: bold;
|
||||
}
|
||||
.bargain-icon {
|
||||
width: 44rpx;
|
||||
height: 44rpx;
|
||||
margin-right: 14rpx;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.item_more {
|
||||
margin-top: 20rpx;
|
||||
text-align: center;
|
||||
font-size: $font-size-tag;
|
||||
color: #999999;
|
||||
}
|
||||
}
|
||||
.bargain-list {
|
||||
padding: 40rpx 0;
|
||||
margin: 0 24rpx;
|
||||
swiper {
|
||||
height: 360rpx;
|
||||
&.swiper-1 {
|
||||
height: 120rpx;
|
||||
}
|
||||
&.swiper-2 {
|
||||
height: 240rpx;
|
||||
}
|
||||
}
|
||||
.bargain-item {
|
||||
background-color: #f2f2f2;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: 16rpx 24rpx;
|
||||
> view:first-child {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.bargain-head {
|
||||
width: 60rpx;
|
||||
height: 60rpx;
|
||||
margin-right: 20rpx;
|
||||
border: 2rpx solid #979797;
|
||||
border-radius: 50%;
|
||||
overflow: hidden;
|
||||
image {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
.bargain-info {
|
||||
.bargain-title {
|
||||
font-size: 24rpx;
|
||||
color: #333333;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
width: 260rpx;
|
||||
}
|
||||
.bargain-desc {
|
||||
font-size: 22rpx;
|
||||
color: #6d7278;
|
||||
}
|
||||
}
|
||||
.bargain-price {
|
||||
text {
|
||||
color: var(--bargain-promotion-color);
|
||||
margin-left: 4rpx;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.bargain-popup {
|
||||
width: 70vw;
|
||||
background-color: #fff;
|
||||
position: relative;
|
||||
box-sizing: border-box;
|
||||
border-radius: 20rpx;
|
||||
height: 650rpx;
|
||||
.head {
|
||||
width: 55%;
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 0;
|
||||
transform: translate(-50%, -70%);
|
||||
}
|
||||
|
||||
.title {
|
||||
text-align: center;
|
||||
font-size: 38rpx;
|
||||
margin-top: 40rpx;
|
||||
}
|
||||
|
||||
.money {
|
||||
text-align: center;
|
||||
|
||||
.num {
|
||||
font-size: 36rpx;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.unit {
|
||||
font-size: 24rpx;
|
||||
margin-left: 8rpx;
|
||||
}
|
||||
}
|
||||
&.self {
|
||||
.head {
|
||||
position: unset;
|
||||
transform: unset;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
max-height: 350rpx;
|
||||
}
|
||||
.bargain-content {
|
||||
text-align: center;
|
||||
padding: 60rpx 40rpx;
|
||||
.money {
|
||||
font-weight: bold;
|
||||
}
|
||||
}
|
||||
.bargain-btn {
|
||||
width: max-content;
|
||||
margin: 0 auto;
|
||||
font-weight: bold;
|
||||
padding: 0 60rpx;
|
||||
background-color: var(--bargain-promotion-color);
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
||||
&.help {
|
||||
.bargain-content {
|
||||
.uer_info_base {
|
||||
display: flex;
|
||||
position: relative;
|
||||
padding: 0 0;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin-bottom: 20rpx;
|
||||
|
||||
.user_info_img {
|
||||
background-color: #fff;
|
||||
width: 120rpx;
|
||||
height: 120rpx;
|
||||
margin-top: -240rpx;
|
||||
margin-left: 0;
|
||||
border-radius: 50%;
|
||||
border: 2px solid var(--bargain-promotion-color);
|
||||
overflow: hidden;
|
||||
image {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
.user_info_name {
|
||||
margin-left: 0;
|
||||
align-self: center;
|
||||
font-size: 30rpx;
|
||||
font-weight: bold;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
.count-down {
|
||||
> text {
|
||||
color: #666;
|
||||
margin: 0 6rpx;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.icon-round-close {
|
||||
display: block;
|
||||
font-size: 60rpx;
|
||||
color: #ffffff;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.share-popup,
|
||||
.uni-popup__wrapper-box {
|
||||
.share-title {
|
||||
line-height: 60rpx;
|
||||
font-size: $font-size-toolbar;
|
||||
padding: 15rpx 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.share-content {
|
||||
display: flex;
|
||||
display: -webkit-flex;
|
||||
-webkit-flex-wrap: wrap;
|
||||
-moz-flex-wrap: wrap;
|
||||
-ms-flex-wrap: wrap;
|
||||
-o-flex-wrap: wrap;
|
||||
flex-wrap: wrap;
|
||||
padding: 15rpx;
|
||||
|
||||
.share-box {
|
||||
flex: 1;
|
||||
text-align: center;
|
||||
|
||||
.share-btn {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: none;
|
||||
line-height: 1;
|
||||
height: auto;
|
||||
background-color: unset;
|
||||
|
||||
text {
|
||||
margin-top: 20rpx;
|
||||
font-size: $font-size-tag;
|
||||
display: block;
|
||||
color: $color-title;
|
||||
}
|
||||
}
|
||||
|
||||
.iconfont {
|
||||
font-size: 80rpx;
|
||||
line-height: initial;
|
||||
}
|
||||
|
||||
.icon-fuzhilianjie,
|
||||
.icon-pengyouquan,
|
||||
.icon-haowuquan,
|
||||
.icon-share-friend {
|
||||
color: #07c160;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.share-footer {
|
||||
height: 90rpx;
|
||||
line-height: 90rpx;
|
||||
border-top: 2rpx #f5f5f5 solid;
|
||||
text-align: center;
|
||||
color: #666;
|
||||
}
|
||||
}
|
||||
|
||||
.poster-layer {
|
||||
/deep/ .uni-popup__wrapper.center {
|
||||
width: 100vw!important;
|
||||
height: 100vh!important;
|
||||
background: none!important;
|
||||
}
|
||||
|
||||
/deep/ .uni-popup__wrapper.uni-custom.center .uni-popup__wrapper-box {
|
||||
max-width: 100vw!important;
|
||||
max-height: 100vh!important;
|
||||
background: none!important;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
}
|
||||
|
||||
.poster-wrap {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.generate-poster {
|
||||
padding: 40rpx 0;
|
||||
.iconfont {
|
||||
font-size: 80rpx;
|
||||
color: #07c160;
|
||||
line-height: initial;
|
||||
}
|
||||
> view {
|
||||
text-align: center;
|
||||
&:last-child {
|
||||
margin-top: 20rpx;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.image-wrap {
|
||||
width: 80%;
|
||||
position: relative;
|
||||
|
||||
image {
|
||||
width: 100%;
|
||||
line-height: 1;
|
||||
border-radius: 10rpx;
|
||||
overflow: hidden;
|
||||
}
|
||||
}
|
||||
.msg {
|
||||
padding: 40rpx;
|
||||
}
|
||||
.save-btn {
|
||||
text-align: center;
|
||||
height: 80rpx;
|
||||
line-height: 80rpx;
|
||||
background-color: $base-color;
|
||||
border-radius: 10rpx;
|
||||
width: 80%;
|
||||
color: #fff;
|
||||
margin-top: 30rpx;
|
||||
}
|
||||
.save-text {
|
||||
color: #fff;
|
||||
margin-top: 10rpx;
|
||||
}
|
||||
.close {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 20rpx;
|
||||
width: 40rpx;
|
||||
height: 80rpx;
|
||||
font-size: 50rpx;
|
||||
color: #999;
|
||||
}
|
||||
}
|
||||
.goods-details img {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.rule-mark-enter {
|
||||
position: absolute;
|
||||
top: 120rpx;
|
||||
right: 0;
|
||||
width: 20rpx;
|
||||
height: 100rpx;
|
||||
line-height: 1;
|
||||
background: #fff4f4;
|
||||
padding: 10rpx 20rpx 10rpx 20rpx;
|
||||
border-radius: 20rpx 0 0 20rpx;
|
||||
color: var(--bargain-promotion-color);
|
||||
font-size: $font-size-tag;
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
.rule-wrap {
|
||||
border-radius: 10rpx;
|
||||
background-color: #fff;
|
||||
width: 80vw;
|
||||
padding: 12rpx;
|
||||
box-sizing: border-box;
|
||||
|
||||
.content-wrap {
|
||||
width: 100%;
|
||||
border-radius: 8rpx;
|
||||
position: relative;
|
||||
|
||||
.rule-head {
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
transform: translateY(-50%);
|
||||
left: 0;
|
||||
top: 0;
|
||||
}
|
||||
|
||||
.rule {
|
||||
max-height: 880rpx;
|
||||
overflow: hidden;
|
||||
padding: 80rpx 30rpx 0 30rpx;
|
||||
box-sizing: border-box;
|
||||
.text {
|
||||
font-size: $font-size-sub;
|
||||
}
|
||||
}
|
||||
|
||||
.icon-round-close {
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
position: absolute;
|
||||
bottom: -150rpx;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
font-size: 70rpx;
|
||||
}
|
||||
}
|
||||
}
|
||||
243
pages_promotion/bargain/public/css/list.scss
Normal file
243
pages_promotion/bargain/public/css/list.scss
Normal file
@@ -0,0 +1,243 @@
|
||||
.page {
|
||||
width: 100%;
|
||||
min-height: 100vh;
|
||||
background: var(--bargain-promotion-color);
|
||||
}
|
||||
.adv-wrap {
|
||||
margin: $margin-updown $margin-both;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.lineheight-clear {
|
||||
line-height: 1 !important;
|
||||
}
|
||||
// 商品列表单列样式
|
||||
.goods-list.single-column {
|
||||
.goods-item {
|
||||
padding: 26rpx 26rpx 20rpx;
|
||||
background: #fff;
|
||||
margin: $margin-updown $margin-both;
|
||||
border-radius: 24rpx;
|
||||
display: flex;
|
||||
position: relative;
|
||||
flex-direction: column;
|
||||
.goods-item-content {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.goods-item-bottom {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin-top: 10rpx;
|
||||
line-height: 1;
|
||||
.item-bottom-left {
|
||||
display: flex;
|
||||
align-items: baseline;
|
||||
margin-top: 10rpx;
|
||||
.delete-pirce {
|
||||
text-decoration: line-through;
|
||||
color: $color-sub;
|
||||
margin-left: 20rpx;
|
||||
}
|
||||
.txt {
|
||||
margin-left: 10rpx;
|
||||
font-weight: 26rpx;
|
||||
}
|
||||
.unit,
|
||||
.price {
|
||||
color: var(--bargain-promotion-color) !important;
|
||||
}
|
||||
}
|
||||
.item-bottom-right {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
font-weight: bold;
|
||||
button {
|
||||
color: #fff;
|
||||
background-color: var(--bargain-promotion-color);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.goods-img {
|
||||
width: 200rpx;
|
||||
height: 200rpx;
|
||||
overflow: hidden;
|
||||
border-radius: $border-radius;
|
||||
margin-right: 20rpx;
|
||||
|
||||
image {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.goods-tag {
|
||||
color: #fff;
|
||||
line-height: 1;
|
||||
padding: 8rpx 12rpx;
|
||||
position: absolute;
|
||||
border-top-left-radius: $border-radius;
|
||||
border-bottom-right-radius: $border-radius;
|
||||
top: 26rpx;
|
||||
left: 26rpx;
|
||||
font-size: $font-size-goods-tag;
|
||||
}
|
||||
|
||||
.info-wrap {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
width: calc(100% - 220rpx);
|
||||
.info-sub-title {
|
||||
color: $color-tip;
|
||||
font-size: $font-size-tag;
|
||||
margin-top: 6rpx;
|
||||
}
|
||||
}
|
||||
.info-bottom {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin-top: 10rpx;
|
||||
align-items: center;
|
||||
.sale-box {
|
||||
color: var(--bargain-promotion-color);
|
||||
}
|
||||
.price-box {
|
||||
display: flex;
|
||||
line-height: 1;
|
||||
.discount-price {
|
||||
display: flex;
|
||||
font-size: 26rpx;
|
||||
line-height: 1;
|
||||
margin-top: 4rpx;
|
||||
}
|
||||
.delete-price {
|
||||
display: flex;
|
||||
font-size: 26rpx;
|
||||
line-height: 1;
|
||||
margin-top: 4rpx;
|
||||
}
|
||||
.price {
|
||||
line-height: 1.2;
|
||||
color: var(--bargain-promotion-color);
|
||||
}
|
||||
}
|
||||
.pro-info {
|
||||
line-height: 1;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
.button-border {
|
||||
border: 2rpx solid var(--bargain-promotion-color);
|
||||
color: var(--bargain-promotion-color);
|
||||
font-size: 24rpx;
|
||||
padding: 4rpx 6rpx;
|
||||
line-height: 1;
|
||||
border-radius: 4rpx;
|
||||
background-color: var(--bargain-promotion-color-shallow);
|
||||
position: relative;
|
||||
border-top-right-radius: 0;
|
||||
}
|
||||
.button-border::before {
|
||||
content: '';
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: -10rpx;
|
||||
right: -2rpx;
|
||||
border-left: 10rpx solid transparent;
|
||||
border-right: 0 solid transparent;
|
||||
border-bottom: 10rpx solid var(--bargain-promotion-color);
|
||||
}
|
||||
.button-border::after {
|
||||
content: '';
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: -6rpx;
|
||||
right: 0rpx;
|
||||
border-left: 10rpx solid transparent;
|
||||
border-right: 0 solid transparent;
|
||||
|
||||
border-bottom: 10rpx solid var(--bargain-promotion-color-shallow);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.name-wrap {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.goods-name {
|
||||
font-size: $font-size-base;
|
||||
line-height: 1.4;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 2;
|
||||
-webkit-box-orient: vertical;
|
||||
font-weight: bold;
|
||||
word-wrap: break-word;
|
||||
height: 80rpx;
|
||||
}
|
||||
|
||||
.progress-wrap {
|
||||
display: flex;
|
||||
position: relative;
|
||||
width: calc(100% - 32rpx);
|
||||
margin: 10rpx auto;
|
||||
progress {
|
||||
flex: 1;
|
||||
}
|
||||
.progress-point {
|
||||
background: var(--bargain-promotion-color);
|
||||
width: 24rpx;
|
||||
height: 24rpx;
|
||||
border-radius: 50%;
|
||||
position: absolute;
|
||||
right: -12rpx;
|
||||
top: -4rpx;
|
||||
z-index: 1;
|
||||
}
|
||||
.progress-select {
|
||||
background-color: var(--bargain-promotion-color);
|
||||
color: var(--bargain-promotion-aux-color);
|
||||
width: 24rpx;
|
||||
height: 24rpx;
|
||||
border-radius: 50%;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: -4rpx;
|
||||
font-size: 24rpx;
|
||||
z-index: 11;
|
||||
|
||||
&.icon {
|
||||
width: 34rpx;
|
||||
height: 34rpx;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
top: -10rpx;
|
||||
}
|
||||
.iconfont {
|
||||
background-color: unset;
|
||||
color: #fff;
|
||||
font-size: 20rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.txt {
|
||||
margin: 0 100rpx 0 20rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.member-price-tag {
|
||||
display: inline-block;
|
||||
width: 60rpx;
|
||||
line-height: 1;
|
||||
margin-left: 6rpx;
|
||||
|
||||
image {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
537
pages_promotion/bargain/public/js/detail.js
Normal file
537
pages_promotion/bargain/public/js/detail.js
Normal file
@@ -0,0 +1,537 @@
|
||||
import htmlParser from '@/common/js/html-parser';
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
windowHeight: 0,
|
||||
launch_id: 0,
|
||||
bargain_id: 0,
|
||||
info: {
|
||||
headimg: ''
|
||||
},
|
||||
bargainRecord: [],
|
||||
page: 1,
|
||||
totalPage: 1,
|
||||
load: false,
|
||||
timeMachine: null,
|
||||
bargainMoney: '0.00',
|
||||
poster: '-1', //海报
|
||||
posterMsg: '', //海报错误信息
|
||||
posterHeight: 0,
|
||||
goodsDetail: null,
|
||||
launchInfo: null,
|
||||
maxBuy: 1,
|
||||
launchList: null,
|
||||
showMore: false,
|
||||
isOwn: 0, //是否自己砍了一刀
|
||||
my_bargain_money: 0,
|
||||
shareImg: ''
|
||||
};
|
||||
},
|
||||
onLoad(data) {
|
||||
setTimeout(() => {
|
||||
if (!this.addonIsExist.bargain) {
|
||||
this.$util.showToast({
|
||||
title: '商家未开启砍价',
|
||||
mask: true,
|
||||
duration: 2000
|
||||
});
|
||||
setTimeout(() => {
|
||||
this.$util.redirectTo('/pages/index/index');
|
||||
}, 2000);
|
||||
}
|
||||
}, 1000);
|
||||
|
||||
// #ifdef MP-ALIPAY
|
||||
let options = my.getLaunchOptionsSync();
|
||||
options.query && Object.assign(data, options.query);
|
||||
// #endif
|
||||
|
||||
this.getHeight();
|
||||
if (data.l_id) this.launch_id = data.l_id;
|
||||
if (data.b_id) this.bargain_id = data.b_id;
|
||||
if (data.is_own) this.isOwn = data.is_own;
|
||||
|
||||
if (data.scene) {
|
||||
var sceneParams = decodeURIComponent(data.scene);
|
||||
sceneParams = sceneParams.split('&');
|
||||
if (sceneParams.length) {
|
||||
sceneParams.forEach(item => {
|
||||
if (item.indexOf('m') != -1) uni.setStorageSync('source_member', item.split('-')[1]);
|
||||
if (item.indexOf('l_id') != -1) this.id = item.split('-')[1];
|
||||
if (item.indexOf('b_id') != -1) this.bargain_id = item.split('-')[1];
|
||||
if (item.indexOf('is_own') != -1) this.isOwn = item.split('-')[1];
|
||||
});
|
||||
}
|
||||
}
|
||||
// #ifdef MP-WEIXIN
|
||||
this.getShareImg();
|
||||
// #endif
|
||||
},
|
||||
onShow() {
|
||||
this.getBargainInfo();
|
||||
},
|
||||
computed: {
|
||||
progress() {
|
||||
if (this.launchInfo && this.goodsDetail) {
|
||||
let total = this.goodsDetail.price - this.launchInfo.floor_price,
|
||||
progress = parseInt(((this.goodsDetail.price - this.launchInfo.curr_price) / total) * 100);
|
||||
|
||||
return isNaN(progress) ? 0 : progress;
|
||||
} else {
|
||||
return 0;
|
||||
}
|
||||
},
|
||||
showNum() {
|
||||
if (this.launchList && this.launchList.length < 3) {
|
||||
return this.launchList.length;
|
||||
} else {
|
||||
return 3;
|
||||
}
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
timeUp() {
|
||||
this.getBargainInfo();
|
||||
},
|
||||
getHeight() {
|
||||
var self = this;
|
||||
uni.getSystemInfo({
|
||||
success: function (res) {
|
||||
self.windowHeight = res.windowHeight - 44;
|
||||
if (self.iphoneX) {
|
||||
self.windowHeight = self.windowHeight - 33;
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
getBargainInfo() {
|
||||
if (this.load) return;
|
||||
this.load = true;
|
||||
this.$api.sendRequest({
|
||||
url: '/bargain/api/bargain/detail',
|
||||
data: {
|
||||
launch_id: this.launch_id,
|
||||
bargain_id: this.bargain_id
|
||||
},
|
||||
success: res => {
|
||||
if (res.code == 0) {
|
||||
this.goodsDetail = res.data.goods_sku_detail;
|
||||
|
||||
if (this.goodsDetail.sku_spec_format) this.goodsDetail.sku_spec_format = JSON.parse(this.goodsDetail.sku_spec_format);
|
||||
|
||||
this.$langConfig.title(this.goodsDetail.sku_name);
|
||||
|
||||
this.goodsDetail.unit = this.goodsDetail.unit || "件";
|
||||
|
||||
// 商品SKU格式
|
||||
if (this.goodsDetail.goods_spec_format) this.goodsDetail.goods_spec_format = JSON.parse(this.goodsDetail.goods_spec_format);
|
||||
|
||||
// if (this.goodsDetail.goods_content) this.goodsDetail.goods_content = htmlParser(this.goodsDetail.goods_content);
|
||||
|
||||
if (this.addonIsExist.form) {
|
||||
this.getGoodsForm();
|
||||
}
|
||||
|
||||
if (res.data.launch_info && Object.keys(res.data.launch_info).length > 0) {
|
||||
this.launchInfo = res.data.launch_info;
|
||||
if (this.launchInfo.status == 0) {
|
||||
this.timeMachine = this.$util.countDown(this.launchInfo.end_time - res.timestamp);
|
||||
}
|
||||
this.launch_id = this.launchInfo.launch_id;
|
||||
|
||||
}
|
||||
if (res.data.launch_list && Object.keys(res.data.launch_list).length > 0) {
|
||||
this.launchList = res.data.launch_list;
|
||||
}
|
||||
|
||||
//发起砍价后自砍一刀展示
|
||||
if (this.isOwn && this.goodsDetail.is_own > 0 && this.launchInfo && this.launchInfo.self && this.launchInfo.my_bargain_money) {
|
||||
this.my_bargain_money = this.launchInfo.my_bargain_money;
|
||||
this.$refs.uniSelfBargainPopup.open();
|
||||
}
|
||||
|
||||
//好友进来后帮砍弹出
|
||||
if (this.launchInfo && !this.launchInfo.self && !this.launchInfo.cut && this.goodsDetail.bargain_status == 1) this.$refs.uniHelpPopup.open();
|
||||
|
||||
this.load = false;
|
||||
this.getBargainRecord(1);
|
||||
this.setPublicShare();
|
||||
if (this.$refs.loadingCover) this.$refs.loadingCover.hide();
|
||||
} else {
|
||||
this.load = false;
|
||||
this.$util.redirectTo('/pages_promotion/bargain/my_bargain');
|
||||
}
|
||||
},
|
||||
fail: res => {
|
||||
this.load = false;
|
||||
if (this.$refs.loadingCover) this.$refs.loadingCover.hide();
|
||||
}
|
||||
});
|
||||
},
|
||||
getBargainRecord(page) {
|
||||
if (this.load) return;
|
||||
|
||||
if (!this.launchInfo) return;
|
||||
|
||||
this.load = true;
|
||||
|
||||
this.$api.sendRequest({
|
||||
url: '/bargain/api/bargain/record',
|
||||
data: {
|
||||
page: page,
|
||||
id: this.launchInfo.launch_id
|
||||
},
|
||||
success: res => {
|
||||
this.load = false;
|
||||
this.totalPage = res.data.page_count;
|
||||
this.page = page;
|
||||
if (res.code == 0 && res.data.list.length) {
|
||||
if (page == 1) {
|
||||
this.bargainRecord = res.data.list;
|
||||
} else {
|
||||
this.bargainRecord = this.bargainRecord.concat(res.data.list);
|
||||
}
|
||||
}
|
||||
this.showMore = false;
|
||||
if (page < this.totalPage) {
|
||||
this.showMore = true;
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
scrolltolower() {
|
||||
let next = this.page + 1;
|
||||
if (!this.load && next <= this.totalPage) {
|
||||
this.getBargainRecord(next);
|
||||
}
|
||||
},
|
||||
browse() {
|
||||
this.$api.sendRequest({
|
||||
url: '/bargain/api/bargain/browse',
|
||||
data: {
|
||||
bargain_id: this.goodsDetail.bargain_id
|
||||
},
|
||||
success: res => {
|
||||
}
|
||||
});
|
||||
},
|
||||
share() {
|
||||
this.$api.sendRequest({
|
||||
url: '/bargain/api/bargain/share',
|
||||
data: {
|
||||
bargain_id: this.goodsDetail.bargain_id
|
||||
},
|
||||
success: res => {
|
||||
}
|
||||
});
|
||||
},
|
||||
/**
|
||||
* 刷新商品详情数据
|
||||
* @param {Object} goodsSkuDetail
|
||||
*/
|
||||
refreshGoodsSkuDetail(goodsSkuDetail) {
|
||||
Object.assign(this.goodsDetail, goodsSkuDetail);
|
||||
},
|
||||
|
||||
// 发起砍价
|
||||
createBargain() {
|
||||
if (!this.storeToken) {
|
||||
this.$refs.login.open('/pages_promotion/bargain/detail?l_id=' + this.launch_id + '&b_id=' + this.bargain_id);
|
||||
return;
|
||||
}
|
||||
|
||||
// #ifdef MP
|
||||
this.$util.subscribeMessage('BARGAIN_COMPLETE');
|
||||
// #endif
|
||||
|
||||
if (this.goodsDetail.sku_spec_format || this.goodsDetail.goods_form) {
|
||||
this.$refs.goodsSku.show('bargain');
|
||||
} else {
|
||||
this.$api.sendRequest({
|
||||
url: '/bargain/api/bargain/launch',
|
||||
data: {
|
||||
id: this.goodsDetail.id
|
||||
},
|
||||
success: res => {
|
||||
if (res.code == 0) {
|
||||
let params = {
|
||||
l_id: res.data,
|
||||
b_id: this.bargain_id
|
||||
};
|
||||
if (this.goodsDetail.is_own) params.is_own = 1;
|
||||
|
||||
this.$util.redirectTo('/pages_promotion/bargain/detail', params, 'redirectTo');
|
||||
} else {
|
||||
this.$util.showToast({
|
||||
title: res.message
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
},
|
||||
/**
|
||||
* 立即购买,不砍了,直接买
|
||||
*/
|
||||
buyNow() {
|
||||
let goodsFormData = uni.getStorageSync('goodFormData');
|
||||
let fn = ()=>{
|
||||
uni.setStorage({
|
||||
key: 'bargainOrderCreateData',
|
||||
data: {
|
||||
launch_id: this.launchInfo.launch_id
|
||||
},
|
||||
success: () => {
|
||||
this.$util.redirectTo('/pages_promotion/bargain/payment');
|
||||
}
|
||||
});
|
||||
};
|
||||
if(!goodsFormData && this.goodsDetail.goods_form){
|
||||
this.$refs.goodsSku.show('bargain',()=>{
|
||||
fn();
|
||||
});
|
||||
}else{
|
||||
fn();
|
||||
}
|
||||
},
|
||||
/**
|
||||
* 帮好友砍价
|
||||
*/
|
||||
bargain() {
|
||||
if (this.storeToken) {
|
||||
this.$api.sendRequest({
|
||||
url: '/bargain/api/bargain/bargain',
|
||||
data: {
|
||||
id: this.launchInfo.launch_id
|
||||
},
|
||||
success: res => {
|
||||
if (res.code == 0) {
|
||||
this.bargainMoney = parseFloat(res.data.bargain_money).toFixed(2);
|
||||
this.$refs.uniHelpPopup.close();
|
||||
this.$refs.uniPopup.open();
|
||||
this.getBargainInfo();
|
||||
} else {
|
||||
this.$util.showToast({
|
||||
title: res.message
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
} else {
|
||||
this.$refs.login.open('/pages_promotion/bargain/detail?l_id=' + this.launch_id + '&b_id=' + this.bargain_id);
|
||||
}
|
||||
},
|
||||
closePopup() {
|
||||
this.$refs.uniPopup.close();
|
||||
},
|
||||
closeSelfPop() {
|
||||
this.$refs.uniSelfBargainPopup.close();
|
||||
},
|
||||
// 打开分享弹出层
|
||||
openSharePopup() {
|
||||
this.$refs.uniSelfBargainPopup.close();
|
||||
this.$refs.sharePopup.open();
|
||||
this.share();
|
||||
},
|
||||
// 关闭分享弹出层
|
||||
closeSharePopup() {
|
||||
this.$refs.sharePopup.close();
|
||||
},
|
||||
copyUrl() {
|
||||
let text = '嘿!朋友就差你这一刀了,帮一下忙呗~' + this.$config.h5Domain + '/pages_promotion/bargain/detail?l_id=' + this.launch_id + '&b_id=' + this.bargain_id;
|
||||
if (this.memberInfo && this.memberInfo.member_id) text += '&source_member=' + this.memberInfo.member_id;
|
||||
this.$util.copy(text, () => {
|
||||
this.closeSharePopup();
|
||||
});
|
||||
},
|
||||
toBargainRecode() {
|
||||
let view = uni.createSelectorQuery().select('.bargin_introduction');
|
||||
view.boundingClientRect(data => {
|
||||
uni.pageScrollTo({
|
||||
duration: 100,
|
||||
scrollTop: data.top + 100
|
||||
});
|
||||
}).exec();
|
||||
},
|
||||
/**
|
||||
* 设置公众号分享
|
||||
*/
|
||||
setPublicShare() {
|
||||
let shareUrl = this.$config.h5Domain + '/pages_promotion/bargain/detail?l_id=' + this.launch_id + '&b_id=' + this.bargain_id;
|
||||
if (this.memberInfo && this.memberInfo.member_id) shareUrl += '&source_member=' + this.memberInfo.member_id;
|
||||
|
||||
this.$util.setPublicShare({
|
||||
title: this.goodsDetail.sku_name,
|
||||
desc: '嘿!朋友就差你这一刀了,帮一下忙呗~',
|
||||
link: shareUrl,
|
||||
imgUrl: this.goodsDetail.sku_image
|
||||
},
|
||||
res => {
|
||||
// console.log('公众号分享成功');
|
||||
// this.share();
|
||||
}
|
||||
);
|
||||
},
|
||||
//-------------------------------------海报-------------------------------------
|
||||
// 打开海报弹出层
|
||||
openPosterPopup() {
|
||||
this.getGoodsPoster();
|
||||
this.$refs.sharePopup.close();
|
||||
},
|
||||
// 关闭海报弹出层
|
||||
closePosterPopup() {
|
||||
this.$refs.posterPopup.close();
|
||||
},
|
||||
/**
|
||||
* 获取海报
|
||||
*/
|
||||
getGoodsPoster() {
|
||||
uni.showLoading({
|
||||
title: '海报生成中...'
|
||||
});
|
||||
//活动海报信息
|
||||
let posterParams = {
|
||||
l_id: this.launch_id,
|
||||
b_id: this.bargain_id,
|
||||
bargain_id: this.goodsDetail.bargain_id
|
||||
};
|
||||
|
||||
if (this.memberInfo && this.memberInfo.member_id) posterParams.source_member = this.memberInfo.member_id;
|
||||
|
||||
this.$api.sendRequest({
|
||||
url: '/bargain/api/goods/poster',
|
||||
data: {
|
||||
page: '/pages_promotion/bargain/detail',
|
||||
qrcode_param: JSON.stringify(posterParams)
|
||||
},
|
||||
success: res => {
|
||||
if (res.code == 0) {
|
||||
this.poster = res.data.path + '?time=' + new Date().getTime();
|
||||
this.$refs.posterPopup.open();
|
||||
} else {
|
||||
this.posterMsg = res.message;
|
||||
this.$util.showToast({
|
||||
title: this.posterMsg
|
||||
})
|
||||
}
|
||||
uni.hideLoading();
|
||||
},
|
||||
fail: err => {
|
||||
uni.hideLoading();
|
||||
}
|
||||
});
|
||||
},
|
||||
getNewArray(array, subGroupLength) {
|
||||
if (array) {
|
||||
let index = 0;
|
||||
let newArray = [];
|
||||
while (index < array.length) {
|
||||
newArray.push(array.slice(index, (index += subGroupLength)));
|
||||
}
|
||||
return newArray;
|
||||
}
|
||||
},
|
||||
toDetail(goods_id) {
|
||||
this.$util.redirectTo('/pages/goods/detail', {
|
||||
goods_id: goods_id
|
||||
});
|
||||
},
|
||||
/**
|
||||
* 获取分享图
|
||||
*/
|
||||
getShareImg() {
|
||||
let posterParams = {
|
||||
l_id: this.launch_id,
|
||||
b_id: this.bargain_id,
|
||||
bargain_id: this.bargain_id
|
||||
};
|
||||
|
||||
this.$api.sendRequest({
|
||||
url: '/bargain/api/goods/shareimg',
|
||||
data: {
|
||||
page: '/pages_promotion/bargain/launch',
|
||||
qrcode_param: JSON.stringify(posterParams)
|
||||
},
|
||||
success: res => {
|
||||
if (res.code == 0) this.shareImg = res.data.path;
|
||||
}
|
||||
});
|
||||
},
|
||||
openRulePopup() {
|
||||
this.$refs.rulePopup.open();
|
||||
},
|
||||
closeRulePopup() {
|
||||
this.$refs.rulePopup.close();
|
||||
},
|
||||
/**
|
||||
* 获取商品表单
|
||||
*/
|
||||
getGoodsForm() {
|
||||
this.$api.sendRequest({
|
||||
url: "/form/api/form/goodsform",
|
||||
data: {
|
||||
goods_id: this.goodsDetail.goods_id
|
||||
},
|
||||
success: res => {
|
||||
if (res.code == 0 && res.data) {
|
||||
this.$set(this.goodsDetail, 'goods_form', res.data);
|
||||
|
||||
let goodsFormData = uni.getStorageSync('goodFormData');
|
||||
|
||||
// 检测是否填写过自定义表单,已经发起砍价后,禁止切换规格
|
||||
if (!goodsFormData && this.launchInfo && this.goodsDetail.goods_spec_format) {
|
||||
|
||||
this.goodsDetail.goods_spec_format.forEach(item => {
|
||||
item.value.forEach(specItem => {
|
||||
for (var i = 0; i < this.goodsDetail.sku_spec_format.length; i++) {
|
||||
let skuItem = this.goodsDetail.sku_spec_format[i];
|
||||
if (skuItem.spec_id == specItem.spec_id && skuItem.spec_value_id != specItem.spec_value_id) {
|
||||
specItem.disabled = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
},
|
||||
filters: {
|
||||
/**
|
||||
* 字符掩饰输出
|
||||
* @param {Object} str
|
||||
*/
|
||||
cover(str) {
|
||||
if (typeof str == 'string' && str.length > 0) {
|
||||
return str.substr(0, 1) + '******' + str.substr(-1);
|
||||
} else {
|
||||
return '';
|
||||
}
|
||||
}
|
||||
},
|
||||
/**
|
||||
* 自定义分享内容
|
||||
*/
|
||||
onShareAppMessage() {
|
||||
var path = '/pages_promotion/bargain/detail?l_id=' + this.launch_id + '&b_id=' + this.bargain_id;
|
||||
if (this.memberInfo && this.memberInfo.member_id) path += '&source_member=' + this.memberInfo.member_id;
|
||||
this.share();
|
||||
return {
|
||||
title: '嘿!朋友就差你这一刀了,帮一下忙呗~',
|
||||
imageUrl: this.shareImg ? this.$util.img(this.shareImg) : this.$util.img(this.goodsDetail.sku_image, {
|
||||
size: 'big'
|
||||
}),
|
||||
path: path,
|
||||
success: res => {
|
||||
},
|
||||
fail: res => {
|
||||
},
|
||||
complete: res => {
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user