index.vue 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404
  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" @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. }
  149. },
  150. onLoad(options) {
  151. // 如果有邀请码参数,自动填充
  152. if (options.inviteCode) {
  153. this.formData.inviteCode = options.inviteCode
  154. this.validateInviteCode()
  155. }
  156. },
  157. methods: {
  158. async validateInviteCode() {
  159. if (!this.formData.inviteCode) {
  160. this.inviteCodeInfo = null
  161. return
  162. }
  163. try {
  164. const res = await validateInviteCode(this.formData.inviteCode)
  165. if (res.code === 200) {
  166. this.inviteCodeInfo = res.data
  167. uni.showToast({
  168. title: '邀请码有效',
  169. icon: 'success'
  170. })
  171. } else {
  172. this.inviteCodeInfo = null
  173. uni.showToast({
  174. title: '邀请码无效',
  175. icon: 'none'
  176. })
  177. }
  178. } catch (e) {
  179. this.inviteCodeInfo = null
  180. uni.showToast({
  181. title: '验证失败',
  182. icon: 'none'
  183. })
  184. }
  185. },
  186. chooseImage(field) {
  187. uni.chooseImage({
  188. count: 1,
  189. sizeType: ['compressed'],
  190. sourceType: ['album', 'camera'],
  191. success: (res) => {
  192. const tempFilePath = res.tempFilePaths[0]
  193. this.uploadImage(field, tempFilePath)
  194. }
  195. })
  196. },
  197. uploadImage(field, filePath) {
  198. uni.showLoading({ title: '上传中...' })
  199. // TODO: 实际应该上传到服务器
  200. // 这里简化处理,直接使用本地路径
  201. setTimeout(() => {
  202. this.formData[field] = filePath
  203. uni.hideLoading()
  204. uni.showToast({
  205. title: '上传成功',
  206. icon: 'success'
  207. })
  208. }, 1000)
  209. },
  210. async submit() {
  211. // 验证表单
  212. if (!this.formData.realName) {
  213. uni.showToast({ title: '请输入真实姓名', icon: 'none' })
  214. return
  215. }
  216. if (!this.formData.phone) {
  217. uni.showToast({ title: '请输入手机号', icon: 'none' })
  218. return
  219. }
  220. if (!this.formData.idCard) {
  221. uni.showToast({ title: '请输入身份证号', icon: 'none' })
  222. return
  223. }
  224. try {
  225. uni.showLoading({ title: '提交中...' })
  226. const userId = uni.getStorageSync('userId')
  227. const res = await registerGuide({
  228. userId: userId,
  229. ...this.formData
  230. })
  231. uni.hideLoading()
  232. if (res.code === 200) {
  233. uni.showModal({
  234. title: '申请成功',
  235. content: '您的成长规划师申请已提交,请等待审核',
  236. showCancel: false,
  237. success: () => {
  238. uni.navigateBack()
  239. }
  240. })
  241. } else {
  242. uni.showToast({
  243. title: res.message || '提交失败',
  244. icon: 'none'
  245. })
  246. }
  247. } catch (e) {
  248. uni.hideLoading()
  249. uni.showToast({
  250. title: '提交失败',
  251. icon: 'none'
  252. })
  253. }
  254. }
  255. }
  256. }
  257. </script>
  258. <style scoped>
  259. .container {
  260. padding: 30rpx;
  261. background: #F8F8F8;
  262. min-height: 100vh;
  263. }
  264. .header {
  265. text-align: center;
  266. padding: 60rpx 0 40rpx;
  267. }
  268. .title {
  269. font-size: 48rpx;
  270. font-weight: bold;
  271. color: #333;
  272. display: block;
  273. margin-bottom: 20rpx;
  274. }
  275. .subtitle {
  276. font-size: 28rpx;
  277. color: #666;
  278. }
  279. .form {
  280. background: #fff;
  281. border-radius: 20rpx;
  282. padding: 40rpx;
  283. }
  284. .form-item {
  285. margin-bottom: 40rpx;
  286. }
  287. .label {
  288. font-size: 28rpx;
  289. color: #333;
  290. display: block;
  291. margin-bottom: 20rpx;
  292. font-weight: bold;
  293. }
  294. .input {
  295. width: 100%;
  296. height: 80rpx;
  297. border: 1rpx solid #E0E0E0;
  298. border-radius: 10rpx;
  299. padding: 0 20rpx;
  300. font-size: 28rpx;
  301. }
  302. .hint {
  303. font-size: 24rpx;
  304. color: #F97316;
  305. margin-top: 10rpx;
  306. display: block;
  307. }
  308. .optional {
  309. font-size: 24rpx;
  310. color: #999;
  311. font-weight: normal;
  312. }
  313. .section-divider {
  314. margin: 20rpx 0 30rpx;
  315. padding: 20rpx 0;
  316. border-top: 1rpx solid #f0f0f0;
  317. }
  318. .divider-text {
  319. font-size: 26rpx;
  320. color: #999;
  321. }
  322. .upload-section {
  323. display: flex;
  324. align-items: center;
  325. }
  326. .preview-image {
  327. width: 200rpx;
  328. height: 200rpx;
  329. border-radius: 10rpx;
  330. object-fit: cover;
  331. }
  332. .upload-placeholder {
  333. width: 200rpx;
  334. height: 200rpx;
  335. border: 2rpx dashed #E0E0E0;
  336. border-radius: 10rpx;
  337. display: flex;
  338. flex-direction: column;
  339. align-items: center;
  340. justify-content: center;
  341. background: #F8F8F8;
  342. }
  343. .upload-icon {
  344. font-size: 60rpx;
  345. margin-bottom: 10rpx;
  346. }
  347. .upload-text {
  348. font-size: 24rpx;
  349. color: #999;
  350. }
  351. .btn-submit {
  352. width: 100%;
  353. height: 90rpx;
  354. background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  355. color: #fff;
  356. border-radius: 45rpx;
  357. font-size: 32rpx;
  358. font-weight: bold;
  359. margin-top: 40rpx;
  360. }
  361. </style>