Authored by 梁志锋

fix input value bug code review by bikai

@@ -22,7 +22,7 @@ @@ -22,7 +22,7 @@
22 {{/comments}} 22 {{/comments}}
23 23
24 {{#if loadmore}} 24 {{#if loadmore}}
25 - <input id="loadMoreUrl" type="hidden" value={{loadMoreUrl}}> 25 + <input id="loadMoreUrl" type="hidden" value="{{loadMoreUrl}}">
26 {{/if}} 26 {{/if}}
27 </div> 27 </div>
28 28
@@ -28,7 +28,7 @@ @@ -28,7 +28,7 @@
28 {{/ consults}} 28 {{/ consults}}
29 29
30 {{#if loadmore}} 30 {{#if loadmore}}
31 - <input id="loadMoreUrl" type="hidden" value={{loadMoreUrl}}> 31 + <input id="loadMoreUrl" type="hidden" value="{{loadMoreUrl}}">
32 {{/if}} 32 {{/if}}
33 </div> 33 </div>
34 {{> layout/footer}} 34 {{> layout/footer}}
@@ -130,10 +130,10 @@ @@ -130,10 +130,10 @@
130 </div> 130 </div>
131 {{/cartInfo}} 131 {{/cartInfo}}
132 {{#if introUrl}} 132 {{#if introUrl}}
133 - <input id="introUrl" type="hidden" value='{{introUrl}}'> 133 + <input id="introUrl" type="hidden" value="{{introUrl}}">
134 {{/if}} 134 {{/if}}
135 {{#if id}} 135 {{#if id}}
136 - <input id="productId" type="hidden" value='{{id}}'> 136 + <input id="productId" type="hidden" value="{{id}}">
137 {{/if}} 137 {{/if}}
138 138
139 </div> 139 </div>