recruit.vue 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290
  1. <template>
  2. <view class="container">
  3. <!-- 申请分销员 -->
  4. <view class="topBackImg flex-items flex-column">
  5. <view class="content mar-top-36">
  6. <view class="topColor"></view>
  7. <view class="text-box mar-left-30">
  8. <label class="fs-bold">分销员是什么?</label>
  9. <view class="fs24 font-color-656 mar-top-20">分销员是我们为拥有推广能力的用户推出的运营计划。你只需将高品质商品分享推荐给他人,收获他人的感谢的同时,挣得属于自己的利润。</view>
  10. </view>
  11. <view class="text-box mar-top-20 mar-left-30">
  12. <label class="fs-bold">我该怎么成为分销员?</label>
  13. <view class="fs24 font-color-656 mar-top-20">
  14. <view>
  15. <label class="fs-bold"> · </label>
  16. <label class="mar-left-20">点击本页面的【我要成为分销员】,即可完成申请。</label>
  17. </view>
  18. <view class="flex-row-plus mar-top-20">
  19. <label class="fs-bold"> · </label>
  20. <label class="mar-left-20 textDes">点击拥有分销员活动标识的分享按钮,将商品分享给好友或朋友圈。</label>
  21. </view>
  22. <view class="mar-top-20">
  23. <label class="fs-bold"> · </label>
  24. <label class="mar-left-20">朋友通过您的链接进入并购买一件商品。</label>
  25. </view>
  26. <view class="flex-row-plus textDes mar-top-20">
  27. <label class="fs-bold"> · </label>
  28. <label class="mar-left-20">我们收到已完成的订单时,会将本订单的佣金结算给您。</label>
  29. </view>
  30. <view class="mar-top-20">
  31. <label class="fs-bold"> · </label>
  32. <label class="mar-left-20">返回个人中心-分销中心,查看您的。</label>
  33. </view>
  34. </view>
  35. </view>
  36. <view class="text-box mar-top-20 mar-left-30">
  37. <label class="fs-bold">其他说明</label>
  38. <view class="fs24 font-color-656 mar-top-20">
  39. <view>
  40. <label class="fs-bold"> · </label>
  41. <label class="mar-left-20">客户只有通过您的链接成交,才能返佣给您。</label>
  42. </view>
  43. <view class="flex-row-plus mar-top-20">
  44. <label class="fs-bold"> · </label>
  45. <label class="mar-left-20 textDes"> 若订单发生退款,我们将去除本订单的佣金。</label>
  46. </view>
  47. <view class="mar-top-20">
  48. <label class="fs-bold"> · </label>
  49. <label class="mar-left-20">商品的售后问题,由本商店处理。</label>
  50. </view>
  51. <view class="flex-row-plus textDes mar-top-20">
  52. <label class="fs-bold"> · </label>
  53. <label class="mar-left-20">不传播任何违法违规信息,一经发现,即被清退,本商城不负任何责任。</label>
  54. </view>
  55. <view class="mar-top-20">
  56. <label class="fs-bold"> · </label>
  57. <label class="mar-left-20">以上内容解释权归本商城所有。</label>
  58. </view>
  59. </view>
  60. </view>
  61. </view>
  62. </view>
  63. <view class="butBox flex-items-plus" :style="{ 'padding-bottom': (isIphone === true ? 20 : 0) + 'rpx' }" @click="informationShowClick">
  64. <view class="submitbut">我要成为分销员</view>
  65. </view>
  66. <!-- 填写信息弹窗 -->
  67. <u-popup v-model="informationShowFalg" mode="center" border-radius="14">
  68. <view class="informationShow-box">
  69. <view class="flex-items flex-column informationShow-centent">
  70. <view class="mar-top-60">
  71. <label class="fs-bold fs36">请填写相关信息</label>
  72. </view>
  73. <view class="flex-items flex-row mar-top-60">
  74. <view class="fs26 font-color-656">真实姓名<label class="font-color-red">*</label></view>
  75. <input v-model="userName" class="recruitName mar-left-20 fs26" maxlength="20" />
  76. </view>
  77. <view class="flex-items flex-row mar-top-30 phoneStyle">
  78. <label class="fs26 font-color-656">联系电话<label class="font-color-red">*</label></label>
  79. <input v-model="mobile" class="recruitIphone mar-left-20 fs26" disabled="disabled" type="number" maxlength="11" />
  80. </view>
  81. <view class="flex-items flex-row mar-top-30 mar-left-40">
  82. <label class="fs26 font-color-656">邀请码</label>
  83. <input v-model="inviteId" class="recruitIphone mar-left-20 fs26" maxlength="6" />
  84. </view>
  85. <view class="flex-row-plus massageDes-but fs28">
  86. <view class="exitBut" @click="exitButClick">取消</view>
  87. <view class="submitbut" @click="submitbut">提交</view>
  88. </view>
  89. </view>
  90. </view>
  91. </u-popup>
  92. </view>
  93. </template>
  94. <script>
  95. import { J_STORAGE_KEY } from '../../config/constant'
  96. const NET = require('../../utils/request')
  97. const API = require('../../config/api')
  98. export default {
  99. data() {
  100. return {
  101. informationShowFalg: false,
  102. item: '',
  103. userName: '',
  104. mobile: '',
  105. inviteId: '',
  106. shopId: 0,
  107. isIphone: false
  108. }
  109. },
  110. onLoad(options) {
  111. this.isIphone = getApp().globalData.isIphone
  112. if (getApp().globalData.distributeRecruitItem) {
  113. const item = getApp().globalData.distributeRecruitItem
  114. this.shopId = parseInt(item.shopId)
  115. getApp().globalData.distributeRecruitItem = undefined
  116. } else {
  117. this.shopId = parseInt(options.shopId)
  118. }
  119. this.isIphone = getApp().globalData.isIphone
  120. },
  121. methods: {
  122. informationShowClick() {
  123. this.informationShowFalg = true
  124. const res = uni.getStorageSync(J_STORAGE_KEY)
  125. this.mobile = res.phone
  126. if (!this.mobile) {
  127. uni.showToast({
  128. title: '请先登录!',
  129. icon: 'none'
  130. })
  131. uni.navigateTo({
  132. url: '../../../pages_category_page2/userModule/login'
  133. })
  134. }
  135. },
  136. exitButClick() {
  137. this.informationShowFalg = false
  138. },
  139. submitbut() {
  140. this.applyForRecruit()
  141. },
  142. // 申请为分销员
  143. applyForRecruit() {
  144. var regphone = /^1(3\d|4[5-9]|5[0-35-9]|6[2567]|7[0-8]|8\d|9[0-35-9])\d{8}$/
  145. if (this.userName == '') {
  146. uni.showToast({
  147. title: '真实姓名不能为空',
  148. icon: 'none'
  149. })
  150. } else if (this.mobile == '') {
  151. uni.showToast({
  152. title: '手机号不能为空',
  153. icon: 'none'
  154. })
  155. } else if (!regphone.test(this.mobile)) {
  156. uni.showToast({
  157. title: '手机格式不正确',
  158. icon: 'none'
  159. })
  160. } else {
  161. NET.request(API.Apply, {
  162. shopId: this.shopId,
  163. distributorPhone: this.mobile,
  164. distributorName: this.userName,
  165. invitationCode: this.inviteId
  166. }, 'POST').then((res) => {
  167. this.informationShowFalg = false
  168. uni.showToast({
  169. title: '请等候审核...'
  170. })
  171. setTimeout(() => {
  172. uni.navigateBack({
  173. delta: 1
  174. })
  175. }, 1500)
  176. })
  177. .catch((res) => {
  178. uni.showToast({
  179. title: '申请失败',
  180. icon: 'none'
  181. })
  182. })
  183. }
  184. }
  185. }
  186. }
  187. </script>
  188. <style lang="scss">
  189. .container {
  190. .topBackImg {
  191. width: 100%;
  192. height: 260upx;
  193. background: url(../../static/images/origin/storeTop_Img.png) no-repeat;
  194. background-size: 100% 260upx;
  195. .content {
  196. width: 690upx;
  197. background-color: #FFFFFF;
  198. .topColor {
  199. height: 60upx;
  200. }
  201. .text-box {
  202. width: 622upx;
  203. .textDes {
  204. width: 598upx;
  205. line-height: 40upx;
  206. }
  207. }
  208. }
  209. }
  210. .butBox {
  211. height: 130upx;
  212. width: 100%;
  213. position: absolute;
  214. bottom: 0upx;
  215. left: 0upx;
  216. background-color: #FFFFFF;
  217. box-shadow: 0upx 3upx 12upx #999999;
  218. .submitbut {
  219. height: 80upx;
  220. width: 690upx;
  221. background: #333333;
  222. font-size: 28upx;
  223. text-align: center;
  224. line-height: 80upx;
  225. color: #FFEBC4;
  226. }
  227. }
  228. .informationShow-box {
  229. .flex-items {
  230. input {
  231. padding-left: 16upx;
  232. }
  233. }
  234. .phoneStyle {
  235. input {
  236. background: #EEEEEE;
  237. color: #999999;
  238. }
  239. }
  240. .informationShow-centent {
  241. width: 520upx;
  242. height: 550upx;
  243. .recruitName {
  244. border: 2upx solid #DDDDDD;
  245. width: 300upx;
  246. height: 48upx;
  247. }
  248. .recruitIphone {
  249. border: 2upx solid #DDDDDD;
  250. width: 300upx;
  251. height: 48upx;
  252. }
  253. .massageDes-but {
  254. position: absolute;
  255. bottom: 0;
  256. }
  257. .exitBut {
  258. border: 1upx solid #E5E5E5;
  259. width: 260upx;
  260. height: 90upx;
  261. text-align: center;
  262. line-height: 90upx;
  263. }
  264. .submitbut {
  265. background-color: #333333;
  266. width: 260upx;
  267. height: 90upx;
  268. text-align: center;
  269. line-height: 90upx;
  270. color: #FFFFFF;
  271. }
  272. }
  273. }
  274. }
  275. </style>