index.vue 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407
  1. <template>
  2. <view class="container">
  3. <view class="header">
  4. <text class="title">成为成长规划师</text>
  5. <text class="subtitle">分享专业知识,帮助更多家庭</text>
  6. </view>
  7. <view class="form">
  8. <!-- 邀请码输入 -->
  9. <view class="form-item">
  10. <text class="label">邀请码(可选)</text>
  11. <input
  12. class="input"
  13. v-model="formData.inviteCode"
  14. placeholder="输入邀请码可关联上级成长规划师"
  15. @blur="validateInviteCode"
  16. />
  17. <text class="hint" v-if="inviteCodeInfo">关联成长规划师:{{ inviteCodeInfo.guideName }}</text>
  18. </view>
  19. <!-- 真实姓名 -->
  20. <view class="form-item">
  21. <text class="label">真实姓名</text>
  22. <input
  23. class="input"
  24. v-model="formData.realName"
  25. placeholder="请输入真实姓名"
  26. />
  27. </view>
  28. <!-- 手机号 -->
  29. <view class="form-item">
  30. <text class="label">手机号</text>
  31. <input
  32. class="input"
  33. v-model="formData.phone"
  34. type="number"
  35. placeholder="请输入手机号"
  36. maxlength="11"
  37. />
  38. </view>
  39. <!-- 身份证号 -->
  40. <view class="form-item">
  41. <text class="label">身份证号</text>
  42. <input
  43. class="input"
  44. v-model="formData.idCard"
  45. placeholder="请输入身份证号"
  46. maxlength="18"
  47. />
  48. </view>
  49. <!-- 地址 -->
  50. <view class="form-item">
  51. <text class="label">联系地址</text>
  52. <input
  53. class="input"
  54. v-model="formData.address"
  55. placeholder="请输入联系地址"
  56. />
  57. </view>
  58. <!-- 银行卡号(选填) -->
  59. <view class="form-item">
  60. <text class="label">银行卡号 <text class="optional">(选填,用于佣金结算)</text></text>
  61. <input
  62. class="input"
  63. v-model="formData.bankCard"
  64. placeholder="请输入银行卡号"
  65. maxlength="30"
  66. />
  67. </view>
  68. <!-- 开户行(选填) -->
  69. <view class="form-item">
  70. <text class="label">开户行 <text class="optional">(选填)</text></text>
  71. <input
  72. class="input"
  73. v-model="formData.bankName"
  74. placeholder="请输入开户行名称,如:中国工商银行广州天河支行"
  75. />
  76. </view>
  77. <!-- 成长规划师认证信息(选填) -->
  78. <view class="section-divider">
  79. <text class="divider-text">成长规划师认证信息(选填)</text>
  80. </view>
  81. <!-- 成长规划师证书号 -->
  82. <view class="form-item">
  83. <text class="label">成长规划师证书号 <text class="optional">(选填)</text></text>
  84. <input
  85. class="input"
  86. v-model="formData.teacherNo"
  87. placeholder="如有成长规划师证书,请填写证书号"
  88. />
  89. </view>
  90. <!-- 成长规划师照片 -->
  91. <view class="form-item">
  92. <text class="label">成长规划师照片 <text class="optional">(选填)</text></text>
  93. <view class="upload-section">
  94. <image
  95. v-if="formData.teacherPhoto"
  96. :src="formData.teacherPhoto"
  97. class="preview-image"
  98. @click="chooseImage('teacherPhoto')"
  99. />
  100. <view v-else class="upload-placeholder" @click="chooseImage('teacherPhoto')">
  101. <text class="upload-icon">📷</text>
  102. <text class="upload-text">上传照片</text>
  103. </view>
  104. </view>
  105. </view>
  106. <!-- 证书照片 -->
  107. <view class="form-item">
  108. <text class="label">证书照片 <text class="optional">(选填)</text></text>
  109. <view class="upload-section">
  110. <image
  111. v-if="formData.certificateImage"
  112. :src="formData.certificateImage"
  113. class="preview-image"
  114. @click="chooseImage('certificateImage')"
  115. />
  116. <view v-else class="upload-placeholder" @click="chooseImage('certificateImage')">
  117. <text class="upload-icon">📷</text>
  118. <text class="upload-text">上传证书</text>
  119. </view>
  120. </view>
  121. </view>
  122. <!-- 提交按钮 -->
  123. <button class="btn-submit" :loading="submitting" :disabled="submitting" @click="submit">提交申请</button>
  124. </view>
  125. </view>
  126. </template>
  127. <script>
  128. import { registerGuide, validateInviteCode } from '../../../utils/api.js'
  129. export default {
  130. onLoad() {
  131. uni.redirectTo({ url: '/pages/profile/service-role-apply' })
  132. },
  133. data() {
  134. return {
  135. formData: {
  136. inviteCode: '',
  137. realName: '',
  138. phone: '',
  139. idCard: '',
  140. address: '',
  141. bankCard: '',
  142. bankName: '',
  143. teacherNo: '',
  144. teacherPhoto: '',
  145. certificateImage: ''
  146. },
  147. inviteCodeInfo: null,
  148. submitting: false
  149. }
  150. },
  151. onLoad(options) {
  152. // 如果有邀请码参数,自动填充
  153. if (options.inviteCode) {
  154. this.formData.inviteCode = options.inviteCode
  155. this.validateInviteCode()
  156. }
  157. },
  158. methods: {
  159. async validateInviteCode() {
  160. if (!this.formData.inviteCode) {
  161. this.inviteCodeInfo = null
  162. return
  163. }
  164. try {
  165. const res = await validateInviteCode(this.formData.inviteCode)
  166. if (res.code === 200) {
  167. this.inviteCodeInfo = res.data
  168. uni.showToast({
  169. title: '邀请码有效',
  170. icon: 'success'
  171. })
  172. } else {
  173. this.inviteCodeInfo = null
  174. uni.showToast({
  175. title: '邀请码无效',
  176. icon: 'none'
  177. })
  178. }
  179. } catch (e) {
  180. this.inviteCodeInfo = null
  181. uni.showToast({
  182. title: '验证失败',
  183. icon: 'none'
  184. })
  185. }
  186. },
  187. chooseImage(field) {
  188. uni.chooseImage({
  189. count: 1,
  190. sizeType: ['compressed'],
  191. sourceType: ['album', 'camera'],
  192. success: (res) => {
  193. const tempFilePath = res.tempFilePaths[0]
  194. this.uploadImage(field, tempFilePath)
  195. }
  196. })
  197. },
  198. uploadImage(field, filePath) {
  199. uni.showLoading({ title: '上传中...' })
  200. // TODO: 实际应该上传到服务器
  201. // 这里简化处理,直接使用本地路径
  202. setTimeout(() => {
  203. this.formData[field] = filePath
  204. uni.hideLoading()
  205. uni.showToast({
  206. title: '上传成功',
  207. icon: 'success'
  208. })
  209. }, 1000)
  210. },
  211. async submit() {
  212. if (this.submitting) return
  213. // 验证表单
  214. if (!this.formData.realName) {
  215. uni.showToast({ title: '请输入真实姓名', icon: 'none' })
  216. return
  217. }
  218. if (!this.formData.phone) {
  219. uni.showToast({ title: '请输入手机号', icon: 'none' })
  220. return
  221. }
  222. if (!this.formData.idCard) {
  223. uni.showToast({ title: '请输入身份证号', icon: 'none' })
  224. return
  225. }
  226. this.submitting = true
  227. uni.showLoading({ title: '提交中...' })
  228. try {
  229. const userId = uni.getStorageSync('userId')
  230. const res = await registerGuide({
  231. userId: userId,
  232. ...this.formData
  233. })
  234. if (res.code === 200) {
  235. uni.showModal({
  236. title: '申请成功',
  237. content: '您的成长规划师申请已提交,请等待审核',
  238. showCancel: false,
  239. success: () => {
  240. uni.navigateBack()
  241. }
  242. })
  243. } else {
  244. uni.showToast({
  245. title: res.message || '提交失败',
  246. icon: 'none'
  247. })
  248. }
  249. } catch (e) {
  250. uni.showToast({
  251. title: '提交失败',
  252. icon: 'none'
  253. })
  254. } finally {
  255. this.submitting = false
  256. uni.hideLoading()
  257. }
  258. }
  259. }
  260. }
  261. </script>
  262. <style scoped>
  263. .container {
  264. padding: 30rpx;
  265. background: #F8F8F8;
  266. min-height: 100vh;
  267. }
  268. .header {
  269. text-align: center;
  270. padding: 60rpx 0 40rpx;
  271. }
  272. .title {
  273. font-size: 48rpx;
  274. font-weight: bold;
  275. color: #333;
  276. display: block;
  277. margin-bottom: 20rpx;
  278. }
  279. .subtitle {
  280. font-size: 28rpx;
  281. color: #666;
  282. }
  283. .form {
  284. background: #fff;
  285. border-radius: 20rpx;
  286. padding: 40rpx;
  287. }
  288. .form-item {
  289. margin-bottom: 40rpx;
  290. }
  291. .label {
  292. font-size: 28rpx;
  293. color: #333;
  294. display: block;
  295. margin-bottom: 20rpx;
  296. font-weight: bold;
  297. }
  298. .input {
  299. width: 100%;
  300. height: 80rpx;
  301. border: 1rpx solid #E0E0E0;
  302. border-radius: 10rpx;
  303. padding: 0 20rpx;
  304. font-size: 28rpx;
  305. }
  306. .hint {
  307. font-size: 24rpx;
  308. color: #F97316;
  309. margin-top: 10rpx;
  310. display: block;
  311. }
  312. .optional {
  313. font-size: 24rpx;
  314. color: #999;
  315. font-weight: normal;
  316. }
  317. .section-divider {
  318. margin: 20rpx 0 30rpx;
  319. padding: 20rpx 0;
  320. border-top: 1rpx solid #f0f0f0;
  321. }
  322. .divider-text {
  323. font-size: 26rpx;
  324. color: #999;
  325. }
  326. .upload-section {
  327. display: flex;
  328. align-items: center;
  329. }
  330. .preview-image {
  331. width: 200rpx;
  332. height: 200rpx;
  333. border-radius: 10rpx;
  334. object-fit: cover;
  335. }
  336. .upload-placeholder {
  337. width: 200rpx;
  338. height: 200rpx;
  339. border: 2rpx dashed #E0E0E0;
  340. border-radius: 10rpx;
  341. display: flex;
  342. flex-direction: column;
  343. align-items: center;
  344. justify-content: center;
  345. background: #F8F8F8;
  346. }
  347. .upload-icon {
  348. font-size: 60rpx;
  349. margin-bottom: 10rpx;
  350. }
  351. .upload-text {
  352. font-size: 24rpx;
  353. color: #999;
  354. }
  355. .btn-submit {
  356. width: 100%;
  357. height: 90rpx;
  358. background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  359. color: #fff;
  360. border-radius: 45rpx;
  361. font-size: 32rpx;
  362. font-weight: bold;
  363. margin-top: 40rpx;
  364. }
  365. </style>