upload.vue 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  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" @click.stop="yulan">
  14. <view class="u-flex">
  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">
  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. console.log(this.flielist[0]);
  62. ocr({
  63. path: this.flielist[0]
  64. }).then(res => {
  65. uni.showLoading({
  66. title: '解析中请稍后',
  67. mask: true
  68. })
  69. this.$u.toast(res.data.msg,"请重新上传或手动填写简历")
  70. if (res.data.msg == "解析失败") {
  71. } else {
  72. uni.setStorageSync("education_experience3", res.data.data.education_experience)
  73. uni.setStorageSync("job_experience3", res.data.data.job_experience)
  74. uni.setStorageSync("project_experience3", res.data.data.project_experience)
  75. uni.setStorageSync("from1", res.data.data.resume)
  76. uni.navigateTo({
  77. url: "/pagesA/userinfo"
  78. })
  79. }
  80. })
  81. },
  82. yulan() {
  83. console.log(111, this.path);
  84. uni.openDocument({
  85. filePath: this.path,
  86. showMenu: true,
  87. success: function(res) {
  88. console.log('打开文档成功');
  89. }
  90. });
  91. },
  92. upload1() {
  93. let that = this;
  94. wx.chooseMessageFile({
  95. count: 1, //限制选择的文件数量
  96. type: 'file', //非图片和视频的文件,不选默认为all
  97. extension: [".pdf", 'pdf'], //此处限制文件类型
  98. success(res) {
  99. var tempFilePaths = res.tempFiles
  100. console.log('临时路径', tempFilePaths)
  101. that.name = tempFilePaths[0].name
  102. that.path = tempFilePaths[0].path
  103. that.upload(tempFilePaths[0].path)
  104. }
  105. })
  106. },
  107. upload(file) {
  108. uni.uploadFile({
  109. url: 'https://hire.hdlkeji.com/api/common/upload', //仅为示例,非真实的接口地址
  110. filePath: file,
  111. name: 'file',
  112. formData: {
  113. 'user': 'test'
  114. },
  115. success: (res) => {
  116. console.log('uploadImage success, res is:', res)
  117. uni.hideLoading();
  118. uni.showToast({
  119. title: '上传成功',
  120. icon: 'success',
  121. duration: 1000
  122. })
  123. var obj = JSON.parse(res.data)
  124. this.flielist.push(obj.data.fullurl)
  125. },
  126. fail: (err) => {
  127. console.log('uploadImage fail', err);
  128. uni.hideLoading();
  129. uni.showModal({
  130. content: err.errMsg,
  131. showCancel: false
  132. });
  133. },
  134. });
  135. },
  136. // 取消
  137. cancel() {
  138. this.show = false
  139. },
  140. end() {
  141. this.flielist.splice(this.index, 1)
  142. this.show = false
  143. },
  144. trash(index) {
  145. this.show = true
  146. this.index = index
  147. }
  148. // uni.navigateTo({
  149. // url: "/pagesA/userinfo"
  150. // })
  151. },
  152. }
  153. </script>
  154. <style lang="scss" scoped>
  155. .font {
  156. font-size: 38rpx;
  157. font-family: PingFangSC-Regular, PingFang SC;
  158. font-weight: 400;
  159. }
  160. .btn1 {
  161. height: 88rpx;
  162. line-height: 88rpx;
  163. text-align: center;
  164. color: #000;
  165. width: 30vw;
  166. border-radius: 12rpx;
  167. font-size: 34rpx;
  168. font-family: PingFangSC-Regular, PingFang SC;
  169. font-weight: 400;
  170. background-color: #e4e4e4;
  171. }
  172. .btn2 {
  173. height: 88rpx;
  174. line-height: 88rpx;
  175. text-align: center;
  176. background-color: #0C66C2;
  177. color: #fff;
  178. width: 30vw;
  179. border-radius: 12rpx;
  180. font-size: 34rpx;
  181. font-family: PingFangSC-Regular, PingFang SC;
  182. font-weight: 400;
  183. }
  184. .back1 {
  185. padding: 10rpx 20rpx;
  186. border: 2rpx dashed #555555;
  187. margin-top: 28rpx;
  188. }
  189. .index-page {
  190. overflow: hidden;
  191. padding: 32rpx;
  192. }
  193. .back {
  194. background-color: rgba(85, 85, 85, 0.5);
  195. width: 100%;
  196. height: 628rpx;
  197. margin-top: 28rpx;
  198. }
  199. .left {
  200. font-size: 28rpx;
  201. font-family: PingFangSC-Regular, PingFang SC;
  202. font-weight: 400;
  203. color: #555555;
  204. margin-top: 60rpx;
  205. }
  206. .min {
  207. font-size: 24rpx;
  208. font-family: PingFangSC-Regular, PingFang SC;
  209. font-weight: 400;
  210. color: #777777;
  211. margin-top: 20rpx;
  212. }
  213. .top {
  214. font-size: 48rpx;
  215. font-family: PingFangSC-Medium, PingFang SC;
  216. font-weight: 500;
  217. color: #222222;
  218. margin-top: 58rpx;
  219. }
  220. .button {
  221. height: 88rpx;
  222. background: #0C66C2;
  223. border-radius: 12rpx;
  224. font-size: 34rpx;
  225. font-family: PingFangSC-Regular, PingFang SC;
  226. font-weight: 400;
  227. color: #FFFFFF;
  228. line-height: 88rpx;
  229. text-align: center;
  230. margin-top: 36rpx;
  231. }
  232. </style>