|
@@ -450,13 +450,19 @@
|
|
|
//超级用户 获取全部客户信息
|
|
//超级用户 获取全部客户信息
|
|
|
getAdministrator() {
|
|
getAdministrator() {
|
|
|
let sql =
|
|
let sql =
|
|
|
- `select ID_,NAME_ from ibps_party_employee where GROUP_ID_ = '1041786072788369408' and STATUS_ = 'actived'`
|
|
|
|
|
|
|
+ `select ID_,NAME_,qq_,GROUP_ID_ from ibps_party_employee where STATUS_ = 'actived' and ID_ != '-1' and ID_ != '702117247933480960' and ID_ != '1115242459127873536' and ID_ != '1115242765924433920' and ID_ != '1100468240921919488' order by FIELD(GROUP_ID_, '1041786072788369408') desc,create_time_ desc`
|
|
|
|
|
+ // `select ID_,NAME_ from ibps_party_employee where GROUP_ID_ = '1041786072788369408' and STATUS_ = 'actived'`
|
|
|
let requestData = this.$sig(sql)
|
|
let requestData = this.$sig(sql)
|
|
|
this.$http.post("/ibps/business/v3/sys/universal/inputSqlSelectData", requestData).then(res => {
|
|
this.$http.post("/ibps/business/v3/sys/universal/inputSqlSelectData", requestData).then(res => {
|
|
|
if (res.data.state == 200) {
|
|
if (res.data.state == 200) {
|
|
|
let result = res.data.variables.data
|
|
let result = res.data.variables.data
|
|
|
result.forEach((item, index) => {
|
|
result.forEach((item, index) => {
|
|
|
- this.$set(item, 'text', item.NAME_)
|
|
|
|
|
|
|
+ if (item.GROUP_ID_ == '1041786072788369408') {
|
|
|
|
|
+ this.$set(item, 'text', `${item.NAME_} (${item.qq_})`)
|
|
|
|
|
+ } else {
|
|
|
|
|
+ this.$set(item, 'text', `${item.NAME_} (内部)`)
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
this.$set(item, 'value', item.ID_)
|
|
this.$set(item, 'value', item.ID_)
|
|
|
})
|
|
})
|
|
|
this.userList = result
|
|
this.userList = result
|
|
@@ -1466,6 +1472,7 @@
|
|
|
this.activeNum = index
|
|
this.activeNum = index
|
|
|
},
|
|
},
|
|
|
userListChange(e) {
|
|
userListChange(e) {
|
|
|
|
|
+ this.hetongList = []
|
|
|
this.getDataHetong('', e)
|
|
this.getDataHetong('', e)
|
|
|
},
|
|
},
|
|
|
chuBaoGaoChange(e) {
|
|
chuBaoGaoChange(e) {
|