upload.vue 5.4 KB

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