apply-clients 7.1.32 → 7.1.35

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.
@@ -72,11 +72,15 @@
72
72
 
73
73
  if (servicedata.id) {
74
74
  let http = new HttpResetClass()
75
+ let result = this.$login.f.f_parentname === '安检部门' ? "u.f_operation_center like '%" + this.$login.f.name + "%'" : " 1 = 1"
76
+ console.log("结果:" + this.$login.f.f_parentname === '安检部门')
77
+ console.log("结果:" + result)
75
78
  let data = {
76
79
  condition: `u.id = ${servicedata.id}`,
77
80
  data: {
78
81
  id: this.$login.f.id,
79
- orgid: this.$login.f.f_orgids
82
+ orgid: this.$login.f.f_orgids,
83
+ company: result
80
84
  }
81
85
  }
82
86
  let res = await http.load('POST', 'rs/sql/checkuser', {data: data}, {resolveMsg: null, rejectMsg: '数据更新失败,请手查询更新!!!'})