uploadImgs.vue 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  1. <template>
  2. <div id="sagaUploads">
  3. <div class="saga-upload-images">
  4. <div v-if="type != 'video'" class="point-view" v-for="(item,index) in imagesArr">
  5. <div class="point-image">
  6. <i v-if="!readOnly" class="el-icon-delete" @click="delImage(index,item)"></i>
  7. <img @click="lookImg" :src="imageGetUrl + '&key=' +item.key" alt>
  8. </div>
  9. <p v-if="readOnly">{{ item.name }}</p>
  10. <form-input v-else :label="''" @change="getName" :keys="index" :value="item.name" :width="10"></form-input>
  11. </div>
  12. <div v-if="type == 'video'" class="point-view" v-for="(item,index) in imagesArr">
  13. <div class="point-image">
  14. <i v-if="!readOnly" class="el-icon-delete" @click="delImage(index,item)"></i>
  15. <video
  16. width="100%"
  17. height="100%;"
  18. :src="imageGetUrl + '&key=' +item.key"
  19. controls="controls"
  20. >您的浏览器不支持 video 标签。
  21. </video>
  22. </div>
  23. <p v-if="readOnly">{{ item.name }}</p>
  24. <form-input v-else :label="''" @change="getName" :keys="index" :value="item.name"
  25. :width="10"></form-input>
  26. </div>
  27. <div v-if="!readOnly" style="float:left;">
  28. <el-upload
  29. class="avatar-uploader"
  30. :http-request="uploadAndSubmit"
  31. :show-file-list="false"
  32. :accept="accept"
  33. action
  34. drag
  35. style="position: relative"
  36. >
  37. <i class="el-icon-plus avatar-uploader-icon"></i>
  38. </el-upload>
  39. <video style="display:none;" id="video" controls/>
  40. </div>
  41. </div>
  42. <details-dialog :title="'图片'" :iframeSrc="iframeSrc" :dialog="dialog" :setData="imagesArr"></details-dialog>
  43. </div>
  44. </template>
  45. <script lang="ts">
  46. import { Component, Prop, Vue, Watch } from "vue-property-decorator";
  47. import tools from "@/utils/maintain";
  48. @Component({
  49. name: 'uploadFiles'
  50. })
  51. export default class extends Vue {
  52. @Prop({ default: Array }) keysArr?: [] | undefined
  53. @Prop({ default: Boolean }) readOnly?: boolean
  54. @Prop({ default: Number }) isShow?: number
  55. @Prop() contextKey?: {} | ''
  56. @Prop() defined: null
  57. @Prop({ default: 'image/*' }) accept: null
  58. @Prop({ default: 'image' }) type: null
  59. @Prop({ default: Array }) videoPicArr?: []
  60. filesArr = [];
  61. baseUrl = "";
  62. imageGetUrl = "/image-service/common/image_get?systemId=dataPlatform";
  63. imageUploadUrl = "/image-service/common/image_upload?systemId=dataPlatform&secret=9e0891a7a8c8e885&overwrite=true";
  64. imagesArr = [];
  65. created() {
  66. this.imageFlag()
  67. }
  68. getName(name, index) {
  69. this.imagesArr[index].name = name
  70. if (this.isShow === 1) {
  71. let oFile = {}
  72. oFile[this.contextKey] = this.imagesArr
  73. this.$emit("change", oFile, this.defined, this.videoPicArr);
  74. } else {
  75. this.$emit("change", this.imagesArr, this.defined, this.videoPicArr);
  76. }
  77. }
  78. //判断是否为空
  79. imageFlag() {
  80. let type = typeof this.keysArr;
  81. if (type == "string") {
  82. this.imagesArr = [this.keysArr];
  83. } else {
  84. this.imagesArr = tools.copyArr(this.keysArr);
  85. }
  86. if (!this.keysArr) {
  87. this.imagesArr = [];
  88. }
  89. }
  90. //查看图片
  91. lookImg() {
  92. console.log(1)
  93. // this.dialog.details = true
  94. // this.iframeSrc = process.env.BASE_URL + ":8890/photo-View.html"
  95. }
  96. //删除图片
  97. delImage(i, key) {
  98. if (this.type == "video") {
  99. this.videoPicArr = this.videoPicArr.map(item => {
  100. if (item.key.substring(0, item.length - 3) == this.imagesArr[i].key.substring(0, this.imagesArr[i].length - 3)) {
  101. return undefined
  102. } else {
  103. return item
  104. }
  105. }).filter(p => p)
  106. }
  107. this.imagesArr.splice(i, 1);
  108. this.$emit("change", this.imagesArr, this.defined, this.videoPicArr);
  109. }
  110. //上传
  111. uploadAndSubmit(item, key) {
  112. // let form = document.forms["demoForm"];
  113. // if (form["file"].files.length > 0) {
  114. // 寻找表单域中的 <input type="file" ... /> 标签
  115. // let file = form["file"].files[0];
  116. let file = item.file;
  117. // try sending
  118. let reader = new FileReader();
  119. let vm = this;
  120. let fileType = file.name.split(".");
  121. let type = fileType[fileType.length - 1];
  122. let CreateTime = tools.formatDate(new Date(file.lastModified))
  123. let uploadKey = file.uid
  124. if (!!key) {
  125. uploadKey = key
  126. }
  127. reader.onloadstart = function () {
  128. // 这个事件在读取开始时触发
  129. };
  130. reader.onprogress = function (p) {
  131. // 这个事件在读取进行中定时触发
  132. };
  133. reader.onload = function () {
  134. // 这个事件在读取成功结束后触发
  135. };
  136. reader.onloadend = function () {
  137. // 这个事件在读取结束后,无论成功或者失败都会触发
  138. if (reader.error) {
  139. } else {
  140. // document.getElementById("bytesRead").textContent = file.size;
  141. // 构造 XMLHttpRequest 对象,发送文件 Binary 数据
  142. let xhr = new XMLHttpRequest();
  143. xhr.open(
  144. /* method */
  145. "POST",
  146. /* target url */
  147. vm.imageUploadUrl + "&key=" + uploadKey + "." + type
  148. /*, async, default to true */
  149. );
  150. //xhr.overrideMimeType("application/octet-stream");
  151. xhr.send(reader.result);
  152. xhr.onreadystatechange = function () {
  153. if (xhr.readyState == 4) {
  154. if (xhr.status == 200) {
  155. if (vm.type == 'image') {
  156. vm.imagesArr.push({
  157. name: uploadKey + '',
  158. key: uploadKey + "." + type,
  159. systemId: "dataPlatform",
  160. type: "image",
  161. createTime: CreateTime
  162. });
  163. }
  164. if (type == 'mp4') {
  165. vm.imagesArr.push({
  166. name: uploadKey + '',
  167. key: uploadKey + "." + type,
  168. systemId: "dataPlatform",
  169. type: "video",
  170. createTime: CreateTime
  171. });
  172. vm.creatImg(vm.imageGetUrl + "&key=" + uploadKey + "." + type, uploadKey)
  173. }
  174. if (vm.type == "video" && type == "png") {
  175. vm.videoPicArr.push({
  176. name: uploadKey + '',
  177. key: uploadKey + "." + type,
  178. systemId: "dataPlatform",
  179. type: "image_video",
  180. createTime: CreateTime
  181. })
  182. }
  183. if (vm.isShow === 1) {
  184. let oFile = {}
  185. oFile[vm.contextKey] = vm.imagesArr
  186. vm.$emit("change", oFile, vm.defined, vm.videoPicArr);
  187. } else {
  188. vm.$emit("change", vm.imagesArr, vm.defined, vm.videoPicArr);
  189. }
  190. }
  191. }
  192. };
  193. }
  194. };
  195. reader.readAsArrayBuffer(file);
  196. }
  197. dataURLtoBlob(dataURI, type) {
  198. let binary = atob(dataURI.split(',')[1]);
  199. let array = [];
  200. for (let i = 0; i < binary.length; i++) {
  201. array.push(binary.charCodeAt(i));
  202. }
  203. return new Blob([new Uint8Array(array)], { type: type });
  204. }
  205. creatImg(reader, key) {
  206. let videoDom = document.getElementById('video');
  207. videoDom.src = reader;
  208. let vm = this
  209. videoDom.onloadeddata = function () {
  210. // 这里可以打印视频时长
  211. // 这里取得视频封面
  212. let canvas = document.createElement('canvas');
  213. canvas.width = 300;
  214. canvas.height = 300 * this.videoHeight / this.videoWidth;
  215. canvas.getContext('2d').drawImage(this, 0, 0, canvas.width, canvas.height);
  216. //将canvas的base64位图片转换成图片png的file
  217. let blob = vm.dataURLtoBlob(canvas.toDataURL('image/png'), "image/png")
  218. //将其转换成file对象
  219. let file = new File([blob], "video_image.png", { type: "image/png", lastModified: Date.now() })//blob转file
  220. vm.uploadAndSubmit({ file: file }, key)
  221. }
  222. }
  223. @Watch('keysArr', { immediate: true, deep: true })
  224. handleKeysArr() {
  225. this.imageFlag()
  226. }
  227. }
  228. </script>
  229. <style scoped>
  230. </style>