测评问题修改

This commit is contained in:
zzyuan 2025-08-28 17:59:52 +08:00
parent 6b9411bc5e
commit 7794157c7a
5 changed files with 13 additions and 12 deletions

View File

@ -3,7 +3,7 @@ import request from '@/utils/request'
// 查询用户列表-全量查询 // 查询用户列表-全量查询
export function listUserAll(query) { export function listUserAll(query) {
return request({ return request({
url: '/system/user/query/listAll', url: '/system/user/list',
method: 'get', method: 'get',
params: query params: query
}) })

View File

@ -801,7 +801,8 @@ export default {
}, },
getSupplierUserList(){ getSupplierUserList(){
let param = { let param = {
deptId:225 deptId:225,
queryTyoe:2
} }
listUserAll(param).then((response) => { listUserAll(param).then((response) => {
this.supplierUserList = response.rows; this.supplierUserList = response.rows;

View File

@ -8,8 +8,8 @@
</el-tabs> </el-tabs>
</div> </div>
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px"> <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="关键字" prop="searchValue"> <el-form-item label="关键字" prop="keyWord">
<el-input v-model="queryParams.searchValue" placeholder="请输入设备名称,编号" maxlength="20" clearable style="width: 240px"/> <el-input v-model="queryParams.keyWord" placeholder="请输入设备名称,编号" maxlength="20" clearable style="width: 240px"/>
</el-form-item> </el-form-item>
<el-form-item label="设备类型" prop="deviceType5" v-if="activeName==5"> <el-form-item label="设备类型" prop="deviceType5" v-if="activeName==5">
<el-select v-model="queryParams.deviceType5" style="width: 240px" clearable> <el-select v-model="queryParams.deviceType5" style="width: 240px" clearable>
@ -86,7 +86,7 @@ export default {
queryParams: { queryParams: {
pageNum: 1, pageNum: 1,
pageSize: 10, pageSize: 10,
searchValue:undefined, keyWord:undefined,
deviceType5:undefined, deviceType5:undefined,
deviceType6:undefined, deviceType6:undefined,
}, },
@ -112,7 +112,7 @@ export default {
this. queryParams = { this. queryParams = {
pageNum: 1, pageNum: 1,
pageSize: 10, pageSize: 10,
searchValue:undefined, keyWord:undefined,
deviceType5:undefined, deviceType5:undefined,
deviceType6:undefined, deviceType6:undefined,
} }
@ -130,6 +130,7 @@ export default {
"deviceCategory": this.activeName, "deviceCategory": this.activeName,
"pageNum": this.queryParams.pageNum, "pageNum": this.queryParams.pageNum,
"pageSize": this.queryParams.pageSize, "pageSize": this.queryParams.pageSize,
"keyWord": this.queryParams.keyWord,
"deviceType": null, "deviceType": null,
"onlyWarn":1 "onlyWarn":1
} }

View File

@ -151,9 +151,8 @@ methods:{
} }
}, },
async handleNodeClick2(data) { async handleNodeClick2(data) {
if(data.deviceExtendInfo&&data.deviceExtendInfo!=""){ if(data.channel&&data.channel!=""){
let obj = JSON.parse(data.deviceExtendInfo) this.chosenChannel2 = data.channel
this.chosenChannel2 = 15
this.iframeLoaded2() this.iframeLoaded2()
}else{ }else{
this.$modal.msgError("设备未绑定通道号"); this.$modal.msgError("设备未绑定通道号");

View File

@ -158,9 +158,9 @@ methods:{
} }
}, },
async handleNodeClick(data) { async handleNodeClick(data) {
if(data.deviceExtendInfo&&data.deviceExtendInfo!=""){ console.log(data)
let obj = JSON.parse(data.deviceExtendInfo) if(data.channel&&data.channel!=""){
this.chosenChannel = 22; this.chosenChannel = data.channel;
this.iframeLoaded(this.chosenWinNo,this.chosenChannel) this.iframeLoaded(this.chosenWinNo,this.chosenChannel)
}else{ }else{
this.$modal.msgError("设备未绑定通道号"); this.$modal.msgError("设备未绑定通道号");