Authored by 毕凯

Merge branch 'feature/vipdouble' into 'gray'

Feature/vipdouble



See merge request !1333
1 {{# list}} 1 {{# list}}
2 <div class="grade-bill"> 2 <div class="grade-bill">
3 <div class="grade-bill-left"> 3 <div class="grade-bill-left">
4 - <div class="order">{{desc}}</div> 4 + <div class="order"><span>{{desc}}</span>{{#if activityInfoTitle}}<span class="order-tip">({{activityInfoTitle}}</span><span class="order-tip-end">)</span>{{/if}}</div>
5 <div class="time">{{createTimeStr}}</div> 5 <div class="time">{{createTimeStr}}</div>
6 </div> 6 </div>
7 <div class="grade-bill-right"> 7 <div class="grade-bill-right">
1 { 1 {
2 "name": "yohobuywap-node", 2 "name": "yohobuywap-node",
3 - "version": "6.5.35", 3 + "version": "6.5.36",
4 "private": true, 4 "private": true,
5 "description": "A New Yohobuy Project With Express", 5 "description": "A New Yohobuy Project With Express",
6 "repository": { 6 "repository": {
@@ -301,7 +301,7 @@ $yohoPage.on('touchstart', '.tap-hightlight', function() { @@ -301,7 +301,7 @@ $yohoPage.on('touchstart', '.tap-hightlight', function() {
301 $(this).removeClass('highlight'); 301 $(this).removeClass('highlight');
302 }); 302 });
303 303
304 -$('.nav-home').on('touchstart', function(e) { 304 +$('.new-nav-home').on('touchstart', function(e) {
305 $('.homebuttom').toggleClass('hide'); 305 $('.homebuttom').toggleClass('hide');
306 e.preventDefault(); 306 e.preventDefault();
307 e.stopPropagation(); 307 e.stopPropagation();
@@ -142,6 +142,24 @@ @@ -142,6 +142,24 @@
142 142
143 .grade-bill-left > .order { 143 .grade-bill-left > .order {
144 font-size: 22px; 144 font-size: 22px;
  145 + white-space: nowrap;
  146 + width: 100%;
  147 + height: 40px;
  148 + line-height: 40px;
  149 +
  150 + .order-tip,
  151 + .order-tip-end {
  152 + font-size: 18px;
  153 + color: #4a90e2;
  154 + font-weight: 300;
  155 + }
  156 +
  157 + .order-tip {
  158 + max-width: 260px;
  159 + overflow: hidden;
  160 + text-overflow: ellipsis;
  161 + margin-left: 10px;
  162 + }
145 } 163 }
146 164
147 .grade-bill-left > .time { 165 .grade-bill-left > .time {