toJoin.vue 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  1. <template>
  2. <view>
  3. <u-navbar title="我要加盟"></u-navbar>
  4. <view class="main">
  5. <view class="main-content">
  6. <p class="title">适合对象</p>
  7. <view class="text">
  8. 已经在经营充电桩业务的商家,可以申请加入“<text style="color: #e14173;">51充电联盟</text>”。
  9. </view>
  10. <p class="title">平台能为您提供:</p>
  11. <view class="text-box">
  12. <p>1.便捷的找桩、充电服务,提升用户体验。</p>
  13. <p>2.获得更多的用户资源和运营支持,提高市场竞争力。</p>
  14. <p>3.良好的平台背书,提高公信力</p>
  15. </view>
  16. </view>
  17. <view class="application-form ">
  18. <view class="name">
  19. <p>申请人姓名</p>
  20. <u-input placeholder=""></u-input>
  21. </view>
  22. <view class="tel">
  23. <p>联系电话</p>
  24. <u-input placeholder=""></u-input>
  25. </view>
  26. <view class="place">
  27. <p>自有电桩地点</p>
  28. <textarea class="textarea" placeholder="填写详细位置"></textarea>
  29. </view>
  30. <view class="type">
  31. <p>场地类型</p>
  32. <view class="checkbox">
  33. <view class="">
  34. <u-checkbox-group @change="checkboxGroupChange" active-color="#00B962">
  35. <u-checkbox
  36. @change="checkboxChange"
  37. v-model="item.checked"
  38. v-for="(item, index) in typeList" :key="index"
  39. :name="item.name"
  40. >{{item.name}}</u-checkbox>
  41. </u-checkbox-group>
  42. </view>
  43. </view>
  44. </view>
  45. <view class="want">
  46. <p>自由电桩数量</p>
  47. <view class="radio-box">
  48. <view class="">
  49. <u-radio-group v-model="value" @change="radioGroupChange" active-color="#00B962">
  50. <u-radio
  51. @change="radioChange"
  52. v-for="(item, index) in numlist" :key="index"
  53. :name="item.name"
  54. :disabled="item.disabled"
  55. >
  56. {{item.name}}
  57. </u-radio>
  58. </u-radio-group>
  59. </view>
  60. </view>
  61. </view>
  62. <view class="hint">
  63. *请保持手机畅通,我们将安排专人与您联系。您也可以拨打
  64. <text class="tel-num">400-8899-619</text>查询申请审核进度!
  65. </view>
  66. <u-button type="warning">提交申请</u-button>
  67. </view>
  68. </view>
  69. </view>
  70. </template>
  71. <script>
  72. export default{
  73. data() {
  74. return {
  75. typeList: [
  76. {
  77. name: '电动汽车充电桩(快充)',
  78. checked: false,
  79. disabled: false
  80. },
  81. {
  82. name: '电动汽车充电桩(慢充)',
  83. checked: false,
  84. disabled: false
  85. },
  86. {
  87. name: '电动摩托/自行车充电桩',
  88. checked: false,
  89. disabled: false
  90. }
  91. ],
  92. numlist: [
  93. {
  94. name: '5台以内',
  95. disabled: false
  96. },
  97. {
  98. name: '5~10台',
  99. disabled: false
  100. },
  101. {
  102. name: '10台以上',
  103. disabled: false
  104. }
  105. ],
  106. // u-radio-group的v-model绑定的值如果设置为某个radio的name,就会被默认选中
  107. value: 'orange',
  108. };
  109. },
  110. }
  111. </script>
  112. <style>
  113. page {
  114. background:url(../../static/img/earth_@2.png) no-repeat top center #00b962 ;
  115. background-size: 100%;
  116. background-position: 50% 4%
  117. }
  118. </style>
  119. <style lang="scss" scoped>
  120. .main {
  121. width: 100%;
  122. margin-top: 131px;
  123. line-height: 20px;
  124. border-radius: 16px;
  125. padding: 0 28px 85px;
  126. .main-content {
  127. padding:24px 24px;
  128. background-color: #fff;
  129. border-radius: 16px;
  130. .title{
  131. height: 18px;
  132. color: rgba(16, 16, 16, 100);
  133. font-size: 18px;
  134. font-weight: 600;
  135. }
  136. .text{
  137. margin-top: 12px;
  138. margin-bottom: 24px;
  139. }
  140. .text-box{
  141. margin-top: 12px;
  142. p{
  143. margin-top: 10px;
  144. line-height: 24px;
  145. text-align: justify;
  146. }
  147. }
  148. }
  149. .application-form{
  150. background-color: #fff;
  151. border-radius: 16px;
  152. margin-top: 24px;
  153. padding: 24px;
  154. .u-input{
  155. border-radius: 50px;
  156. background-color: rgba(232, 236, 234, 100);
  157. margin-top: 12px;
  158. }
  159. /deep/.uni-input-input{
  160. margin-left: 10px;
  161. }
  162. p{
  163. height: 18px;
  164. line-height: 18px;
  165. color: rgba(16, 16, 16, 100);
  166. font-size: 18px;
  167. }
  168. .tel,.place,.type,.want{
  169. margin-top: 24px;
  170. }
  171. .textarea{
  172. width: 72.2vw;
  173. height: 100px;
  174. border-radius: 22px;
  175. background-color: rgba(232, 236, 234, 100);
  176. margin-top: 12px;
  177. .uni-textarea-placeholder{
  178. padding: 12px;
  179. }
  180. /deep/.uni-textarea-textarea{
  181. margin: 10px;
  182. }
  183. }
  184. .type{
  185. .checkbox{
  186. margin-top: 12px;
  187. /deep/.u-checkbox{
  188. margin-top: 4px;
  189. }
  190. }
  191. }
  192. .want{
  193. .radio-box{
  194. margin-top: 12px;
  195. }
  196. /deep/.u-radio{
  197. width: 50% !important;
  198. margin-top: 4px;
  199. }
  200. }
  201. .hint{
  202. margin-top: 12px;
  203. font-size: 14px;
  204. line-height: 20px;
  205. text-align: justify;
  206. .tel-num{
  207. color: #9FC7FF;
  208. }
  209. }
  210. /deep/.u-btn{
  211. border-radius: 50px ;
  212. margin-top: 24px;
  213. }
  214. }
  215. }
  216. </style>