suppliers.vue 2.6 KB

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