telephone-clients 4.0.0-1-10 → 4.0.0-1-12

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.
@@ -11,7 +11,8 @@ let specialComp = {
11
11
  'online_buy_gas': (resolve) => { require(['./android/onlineBuyGas'], resolve) },
12
12
  'add-my-task': (resolve) => { require(['./android/AddMyTask'], resolve) },
13
13
  'phone-stand-work': (resolve) => { require(['./android/PhoneStandWork'], resolve) },
14
- 'repair-orderV': (resolve) => { require(['./android/RepairOrderV'], resolve) }
14
+ 'repair-orderV': (resolve) => { require(['./android/RepairOrderV'], resolve) },
15
+ 'fault-all': (resolve) => { require(['./android/FaultAll'], resolve) }
15
16
 
16
17
  }
17
18
  exports.specialComp = specialComp
@@ -238,7 +238,7 @@ export default {
238
238
  search (args) {
239
239
  this.model.phone = args.model.f_user_phone
240
240
  if(args.model.f_user_phone){
241
- args.condition += ` and (f_user_phone = '${args.model.f_user_phone}' or f_zuhu_phone = '${args.model.f_user_phone}' or f_rent_phone = '${args.model.f_user_phone}' or tp.phonenums > 0)`
241
+ args.condition += ` and (f_user_phone = '${args.model.f_user_phone}' or tp.phonenums > 0)`
242
242
  }
243
243
  args.condition += ` and ti.f_filialeid = '${this.$login.f.orgid}' and ti.f_user_state in('正常','停用','预备')`
244
244
  this.model.search(args.condition, args.model)
@@ -262,7 +262,7 @@ export default {
262
262
  // 查找用户的 业务逻辑
263
263
  let http = new HttpResetClass()
264
264
  http.load('POST', 'af-telephone/rs/sql/tel_getUserInfoAdressNew', {data: {
265
- condition: `(f_user_phone = '${this.callObj.callNum}' or f_zuhu_phone = '${this.callObj.callNum}' or f_rent_phone = '${this.callObj.callNum}' or tp.phonenums > 0) and ti.f_user_state in('正常','停用','预备') and ti.f_filialeid = '${this.$login.f.orgid}' `,phone:this.callObj.callNum
265
+ condition: `(f_user_phone = '${this.callObj.callNum}' or tp.phonenums > 0) and ti.f_user_state in('正常','停用','预备') and ti.f_filialeid = '${this.$login.f.orgid}' `,phone:this.callObj.callNum
266
266
  }},{resolveMsg: null, rejectMsg: null}).then((req) => {
267
267
  this.model.rows = req.data
268
268
  this.model.state = '正确'