sen
2025-12-18 69de43f53825f88b4494ac6ba5d19e4b7210c31d
ui/car_wx_app/pages/examine/index.vue
@@ -957,7 +957,7 @@
          // 验证是否至少上传了一张图片
          // 收集所有上传的图片地址(用逗号分隔)
          const voucherUrls = this.uploadAreas.map(item => item.imageUrl && item.imageUrl !== '').join(',');
          const voucherUrls = this.uploadAreas.filter(item => item.imageUrl!=='').map(item => item.imageUrl).join(',');
          this.form.voucherUrl = voucherUrls;
          this.$refs.uForm.validate().then(res => {