Browse Source

图片上传

seimin 4 months ago
parent
commit
3a5ab39f87
2 changed files with 14 additions and 13 deletions
  1. 10 10
      pages/newDrug/photoRetention/photoRetention.vue
  2. 4 3
      tools/uploadFile.js

+ 10 - 10
pages/newDrug/photoRetention/photoRetention.vue

@@ -47,7 +47,7 @@
47
           <view class="column top">
47
           <view class="column top">
48
             <view class="name">留存照片:</view>
48
             <view class="name">留存照片:</view>
49
             <view class="value flex1">
49
             <view class="value flex1">
50
-              <uni-file-picker ref="handlerImgRef" v-model="imgList" limit="1" @success="handlerImgSuccess" @fail="handlerImgFail" @select="handlerImgSelect" @delete="handlerImgDelete"></uni-file-picker>
50
+              <uni-file-picker ref="handlerImgRef" file-mediatype="image" v-model="imgList" limit="1" @success="handlerImgSuccess" @fail="handlerImgFail" @select="handlerImgSelect" @delete="handlerImgDelete"></uni-file-picker>
51
               <text class="imgTips">(支持JPG/PNG格式图片,单张大小10M以内)</text>
51
               <text class="imgTips">(支持JPG/PNG格式图片,单张大小10M以内)</text>
52
             </view>
52
             </view>
53
           </view>
53
           </view>
@@ -154,14 +154,14 @@
154
           v.url = v.path;
154
           v.url = v.path;
155
         })
155
         })
156
         console.log(this.imgList);
156
         console.log(this.imgList);
157
-        
157
+
158
         let handlerOrder$ = this.handlerOrder();
158
         let handlerOrder$ = this.handlerOrder();
159
         let requestList = [handlerOrder$];
159
         let requestList = [handlerOrder$];
160
         this.imgList.forEach(v => {
160
         this.imgList.forEach(v => {
161
           let handlerOrderImg$ = this.handlerOrderImg(v);
161
           let handlerOrderImg$ = this.handlerOrderImg(v);
162
           requestList.push(handlerOrderImg$);
162
           requestList.push(handlerOrderImg$);
163
         })
163
         })
164
-        
164
+
165
         Promise.all(requestList).then(resList => {
165
         Promise.all(requestList).then(resList => {
166
           uni.hideLoading();
166
           uni.hideLoading();
167
           console.log(resList);
167
           console.log(resList);
@@ -188,7 +188,7 @@
188
           }
188
           }
189
         })
189
         })
190
       },
190
       },
191
-  
191
+
192
       // 上传报修图片失败
192
       // 上传报修图片失败
193
       handlerImgFail(e){
193
       handlerImgFail(e){
194
         this.imgList.forEach(v => {
194
         this.imgList.forEach(v => {
@@ -212,7 +212,7 @@
212
           title: "加载中",
212
           title: "加载中",
213
           mask: true,
213
           mask: true,
214
         });
214
         });
215
-        
215
+
216
         let info$ = post(`/transflow/extra`, {type: this.queryObj.drugsBagType, extraType: 'orderInfo', orderId: +this.queryObj.orderId});
216
         let info$ = post(`/transflow/extra`, {type: this.queryObj.drugsBagType, extraType: 'orderInfo', orderId: +this.queryObj.orderId});
217
         let config$ = post(`/simple/data/fetchDataList/taskTypeConfig`, {
217
         let config$ = post(`/simple/data/fetchDataList/taskTypeConfig`, {
218
             "idx": 0,
218
             "idx": 0,
@@ -229,11 +229,11 @@
229
                 }
229
                 }
230
             }
230
             }
231
         });
231
         });
232
-        
232
+
233
         Promise.all([info$, config$]).then(result => {
233
         Promise.all([info$, config$]).then(result => {
234
           uni.hideLoading();
234
           uni.hideLoading();
235
           let [info, config] = result || [];
235
           let [info, config] = result || [];
236
-          
236
+
237
           if(info.state == 200){
237
           if(info.state == 200){
238
             if(info.data){
238
             if(info.data){
239
               this.drugsBagList = info.data.drugsBagList || [];
239
               this.drugsBagList = info.data.drugsBagList || [];
@@ -248,7 +248,7 @@
248
               title: info.msg || "接口获取数据失败!",
248
               title: info.msg || "接口获取数据失败!",
249
             });
249
             });
250
           }
250
           }
251
-          
251
+
252
           if(config.status == 200){
252
           if(config.status == 200){
253
             let list  = config.list || [];
253
             let list  = config.list || [];
254
             this.config = list.length ? list[0] : {};
254
             this.config = list.length ? list[0] : {};
@@ -345,7 +345,7 @@
345
       align-items: center;
345
       align-items: center;
346
       gap: 24rpx;
346
       gap: 24rpx;
347
       font-weight: bold;
347
       font-weight: bold;
348
-      
348
+
349
       .column{
349
       .column{
350
         width: 100%;
350
         width: 100%;
351
         height: 78rpx;
351
         height: 78rpx;
@@ -353,7 +353,7 @@
353
         align-items: center;
353
         align-items: center;
354
         justify-content: space-between;
354
         justify-content: space-between;
355
         gap: 24rpx;
355
         gap: 24rpx;
356
-        
356
+
357
         .btn {
357
         .btn {
358
           height: 100%;
358
           height: 100%;
359
           flex: 1;
359
           flex: 1;

+ 4 - 3
tools/uploadFile.js

@@ -24,7 +24,7 @@ const newImage = (img) => {
24
  */
24
  */
25
 export const uploadFile = async (imgObj, type, incidentId) => {
25
 export const uploadFile = async (imgObj, type, incidentId) => {
26
   console.log('44444', type)
26
   console.log('44444', type)
27
-  if(imgObj.extname=='mp4' || imgObj.extname=='avi' || imgObj.extname=='mpeg' || 
27
+  if(imgObj.extname=='mp4' || imgObj.extname=='avi' || imgObj.extname=='mpeg' ||
28
     imgObj.extname=='wmv' || imgObj.extname=='mov' || imgObj.extname=='3gp' ||
28
     imgObj.extname=='wmv' || imgObj.extname=='mov' || imgObj.extname=='3gp' ||
29
     imgObj.extname=='flv' || imgObj.extname=='mkv'){
29
     imgObj.extname=='flv' || imgObj.extname=='mkv'){
30
     return uni.uploadFile({
30
     return uni.uploadFile({
@@ -49,11 +49,12 @@ export const uploadFile = async (imgObj, type, incidentId) => {
49
     canvas.height = canvasHeight
49
     canvas.height = canvasHeight
50
     await newImage(img)
50
     await newImage(img)
51
     ctx.drawImage(img, 0, 0, canvasWidth, canvasHeight)
51
     ctx.drawImage(img, 0, 0, canvasWidth, canvasHeight)
52
-    
52
+
53
     const fileSrc = await toBlob(canvas, imgObj)
53
     const fileSrc = await toBlob(canvas, imgObj)
54
     let tp = window.URL.createObjectURL(fileSrc)
54
     let tp = window.URL.createObjectURL(fileSrc)
55
     console.log('压缩后', tp);
55
     console.log('压缩后', tp);
56
     return uni.uploadFile({
56
     return uni.uploadFile({
57
+      timeout: 600000,
57
       url: api_uploadAttachment(type, incidentId),
58
       url: api_uploadAttachment(type, incidentId),
58
       filePath: tp,
59
       filePath: tp,
59
       name: 'file',
60
       name: 'file',
@@ -62,5 +63,5 @@ export const uploadFile = async (imgObj, type, incidentId) => {
62
       }
63
       }
63
     });
64
     });
64
   }
65
   }
65
-  
66
+
66
 }
67
 }