upload.vue 5.1 KB

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