|  |  | 
 |  |  |                </view> | 
 |  |  |                <view class="list-item-row"> | 
 |  |  |                   <view class="list-item-row-label">地点描述</view> | 
 |  |  |                   <view class="list-item-row-val"> | 
 |  |  |                   <!-- <view class="list-item-row-val"> | 
 |  |  |                      <input type="text" v-model="form.locationRemark" placeholder="请输入" /> | 
 |  |  |                   </view> --> | 
 |  |  |                   <view class="list-item-row-val"> | 
 |  |  |                      <textarea v-model="form.locationRemark" cols="30" rows="10" placeholder="请输入" maxlength="200"></textarea> | 
 |  |  |                   </view> | 
 |  |  |                </view> | 
 |  |  |             </template> | 
 |  |  | 
 |  |  |          uploadImg() { | 
 |  |  |             uni.chooseImage({ | 
 |  |  |                success: (chooseImageRes) => { | 
 |  |  |                   const tempFilePaths = chooseImageRes.tempFilePaths; | 
 |  |  |                   uni.uploadFile({ | 
 |  |  |                      url: this.$baseUrl + '/web/public/upload', | 
 |  |  |                      filePath: tempFilePaths[0], | 
 |  |  |                      name: 'file', | 
 |  |  |                      formData: { | 
 |  |  |                         'folder': 'orders' | 
 |  |  |                      }, | 
 |  |  |                      success: (uploadFileRes) => { | 
 |  |  |                         const res = JSON.parse(uploadFileRes.data) | 
 |  |  |                         this.form.multifileList.push({ | 
 |  |  |                            fileurl: res.data.imgaddr, | 
 |  |  |                            name: res.data.originname, | 
 |  |  |                            url: res.data.url, | 
 |  |  |                            type: 0 | 
 |  |  |                         }) | 
 |  |  |                      } | 
 |  |  |                   }); | 
 |  |  |                   for (let i = 0; i < chooseImageRes.tempFilePaths.length; i++) { | 
 |  |  |                      uni.uploadFile({ | 
 |  |  |                         url: this.$baseUrl + '/web/public/upload', | 
 |  |  |                         filePath: chooseImageRes.tempFilePaths[i], | 
 |  |  |                         name: 'file', | 
 |  |  |                         formData: { | 
 |  |  |                            'folder': 'orders' | 
 |  |  |                         }, | 
 |  |  |                         success: (uploadFileRes) => { | 
 |  |  |                            const res = JSON.parse(uploadFileRes.data) | 
 |  |  |                            this.form.multifileList.push({ | 
 |  |  |                               fileurl: res.data.imgaddr, | 
 |  |  |                               name: res.data.originname, | 
 |  |  |                               url: res.data.url, | 
 |  |  |                               type: 0 | 
 |  |  |                            }) | 
 |  |  |                         } | 
 |  |  |                      }); | 
 |  |  |                   } | 
 |  |  |                } | 
 |  |  |             }); | 
 |  |  |          } |