Title.vue 665 B

123456789101112131415161718192021222324252627282930313233
  1. <template>
  2. <header class="tle-ctnr">
  3. <div class="tle-box">{{msg}}</div>
  4. <img v-if="flag" src="../assets/img/添加联系人.png">
  5. </header>
  6. </template>
  7. <script type="text/javascript">
  8. export default{
  9. props:['msg','flag']
  10. }
  11. </script>
  12. <style scoped>
  13. .tle-ctnr{
  14. position: relative;
  15. .tle-box{
  16. width: 100%;
  17. height: 1.555556rem;
  18. line-height: 1.555556rem;
  19. font-size: 0.472222rem;
  20. color: #fff;
  21. background-color: #60c0ff;
  22. }
  23. img{
  24. position: absolute;
  25. right: 0.426439rem;
  26. top:50%;
  27. margin-top: -0.333156rem;
  28. width: 0.666311rem;
  29. height: 0.666311rem;
  30. }
  31. }
  32. </style>