apply-clients 5.0.35-ezhou-23 → 5.0.35-ezhou-24

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apply-clients",
3
- "version": "5.0.35-ezhou-23",
3
+ "version": "5.0.35-ezhou-24",
4
4
  "description": "报建前端模块",
5
5
  "main": "src/index.js",
6
6
  "directories": {
@@ -345,7 +345,7 @@
345
345
  selfSearch (args) {
346
346
  args.condition = args.condition + ` and a.f_filialeids like '%${this.filialeCodeStr}%'`
347
347
  if (args.model.f_payment_method.length > 0) {
348
- args.condition += ' and f_payment_method in (' + args.model.f_payment_method.join() + ')'
348
+ args.condition += ' and f_payment_method in ("' + args.model.f_payment_method.join('","') + '")'
349
349
  }
350
350
  console.log('condition:', args.condition)
351
351
  this.model.search(args.condition, args.model)