applyshare.vue 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. <template>
  2. <view class="pages">
  3. <u-navbar
  4. title="全民分享"
  5. :placeholder="true"
  6. :autoBack="true"
  7. :safeAreaInsetTop="true"
  8. bgColor="#ED0000"
  9. :titleStyle="{color:'#fff'}"
  10. leftIconColor="#fff"
  11. >
  12. </u-navbar>
  13. <view class="title">
  14. 请填写您的报名信息
  15. </view>
  16. <view class="form-wrap">
  17. <u--form labelPosition="left" labelAlign="right" labelWidth="85px" :model="form" :rules="rules" ref="uForm" >
  18. <u-form-item label="姓名" prop="name" required ref="name" >
  19. <u--input
  20. v-model="form.name"
  21. border="none"
  22. placeholder="请输入您的真实姓名"
  23. :fontSize="inputFontSize"
  24. :customStyle="inputCustomStyle"
  25. ></u--input>
  26. </u-form-item>
  27. <u-form-item label="联系电话" prop="mobile" required ref="mobile" >
  28. <u--input
  29. v-model="form.mobile"
  30. border="none"
  31. placeholder="请输入您的联系电话"
  32. :fontSize="inputFontSize"
  33. :customStyle="inputCustomStyle"
  34. ></u--input>
  35. </u-form-item>
  36. <u-form-item label="职业" prop="careerName" required ref="careerName" >
  37. <u--input
  38. v-model="form.careerName"
  39. border="none"
  40. placeholder="请输入您的职业"
  41. :fontSize="inputFontSize"
  42. :customStyle="inputCustomStyle"
  43. ></u--input>
  44. </u-form-item>
  45. <u-form-item label="销售路径 /渠道" prop="saleChannel" required ref="saleChannel" >
  46. <u--textarea
  47. count
  48. maxlength="200"
  49. v-model="form.saleChannel"
  50. border="none"
  51. placeholder="请描述您的销售剧目的渠道或路径"
  52. :customStyle="{fontSize:inputFontSize}"
  53. ></u--textarea>
  54. </u-form-item>
  55. </u--form>
  56. </view>
  57. <u-button
  58. @click="submit"
  59. text="确定"
  60. type="primary"
  61. shape="circle"
  62. :customStyle="{'margin':'60rpx 32rpx',height:'98rpx','box-sizing':'border-box',width:'auto'}"
  63. color="linear-gradient(90deg, #FF7979 0%, #ED0000 100%)">
  64. </u-button>
  65. </view>
  66. </template>
  67. <script>
  68. export default {
  69. data() {
  70. return {
  71. backUrl:'',
  72. form:{
  73. name:'',
  74. mobile:'',
  75. careerName:'',
  76. saleChannel:''
  77. },
  78. rules: {
  79. name: {
  80. type: 'string',
  81. required: true,
  82. message: '请输入姓名',
  83. trigger: ['blur', 'change']
  84. },
  85. mobile: [
  86. {
  87. type: 'string',
  88. required: true,
  89. message: '请输入联系电话',
  90. trigger: ['blur', 'change']
  91. },
  92. {
  93. // 自定义验证函数,见上说明
  94. validator: (rule, value, callback) => {
  95. // 上面有说,返回true表示校验通过,返回false表示不通过
  96. // uni.$u.test.mobile()就是返回true或者false的
  97. return uni.$u.test.mobile(value);
  98. },
  99. message: '手机号码不正确',
  100. // 触发器可以同时用blur和change
  101. trigger: ['change','blur'],
  102. }
  103. ],
  104. careerName: [
  105. {
  106. type: 'string',
  107. required: true,
  108. message: '请输入您的职业',
  109. trigger: ['blur', 'change']
  110. }
  111. ],
  112. saleChannel: [
  113. {
  114. type: 'string',
  115. required: true,
  116. message: '请描述您的销售剧目的渠道或路径',
  117. trigger: ['blur', 'change']
  118. }
  119. ],
  120. },
  121. inputCustomStyle:{
  122. background:'#fff',
  123. 'padding-left':'30rpx',
  124. 'box-sizing':'border-box',
  125. },
  126. inputFontSize:'30rpx'
  127. }
  128. },
  129. onShow() {
  130. },
  131. onReady() {
  132. this.$refs.uForm.setRules(this.rules)
  133. },
  134. onLoad(page) {
  135. this.backUrl = decodeURIComponent(page.backUrl)||'/center/center';
  136. },
  137. methods: {
  138. leftClick(){
  139. let pages = getCurrentPages();
  140. if(pages.length==1){
  141. uni.$u.route('/pages/index/index')
  142. }else{
  143. uni.navigateBack()
  144. };
  145. },
  146. chekPass(){
  147. console.log('chekPass---',this.form);
  148. return new Promise((resolve, reject)=>{
  149. if(!password){
  150. reject('needAuth');
  151. }
  152. })
  153. },
  154. async submit(){
  155. let that = this;
  156. // console.log('form',this.form);
  157. this.$refs.uForm.validate().then(res => {
  158. // let chekPassResult = await this.chekPass();
  159. // return
  160. // uni.$u.toast('校验通过')
  161. this.$u.api.applyshare(this.form).then(res=>{
  162. // console.log('res',res.data);
  163. uni.showToast({
  164. title:res.msg,
  165. icon:'success'
  166. })
  167. setTimeout(()=>{
  168. uni.$u.route('/center/applysharesuccess')
  169. // that.leftClick();
  170. },2000)
  171. // uni.reLaunch({url: this.backUrl});
  172. }).catch(err=>{
  173. console.log('login',err);
  174. })
  175. }).catch(errors => {
  176. uni.$u.toast('请正确填写表单')
  177. })
  178. },
  179. }
  180. }
  181. </script>
  182. <style>
  183. page{
  184. background-color: #F4F5F7;
  185. }
  186. </style>
  187. <style lang="scss" scoped>
  188. .title{
  189. font-size: 28rpx;
  190. font-weight: 400;
  191. color: #363636;
  192. line-height: 42rpx;
  193. margin: 44rpx 32rpx 0;
  194. }
  195. .form-wrap{
  196. margin: 30rpx 32rpx 40rpx;
  197. padding: 0 0 20rpx;
  198. /deep/ .u-form-item{
  199. .u-form-item__body__left__content{
  200. justify-content: flex-end;
  201. text-align: right;
  202. padding-right: 32rpx;
  203. align-items: flex-start;
  204. }
  205. .u-form-item__body__left__content__required{
  206. position: static;
  207. left: auto;
  208. top: auto;
  209. color: #FF0000;
  210. margin-right: 2px;
  211. }
  212. .u-form-item__body__left__content__label{
  213. flex: unset;
  214. font-size: 28rpx;
  215. color: #606060;
  216. }
  217. &:last-of-type{
  218. .u-form-item__body{
  219. align-items: flex-start;
  220. }
  221. }
  222. }
  223. /deep/ .u-input__content__field-wrapper__field{
  224. height: 68rpx;
  225. }
  226. }
  227. </style>