addPredetermine.vue 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. <template>
  2. <div class="addPredetermine">
  3. <ul class="detailUl">
  4. <li class="detailLi">
  5. <span class="liName">
  6. <span style="color: red;margin-right: 5rpx">*</span>
  7. 项目/企业名称
  8. </span>
  9. <span class="liInfo">无锡XXXXX有限公司</span>
  10. </li>
  11. <li class="detailLi2">
  12. <span class="liName" style="margin-bottom: 24rpx">
  13. 项目/企业简介
  14. </span>
  15. <van-field
  16. :value="form.contant"
  17. autosize
  18. type="textarea"
  19. placeholder="请输入文字进行报事报修描述"
  20. class="myField"
  21. maxlength="800"
  22. show-word-limit
  23. />
  24. </li>
  25. <li class="detailLi2">
  26. <span class="liName" style="margin-bottom: 24rpx">
  27. <span style="color: red;margin-right: 5rpx">*</span>
  28. 企业需求
  29. </span>
  30. <van-field
  31. :value="form.contant"
  32. autosize
  33. type="textarea"
  34. placeholder="请输入文字进行报事报修描述"
  35. class="myField"
  36. maxlength="800"
  37. show-word-limit
  38. />
  39. </li>
  40. <li class="detailLi">
  41. <span class="liName">
  42. <span style="color: red;margin-right: 5rpx">*</span>
  43. 项目/企业联系人
  44. </span>
  45. <input class="liInfo" placeholder="请输入"></input>
  46. </li>
  47. <li class="detailLi" style="border-bottom: none">
  48. <span class="liName">
  49. <span style="color: red;margin-right: 5rpx">*</span>
  50. 联系电话
  51. </span>
  52. <input class="liInfo" placeholder="请输入"></input>
  53. </li>
  54. </ul>
  55. <div class="whiteBoard">
  56. <div class="boardTitle">关于房源</div>
  57. <div class="boardInfo">
  58. <div class="boardItem">XXXXX园区</div>
  59. <div class="boardItem">楼盘</div>
  60. <div class="boardItem">楼栋地块</div>
  61. <div class="boardItem">出租单元号</div>
  62. </div>
  63. </div>
  64. <button class="toYy">提交预定</button>
  65. </div>
  66. </template>
  67. <script>
  68. export default {
  69. name: "addPredetermine",
  70. data(){
  71. return{
  72. form:{
  73. }
  74. }
  75. },
  76. methods:{
  77. }
  78. }
  79. </script>
  80. <style lang="scss">
  81. .addPredetermine{
  82. .detailUl{
  83. margin-top: 20rpx;
  84. background: white;
  85. padding: 24rpx 32rpx;
  86. .liName{
  87. font-size: 32rpx;
  88. color: rgba(51, 51, 51, 1);
  89. white-space: nowrap;
  90. .callNumber{
  91. color: rgba(24, 23, 42, 1);
  92. font-size: 36rpx;
  93. font-weight: 600;
  94. }
  95. .callName{
  96. color: rgba(102, 102, 102, 1);
  97. font-size: 28rpx;
  98. }
  99. }
  100. .phoneIcon{
  101. width: 64rpx;
  102. height: 64rpx;
  103. }
  104. .detailLi{
  105. display: flex;
  106. justify-content: space-between;
  107. align-items: center;
  108. padding: 32rpx 0;
  109. border-bottom: 2rpx solid #E6E6E6;
  110. .liInfo{
  111. display: inline-block;
  112. text-align: right;
  113. max-width: 428rpx;
  114. color: rgba(102, 102, 102, 1);
  115. font-size: 32rpx;
  116. line-height: 38rpx;
  117. overflow: hidden;
  118. word-wrap: break-word;
  119. }
  120. }
  121. .detailLi2{
  122. display: flex;
  123. flex-direction: column;
  124. padding: 32rpx 0;
  125. border-bottom: 2rpx solid #E6E6E6;
  126. .detailLi2BoxTop{
  127. display: flex;
  128. flex-wrap: wrap;
  129. justify-content: space-between;
  130. margin: 12rpx 0;
  131. .checkItem{
  132. width: 160rpx;
  133. height: 64rpx;
  134. font-size: 28rpx;
  135. color: #666666;
  136. display: flex;
  137. align-items: center;
  138. justify-content: center;
  139. background: #F5F7FA;
  140. border-radius: 8rpx;
  141. margin: 12rpx 0;
  142. }
  143. .checked{
  144. background: #0365F9;
  145. color: white;
  146. }
  147. }
  148. }
  149. .van-cell {
  150. background: #F5F7FA !important;
  151. border-radius: 8rpx;
  152. font-size: 28rpx;
  153. }
  154. }
  155. .whiteBoard{
  156. padding: 32rpx;
  157. background: white;
  158. margin-top: 24rpx;
  159. min-height: 260rpx;
  160. box-sizing: border-box;
  161. .boardTitle{
  162. color: rgba(51, 51, 51, 1);
  163. font-size: 32rpx;
  164. margin-bottom: 24rpx;
  165. }
  166. .boardInfo{
  167. display: flex;
  168. flex-wrap: wrap;
  169. color: rgba(51, 51, 51, 1);
  170. font-size: 32rpx;
  171. .boardItem{
  172. margin-right: 24rpx;
  173. }
  174. }
  175. }
  176. .toYy{
  177. width: 654rpx;
  178. height: 96rpx;
  179. background: rgba(3, 101, 249, 1);
  180. margin: 64rpx 48rpx;
  181. display: flex;
  182. align-items: center;
  183. justify-content: center;
  184. font-size: 36rpx;
  185. color: white;
  186. }
  187. }
  188. </style>