upload.vue 6.1 KB

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