articleFour.vue 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <template>
  2. <div class="article_four">
  3. <ul class="list-unstyled">
  4. <li v-for="item in list">
  5. <div class="img">
  6. <img :src="'/images/applyPurchase/' + item.img">
  7. </div>
  8. <div class="info_right">
  9. <h4 v-text="item.title"></h4>
  10. <p v-text="item.info"></p>
  11. </div>
  12. </li>
  13. </ul>
  14. </div>
  15. </template>
  16. <script>
  17. export default {
  18. data () {
  19. return {
  20. list: [{
  21. img: 'xiaolvgao.png',
  22. title: '效率高',
  23. info: '批量求购,一键上传,广获价格信息'
  24. }, {
  25. img: 'shujuhua.png',
  26. title: '数据化',
  27. info: '千万产品数据匹配,推送现货比对购买安心'
  28. }, {
  29. img: 'kedianzi.png',
  30. title: '可垫资',
  31. info: '可申请垫资服务,提升资金周转率'
  32. }]
  33. }
  34. }
  35. }
  36. </script>
  37. <style lang="scss" type="text/scss" scoped>
  38. .article_four{
  39. position:relative;
  40. border-radius:5px;
  41. margin-bottom:20px;
  42. background: #fff;
  43. ul{
  44. padding:10px 0;
  45. li{
  46. height:70px;
  47. line-height: 70px;
  48. .img{
  49. float:left;
  50. width:65px;
  51. text-align: center;
  52. img{}
  53. }
  54. .info_right{
  55. padding-top:10px;
  56. margin-left:65px;
  57. vertical-align:top;
  58. color:#666;
  59. h4{
  60. line-height: 20px;
  61. font-size: 14px;
  62. margin:0;
  63. }
  64. p{
  65. line-height: 16px;
  66. font-size: 12px;
  67. }
  68. }
  69. }
  70. }
  71. }
  72. </style>