Authored by 李奇

fixed:评价客服代码恢复

... ... @@ -269,7 +269,10 @@ const getBrandData = (params, extra, channel) => {
if (params.shopId) {
// 店铺以店铺ID查询商品
queryBase.shop_id = params.shopId;
Object.assign(queryBase, {
shop_id: params.shopId,
shop: params.shopId
});
} else {
// 品牌以品牌ID查询商品
queryBase.brand = extra.brandId;
... ...
... ... @@ -10,12 +10,14 @@
<span class="star positive"></span>
<span class="star positive"></span>
<span class="star positive"></span>
<span class="star"></span>
<span class="star"></span>
<span class="star positive"></span>
<span class="star positive"></span>
<p class="star-text">一般</p>
</div>
<div class="discontent"></div>
<textarea class="other-reason" maxlength="50" placeholder="请您输入不满意的其他原因" spellcheck="false"></textarea>
<div class="detail-reason">
<div class="discontent"></div>
<textarea class="other-reason" maxlength="50" placeholder="请您输入不满意的其他原因" spellcheck="false"></textarea>
</div>
</div>
<div class="cus-footer">
<button class="btn dark submit">提交</button>
... ...
... ... @@ -1044,53 +1044,57 @@ $color-3a3a3a: #3a3a3a;
}
}
.discontent {
margin-bottom: 30px;
.detail-reason {
display: none;
.dis-row {
font-size: 0;
.discontent {
margin-bottom: 30px;
&:first-child {
margin-bottom: 13px;
}
.dis-row {
font-size: 0;
.type {
position: relative;
display: inline-block;
width: 166px;
height: 40px;
padding: 0 18px;
font-size: 16px;
text-align: center;
line-height: 40px;
border: 1px #999999 solid;
border-radius: 5px;
cursor: pointer;
&:first-child {
margin-bottom: 13px;
}
&.chosen {
&:after {
position: absolute;
top: 13px;
right: -2px;
content: '';
display: inline-block;
height: 27px;
width: 27px;
background-image: url('../img/service/btn-chosen.png');
.type {
position: relative;
display: inline-block;
width: 166px;
height: 40px;
padding: 0 18px;
font-size: 16px;
text-align: center;
line-height: 40px;
border: 1px #999999 solid;
border-radius: 5px;
cursor: pointer;
&.chosen {
&:after {
position: absolute;
top: 13px;
right: -2px;
content: '';
display: inline-block;
height: 27px;
width: 27px;
background-image: url('../img/service/btn-chosen.png');
}
}
}
&:first-child {
margin-right: 15px;
&:first-child {
margin-right: 15px;
}
}
}
}
}
textarea {
height: 120px;
resize: none;
textarea {
height: 120px;
resize: none;
}
}
}
... ...