stylebook.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. <template>
  2. <view class="page">
  3. <view class="stylebookbox">
  4. <view class="apply">样书申请</view>
  5. <view class="stylebook">
  6. 欢迎您申请我们的国优、国规样书
  7. </view>
  8. <view class="dotted">
  9. <image src="/static/images/dotted.png" style="width: 654rpx;height: 4rpx;" mode=""></image>
  10. </view>
  11. <!-- 姓名 -->
  12. <view class="item">
  13. <view class="name">
  14. <text>*</text>
  15. <text style="color: rgba(34, 34, 34, 1);">您的姓名</text>
  16. </view>
  17. <view class="box u-flex">
  18. <input type="text" style="width: 100%;" />
  19. </view>
  20. </view>
  21. <!-- 电话 -->
  22. <view class="item">
  23. <view class="name">
  24. <text>*</text>
  25. <text style="color: rgba(34, 34, 34, 1);">您的电话</text>
  26. </view>
  27. <view class="box u-flex">
  28. <input type="text" style="width: 100%;" />
  29. </view>
  30. </view>
  31. <!-- 邮箱 -->
  32. <view class="item">
  33. <view class="name">
  34. <text>*</text>
  35. <text style="color: rgba(34, 34, 34, 1);">您的邮箱</text>
  36. </view>
  37. <view class="box u-flex">
  38. <input type="text" style="width: 100%;" />
  39. </view>
  40. </view>
  41. <!-- 学校 -->
  42. <view class="item">
  43. <view class="name">
  44. <text>*</text>
  45. <text style="color: rgba(34, 34, 34, 1);">您所在的学校名称</text>
  46. </view>
  47. <view class="box u-flex">
  48. <input type="text" style="width: 100%;" />
  49. </view>
  50. </view>
  51. <!-- 样书 -->
  52. <view class="item">
  53. <view class="name">
  54. <text>*</text>
  55. <text style="color: rgba(34, 34, 34, 1);">样书用途</text>
  56. </view>
  57. <!-- <view class="box u-flex"> -->
  58. <view class="" style="margin-top: 38rpx;">
  59. <u-radio-group :wrap='true'>
  60. <u-radio shape="square" active-color="rgba(6, 169, 113, 1)" v-for="(item, index) in list"
  61. :key="index" :name="item.name" v-model="item.disabled">
  62. {{item.name}}
  63. </u-radio>
  64. </u-radio-group>
  65. </view>
  66. <!-- </view> -->
  67. </view>
  68. <!-- 地址 -->
  69. <view class="item">
  70. <view class="name">
  71. <text>*</text>
  72. <text style="color: rgba(34, 34, 34, 1);">您所在的学校名称</text>
  73. </view>
  74. <view class="u-flex u-row-between" style="margin-top: 40rpx;">
  75. <view class="address">姓名:</view>
  76. <view class="box u-flex " style="margin-top: 0rpx;width: 500rpx;">
  77. <input type="text" style="width: 100%;" />
  78. </view>
  79. </view>
  80. <view class="u-flex u-row-between" style="margin-top: 40rpx;">
  81. <view class="address">所在地区:</view>
  82. <view class="box u-flex " style="margin-top: 0rpx;width: 500rpx;">
  83. <input type="text" style="width: 100%;" />
  84. </view>
  85. </view>
  86. <view class="u-flex u-row-between" style="margin-top: 40rpx;">
  87. <view class="address">详细地址:</view>
  88. <view class="box u-flex " style="margin-top: 0rpx;width: 500rpx;">
  89. <input type="text" style="width: 100%;" />
  90. </view>
  91. </view>
  92. <view class="u-flex u-row-between" style="margin-top: 40rpx;">
  93. <view class="address">手机号码:</view>
  94. <view class="box u-flex " style="margin-top: 0rpx;width: 500rpx;">
  95. <input type="text" style="width: 100%;" />
  96. </view>
  97. </view>
  98. </view>
  99. <view class="btn">
  100. 提交
  101. </view>
  102. </view>
  103. </view>
  104. </template>
  105. <script>
  106. export default {
  107. data() {
  108. return {
  109. list: [{
  110. name: '教材用书',
  111. disabled: false
  112. },
  113. {
  114. name: '学习参考',
  115. disabled: false
  116. },
  117. {
  118. name: '其他',
  119. disabled: false
  120. }
  121. ],
  122. };
  123. }
  124. }
  125. </script>
  126. <style lang="scss">
  127. .btn{
  128. // width: 614rpx;
  129. height: 82rpx;
  130. background: #06A971;
  131. border-radius: 8rpx;
  132. font-size: 32rpx;
  133. font-family: PingFangSC, PingFang SC;
  134. font-weight: 500;
  135. color: #FFFFFF;
  136. margin-top: 48rpx;
  137. line-height: 82rpx;
  138. text-align: center;
  139. }
  140. .address {
  141. font-size: 26rpx;
  142. font-family: PingFangSC, PingFang SC;
  143. font-weight: 400;
  144. color: #222222;
  145. }
  146. .item {
  147. margin-top: 44rpx;
  148. .name {
  149. font-size: 26rpx;
  150. font-family: PingFangSC, PingFang SC;
  151. font-weight: 500;
  152. color: #CF1534;
  153. }
  154. .box {
  155. margin-top: 24rpx;
  156. height: 72rpx;
  157. border: 2rpx solid rgba(151, 151, 151, 0.3);
  158. }
  159. }
  160. .page{
  161. background-color: rgba(246, 246, 246, 1);
  162. width: 750rpx;
  163. min-height: 100vh;
  164. padding: 20rpx 28rpx 68rpx;
  165. }
  166. .stylebookbox {
  167. background: #FFFFFF;
  168. border-radius: 12rpx;
  169. padding: 38rpx 20rpx 44rpx;
  170. .apply {
  171. font-size: 32rpx;
  172. font-family: PingFangSC, PingFang SC;
  173. font-weight: 500;
  174. color: #222222;
  175. text-align: center;
  176. }
  177. .stylebook {
  178. font-size: 26rpx;
  179. font-family: PingFangSC, PingFang SC;
  180. font-weight: 400;
  181. color: #222222;
  182. margin-top: 50rpx;
  183. }
  184. .dotted {
  185. // margin-top: 30rpx;
  186. }
  187. }
  188. </style>