测评问题修改
This commit is contained in:
parent
6b9411bc5e
commit
7794157c7a
|
|
@ -3,7 +3,7 @@ import request from '@/utils/request'
|
|||
// 查询用户列表-全量查询
|
||||
export function listUserAll(query) {
|
||||
return request({
|
||||
url: '/system/user/query/listAll',
|
||||
url: '/system/user/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
|
|
|
|||
|
|
@ -801,7 +801,8 @@ export default {
|
|||
},
|
||||
getSupplierUserList(){
|
||||
let param = {
|
||||
deptId:225
|
||||
deptId:225,
|
||||
queryTyoe:2
|
||||
}
|
||||
listUserAll(param).then((response) => {
|
||||
this.supplierUserList = response.rows;
|
||||
|
|
|
|||
|
|
@ -8,8 +8,8 @@
|
|||
</el-tabs>
|
||||
</div>
|
||||
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
||||
<el-form-item label="关键字" prop="searchValue">
|
||||
<el-input v-model="queryParams.searchValue" placeholder="请输入设备名称,编号" maxlength="20" clearable style="width: 240px"/>
|
||||
<el-form-item label="关键字" prop="keyWord">
|
||||
<el-input v-model="queryParams.keyWord" placeholder="请输入设备名称,编号" maxlength="20" clearable style="width: 240px"/>
|
||||
</el-form-item>
|
||||
<el-form-item label="设备类型" prop="deviceType5" v-if="activeName==5">
|
||||
<el-select v-model="queryParams.deviceType5" style="width: 240px" clearable>
|
||||
|
|
@ -86,7 +86,7 @@ export default {
|
|||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
searchValue:undefined,
|
||||
keyWord:undefined,
|
||||
deviceType5:undefined,
|
||||
deviceType6:undefined,
|
||||
},
|
||||
|
|
@ -112,7 +112,7 @@ export default {
|
|||
this. queryParams = {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
searchValue:undefined,
|
||||
keyWord:undefined,
|
||||
deviceType5:undefined,
|
||||
deviceType6:undefined,
|
||||
}
|
||||
|
|
@ -130,6 +130,7 @@ export default {
|
|||
"deviceCategory": this.activeName,
|
||||
"pageNum": this.queryParams.pageNum,
|
||||
"pageSize": this.queryParams.pageSize,
|
||||
"keyWord": this.queryParams.keyWord,
|
||||
"deviceType": null,
|
||||
"onlyWarn":1
|
||||
}
|
||||
|
|
|
|||
|
|
@ -151,9 +151,8 @@ methods:{
|
|||
}
|
||||
},
|
||||
async handleNodeClick2(data) {
|
||||
if(data.deviceExtendInfo&&data.deviceExtendInfo!=""){
|
||||
let obj = JSON.parse(data.deviceExtendInfo)
|
||||
this.chosenChannel2 = 15
|
||||
if(data.channel&&data.channel!=""){
|
||||
this.chosenChannel2 = data.channel
|
||||
this.iframeLoaded2()
|
||||
}else{
|
||||
this.$modal.msgError("设备未绑定通道号");
|
||||
|
|
|
|||
|
|
@ -158,9 +158,9 @@ methods:{
|
|||
}
|
||||
},
|
||||
async handleNodeClick(data) {
|
||||
if(data.deviceExtendInfo&&data.deviceExtendInfo!=""){
|
||||
let obj = JSON.parse(data.deviceExtendInfo)
|
||||
this.chosenChannel = 22;
|
||||
console.log(data)
|
||||
if(data.channel&&data.channel!=""){
|
||||
this.chosenChannel = data.channel;
|
||||
this.iframeLoaded(this.chosenWinNo,this.chosenChannel)
|
||||
}else{
|
||||
this.$modal.msgError("设备未绑定通道号");
|
||||
|
|
|
|||
Loading…
Reference in New Issue