tenantInformation.vue 5.3 KB

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