upload.js 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. import api from '../../api/api.js'
  2. Component({
  3. /**
  4. * 组件的属性列表
  5. */
  6. properties: {
  7. source: {
  8. value: 'media',
  9. type: String
  10. },
  11. bindData: {
  12. value: {},
  13. type: Object
  14. },
  15. /* 文件夹ID */
  16. parentid: {
  17. type: String,
  18. value: wx.getStorageSync('siteP').appfolderid
  19. }
  20. },
  21. /**
  22. * 组件的初始数据
  23. */
  24. data: {
  25. originFiles: [],
  26. filelist: [],
  27. attachmentids: [],
  28. gridConfig: {
  29. column: 5,
  30. width: 120,
  31. height: 120,
  32. },
  33. config: {
  34. count: 1,
  35. },
  36. timer: null,
  37. uploadCount: 0
  38. },
  39. lifetimes: {
  40. attached() {
  41. setTimeout(() => {
  42. this.fileData()
  43. }, 1000);
  44. }
  45. },
  46. /**
  47. * 组件的方法列表
  48. */
  49. methods: {
  50. handleAdd(file) {
  51. console.log(file)
  52. let files = file.detail.files.map(e => {
  53. e.status = 'loading'
  54. return e
  55. })
  56. this.setData({
  57. uploadCount: files.length,
  58. originFiles: files,
  59. attachmentids: []
  60. })
  61. this.toSetFileData()
  62. },
  63. handleClick() {
  64. let that = this
  65. wx.chooseMessageFile({
  66. count: 10,
  67. type: 'file',
  68. success(res) {
  69. let arr = res.tempFiles.map(e => {
  70. return {
  71. name: e.name,
  72. url: e.path,
  73. type: e.type,
  74. }
  75. })
  76. that.handleAdd({
  77. detail: {
  78. files: arr
  79. }
  80. })
  81. }
  82. })
  83. },
  84. handleRemove(data) {
  85. console.log(data)
  86. let file = {
  87. currentTarget: {
  88. dataset: {
  89. item: data.detail.file
  90. }
  91. }
  92. }
  93. this.deleteFile(file)
  94. },
  95. toSetFileData() {
  96. let files = this.data.originFiles
  97. for (let i = 0; i < files.length; i++) {
  98. // 初始化数据
  99. let that = this,
  100. data = this.requestType(files[i]);
  101. data.content.filename = data.content.filename ? data.content.filename : `${Date.now()}.${data.content.filetype}`;
  102. //发送请求
  103. wx.getFileSystemManager().readFile({
  104. filePath: files[i].url,
  105. success: result => {
  106. //返回临时文件路径
  107. const fileData = result.data;
  108. api._post(data).then(res => {
  109. if (res.msg == "成功") {
  110. that.uploadFile(res.data, fileData)
  111. }
  112. })
  113. },
  114. fail: console.error
  115. })
  116. }
  117. this.data.timer = setInterval(e => {
  118. if (this.data.uploadCount === 0) {
  119. clearInterval(this.data.timer)
  120. this.filebindData()
  121. }
  122. })
  123. },
  124. /* 请求类型 */
  125. requestType(file) {
  126. var index = file.url.lastIndexOf(".");
  127. var ext = file.url.substr(index + 1);
  128. //文件名称
  129. return {
  130. "classname": "system.attachment.huawei.OBS",
  131. "method": "getFileName",
  132. "content": {
  133. "filename": file.name,
  134. "filetype": ext,
  135. "parentid": this.data.parentid
  136. }
  137. }
  138. },
  139. /* 上传成功反馈 */
  140. uploadFile(res, data) {
  141. var that = this;
  142. wx.request({
  143. url: res.uploadurl,
  144. method: "PUT",
  145. data: data,
  146. header: {
  147. 'content-type': 'application/octet-stream'
  148. },
  149. success(a) {
  150. api._post({
  151. "classname": "system.attachment.huawei.OBS",
  152. "method": "uploadSuccess",
  153. "content": {
  154. "serialfilename": res.serialfilename
  155. }
  156. }).then(rs => {
  157. that.setData({
  158. originFiles: that.data.originFiles.map(e => {
  159. if (e.name === res.filename) {
  160. e.status = ''
  161. }
  162. return e
  163. })
  164. })
  165. that.data.attachmentids.push(rs.data.attachmentids[0])
  166. that.setData({
  167. uploadCount: that.data.uploadCount - 1
  168. })
  169. }).catch(err => {
  170. console.log(err)
  171. })
  172. }
  173. })
  174. },
  175. async filebindData() {
  176. this.data.bindData.attachmentids = this.data.attachmentids
  177. const res = await api._post({
  178. "classname": "system.attachment.Attachment",
  179. "method": "createFileLink",
  180. "content": this.data.bindData
  181. })
  182. this.fileData()
  183. },
  184. async fileData() {
  185. const res = await api._post({
  186. "classname": "system.attachment.Attachment",
  187. "method": "queryFileLink",
  188. "content": this.data.bindData
  189. })
  190. this.setData({
  191. originFiles: res.data
  192. })
  193. },
  194. async deleteFile(data) {
  195. let item = data.currentTarget.dataset.item
  196. const res = await api._post({
  197. "classname": "system.attachment.Attachment",
  198. "method": "deleteFileLink",
  199. "content": {
  200. "linksids": [item.linksid]
  201. }
  202. })
  203. this.fileData()
  204. }
  205. }
  206. })