safecheck-client 4.0.0-4 → 4.0.0-6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -318,7 +318,9 @@ export default {
318
318
  // //tag
319
319
  this.$parent.showItem = false
320
320
  this.$parent.showItemUser = false
321
- args.condition += ` and f_orgid in ${this.model.f_filialeids}`
321
+ if(this.model.f_filialeids){
322
+ args.condition += ` and f_orgid in ${this.model.f_filialeids}`
323
+ }
322
324
  args.condition += ` and tcb.f_user_type ='${this.showtype}' `
323
325
  return this.model.search(args.condition, args.model)
324
326
  },