rev 区域筛选
This commit is contained in:
@@ -25,7 +25,7 @@ import java.util.Map;
|
|||||||
@RestController
|
@RestController
|
||||||
@RequiredArgsConstructor
|
@RequiredArgsConstructor
|
||||||
@Api(tags = "设备采集项管理")
|
@Api(tags = "设备采集项管理")
|
||||||
@RequestMapping("/api/deviceDbitem")
|
@RequestMapping("Dbitem")
|
||||||
public class DeviceDbitemController {
|
public class DeviceDbitemController {
|
||||||
|
|
||||||
private final DeviceDbitemService deviceDbitemService;
|
private final DeviceDbitemService deviceDbitemService;
|
||||||
|
|||||||
@@ -78,15 +78,20 @@ public class DeviceServiceImpl implements DeviceService, ApplicationAutoInitial
|
|||||||
@Override
|
@Override
|
||||||
public Map<String, Object> queryAll(Map whereJson, Pageable page) {
|
public Map<String, Object> queryAll(Map whereJson, Pageable page) {
|
||||||
logger.info("Hello World");
|
logger.info("Hello World");
|
||||||
|
|
||||||
HashMap param = new HashMap();
|
HashMap param = new HashMap();
|
||||||
param.put("flag", "01");
|
param.put("flag", "01");
|
||||||
if (whereJson.get("blurry") != null) {
|
if (whereJson.get("blurry") != null) {
|
||||||
param.put("blurry", "%" + whereJson.get("blurry") + "%");
|
param.put("blurry", "%" + whereJson.get("blurry") + "%");
|
||||||
}
|
}
|
||||||
param.put("device_type", whereJson.get("device_type"));
|
if (whereJson.get("region") != null) {
|
||||||
|
param.put("region", whereJson.get("region"));
|
||||||
|
}
|
||||||
|
if (whereJson.get("device_type") != null) {
|
||||||
|
param.put("device_type", whereJson.get("device_type"));
|
||||||
|
}
|
||||||
JSONObject json = WQL.getWO("Qdevice_query_002").addParamMap(param).pageQuery(WqlUtil.getHttpContext(page), "is_config asc,seq_num desc,update_time desc");
|
JSONObject json = WQL.getWO("Qdevice_query_002").addParamMap(param).pageQuery(WqlUtil.getHttpContext(page), "is_config asc,seq_num desc,update_time desc");
|
||||||
return json;
|
return json;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -269,25 +274,14 @@ public class DeviceServiceImpl implements DeviceService, ApplicationAutoInitial
|
|||||||
@Override
|
@Override
|
||||||
public void download(List<DeviceDto> all, HttpServletResponse response) throws IOException {
|
public void download(List<DeviceDto> all, HttpServletResponse response) throws IOException {
|
||||||
List<Map<String, Object>> list = new ArrayList<>();
|
List<Map<String, Object>> list = new ArrayList<>();
|
||||||
for (DeviceDto device : all) {
|
|
||||||
Map<String, Object> map = new LinkedHashMap<>();
|
Map<String, Object> map = new LinkedHashMap<>();
|
||||||
map.put("生产厂家", device.getManufacturer());
|
map.put("device_code",null);
|
||||||
map.put("厂家电话", device.getManufacturer_phone());
|
map.put("device_name",null);
|
||||||
map.put("opcServer标识", device.getOpc_server_id());
|
map.put("device_type",null);
|
||||||
map.put("opcPlc标识", device.getOpc_plc_id());
|
map.put("is_config",null);
|
||||||
map.put("是否启用", device.getIs_active());
|
map.put("is_route",null);
|
||||||
map.put("是否删除", device.getIs_delete());
|
map.put("region",null);
|
||||||
map.put("创建者", device.getCreate_by());
|
|
||||||
map.put("创建时间", device.getCreate_time());
|
|
||||||
map.put("修改者", device.getUpdate_by());
|
|
||||||
map.put("修改时间", device.getUpdate_time());
|
|
||||||
map.put("设备编码", device.getDevice_code());
|
|
||||||
map.put("设备名字", device.getDevice_name());
|
|
||||||
map.put("设备类型", device.getDevice_type());
|
|
||||||
map.put("是否配置", device.getIs_config());
|
|
||||||
map.put("备注", device.getRemark());
|
|
||||||
list.add(map);
|
list.add(map);
|
||||||
}
|
|
||||||
FileUtil.downloadExcel(list, response);
|
FileUtil.downloadExcel(list, response);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -23,6 +23,7 @@
|
|||||||
输入.methods_code TYPEAS s_string
|
输入.methods_code TYPEAS s_string
|
||||||
输入.methods_id TYPEAS s_string
|
输入.methods_id TYPEAS s_string
|
||||||
输入.blurry TYPEAS s_string
|
输入.blurry TYPEAS s_string
|
||||||
|
输入.region TYPEAS s_string
|
||||||
[临时表]
|
[临时表]
|
||||||
--这边列出来的临时表就会在运行期动态创建
|
--这边列出来的临时表就会在运行期动态创建
|
||||||
|
|
||||||
@@ -60,9 +61,12 @@
|
|||||||
OPTION 输入.blurry <> ""
|
OPTION 输入.blurry <> ""
|
||||||
( d.device_code LIKE 输入.blurry or d.device_name LIKE 输入.blurry)
|
( d.device_code LIKE 输入.blurry or d.device_name LIKE 输入.blurry)
|
||||||
ENDOPTION
|
ENDOPTION
|
||||||
|
OPTION 输入.region <> ""
|
||||||
|
d.region = 输入.region
|
||||||
|
ENDOPTION
|
||||||
OPTION 输入.device_type <> ""
|
OPTION 输入.device_type <> ""
|
||||||
d.device_type = 输入.device_type
|
d.device_type = 输入.device_type
|
||||||
ENDOPTION
|
ENDOPTION
|
||||||
ENDSELECT
|
ENDSELECT
|
||||||
ENDPAGEQUERY
|
ENDPAGEQUERY
|
||||||
ENDIF
|
ENDIF
|
||||||
@@ -134,4 +138,4 @@
|
|||||||
address.methods_id = 输入.methods_id
|
address.methods_id = 输入.methods_id
|
||||||
ENDOPTION
|
ENDOPTION
|
||||||
ENDSELECT
|
ENDSELECT
|
||||||
ENDIF
|
ENDIF
|
||||||
|
|||||||
@@ -26,9 +26,29 @@
|
|||||||
>
|
>
|
||||||
<el-option v-for="item in device_types" :key="item.id" :label="item.label" :value="item.value" />
|
<el-option v-for="item in device_types" :key="item.id" :label="item.label" :value="item.value" />
|
||||||
</el-select>
|
</el-select>
|
||||||
|
<el-select
|
||||||
|
v-model="query.region"
|
||||||
|
clearable
|
||||||
|
filterable
|
||||||
|
size="small"
|
||||||
|
placeholder="区域名称"
|
||||||
|
class="filter-item"
|
||||||
|
style="width: 190px"
|
||||||
|
@change="crud.toQuery"
|
||||||
|
>
|
||||||
|
<el-option v-for="item in regions" :key="item.id" :label="item.label" :value="item.value" />
|
||||||
|
</el-select>
|
||||||
<rrOperation />
|
<rrOperation />
|
||||||
</div>
|
</div>
|
||||||
<crudOperation :permission="permission">
|
<crudOperation :permission="permission">
|
||||||
|
<el-button
|
||||||
|
slot="right"
|
||||||
|
class="filter-item"
|
||||||
|
size="mini"
|
||||||
|
type="warning"
|
||||||
|
icon="el-icon-download"
|
||||||
|
@click="crud.doExport"
|
||||||
|
>导出模型</el-button>
|
||||||
<el-button
|
<el-button
|
||||||
slot="right"
|
slot="right"
|
||||||
class="filter-item"
|
class="filter-item"
|
||||||
@@ -174,6 +194,8 @@ import udOperation from '@crud/UD.operation'
|
|||||||
import pagination from '@crud/Pagination'
|
import pagination from '@crud/Pagination'
|
||||||
import { get } from '@/api/system/dictDetail'
|
import { get } from '@/api/system/dictDetail'
|
||||||
import UploadDialog from '@/views/acs/device/UploadDialog'
|
import UploadDialog from '@/views/acs/device/UploadDialog'
|
||||||
|
import {download} from '@/api/data'
|
||||||
|
import {downloadFile} from '@/utils'
|
||||||
|
|
||||||
const defaultForm = {
|
const defaultForm = {
|
||||||
manufacturer: null,
|
manufacturer: null,
|
||||||
@@ -192,7 +214,8 @@ const defaultForm = {
|
|||||||
device_type: null,
|
device_type: null,
|
||||||
region: null,
|
region: null,
|
||||||
is_config: null,
|
is_config: null,
|
||||||
remark: null
|
remark: null,
|
||||||
|
region: null
|
||||||
}
|
}
|
||||||
export default {
|
export default {
|
||||||
name: 'Device',
|
name: 'Device',
|
||||||
@@ -215,7 +238,9 @@ export default {
|
|||||||
del: ['admin', 'device:del']
|
del: ['admin', 'device:del']
|
||||||
},
|
},
|
||||||
device_types: [],
|
device_types: [],
|
||||||
|
regions: [],
|
||||||
uploadShow: false,
|
uploadShow: false,
|
||||||
|
|
||||||
regions: [],
|
regions: [],
|
||||||
rules: {
|
rules: {
|
||||||
device_code: [
|
device_code: [
|
||||||
@@ -226,8 +251,10 @@ export default {
|
|||||||
],
|
],
|
||||||
device_type: [
|
device_type: [
|
||||||
{ required: true, message: '设备类型不能为空', trigger: 'blur' }
|
{ required: true, message: '设备类型不能为空', trigger: 'blur' }
|
||||||
|
],
|
||||||
|
region: [
|
||||||
|
{ required: true, message: '所属区域不能为空', trigger: 'blur' }
|
||||||
]
|
]
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -238,7 +265,7 @@ export default {
|
|||||||
this.device_types = data.content
|
this.device_types = data.content
|
||||||
})
|
})
|
||||||
// 获取区域类型
|
// 获取区域类型
|
||||||
get('region_type').then(data => {
|
get('region').then(data => {
|
||||||
this.regions = data.content
|
this.regions = data.content
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
@@ -257,6 +284,16 @@ export default {
|
|||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
console.log(err.response.data.message)
|
console.log(err.response.data.message)
|
||||||
})
|
})
|
||||||
|
},
|
||||||
|
downloadMethod() {
|
||||||
|
this.beforeInit()
|
||||||
|
this.downloadLoading = true
|
||||||
|
download(this.url + 'api/device/download', this.params).then(result => {
|
||||||
|
downloadFile(result, this.title + '数据', 'xlsx')
|
||||||
|
this.downloadLoading = false
|
||||||
|
}).catch(() => {
|
||||||
|
this.downloadLoading = false
|
||||||
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user