ResultTitle.vue 617 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <div class="result-title text-muted">
  3. 搜索"<span class="text-inverse ng-binding">123</span>",为您找到
  4. <span class="text-num ng-binding" >1,472</span><!-- ngIf: !total --> 个相关产品:
  5. </div>
  6. </template>
  7. <script>
  8. export default{
  9. }
  10. </script>
  11. <style scoped>
  12. #searchResult .result-title {
  13. margin-top: 5px;
  14. padding: 0 5px;
  15. height: 30px;
  16. line-height: 30px;
  17. font-size: 14px;
  18. background: #efefef;
  19. border: 1px solid #e5e5e5;
  20. }
  21. .text-inverse {
  22. color: #f40!important;
  23. }
  24. .text-num {
  25. font-style: normal;
  26. font-family: verdana;
  27. }
  28. </style>