upload.vue 5.7 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="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. <view class="" @click.stop="trash(index)">
  20. <u-icon name="trash" size='30'></u-icon>
  21. </view>
  22. </view>
  23. </view>
  24. <view v-else class="back u-flex u-row-center" @click="upload1()">
  25. <u-icon name="plus" size="60"></u-icon>
  26. </view>
  27. <view class="button" @click="touserinfo" v-if="flielist.length">
  28. 立即上传
  29. </view>
  30. <!-- <u-popup :show="show" mode="center" round="20" customStyle="width:80vw;padding:20rpx">
  31. <view class="font">提示</view>
  32. <view class="u-flex" style="margin-top: 40rpx;">
  33. <u-icon name="error" color="#E6A23C" size="24"></u-icon>
  34. <text>删除后不可恢复,确定删除吗?</text>
  35. </view>
  36. <view class="u-flex u-row-between" style="margin-top: 60rpx;">
  37. <view class="btn1" @click="cancel">取消</view>
  38. <view class="btn2" @click="end">确定</view>
  39. </view>
  40. </u-popup> -->
  41. <u-modal confirmText="删除" :show="show" :title="title" :content='content' :showCancelButton="true"
  42. @confirm="end" @cancel="show = false"></u-modal>
  43. </view>
  44. </template>
  45. <script>
  46. import {
  47. upload,
  48. update,
  49. } from "@/units/inquire.js"
  50. export default {
  51. data() {
  52. return {
  53. show: false,
  54. name: "",
  55. path: "",
  56. flielist: [],
  57. index: "",
  58. fill: "",
  59. path1: '',
  60. content: '确定要删除该附件简历吗?'
  61. }
  62. },
  63. onLoad(options) {
  64. this.type = options.type
  65. },
  66. methods: {
  67. touserinfo() {
  68. update({
  69. source_type: "file",
  70. file: this.path,
  71. title: this.name.slice(0, -4)
  72. }).then(res => {
  73. uni.setStorageSync("path1", this.path1)
  74. const eventChannel = this.getOpenerEventChannel();
  75. eventChannel.emit('up', this.path1);
  76. uni.navigateBack()
  77. })
  78. },
  79. yulan() {
  80. console.log(1111);
  81. uni.openDocument({
  82. filePath: this.path1,
  83. showMenu: true,
  84. success: function(res) {
  85. console.log('打开文档成功');
  86. },
  87. fail: function() {
  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.path1 = tempFilePaths[0].path
  103. that.upload(tempFilePaths[0].path)
  104. }
  105. })
  106. },
  107. upload(file) {
  108. uni.showLoading({
  109. title: '加载中'
  110. });
  111. uni.uploadFile({
  112. url: 'https://hire.hdlkeji.com/api/common/upload', //仅为示例,非真实的接口地址
  113. filePath: file,
  114. name: 'file',
  115. formData: {
  116. 'user': 'test'
  117. },
  118. success: (res) => {
  119. console.log('uploadImage success, res is:', res)
  120. uni.hideLoading();
  121. uni.showToast({
  122. title: '上传成功',
  123. icon: 'success',
  124. duration: 1000
  125. })
  126. var obj = JSON.parse(res.data)
  127. this.flielist.push(obj.data.fullurl)
  128. this.path = JSON.parse(res.data).data.fullurl
  129. },
  130. fail: (err) => {
  131. console.log('uploadImage fail', err);
  132. uni.hideLoading();
  133. uni.showModal({
  134. content: err.errMsg,
  135. showCancel: false
  136. });
  137. },
  138. });
  139. },
  140. // 取消
  141. cancel() {
  142. this.show = false
  143. },
  144. end() {
  145. this.flielist.splice(this.index, 1)
  146. this.show = false
  147. },
  148. trash(index) {
  149. this.show = true
  150. this.index = index
  151. }
  152. },
  153. }
  154. </script>
  155. <style lang="scss" scoped>
  156. .font {
  157. font-size: 38rpx;
  158. font-family: PingFangSC-Regular, PingFang SC;
  159. font-weight: 400;
  160. }
  161. .btn1 {
  162. height: 88rpx;
  163. line-height: 88rpx;
  164. text-align: center;
  165. color: #000;
  166. width: 30vw;
  167. border-radius: 12rpx;
  168. font-size: 34rpx;
  169. font-family: PingFangSC-Regular, PingFang SC;
  170. font-weight: 400;
  171. background-color: #e4e4e4;
  172. }
  173. .btn2 {
  174. height: 88rpx;
  175. line-height: 88rpx;
  176. text-align: center;
  177. background-color: #0C66C2;
  178. color: #fff;
  179. width: 30vw;
  180. border-radius: 12rpx;
  181. font-size: 34rpx;
  182. font-family: PingFangSC-Regular, PingFang SC;
  183. font-weight: 400;
  184. }
  185. .back1 {
  186. padding: 10rpx 20rpx;
  187. border: 2rpx dashed #555555;
  188. margin-top: 28rpx;
  189. }
  190. .index-page {
  191. overflow: hidden;
  192. padding: 32rpx;
  193. }
  194. .back {
  195. background-color: rgba(85, 85, 85, 0.5);
  196. width: 100%;
  197. height: 628rpx;
  198. margin-top: 28rpx;
  199. }
  200. .left {
  201. font-size: 28rpx;
  202. font-family: PingFangSC-Regular, PingFang SC;
  203. font-weight: 400;
  204. color: #555555;
  205. margin-top: 60rpx;
  206. }
  207. .min {
  208. font-size: 24rpx;
  209. font-family: PingFangSC-Regular, PingFang SC;
  210. font-weight: 400;
  211. color: #777777;
  212. margin-top: 20rpx;
  213. }
  214. .top {
  215. font-size: 48rpx;
  216. font-family: PingFangSC-Medium, PingFang SC;
  217. font-weight: 500;
  218. color: #222222;
  219. margin-top: 58rpx;
  220. }
  221. .button {
  222. height: 88rpx;
  223. background: #0C66C2;
  224. border-radius: 12rpx;
  225. font-size: 34rpx;
  226. font-family: PingFangSC-Regular, PingFang SC;
  227. font-weight: 400;
  228. color: #FFFFFF;
  229. line-height: 88rpx;
  230. text-align: center;
  231. margin-top: 36rpx;
  232. }
  233. </style>