dhb_mtrlinfo.vue 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <template>
  2. <div class="setting">
  3. <!-- 原有页面上半部分 -->
  4. <div style="text-align: center;">
  5. <img src="../../assets/dhb_top.jpg" style="display: inline-block;max-width:100%;"> </img>
  6. </div>
  7. <!-- 本次新增开发部分 -->
  8. <div style="margin-bottom:15px">
  9. <div class="dhb_item_text">
  10. <div class="dhb_item_name">选择报价或订货历史</div>
  11. <div class="dhb_item_right">
  12. <svg class="icon" aria-hidden="true">
  13. <use xlink:href="#icon-iconfontjiantou2"></use>
  14. </svg>
  15. </div>
  16. </div>
  17. <!-- 定制需求申请报价,根据客户属性决定是否显示 -->
  18. <div class="dhb_item_text" style="margin-top:10px">
  19. <div class="dhb_item_name">定制需求申请报价</div>
  20. <div class="dhb_item_right">
  21. <svg class="icon" aria-hidden="true">
  22. <use xlink:href="#icon-iconfontjiantou2"></use>
  23. </svg>
  24. </div>
  25. </div>
  26. </div>
  27. <!-- 原有页面下半部分 -->
  28. <div style="text-align: center;">
  29. <img src="../../assets/dhb_bottom.jpg" style="display: inline-block;max-width:100%;"> </img>
  30. </div>
  31. </div>
  32. </template>
  33. <script>
  34. export default {
  35. name: 'dhb_mtrlinfo'
  36. }
  37. </script>
  38. <style>
  39. body {
  40. margin: 0;
  41. padding: 0;
  42. background-color: #F4F4F4;
  43. font-family: "微软雅黑";
  44. }
  45. .dhb_item_text {
  46. display: flex;
  47. flex: 0 0 78%;
  48. height:36px;
  49. background-color: #ffffff;
  50. align-items:center;
  51. font-weight: 500
  52. }
  53. .dhb_item_name {
  54. margin: 0 0 0 15px;
  55. }
  56. .dhb_item_right {
  57. color: #9b9b9b;
  58. font-size: 17px;
  59. position: absolute;
  60. right: 16px;
  61. }
  62. </style>