manage-client 3.3.46 → 3.3.47

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": "manage-client",
3
- "version": "3.3.46",
3
+ "version": "3.3.47",
4
4
  "description": "经营管控模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "directories": {
@@ -172,7 +172,7 @@ export default {
172
172
  },
173
173
  selfSearch (args) {
174
174
  this.printTime = this.$login.toStandardTimeString()
175
- let orgcondition = ' f_orgid in (' + this.f_orgid + ')'
175
+ let orgcondition = ` f_orgid in ('${this.f_orgid}')`
176
176
  if (this.f_depid[0]) {
177
177
  orgcondition += ` and f_depid in ('${this.f_depid}')`
178
178
  }
@@ -172,7 +172,7 @@
172
172
  },
173
173
  selfSearch (args) {
174
174
  this.printTime = this.$login.toStandardTimeString()
175
- let orgcondition = ' f_orgid in (' + this.f_orgid + ')'
175
+ let orgcondition = ` f_orgid in ('${this.f_orgid}')`
176
176
  if (this.f_depid[0]) {
177
177
  orgcondition += ` and f_depid in ('${this.f_depid}')`
178
178
  }
@@ -173,7 +173,7 @@
173
173
  },
174
174
  selfSearch (args) {
175
175
  this.printTime = this.$login.toStandardTimeString()
176
- let orgcondition = ' f_orgid in (' + this.f_orgid + ')'
176
+ let orgcondition = ` f_orgid in ('${this.f_orgid}')`
177
177
  if (this.f_depid[0]) {
178
178
  orgcondition += ` and f_depid in ('${this.f_depid}')`
179
179
  }
@@ -172,7 +172,7 @@
172
172
  },
173
173
  selfSearch (args) {
174
174
  this.printTime = this.$login.toStandardTimeString()
175
- let orgcondition = ' f_orgid in (' + this.f_orgid + ')'
175
+ let orgcondition = ` f_orgid in ('${this.f_orgid}')`
176
176
  if (this.f_depid[0]) {
177
177
  orgcondition += ` and f_depid in ('${this.f_depid}')`
178
178
  }
@@ -173,7 +173,7 @@
173
173
  },
174
174
  selfSearch (args) {
175
175
  this.printTime = this.$login.toStandardTimeString()
176
- let orgcondition = ' f_orgid in (' + this.f_orgid + ')'
176
+ let orgcondition = ` f_orgid in ('${this.f_orgid}')`
177
177
  if (this.f_depid[0]) {
178
178
  orgcondition += ` and f_depid in ('${this.f_depid}')`
179
179
  }
@@ -172,7 +172,7 @@
172
172
  },
173
173
  selfSearch (args) {
174
174
  this.printTime = this.$login.toStandardTimeString()
175
- let orgcondition = ' f_orgid in (' + this.f_orgid + ')'
175
+ let orgcondition = ` f_orgid in ('${this.f_orgid}')`
176
176
  if (this.f_depid[0]) {
177
177
  orgcondition += ` and f_depid in ('${this.f_depid}')`
178
178
  }
@@ -172,7 +172,7 @@ export default {
172
172
  },
173
173
  selfSearch (args) {
174
174
  this.printTime = this.$login.toStandardTimeString()
175
- let orgcondition = ' f_orgid in (' + this.f_orgid + ')'
175
+ let orgcondition = ` f_orgid in ('${this.f_orgid}')`
176
176
  if (this.f_depid[0]) {
177
177
  orgcondition += ` and f_depid in ('${this.f_depid}')`
178
178
  }
@@ -172,12 +172,12 @@
172
172
  },
173
173
  selfSearch (args) {
174
174
  this.printTime = this.$login.toStandardTimeString()
175
- let orgcondition = 'f.f_orgid in (' + this.f_orgid + ')'
175
+ let orgcondition = `f.f_orgid in (${this.f_orgid})`
176
176
  if (this.f_depid[0]) {
177
- orgcondition += ' and f.f_depid in (' + this.f_depid + ')'
177
+ orgcondition += ` and f.f_depid in (${this.f_depid})`
178
178
  }
179
179
  if(this.f_operatorid[0]) {
180
- orgcondition += ' and f.f_operatorid in (' + this.f_operatorid + ')'
180
+ orgcondition += ` and f.f_operatorid in (${this.f_operatorid})`
181
181
  }
182
182
  this.$refs.paged.$refs.criteria.model.f_orgid = orgcondition
183
183
  this.$refs.paged.search(args)
@@ -201,13 +201,13 @@
201
201
  this.printTime = this.$login.toStandardTimeString()
202
202
  this.orgCondtionStr='1=1'
203
203
  if (this.f_orgid[0]) {
204
- this.orgCondtionStr += ' and f_orgid in (' + this.f_orgid + ")"
204
+ this.orgCondtionStr += " and f_orgid in ('" + this.f_orgid + "')"
205
205
  }
206
206
  if (this.f_depid[0]) {
207
- this.orgCondtionStr += " and f_depid in (" + this.f_depid.toString() + ")"
207
+ this.orgCondtionStr += " and f_depid in ('" + this.f_depid.toString() + "')"
208
208
  }
209
209
  if(this.f_operatorid[0]) {
210
- this.orgCondtionStr += ' and f_operatorid in (' + this.f_operatorid + ")"
210
+ this.orgCondtionStr += " and f_operatorid in ('" + this.f_operatorid + "')"
211
211
  }
212
212
  this.$refs.paged.$refs.criteria.model.f_orgid = this.orgCondtionStr.replace('1=1','') + (this.f_state && this.f_state != '' ? " and f_state='" + this.f_state + "' " : '')
213
213
  this.$refs.paged.search(args)
@@ -223,7 +223,7 @@
223
223
  this.printTime = this.$login.toStandardTimeString()
224
224
  this.orgCondtionStr='1=1'
225
225
  if (this.f_orgid[0]) {
226
- this.orgCondtionStr += ' and f_orgid in ( ' + this.f_orgid + ')'
226
+ this.orgCondtionStr += ` and f_orgid in ('${this.f_orgid}')`
227
227
  }
228
228
  if (this.f_depid[0]) {
229
229
  this.orgCondtionStr += ` and f_depid = '${this.f_depid}'`
@@ -166,13 +166,13 @@
166
166
  this.printTime = this.$login.toStandardTimeString()
167
167
  let orgcondition = '1 = 1'
168
168
  if (this.f_orgid[0]){
169
- orgcondition += ' and f_orgid in ( ' + this.f_orgid + ')'
169
+ orgcondition += ` and f_orgid in ('${this.f_orgid}')`
170
170
  }
171
171
  if (this.f_depid[0]) {
172
- orgcondition += ' and f_depid in ( ' + this.f_depid + ')'
172
+ orgcondition += ` and f_depid in ('${this.f_depid}')`
173
173
  }
174
174
  if(this.f_operatorid[0]) {
175
- orgcondition += ' and f_operatorid in ( ' + this.f_operatorid + ')'
175
+ orgcondition += ` and f_operatorid in ('${this.f_operatorid}')`
176
176
  }
177
177
  this.$refs.paged.$refs.criteria.model.f_orgid = orgcondition
178
178
  this.$refs.paged.search(args)
@@ -181,13 +181,13 @@
181
181
  this.printTime = this.$login.toStandardTimeString()
182
182
  let orgcondition = '1 = 1'
183
183
  if (this.f_orgid[0]){
184
- orgcondition += ' and f_orgid in ( ' + this.f_orgid + ')'
184
+ orgcondition += ` and f_orgid in ('${this.f_orgid}')`
185
185
  }
186
186
  if (this.f_depid[0]) {
187
- orgcondition += ' and f_depid in ( ' + this.f_depid + ')'
187
+ orgcondition += ` and f_depid in ('${this.f_depid}')`
188
188
  }
189
189
  if(this.f_operatorid[0]) {
190
- orgcondition += ' and f_operatorid in ( ' + this.f_operatorid + ')'
190
+ orgcondition += ` and f_operatorid in ('${this.f_operatorid}')`
191
191
  }
192
192
  if(this.depname){
193
193
  this.$refs.paged.$refs.criteria.model.depname = this.depname
@@ -181,13 +181,13 @@
181
181
  this.printTime = this.$login.toStandardTimeString()
182
182
  let orgcondition = '1 = 1'
183
183
  if (this.f_orgid[0]){
184
- orgcondition += ' and f_orgid in ( ' + this.f_orgid + ')'
184
+ orgcondition += ` and f_orgid in ('${this.f_orgid}')`
185
185
  }
186
186
  if (this.f_depid[0]) {
187
- orgcondition += ' and f_depid in ( ' + this.f_depid + ')'
187
+ orgcondition += ` and f_depid in ('${this.f_depid}')`
188
188
  }
189
189
  if(this.f_operatorid[0]) {
190
- orgcondition += ' and f_operatorid in ( ' + this.f_operatorid + ')'
190
+ orgcondition += ` and f_operatorid in ('${this.f_operatorid}')`
191
191
  }
192
192
  if(this.depname){
193
193
  this.$refs.paged.$refs.criteria.model.depname = this.depname
@@ -172,7 +172,7 @@
172
172
  },
173
173
  selfSearch (args) {
174
174
  this.printTime = this.$login.toStandardTimeString()
175
- let orgcondition = ' f_orgid in (' + this.f_orgid + ')'
175
+ let orgcondition = ` f_orgid in ('${this.f_orgid}')`
176
176
  if (this.f_depid[0]) {
177
177
  orgcondition += ` and f_depid in ('${this.f_depid}')`
178
178
  }
@@ -174,10 +174,10 @@
174
174
  this.printTime = this.$login.toStandardTimeString()
175
175
  let orgcondition = ' f_orgid in ( ' + this.f_orgid + ')'
176
176
  if (this.f_depid[0]) {
177
- orgcondition += ' and f_depid in ( ' + this.f_depid + ')'
177
+ orgcondition += ` and f_depid in ('${this.f_depid}')`
178
178
  }
179
179
  if(this.f_operatorid[0]) {
180
- orgcondition += ' and f_operatorid in ( ' + this.f_operatorid + ')'
180
+ orgcondition += ` and f_operatorid in ('${this.f_operatorid}')`
181
181
  }
182
182
  this.$refs.paged.$refs.criteria.model.f_orgid = orgcondition
183
183
  this.$refs.paged.search(args)
@@ -362,7 +362,7 @@ export default {
362
362
  this.$refs.paged.$refs.cri.search()
363
363
  },
364
364
  selfSearch(args) {
365
- let orgcondition = ' f_orgid in (' + this.f_orgid + ')'
365
+ let orgcondition = ` f_orgid in ('${this.f_orgid}')`
366
366
  if (this.f_depid[0]) {
367
367
  orgcondition += " and f_depid in("+this.f_depid.toString()+')'
368
368
  }
@@ -282,7 +282,7 @@ export default {
282
282
  this.$refs.paged.$refs.cri.search()
283
283
  },
284
284
  selfSearch(args) {
285
- let orgcondition = ' f_orgid in (' + this.f_orgid + ')'
285
+ let orgcondition = ` f_orgid in ('${this.f_orgid}')`
286
286
  if (this.f_depid[0]) {
287
287
  orgcondition += " and f_depid in("+this.f_depid.toString()+')'
288
288
  }
@@ -318,7 +318,7 @@ export default {
318
318
  this.$refs.paged.$refs.cri.search()
319
319
  },
320
320
  selfSearch(args) {
321
- let orgcondition = ' f_orgid in (' + this.f_orgid + ')'
321
+ let orgcondition = ` f_orgid in ('${this.f_orgid}')`
322
322
  if (this.f_depid[0]) {
323
323
  orgcondition += " and f_depid in("+this.f_depid.toString()+')'
324
324
  }
@@ -167,13 +167,13 @@
167
167
  this.$refs.paged.$refs.criteria.model.group1Name = this.$refs.paged.$refs.criteria.$refs.groupone.selectedItems
168
168
  let orgcondition = '1 = 1'
169
169
  if (this.f_orgid[0]) {
170
- orgcondition += ' and f_orgid in ( ' + this.f_orgid + ')'
170
+ orgcondition += ` and f_orgid in ('${this.f_orgid}')`
171
171
  }
172
172
  if (this.f_depid[0]) {
173
- orgcondition += ' and f_depid in ( ' + this.f_depid + ')'
173
+ orgcondition += ` and f_depid in ('${this.f_depid}')`
174
174
  }
175
175
  if (this.f_operatorid[0]) {
176
- orgcondition += ' and f_operatorid in ( ' + this.f_operatorid + ')'
176
+ orgcondition += ` and f_operatorid in ('${this.f_operatorid}')`
177
177
  }
178
178
  let name1 = args.model.f_public_group1
179
179
  if (name1 == null || name1 == '') {
@@ -207,13 +207,13 @@ import * as Util from '../../Util'
207
207
  this.printTime = this.$login.toStandardTimeString()
208
208
  this.orgCondtionStr='1=1'
209
209
  if (this.f_orgid[0]) {
210
- this.orgCondtionStr += ' and f_orgid in ( ' + this.f_orgid + ')'
210
+ this.orgCondtionStr += ` and f_orgid in ('${this.f_orgid}')`
211
211
  }
212
212
  if (this.f_depid[0]) {
213
- this.orgCondtionStr += ' and f_depid in ( ' + this.f_depid + ')'
213
+ this.orgCondtionStr += ` and f_depid in ('${this.f_depid}')`
214
214
  }
215
215
  if(this.f_operatorid[0]) {
216
- this.orgCondtionStr += ' and f_operatorid in ( ' + this.f_operatorid + ')'
216
+ this.orgCondtionStr += ` and f_operatorid in ('${this.f_operatorid}')`
217
217
  }
218
218
  this.$refs.paged.$refs.criteria.model.f_orgid = this.orgCondtionStr
219
219
  this.$refs.paged.search(args)
@@ -294,7 +294,7 @@ export default {
294
294
  this.$refs.paged.$refs.cri.search()
295
295
  },
296
296
  selfSearch(args) {
297
- let orgcondition = ' f_orgid in (' + this.f_orgid + ')'
297
+ let orgcondition = ` f_orgid in ('${this.f_orgid}')`
298
298
  if (this.f_depid[0]) {
299
299
  orgcondition += " and f_depid in("+this.f_depid.toString()+')'
300
300
  }
@@ -205,13 +205,13 @@
205
205
  let orgstr = this.orgCondtionStr
206
206
  orgcondition = orgcondition + orgstr
207
207
  /* if (this.f_orgid[0]) {
208
- this.orgCondtionStr += ' and f_orgid in (' + this.f_orgid + ")"
208
+ this.orgCondtionStr += ` and f_orgid in ('${this.f_orgid}')`
209
209
  }
210
210
  if (this.f_depid[0]) {
211
- this.orgCondtionStr += " and f_depid in (" + this.f_depid.toString() + ")"
211
+ this.orgCondtionStr += ` and f_depid in ('${this.f_depid.toString}')`
212
212
  }
213
213
  if(this.f_operatorid[0]) {
214
- this.orgCondtionStr += ' and f_operatorid in (' + this.f_operatorid + ")"
214
+ this.orgCondtionStr += ` and f_operatorid in ('${this.f_operatorid}')`
215
215
  }*/
216
216
  this.$refs.paged.$refs.criteria.model.f_orgid = this.orgCondtionStr.replace('1=1','') + (this.f_state && this.f_state != '' ? " and f_state='" + this.f_state + "' " : '')
217
217
  this.$refs.paged.search(args)
@@ -201,13 +201,13 @@
201
201
  this.printTime = this.$login.toStandardTimeString()
202
202
  this.orgCondtionStr='1=1'
203
203
  if (this.f_orgid[0]) {
204
- this.orgCondtionStr += ' and f_orgid in (' + this.f_orgid + ")"
204
+ this.orgCondtionStr += ` and f_orgid in ('${this.f_orgid}')`
205
205
  }
206
206
  if (this.f_depid[0]) {
207
- this.orgCondtionStr += " and f_depid in (" + this.f_depid.toString() + ")"
207
+ this.orgCondtionStr += ` and f_depid in ('${this.f_depid.toString}')`
208
208
  }
209
209
  if(this.f_operatorid[0]) {
210
- this.orgCondtionStr += ' and f_operatorid in (' + this.f_operatorid + ")"
210
+ this.orgCondtionStr += ` and f_operatorid in ('${this.f_operatorid}')`
211
211
  }
212
212
  this.$refs.paged.$refs.criteria.model.f_orgid = this.orgCondtionStr.replace('1=1','') + (this.f_state && this.f_state != '' ? " and f_state='" + this.f_state + "' " : '')
213
213
  this.$refs.paged.search(args)
@@ -205,13 +205,13 @@
205
205
  return
206
206
  }
207
207
  if (this.f_orgid[0]) {
208
- this.orgCondtionStr += ' and f_orgid in (' + this.f_orgid + ")"
208
+ this.orgCondtionStr += ` and f_orgid in ('${this.f_orgid}')`
209
209
  }
210
210
  if (this.f_depid[0]) {
211
- this.orgCondtionStr += " and f_depid in (" + this.f_depid.toString() + ")"
211
+ this.orgCondtionStr += ` and f_depid in ('${this.f_depid.toString}')`
212
212
  }
213
213
  if(this.f_operatorid[0]) {
214
- this.orgCondtionStr += ' and f_operatorid in (' + this.f_operatorid + ")"
214
+ this.orgCondtionStr += ` and f_operatorid in ('${this.f_operatorid}')`
215
215
  }
216
216
  this.$refs.paged.$refs.criteria.model.f_orgid = this.orgCondtionStr.replace('1=1','') + (this.f_state && this.f_state != '' ? " and f_state='" + this.f_state + "' " : '')
217
217
  this.$refs.paged.search(args)
@@ -201,13 +201,13 @@
201
201
  this.printTime = this.$login.toStandardTimeString()
202
202
  this.orgCondtionStr='1=1'
203
203
  if (this.f_orgid[0]) {
204
- this.orgCondtionStr += ' and f_orgid in (' + this.f_orgid + ")"
204
+ this.orgCondtionStr += ` and f_orgid in ('${this.f_orgid}')`
205
205
  }
206
206
  if (this.f_depid[0]) {
207
- this.orgCondtionStr += " and f_depid in (" + this.f_depid.toString() + ")"
207
+ this.orgCondtionStr += ` and f_depid in ('${this.f_depid.toString}')`
208
208
  }
209
209
  if(this.f_operatorid[0]) {
210
- this.orgCondtionStr += ' and f_operatorid in (' + this.f_operatorid + ")"
210
+ this.orgCondtionStr += ` and f_operatorid in ('${this.f_operatorid}')`
211
211
  }
212
212
  this.$refs.paged.$refs.criteria.model.f_orgid = this.orgCondtionStr.replace('1=1','') + (this.f_state && this.f_state != '' ? " and f_state='" + this.f_state + "' " : '')
213
213
  this.$refs.paged.search(args)