jianli.vue 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. <template>
  2. <view class="content">
  3. <view class="top hflex acenter jcenter">
  4. <image src="static/info.png" mode="aspectFill"></image>
  5. <text>支持word、pdf、xls等格式</text>
  6. </view>
  7. <view class="form">
  8. <view class="item hflex acenter jbetween">
  9. <view class="label">姓名</view>
  10. <u-input placeholder="请输入您的姓名" border="none" v-model="name" inputAlign="right"></u-input>
  11. </view>
  12. <view class="item hflex acenter jbetween">
  13. <view class="label">联系电话</view>
  14. <u-input placeholder="请输入您的联系电话" border="none" v-model="mobile" inputAlign="right"></u-input>
  15. </view>
  16. <view class="item vflex" style="border: none;">
  17. <view class="label">上传简历</view>
  18. <view class="upload hflex acenter jcenter" @click="toupload">
  19. <image src="static/upload.png" mode="aspectFill"></image>
  20. <text>上传文件</text>
  21. </view>
  22. <view class="file hflex acenter" v-if="resume">
  23. <image src="static/lianjie.png" mode="aspectFill"></image>
  24. <text>{{resume}}</text>
  25. </view>
  26. </view>
  27. </view>
  28. <view class="btn" :class="resume && name && mobile ? 'btn-sure' : ''" @click="submit">确认并上传</view>
  29. </view>
  30. </template>
  31. <script>
  32. import $api from '@/static/js/api.js'
  33. var that = ''
  34. export default {
  35. data() {
  36. return {
  37. resume: '',
  38. name: '',
  39. mobile: '',
  40. id: '',
  41. }
  42. },
  43. onLoad(options) {
  44. that = this
  45. this.id = options.id
  46. },
  47. methods: {
  48. submit() {
  49. if (!this.name) {
  50. $api.info('请先输入您的姓名')
  51. return
  52. }
  53. if (!this.mobile) {
  54. $api.info('请先输入您的联系方式')
  55. return
  56. }
  57. if (!this.file) {
  58. $api.info('请先上传您的简历')
  59. return
  60. }
  61. $api.req({
  62. url: 'job/' + that.id + '/delivery',
  63. method: 'POST',
  64. data: {
  65. name: that.name,
  66. mobile: that.mobile,
  67. resume: that.resume
  68. }
  69. }, function(res) {
  70. if (res.code == 10000) {
  71. uni.redirectTo({
  72. url: '/pageC/success'
  73. })
  74. }
  75. })
  76. },
  77. toupload() {
  78. var _this = this
  79. uni.chooseFile({
  80. count: 1, //默认100
  81. extension: ['.doc', '.docx', '.pdf', '.xls'], //word、pdf、xls
  82. success: function(res) {
  83. uni.showLoading({
  84. title: '上传中'
  85. })
  86. console.log(JSON.stringify(res.tempFilePaths));
  87. let resume = JSON.stringify(res.tempFilePaths)
  88. uni.uploadFile({
  89. url: $api.config.baseUrl + 'upload/file', //仅为示例,非真实的接口地址
  90. filePath: resume,
  91. name: 'file',
  92. formData: {
  93. 'user': 'test'
  94. },
  95. success: (uploadFileRes) => {
  96. var data = JSON.parse(uploadFileRes.data)
  97. _this.resume = data.data.url
  98. uni.hideLoading()
  99. }
  100. });
  101. }
  102. });
  103. },
  104. }
  105. }
  106. </script>
  107. <style lang="scss">
  108. .content::v-deep {
  109. background: #FFFFFF;
  110. .form {
  111. padding: 0 28rpx;
  112. .item {
  113. padding: 28rpx 0;
  114. border-bottom: 1px solid #F5F5F5;
  115. .label {
  116. font-size: 32rpx;
  117. font-family: PingFangSC, PingFang SC;
  118. font-weight: 400;
  119. color: #333333;
  120. }
  121. .u-input {
  122. max-width: 450rpx;
  123. }
  124. .file {
  125. image {
  126. width: 32rpx;
  127. height: 32rpx;
  128. }
  129. text {
  130. font-size: 28rpx;
  131. font-family: PingFangSC, PingFang SC;
  132. font-weight: 400;
  133. color: rgba(0, 0, 0, 0.85);
  134. padding: 0 0 0 8rpx;
  135. }
  136. }
  137. .upload {
  138. background: #FFFFFF;
  139. border-radius: 8rpx;
  140. border: 2rpx solid #D9D9D9;
  141. padding: 10rpx 32rpx;
  142. max-width: max-content;
  143. margin: 20rpx 0 16rpx;
  144. image {
  145. width: 28rpx;
  146. height: 28rpx;
  147. }
  148. text {
  149. font-size: 28rpx;
  150. font-family: PingFangSC, PingFang SC;
  151. font-weight: 400;
  152. color: rgba(0, 0, 0, 0.85);
  153. padding: 0 0 0 16rpx;
  154. }
  155. }
  156. }
  157. }
  158. .top {
  159. width: 100%;
  160. height: 60rpx;
  161. background: #00B0B0;
  162. image {
  163. width: 28rpx;
  164. height: 28rpx;
  165. margin: 0 8rpx 0 0;
  166. }
  167. text {
  168. font-size: 22rpx;
  169. font-family: SFPro, SFPro;
  170. font-weight: 400;
  171. color: #FFFFFF;
  172. }
  173. }
  174. .btn-sure {
  175. opacity: 1 !important;
  176. }
  177. .btn {
  178. width: 702rpx;
  179. height: 84rpx;
  180. background: #00B0B0;
  181. border-radius: 44rpx;
  182. opacity: 0.3;
  183. position: fixed;
  184. bottom: 66rpx;
  185. left: 24rpx;
  186. font-size: 32rpx;
  187. font-family: PingFangSC, PingFang SC;
  188. font-weight: 500;
  189. color: #FFFFFF;
  190. line-height: 84rpx;
  191. text-align: center;
  192. }
  193. }
  194. </style>