upload.vue 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  1. <template>
  2. <view class="index-page">
  3. <view class="top">
  4. 微信聊天文件上传
  5. </view>
  6. <view class="min">
  7. 支持PDF文件格式,文件大小不超过20M
  8. </view>
  9. <view class="left">
  10. 将文件发送至微信(文件传输助手、自己或好友),在本页面点击上传按钮,选择刚才发送文件的聊天对象,选择文件,点击确定即可上传
  11. </view>
  12. <view class="back1 " v-if="flielist.length">
  13. <view class="u-flex u-row-between" v-for="(item,index) in flielist" :key="index" >
  14. <view class="u-flex" @click="yulan">
  15. <image src="../static/images/pdf.png" style="width: 60rpx;height: 60rpx;" mode=""></image>
  16. <text>{{name}}</text>
  17. <text style="margin-left: 20rpx;">点击预览</text>
  18. </view>
  19. <u-icon @click.stop="trash(index)" name="trash" size='30'></u-icon>
  20. </view>
  21. </view>
  22. <view v-else class="back u-flex u-row-center" @click="upload1()">
  23. <u-icon name="plus" size="60"></u-icon>
  24. </view>
  25. <view class="button" @click.once="touserinfo" v-if="flielist.length">
  26. 立即上传
  27. </view>
  28. <u-popup :show="show" mode="center" round="20" customStyle="width:80vw;padding:20rpx">
  29. <view class="font">提示</view>
  30. <view class="u-flex" style="margin-top: 40rpx;">
  31. <u-icon name="error" color="#E6A23C" size="24"></u-icon>
  32. <text>删除后不可恢复,确定删除吗?</text>
  33. </view>
  34. <view class="u-flex u-row-between" style="margin-top: 60rpx;">
  35. <view class="btn1" @click="cancel">取消</view>
  36. <view class="btn2" @click="end">确定</view>
  37. </view>
  38. </u-popup>
  39. </view>
  40. </template>
  41. <script>
  42. import {
  43. upload,
  44. ocr
  45. } from "@/units/inquire.js"
  46. export default {
  47. data() {
  48. return {
  49. show: false,
  50. name: "",
  51. path: "",
  52. flielist: [],
  53. index: "",
  54. fill: ""
  55. }
  56. },
  57. onLoad(options) {
  58. },
  59. methods: {
  60. touserinfo() {
  61. uni.showLoading({
  62. mask: true,
  63. title: "解析中请稍后"
  64. })
  65. ocr({
  66. path: this.flielist[0]
  67. }).then(res => {
  68. // uni.showLoading({
  69. // title: '解析中请稍后',
  70. // mask: true
  71. // })
  72. this.$u.toast(res.data.msg, "请重新上传或手动填写简历")
  73. if (res.data.msg == "解析失败") {
  74. } else {
  75. uni.setStorageSync("education_experience3", res.data.data.education_experience)
  76. uni.setStorageSync("job_experience3", res.data.data.job_experience)
  77. uni.setStorageSync("project_experience3", res.data.data.project_experience)
  78. uni.setStorageSync("from1", res.data.data.resume)
  79. setTimeout(function() {
  80. uni.navigateTo({
  81. url:"/pagesA/jianli"
  82. })
  83. }, 1000)
  84. }
  85. })
  86. },
  87. yulan() {
  88. console.log(111, this.path);
  89. uni.openDocument({
  90. filePath: this.path,
  91. showMenu: true,
  92. success: function(res) {
  93. console.log('打开文档成功');
  94. }
  95. });
  96. },
  97. upload1() {
  98. let that = this;
  99. wx.chooseMessageFile({
  100. count: 1, //限制选择的文件数量
  101. type: 'file', //非图片和视频的文件,不选默认为all
  102. extension: [".pdf", 'pdf'], //此处限制文件类型
  103. success(res) {
  104. var tempFilePaths = res.tempFiles
  105. console.log('临时路径', tempFilePaths)
  106. that.name = tempFilePaths[0].name
  107. that.path = tempFilePaths[0].path
  108. that.upload(tempFilePaths[0].path)
  109. }
  110. })
  111. },
  112. upload(file) {
  113. uni.uploadFile({
  114. url: 'https://hire.hdlkeji.com/api/common/upload', //仅为示例,非真实的接口地址
  115. filePath: file,
  116. name: 'file',
  117. formData: {
  118. 'user': 'test'
  119. },
  120. success: (res) => {
  121. console.log('uploadImage success, res is:', res)
  122. uni.hideLoading();
  123. uni.showToast({
  124. title: '上传成功',
  125. icon: 'success',
  126. duration: 1000
  127. })
  128. var obj = JSON.parse(res.data)
  129. this.flielist.push(obj.data.fullurl)
  130. },
  131. fail: (err) => {
  132. console.log('uploadImage fail', err);
  133. uni.hideLoading();
  134. uni.showModal({
  135. content: err.errMsg,
  136. showCancel: false
  137. });
  138. },
  139. });
  140. },
  141. // 取消
  142. cancel() {
  143. this.show = false
  144. },
  145. end() {
  146. this.flielist.splice(this.index, 1)
  147. this.show = false
  148. },
  149. trash(index) {
  150. this.show = true
  151. this.index = index
  152. }
  153. // uni.navigateTo({
  154. // url: "/pagesA/userinfo"
  155. // })
  156. },
  157. }
  158. </script>
  159. <style lang="scss" scoped>
  160. .font {
  161. font-size: 38rpx;
  162. font-family: PingFangSC-Regular, PingFang SC;
  163. font-weight: 400;
  164. }
  165. .btn1 {
  166. height: 88rpx;
  167. line-height: 88rpx;
  168. text-align: center;
  169. color: #000;
  170. width: 30vw;
  171. border-radius: 12rpx;
  172. font-size: 34rpx;
  173. font-family: PingFangSC-Regular, PingFang SC;
  174. font-weight: 400;
  175. background-color: #e4e4e4;
  176. }
  177. .btn2 {
  178. height: 88rpx;
  179. line-height: 88rpx;
  180. text-align: center;
  181. background-color: #0C66C2;
  182. color: #fff;
  183. width: 30vw;
  184. border-radius: 12rpx;
  185. font-size: 34rpx;
  186. font-family: PingFangSC-Regular, PingFang SC;
  187. font-weight: 400;
  188. }
  189. .back1 {
  190. padding: 10rpx 20rpx;
  191. border: 2rpx dashed #555555;
  192. margin-top: 28rpx;
  193. }
  194. .index-page {
  195. overflow: hidden;
  196. padding: 32rpx;
  197. }
  198. .back {
  199. background-color: rgba(85, 85, 85, 0.5);
  200. width: 100%;
  201. height: 628rpx;
  202. margin-top: 28rpx;
  203. }
  204. .left {
  205. font-size: 28rpx;
  206. font-family: PingFangSC-Regular, PingFang SC;
  207. font-weight: 400;
  208. color: #555555;
  209. margin-top: 60rpx;
  210. }
  211. .min {
  212. font-size: 24rpx;
  213. font-family: PingFangSC-Regular, PingFang SC;
  214. font-weight: 400;
  215. color: #777777;
  216. margin-top: 20rpx;
  217. }
  218. .top {
  219. font-size: 48rpx;
  220. font-family: PingFangSC-Medium, PingFang SC;
  221. font-weight: 500;
  222. color: #222222;
  223. margin-top: 58rpx;
  224. }
  225. .button {
  226. height: 88rpx;
  227. background: #0C66C2;
  228. border-radius: 12rpx;
  229. font-size: 34rpx;
  230. font-family: PingFangSC-Regular, PingFang SC;
  231. font-weight: 400;
  232. color: #FFFFFF;
  233. line-height: 88rpx;
  234. text-align: center;
  235. margin-top: 36rpx;
  236. }
  237. </style>