tenantInformation.vue 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  1. <template>
  2. <view>
  3. <u-navbar title="用户信息" title-color="#101010" ></u-navbar>
  4. <!-- 地址 -->
  5. <view class="address-box">
  6. <view class="address">
  7. <view class="address-title">
  8. 荆鹏软件园
  9. </view>
  10. <view class="address-value">
  11. <u-icon name="map"></u-icon>荆州市沙市区江津东路附155号
  12. </view>
  13. </view>
  14. <view class="image">
  15. <image class="img" src="../../../assets/img/mineBackground.svg" mode=""></image>
  16. </view>
  17. </view>
  18. <!-- 租户信息 -->
  19. <view class="infos">
  20. <view class="item">
  21. <view class="item-title">
  22. 租户单位
  23. </view>
  24. <view class="item-value">
  25. 联通公司
  26. </view>
  27. </view>
  28. <view class="item">
  29. <view class="item-title">
  30. 户号
  31. </view>
  32. <view class="item-value">
  33. 080808
  34. </view>
  35. </view>
  36. <view class="item">
  37. <view class="item-title">
  38. 联系人
  39. </view>
  40. <view class="item-value">
  41. 周琼15500001111
  42. </view>
  43. </view>
  44. <view class="item">
  45. <view class="item-title">
  46. 租用地点
  47. </view>
  48. <view class="item-value">
  49. A栋7楼 701、702、703
  50. </view>
  51. </view>
  52. <view class="item">
  53. <view class="item-title">
  54. 租期
  55. </view>
  56. <view class="item-value">
  57. 2024.02.01-2024.07.31
  58. </view>
  59. </view>
  60. </view>
  61. <!-- 园区管家 -->
  62. <view class="house-keeper">
  63. <view class="headline">
  64. 园区管家 (08:00-18:00)
  65. </view>
  66. <view class="contact-information">
  67. <view class="item">
  68. <view class="photo photo1">
  69. <image class="img" src="@/assets/img/if-ui-dial-phone 1.svg" mode=""></image>
  70. </view>
  71. <view class="tel">
  72. <view class="title">
  73. 园区办公室
  74. </view>
  75. <view class="value">
  76. 0716-8121234
  77. </view>
  78. </view>
  79. <view class="contact">
  80. 联系Ta
  81. <text> <image class="img" src="@/assets/img/riFill-phone-fill.svg"></image></text>
  82. </view>
  83. </view>
  84. <view class="item">
  85. <view class="photo">
  86. <image class="img" src="@/assets/img/wImage@photo.png" mode=""></image>
  87. </view>
  88. <view class="tel">
  89. <view class="title">
  90. 李书易
  91. </view>
  92. <view class="value">
  93. 19289999000
  94. </view>
  95. </view>
  96. <view class="contact">
  97. 联系Ta
  98. <text> <image class="img" src="@/assets/img/riFill-phone-fill.svg"></image></text>
  99. </view>
  100. </view>
  101. </view>
  102. </view>
  103. <!-- 返回-->
  104. <view class="back">
  105. <button class="btn">返回</button>
  106. </view>
  107. </view>
  108. </template>
  109. <script>
  110. export default {
  111. data() {
  112. return {
  113. }
  114. },
  115. methods: {
  116. }
  117. }
  118. </script>
  119. <style lang="scss" scoped>
  120. // 地址
  121. .address-box{
  122. border-radius: 8px;
  123. background: linear-gradient(90deg, rgba(49,110,207,1) 2%,rgba(20,73,159,1) 100%);
  124. color: #fff;
  125. padding:40rpx 32rpx;
  126. margin: 24rpx 32rpx;
  127. display: flex;
  128. align-items: center;
  129. position: relative;
  130. .address{
  131. .address-title{
  132. font-size: 40rpx;
  133. }
  134. .address-value{
  135. font-size: 24rpx;
  136. margin-top: 8rpx;
  137. }
  138. }
  139. .image {
  140. width: 174rpx;
  141. height: 174rpx;
  142. position: absolute;
  143. right: 0;
  144. top: 20rpx;
  145. .img {
  146. width: 100%;
  147. height: 100%;
  148. }
  149. }
  150. }
  151. // 租户信息
  152. .infos{
  153. border-radius: 8px;
  154. background-color: #fff;
  155. margin: 36rpx 32rpx;
  156. .item{
  157. display: flex;
  158. align-items: center;
  159. padding: 28rpx 32rpx;
  160. border-bottom: 1px solid rgba(221,221,221,1);
  161. .item-title{
  162. color: rgba(119,119,119,1);
  163. font-size: 32rpx;
  164. width: 128rpx;
  165. }
  166. .item-value{
  167. color: rgba(51,51,51,1);
  168. font-size: 32rpx;
  169. margin-left: 40rpx;
  170. }
  171. }
  172. }
  173. // 园区管家
  174. .house-keeper{
  175. border-radius: 8px;
  176. background-color: #fff;
  177. margin: 24rpx 32rpx;
  178. padding: 32rpx;
  179. .headline{
  180. color: rgb(51,51,51);
  181. font-size: 36rpx;
  182. }
  183. .contact-information{
  184. .item{
  185. display: flex;
  186. align-items: center;
  187. margin-top: 40rpx;
  188. .photo{
  189. width: 96rpx;
  190. height: 96rpx;
  191. border-radius: 50px;
  192. display: flex;
  193. align-items: center;
  194. justify-content: center;
  195. .img{
  196. width: 96rpx;
  197. height: 96rpx;
  198. }
  199. }
  200. .photo1{
  201. background-color: #1677FF;
  202. .img{
  203. width: 48rpx;
  204. height: 48rpx;
  205. }
  206. }
  207. .tel{
  208. margin-left: 16rpx;
  209. .title{
  210. color: rgba(51,51,51,1);
  211. font-size: 32rpx;
  212. }
  213. .value{
  214. color: rgba(119,119,119,1);
  215. font-size: 24rpx;
  216. margin-top: 8rpx;
  217. }
  218. }
  219. .contact{
  220. margin-left: auto;
  221. display: flex;
  222. color: rgba(22,119,255,1);
  223. line-height: 32rpx;
  224. .img{
  225. width: 32rpx;
  226. height: 32rpx;
  227. margin-left: 4rpx;
  228. transform: scaleX(-1);
  229. }
  230. }
  231. }
  232. }
  233. }
  234. // 返回
  235. .back{
  236. margin: 24rpx 32rpx;
  237. .btn{
  238. border-radius: 8px;
  239. background-color: rgba(255,255,255,1);
  240. color: rgba(119,119,119,1);
  241. font-size: 32rpx;
  242. line-height: 88rpx;
  243. border: 1px solid rgba(205,205,205,1);
  244. }
  245. }
  246. </style>