suppliers.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <template>
  2. <view class="whole">
  3. <view class="head">
  4. <view class="behind">
  5. <view class="content">
  6. <view class="content_s">
  7. <view class="title">
  8. <view></view>
  9. <h3>经销商基本信息</h3>
  10. </view>
  11. <view class="information">
  12. <u-field style="margin-top: 5rpx;" v-model="mobile" label-width="10" icon="chat-fill" placeholder="暂无数据" disabled="disabled"></u-field>
  13. <u-field style="margin-top: 5rpx;" v-model="code" label-width="10" icon="chat-fill" placeholder="暂无数据" disabled="disabled"></u-field>
  14. <u-field style="margin-top: 5rpx;" v-model="code_s" label-width="10" icon="chat-fill" placeholder="暂无数据" disabled="disabled"></u-field>
  15. </view>
  16. </view>
  17. </view>
  18. </view>
  19. </view>
  20. <view class="below">
  21. <view class="content">
  22. <view class="content_s">
  23. <view class="title">
  24. <view></view>
  25. <h3>经销商基本信息</h3>
  26. </view>
  27. <view class="information_E">
  28. <image src="../../static/sailun/anyu.png" mode=""></image>
  29. <image src="../../static/sailun/heiqishi.png" mode=""></image>
  30. <image src="../../static/sailun/anyu.png" mode=""></image>
  31. <image src="../../static/sailun/heiqishi.png" mode=""></image>
  32. <image src="../../static/sailun/anyu.png" mode=""></image>
  33. <image src="../../static/sailun/heiqishi.png" mode=""></image>
  34. </view>
  35. </view>
  36. </view>
  37. </view>
  38. </view>
  39. </template>
  40. <script>
  41. export default {
  42. data() {
  43. return {
  44. mobile: '经销商名称',
  45. code: '张三',
  46. code_s: '13412336446'
  47. }
  48. }
  49. }
  50. </script>
  51. <style lang="scss" scoped>
  52. .behind {
  53. width: 750rpx;
  54. // height: 462rpx;
  55. height: auto;
  56. background: url(../../static/sailun/behind.png) no-repeat;
  57. background-size: 100% 100%;
  58. background-repeat: no-repeat;
  59. margin-top:-150rpx;
  60. padding-top: 100px;
  61. }
  62. .below{
  63. margin-top: 30rpx;
  64. }
  65. .content {
  66. width: 667rpx;
  67. height: auto;
  68. background: #FFFFFF;
  69. box-shadow: 0px 10px 40px 0px rgba(223, 223, 223, 0.51);
  70. border-radius: 18px;
  71. margin: 0 auto;
  72. padding-top: 30rpx;
  73. margin-top: -10rpx;
  74. padding-bottom: 40rpx;
  75. .content_s {
  76. width: 92%;
  77. // height: 330rpx;
  78. height: auto;
  79. margin: 0 auto;
  80. margin-top: 10rpx;
  81. .information{
  82. margin-top: 10rpx;
  83. }
  84. .information_E{
  85. image{
  86. width: 48%;
  87. height: 100rpx;
  88. }
  89. }
  90. .title {
  91. border-bottom: 1rpx solid #EBEBEB;
  92. padding-bottom: 15rpx;
  93. view {
  94. width: 6px;
  95. height: 20px;
  96. background: #0292FD;
  97. float: left;
  98. margin-right: 10rpx;
  99. margin-top: 5rpx;
  100. }
  101. }
  102. }
  103. }
  104. </style>