zhangback
2025-12-17 4849c3ddd2f8a0a82d2911284ac7cc5fddd25cf4
提交
1个文件已修改
2 ■■■ 已修改文件
ui/car_wx_app/pages/examine/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
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 => {