upload.vue 5.3 KB

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