stylebook.vue 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  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 v-model="from.name" 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 v-model="from.phone" 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 v-model="from.email" 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 v-model="from.school" 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' @change='changeground' v-model="value">
  60. <u-radio shape="square" active-color="rgba(6, 169, 113, 1)" v-for="(item, index) in list"
  61. :key="index" :name="index" @change="radioChange">
  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 v-model="from.mailing_name" 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 v-model="from.mailing_area" 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 v-model="from.mailing_address" 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 v-model="from.mailing_phone" type="text" style="width: 100%;" />
  96. </view>
  97. </view>
  98. </view>
  99. <view class="btn" @click="toupload">
  100. 提交
  101. </view>
  102. </view>
  103. </view>
  104. </template>
  105. <script>
  106. import city from '../../common/city-data.js'
  107. export default {
  108. data() {
  109. return {
  110. value:0,
  111. list: [{
  112. name: '教材用书',
  113. disabled: false,
  114. id: 0
  115. },
  116. {
  117. name: '学习参考',
  118. disabled: false,
  119. id: 1
  120. },
  121. {
  122. name: '其他',
  123. disabled: false,
  124. id: 2
  125. }
  126. ],
  127. from: {
  128. name: '',
  129. phone: '',
  130. email: '',
  131. school: '',
  132. use_to: '',
  133. mailing_name: '',
  134. mailing_area: '',
  135. mailing_address: '',
  136. mailing_phone: '',
  137. books_id: ''
  138. }
  139. };
  140. },
  141. onLoad(options) {
  142. this.from.books_id = options.id
  143. },
  144. methods: {
  145. radioChange(e) {
  146. console.log(e);
  147. },
  148. changeground(e) {
  149. console.log(e);
  150. },
  151. toupload() {
  152. if (!this.from.name) {
  153. this.$u.toast('请输入您的姓名')
  154. return
  155. }
  156. if (!this.$u.test.mobile(this.from.phone)) {
  157. this.$u.toast("请输入正确的手机号")
  158. return
  159. }
  160. if (!this.$u.test.email(this.from.email)) {
  161. this.$u.toast("请输入正确的邮箱号")
  162. return
  163. }
  164. if (!this.from.school) {
  165. this.$u.toast('请输入您的学校')
  166. return
  167. }
  168. if (!this.from.use_to) {
  169. this.$u.toast('请选择图书用途')
  170. return
  171. }
  172. if (!this.from.mailing_name) {
  173. this.$u.toast('请输入您的收货姓名')
  174. return
  175. }
  176. if (!this.from.mailing_address) {
  177. this.$u.toast('请输入您的收货地址')
  178. return
  179. }
  180. if (!this.$u.test.mobile(this.from.mailing_phone)) {
  181. this.$u.toast("请输入正确的收货手机号")
  182. return
  183. }
  184. this.$u.post("api/books/addSampleApply", {
  185. ...this.from
  186. }).then(res => {
  187. })
  188. }
  189. }
  190. }
  191. </script>
  192. <style lang="scss">
  193. .btn {
  194. // width: 614rpx;
  195. height: 82rpx;
  196. background: #06A971;
  197. border-radius: 8rpx;
  198. font-size: 32rpx;
  199. font-family: PingFangSC, PingFang SC;
  200. font-weight: 500;
  201. color: #FFFFFF;
  202. margin-top: 48rpx;
  203. line-height: 82rpx;
  204. text-align: center;
  205. }
  206. .address {
  207. font-size: 26rpx;
  208. font-family: PingFangSC, PingFang SC;
  209. font-weight: 400;
  210. color: #222222;
  211. }
  212. .item {
  213. margin-top: 44rpx;
  214. .name {
  215. font-size: 26rpx;
  216. font-family: PingFangSC, PingFang SC;
  217. font-weight: 500;
  218. color: #CF1534;
  219. }
  220. .box {
  221. margin-top: 24rpx;
  222. height: 72rpx;
  223. border: 2rpx solid rgba(151, 151, 151, 0.3);
  224. }
  225. }
  226. .page {
  227. background-color: rgba(246, 246, 246, 1);
  228. width: 750rpx;
  229. min-height: 100vh;
  230. padding: 20rpx 28rpx 68rpx;
  231. }
  232. .stylebookbox {
  233. background: #FFFFFF;
  234. border-radius: 12rpx;
  235. padding: 38rpx 20rpx 44rpx;
  236. .apply {
  237. font-size: 32rpx;
  238. font-family: PingFangSC, PingFang SC;
  239. font-weight: 500;
  240. color: #222222;
  241. text-align: center;
  242. }
  243. .stylebook {
  244. font-size: 26rpx;
  245. font-family: PingFangSC, PingFang SC;
  246. font-weight: 400;
  247. color: #222222;
  248. margin-top: 50rpx;
  249. }
  250. .dotted {
  251. // margin-top: 30rpx;
  252. }
  253. }
  254. </style>