fixed:评价客服代码恢复
Showing
3 changed files
with
12 additions
and
3 deletions
@@ -269,7 +269,10 @@ const getBrandData = (params, extra, channel) => { | @@ -269,7 +269,10 @@ const getBrandData = (params, extra, channel) => { | ||
269 | 269 | ||
270 | if (params.shopId) { | 270 | if (params.shopId) { |
271 | // 店铺以店铺ID查询商品 | 271 | // 店铺以店铺ID查询商品 |
272 | - queryBase.shop_id = params.shopId; | 272 | + Object.assign(queryBase, { |
273 | + shop_id: params.shopId, | ||
274 | + shop: params.shopId | ||
275 | + }); | ||
273 | } else { | 276 | } else { |
274 | // 品牌以品牌ID查询商品 | 277 | // 品牌以品牌ID查询商品 |
275 | queryBase.brand = extra.brandId; | 278 | queryBase.brand = extra.brandId; |
@@ -10,13 +10,15 @@ | @@ -10,13 +10,15 @@ | ||
10 | <span class="star positive"></span> | 10 | <span class="star positive"></span> |
11 | <span class="star positive"></span> | 11 | <span class="star positive"></span> |
12 | <span class="star positive"></span> | 12 | <span class="star positive"></span> |
13 | - <span class="star"></span> | ||
14 | - <span class="star"></span> | 13 | + <span class="star positive"></span> |
14 | + <span class="star positive"></span> | ||
15 | <p class="star-text">一般</p> | 15 | <p class="star-text">一般</p> |
16 | </div> | 16 | </div> |
17 | + <div class="detail-reason"> | ||
17 | <div class="discontent"></div> | 18 | <div class="discontent"></div> |
18 | <textarea class="other-reason" maxlength="50" placeholder="请您输入不满意的其他原因" spellcheck="false"></textarea> | 19 | <textarea class="other-reason" maxlength="50" placeholder="请您输入不满意的其他原因" spellcheck="false"></textarea> |
19 | </div> | 20 | </div> |
21 | + </div> | ||
20 | <div class="cus-footer"> | 22 | <div class="cus-footer"> |
21 | <button class="btn dark submit">提交</button> | 23 | <button class="btn dark submit">提交</button> |
22 | <input type="hidden" name="promoter" value="1"> | 24 | <input type="hidden" name="promoter" value="1"> |
@@ -1044,6 +1044,9 @@ $color-3a3a3a: #3a3a3a; | @@ -1044,6 +1044,9 @@ $color-3a3a3a: #3a3a3a; | ||
1044 | } | 1044 | } |
1045 | } | 1045 | } |
1046 | 1046 | ||
1047 | + .detail-reason { | ||
1048 | + display: none; | ||
1049 | + | ||
1047 | .discontent { | 1050 | .discontent { |
1048 | margin-bottom: 30px; | 1051 | margin-bottom: 30px; |
1049 | 1052 | ||
@@ -1093,6 +1096,7 @@ $color-3a3a3a: #3a3a3a; | @@ -1093,6 +1096,7 @@ $color-3a3a3a: #3a3a3a; | ||
1093 | resize: none; | 1096 | resize: none; |
1094 | } | 1097 | } |
1095 | } | 1098 | } |
1099 | + } | ||
1096 | 1100 | ||
1097 | .cus-footer { | 1101 | .cus-footer { |
1098 | padding-bottom: 35px; | 1102 | padding-bottom: 35px; |
-
Please register or login to post a comment