Commit 40e1a6ff82e20f0109c9dcfd0963a85874c94ba4
1 parent
6146166b
qa返回的bug修复
Showing
7 changed files
with
19 additions
and
18 deletions
components/diy_store_select/diy_store_select.wxss
... | ... | @@ -57,7 +57,7 @@ |
57 | 57 | background: white; |
58 | 58 | width: 100%; |
59 | 59 | border-radius: 20rpx 20rpx 0 0; |
60 | - height: 72%; | |
60 | + height: auto; | |
61 | 61 | |
62 | 62 | } |
63 | 63 | |
... | ... | @@ -102,9 +102,10 @@ |
102 | 102 | |
103 | 103 | .store-list { |
104 | 104 | width: 95%; |
105 | - height: 72%; | |
105 | + max-height: 610rpx; | |
106 | 106 | overflow-y: scroll; |
107 | 107 | margin: auto; |
108 | + min-height: 300rpx; | |
108 | 109 | } |
109 | 110 | |
110 | 111 | .store-list .store_choose { |
... | ... | @@ -161,7 +162,7 @@ |
161 | 162 | .store-bottom { |
162 | 163 | width: 85%; |
163 | 164 | margin: auto; |
164 | - height: 70rpx; | |
165 | + height: 90rpx; | |
165 | 166 | } |
166 | 167 | |
167 | 168 | .determine { | ... | ... |
pages/goods/goodsInfo/goodsInfo.wxss
... | ... | @@ -2430,13 +2430,12 @@ height: 91.9%; |
2430 | 2430 | } |
2431 | 2431 | |
2432 | 2432 | .popup-frame{ |
2433 | - position: fixed; | |
2434 | -bottom:99rpx; | |
2433 | +position: fixed; | |
2435 | 2434 | z-index: 20; |
2436 | 2435 | background: white; |
2437 | 2436 | width: 100%; |
2438 | 2437 | border-radius: 20rpx 20rpx 0 0; |
2439 | -height: 72%; | |
2438 | +height: auto; | |
2440 | 2439 | bottom: 0; |
2441 | 2440 | } |
2442 | 2441 | .popup-top{ |
... | ... | @@ -2474,9 +2473,10 @@ bottom: 0; |
2474 | 2473 | } |
2475 | 2474 | .store-list{ |
2476 | 2475 | width: 95%; |
2477 | - height: 72%; | |
2476 | + min-height: 300rpx; | |
2478 | 2477 | overflow-y: scroll; |
2479 | 2478 | margin: auto; |
2479 | + max-height: 610rpx; | |
2480 | 2480 | } |
2481 | 2481 | .store-list .store_choose{ |
2482 | 2482 | width: 100%; |
... | ... | @@ -2524,7 +2524,7 @@ line-height: 38rpx; |
2524 | 2524 | .store-bottom{ |
2525 | 2525 | width: 85%; |
2526 | 2526 | margin: auto; |
2527 | - height: 70rpx; | |
2527 | + height: 90rpx; | |
2528 | 2528 | } |
2529 | 2529 | .determine{ |
2530 | 2530 | width: 260rpx; | ... | ... |
pages/index/index/index.wxss
... | ... | @@ -291,6 +291,7 @@ |
291 | 291 | overflow: hidden; |
292 | 292 | font-size: 26rpx; |
293 | 293 | width: 200rpx; |
294 | + word-break: break-all; | |
294 | 295 | } |
295 | 296 | |
296 | 297 | .seckill-list view.imgview { |
... | ... | @@ -514,7 +515,7 @@ |
514 | 515 | } |
515 | 516 | |
516 | 517 | .seckill-lists { |
517 | - /* line-height: 30rpx; */ | |
518 | + line-height: 14rpx; | |
518 | 519 | } |
519 | 520 | |
520 | 521 | .xc-marfin-right { | ... | ... |
pages/team/team_show/team_show.js
... | ... | @@ -1087,7 +1087,7 @@ Page({ |
1087 | 1087 | var th = this,that=this; |
1088 | 1088 | var timer_get = setInterval(function() { |
1089 | 1089 | if (th.data.is_get_local_ok == 0) return false; |
1090 | - if (th.data.goods) return false; | |
1090 | + if (!th.data.goods) return false; | |
1091 | 1091 | var dd = null, |
1092 | 1092 | i = getApp().request; |
1093 | 1093 | var g_distr_type = th.data.goods.distr_type; | ... | ... |
pages/team/team_show/team_show.wxml
... | ... | @@ -401,7 +401,7 @@ |
401 | 401 | <text class="fs32 nearby_store">门店分类选择</text> |
402 | 402 | <view> |
403 | 403 | <view><icon bindtap="close_popup" class="modal-closes" color="black" size="22" type="cancel"></icon></view> |
404 | - <view class="felx choose_mores" bindtap="returns"><text class="fs26 red-co">返回--{{sort_store}}</text></view> | |
404 | + <view class="felx choose_mores" bindtap="returns"><text class="fs26 red-co">返回</text></view> | |
405 | 405 | </view> |
406 | 406 | </view> |
407 | 407 | <view class="sort_store_list"> | ... | ... |
pages/team/team_show/team_show.wxss
... | ... | @@ -2033,7 +2033,7 @@ page { |
2033 | 2033 | background: white; |
2034 | 2034 | width: 100%; |
2035 | 2035 | border-radius: 20rpx 20rpx 0 0; |
2036 | - height: 72%; | |
2036 | + height: auto; | |
2037 | 2037 | } |
2038 | 2038 | |
2039 | 2039 | .popup-top{ |
... | ... | @@ -2096,9 +2096,10 @@ page { |
2096 | 2096 | |
2097 | 2097 | .store-list{ |
2098 | 2098 | width: 95%; |
2099 | - height: 72%; | |
2099 | + min-height:300rpx; | |
2100 | 2100 | overflow-y: scroll; |
2101 | - margin: auto; | |
2101 | + margin: auto; | |
2102 | + max-height: 610rpx; | |
2102 | 2103 | } |
2103 | 2104 | |
2104 | 2105 | .store-list .store_choose{ |
... | ... | @@ -2135,7 +2136,7 @@ page { |
2135 | 2136 | .store-bottom{ |
2136 | 2137 | width: 85%; |
2137 | 2138 | margin: auto; |
2138 | - height: 70rpx; | |
2139 | + height: 90rpx; | |
2139 | 2140 | } |
2140 | 2141 | |
2141 | 2142 | .determine{ | ... | ... |
pages/team/team_success/team_success.js
... | ... | @@ -464,14 +464,12 @@ Page({ |
464 | 464 | context.fillText('强烈推荐', 152 * unit + width + 20 * unit, 76 * unit); |
465 | 465 | } |
466 | 466 | |
467 | - | |
468 | - | |
469 | 467 | |
470 | 468 | //---产品名称--- |
471 | 469 | context.setFontSize(21.3 * unit); |
472 | 470 | context.setFillStyle("black"); |
473 | 471 | th.draw_Text(context, th.data.goods.goods_name, |
474 | - 40 * unit, 180 * unit, 200 * unit, 380 * unit); | |
472 | + 38 * unit, 180 * unit, 200 * unit, 279 * unit, unit); | |
475 | 473 | //------产品的价格------- |
476 | 474 | context.setFontSize(24 * unit) |
477 | 475 | context.setFillStyle("red") | ... | ... |