| 12345678910111213141516171819202122232425262728 |
- <template>
- <div class="result-title text-muted">
- 搜索"<span class="text-inverse ng-binding">123</span>",为您找到
- <span class="text-num ng-binding" >1,472</span><!-- ngIf: !total --> 个相关产品:
- </div>
- </template>
- <script>
- export default{
- }
- </script>
- <style scoped>
- #searchResult .result-title {
- margin-top: 5px;
- padding: 0 5px;
- height: 30px;
- line-height: 30px;
- font-size: 14px;
- background: #efefef;
- border: 1px solid #e5e5e5;
- }
- .text-inverse {
- color: #f40!important;
- }
- .text-num {
- font-style: normal;
- font-family: verdana;
- }
- </style>
|