|
@@ -1,133 +1,135 @@
|
|
|
<template>
|
|
<template>
|
|
|
<div
|
|
<div
|
|
|
- style="border: none; background: #fff; display: flex; align-items: center"
|
|
|
|
|
- class="py-2 rounded-sm px-2"
|
|
|
|
|
- >
|
|
|
|
|
- <!-- 搜索工作栏 -->
|
|
|
|
|
|
|
+ class="information-page grid grid-rows-[auto_1fr] gap-4 h-[calc(100vh-20px-var(--top-tool-height)-var(--tags-view-height)-var(--app-footer-height))]">
|
|
|
<el-form
|
|
<el-form
|
|
|
- class="-mb-15px"
|
|
|
|
|
- :model="queryParams"
|
|
|
|
|
ref="queryFormRef"
|
|
ref="queryFormRef"
|
|
|
- :inline="true"
|
|
|
|
|
|
|
+ :model="queryParams"
|
|
|
|
|
+ size="default"
|
|
|
label-width="68px"
|
|
label-width="68px"
|
|
|
- >
|
|
|
|
|
- <el-form-item :label="t('deviceForm.category')" prop="deviceType" style="width: 15vw">
|
|
|
|
|
- <el-tree-select
|
|
|
|
|
- v-model="queryParams.deviceType"
|
|
|
|
|
- :data="productClassifyList"
|
|
|
|
|
- :props="defaultProps"
|
|
|
|
|
- check-strictly
|
|
|
|
|
- node-key="id"
|
|
|
|
|
- :placeholder="t('deviceForm.categoryHolder')"
|
|
|
|
|
- filterable
|
|
|
|
|
- />
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item :label="t('info.faultySystem')" prop="failureSystem">
|
|
|
|
|
- <el-input
|
|
|
|
|
- v-model="queryParams.failureSystem"
|
|
|
|
|
- :placeholder="t('info.faultySystemHolder')"
|
|
|
|
|
- clearable
|
|
|
|
|
- @keyup.enter="handleQuery"
|
|
|
|
|
- class="!w-240px"
|
|
|
|
|
- />
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item :label="t('info.createTime')" prop="createTime">
|
|
|
|
|
- <el-date-picker
|
|
|
|
|
- v-model="queryParams.createTime"
|
|
|
|
|
- value-format="YYYY-MM-DD HH:mm:ss"
|
|
|
|
|
- type="daterange"
|
|
|
|
|
- :start-placeholder="t('info.start')"
|
|
|
|
|
- :end-placeholder="t('info.end')"
|
|
|
|
|
- :default-time="[new Date('1 00:00:00'), new Date('1 23:59:59')]"
|
|
|
|
|
- class="!w-220px"
|
|
|
|
|
- />
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item>
|
|
|
|
|
- <el-button @click="handleQuery"
|
|
|
|
|
- ><Icon icon="ep:search" class="mr-5px" /> {{ t('info.search') }}</el-button
|
|
|
|
|
- >
|
|
|
|
|
- <el-button @click="resetQuery"
|
|
|
|
|
- ><Icon icon="ep:refresh" class="mr-5px" /> {{ t('info.reset') }}</el-button
|
|
|
|
|
- >
|
|
|
|
|
|
|
+ class="information-query bg-white dark:bg-[#1d1e1f] rounded-lg shadow px-6 py-3 min-w-0">
|
|
|
|
|
+ <div class="query-row">
|
|
|
|
|
+ <el-form-item :label="t('deviceForm.category')" prop="deviceType">
|
|
|
|
|
+ <el-tree-select
|
|
|
|
|
+ v-model="queryParams.deviceType"
|
|
|
|
|
+ :data="productClassifyList"
|
|
|
|
|
+ :props="defaultProps"
|
|
|
|
|
+ check-strictly
|
|
|
|
|
+ node-key="id"
|
|
|
|
|
+ :placeholder="t('deviceForm.categoryHolder')"
|
|
|
|
|
+ filterable
|
|
|
|
|
+ clearable
|
|
|
|
|
+ class="query-control query-control--category" />
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ <el-form-item :label="t('info.faultySystem')" prop="failureSystem">
|
|
|
|
|
+ <el-input
|
|
|
|
|
+ v-model="queryParams.failureSystem"
|
|
|
|
|
+ :placeholder="t('info.faultySystemHolder')"
|
|
|
|
|
+ clearable
|
|
|
|
|
+ class="query-control"
|
|
|
|
|
+ @keyup.enter="handleQuery" />
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ <el-form-item :label="t('info.createTime')" prop="createTime">
|
|
|
|
|
+ <el-date-picker
|
|
|
|
|
+ v-model="queryParams.createTime"
|
|
|
|
|
+ value-format="YYYY-MM-DD HH:mm:ss"
|
|
|
|
|
+ type="daterange"
|
|
|
|
|
+ :start-placeholder="t('info.start')"
|
|
|
|
|
+ :end-placeholder="t('info.end')"
|
|
|
|
|
+ :default-time="[new Date('1 00:00:00'), new Date('1 23:59:59')]"
|
|
|
|
|
+ class="query-control query-control--date" />
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ </div>
|
|
|
|
|
+
|
|
|
|
|
+ <el-form-item class="query-actions">
|
|
|
|
|
+ <el-button size="default" type="primary" @click="handleQuery">
|
|
|
|
|
+ <Icon icon="ep:search" class="mr-5px" />{{ t('info.search') }}
|
|
|
|
|
+ </el-button>
|
|
|
|
|
+ <el-button size="default" @click="resetQuery">
|
|
|
|
|
+ <Icon icon="ep:refresh" class="mr-5px" />{{ t('info.reset') }}
|
|
|
|
|
+ </el-button>
|
|
|
<el-button
|
|
<el-button
|
|
|
|
|
+ size="default"
|
|
|
type="primary"
|
|
type="primary"
|
|
|
plain
|
|
plain
|
|
|
@click="openForm('create')"
|
|
@click="openForm('create')"
|
|
|
- v-hasPermi="['rq:iot-information-db:create']"
|
|
|
|
|
- >
|
|
|
|
|
- <Icon icon="ep:plus" class="mr-5px" />
|
|
|
|
|
- {{ t('info.add') }}
|
|
|
|
|
|
|
+ v-hasPermi="['rq:iot-information-db:create']">
|
|
|
|
|
+ <Icon icon="ep:plus" class="mr-5px" />{{ t('info.add') }}
|
|
|
</el-button>
|
|
</el-button>
|
|
|
<el-button
|
|
<el-button
|
|
|
|
|
+ size="default"
|
|
|
type="success"
|
|
type="success"
|
|
|
plain
|
|
plain
|
|
|
@click="handleExport"
|
|
@click="handleExport"
|
|
|
:loading="exportLoading"
|
|
:loading="exportLoading"
|
|
|
- v-hasPermi="['rq:iot-information-db:export']"
|
|
|
|
|
- >
|
|
|
|
|
- <Icon icon="ep:download" class="mr-5px" /> 导出
|
|
|
|
|
|
|
+ v-hasPermi="['rq:iot-information-db:export']">
|
|
|
|
|
+ <Icon icon="ep:download" class="mr-5px" />导出
|
|
|
</el-button>
|
|
</el-button>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
</el-form>
|
|
</el-form>
|
|
|
- </div>
|
|
|
|
|
|
|
|
|
|
- <!-- 列表 -->
|
|
|
|
|
- <ContentWrap style="border: none; margin-top: 20px">
|
|
|
|
|
- <zm-table :loading="loading" :data="list" height="70vh">
|
|
|
|
|
- <zm-table-column :label="t('iotDevice.serial')" width="70" align="center">
|
|
|
|
|
- <template #default="scope">
|
|
|
|
|
- {{ scope.$index + 1 }}
|
|
|
|
|
- </template>
|
|
|
|
|
- </zm-table-column>
|
|
|
|
|
- <zm-table-column :label="t('info.deviceClass')" align="center" prop="className" />
|
|
|
|
|
- <zm-table-column :label="t('faultForm.faultImpact')" align="center" prop="failureInfluence" />
|
|
|
|
|
- <zm-table-column :label="t('iotMaintain.faultySystem')" align="center" prop="failureSystem" />
|
|
|
|
|
- <zm-table-column :label="t('info.description')" align="center" prop="description" />
|
|
|
|
|
- <zm-table-column :label="t('iotMaintain.solution')" align="center" prop="solutions" />
|
|
|
|
|
- <zm-table-column :label="t('iotMaintain.remark')" align="center" prop="remark" />
|
|
|
|
|
- <zm-table-column
|
|
|
|
|
- :label="t('info.createTime')"
|
|
|
|
|
- align="center"
|
|
|
|
|
- prop="createTime"
|
|
|
|
|
- :formatter="dateFormatter"
|
|
|
|
|
- width="180px"
|
|
|
|
|
- />
|
|
|
|
|
- <!-- <zm-table-column label="审核状态" align="center" prop="auditStatus" />-->
|
|
|
|
|
- <zm-table-column
|
|
|
|
|
- :label="t('iotMaintain.operation')"
|
|
|
|
|
- align="center"
|
|
|
|
|
- min-width="120px"
|
|
|
|
|
- fixed="right"
|
|
|
|
|
- action
|
|
|
|
|
- >
|
|
|
|
|
- <template #default="scope">
|
|
|
|
|
- <el-button
|
|
|
|
|
- link
|
|
|
|
|
- type="primary"
|
|
|
|
|
- @click="openForm('update', scope.row.id)"
|
|
|
|
|
- v-hasPermi="['rq:iot-information-db:update']"
|
|
|
|
|
- >
|
|
|
|
|
- {{ t('info.edit') }}
|
|
|
|
|
- </el-button>
|
|
|
|
|
- <el-button
|
|
|
|
|
- link
|
|
|
|
|
- type="danger"
|
|
|
|
|
- @click="handleDelete(scope.row.id)"
|
|
|
|
|
- v-hasPermi="['rq:iot-information-db:delete']"
|
|
|
|
|
- >
|
|
|
|
|
- {{ t('info.delete') }}
|
|
|
|
|
- </el-button>
|
|
|
|
|
- </template>
|
|
|
|
|
- </zm-table-column>
|
|
|
|
|
- </zm-table>
|
|
|
|
|
- <!-- 分页 -->
|
|
|
|
|
- <Pagination
|
|
|
|
|
- :total="total"
|
|
|
|
|
- v-model:page="queryParams.pageNo"
|
|
|
|
|
- v-model:limit="queryParams.pageSize"
|
|
|
|
|
- @pagination="getList"
|
|
|
|
|
- />
|
|
|
|
|
- </ContentWrap>
|
|
|
|
|
|
|
+ <div class="bg-white dark:bg-[#1d1e1f] shadow rounded-lg flex flex-col p-4 min-w-0 min-h-0">
|
|
|
|
|
+ <div class="flex-1 relative min-h-0">
|
|
|
|
|
+ <el-auto-resizer class="absolute">
|
|
|
|
|
+ <template #default="{ width, height }">
|
|
|
|
|
+ <ZmTable
|
|
|
|
|
+ :loading="loading"
|
|
|
|
|
+ :data="list"
|
|
|
|
|
+ :width="width"
|
|
|
|
|
+ :height="height"
|
|
|
|
|
+ :max-height="height"
|
|
|
|
|
+ show-border>
|
|
|
|
|
+ <ZmTableColumn type="index" :label="t('iotDevice.serial')" width="70" fixed="left" />
|
|
|
|
|
+ <ZmTableColumn :label="t('info.deviceClass')" prop="className" fixed="left" />
|
|
|
|
|
+ <ZmTableColumn :label="t('faultForm.faultImpact')" prop="failureInfluence" />
|
|
|
|
|
+ <ZmTableColumn :label="t('iotMaintain.faultySystem')" prop="failureSystem" />
|
|
|
|
|
+ <ZmTableColumn :label="t('info.description')" prop="description" />
|
|
|
|
|
+ <ZmTableColumn :label="t('iotMaintain.solution')" prop="solutions" />
|
|
|
|
|
+ <ZmTableColumn :label="t('iotMaintain.remark')" prop="remark" />
|
|
|
|
|
+ <ZmTableColumn
|
|
|
|
|
+ :label="t('info.createTime')"
|
|
|
|
|
+ prop="createTime"
|
|
|
|
|
+ :formatter="dateFormatter"
|
|
|
|
|
+ width="180" />
|
|
|
|
|
+ <ZmTableColumn :label="t('iotMaintain.operation')" width="120" fixed="right" action>
|
|
|
|
|
+ <template #default="scope">
|
|
|
|
|
+ <el-button
|
|
|
|
|
+ size="default"
|
|
|
|
|
+ link
|
|
|
|
|
+ type="primary"
|
|
|
|
|
+ @click="openForm('update', scope.row.id)"
|
|
|
|
|
+ v-hasPermi="['rq:iot-information-db:update']">
|
|
|
|
|
+ {{ t('info.edit') }}
|
|
|
|
|
+ </el-button>
|
|
|
|
|
+ <el-button
|
|
|
|
|
+ size="default"
|
|
|
|
|
+ link
|
|
|
|
|
+ type="danger"
|
|
|
|
|
+ @click="handleDelete(scope.row.id)"
|
|
|
|
|
+ v-hasPermi="['rq:iot-information-db:delete']">
|
|
|
|
|
+ {{ t('info.delete') }}
|
|
|
|
|
+ </el-button>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </ZmTableColumn>
|
|
|
|
|
+ </ZmTable>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-auto-resizer>
|
|
|
|
|
+ </div>
|
|
|
|
|
+
|
|
|
|
|
+ <div class="h-8 mt-2 flex items-center justify-end">
|
|
|
|
|
+ <el-pagination
|
|
|
|
|
+ v-show="total > 0"
|
|
|
|
|
+ size="default"
|
|
|
|
|
+ :current-page="queryParams.pageNo"
|
|
|
|
|
+ :page-size="queryParams.pageSize"
|
|
|
|
|
+ :background="true"
|
|
|
|
|
+ :page-sizes="[10, 20, 30, 50, 100]"
|
|
|
|
|
+ :total="total"
|
|
|
|
|
+ layout="total, sizes, prev, pager, next, jumper"
|
|
|
|
|
+ @size-change="handleSizeChange"
|
|
|
|
|
+ @current-change="handleCurrentChange" />
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
|
|
|
<!-- 表单弹窗:添加/修改 -->
|
|
<!-- 表单弹窗:添加/修改 -->
|
|
|
<IotInformationDbForm ref="formRef" style="width: 60vw" @success="getList" />
|
|
<IotInformationDbForm ref="formRef" style="width: 60vw" @success="getList" />
|
|
@@ -142,7 +144,7 @@ import { defaultProps, handleTree } from '@/utils/tree'
|
|
|
import * as ProductClassifyApi from '@/api/pms/productclassify'
|
|
import * as ProductClassifyApi from '@/api/pms/productclassify'
|
|
|
|
|
|
|
|
import { useTableComponents } from '@/components/ZmTable/useTableComponents'
|
|
import { useTableComponents } from '@/components/ZmTable/useTableComponents'
|
|
|
-const { ZmTable, ZmTableColumn } = useTableComponents()
|
|
|
|
|
|
|
+const { ZmTable, ZmTableColumn } = useTableComponents<IotInformationDbVO>()
|
|
|
|
|
|
|
|
/** 故障知识库 列表 */
|
|
/** 故障知识库 列表 */
|
|
|
defineOptions({ name: 'IotInformationDb' })
|
|
defineOptions({ name: 'IotInformationDb' })
|
|
@@ -190,10 +192,20 @@ const handleQuery = () => {
|
|
|
|
|
|
|
|
/** 重置按钮操作 */
|
|
/** 重置按钮操作 */
|
|
|
const resetQuery = () => {
|
|
const resetQuery = () => {
|
|
|
- queryFormRef.value.resetFields()
|
|
|
|
|
|
|
+ queryFormRef.value?.resetFields()
|
|
|
|
|
+ handleQuery()
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+const handleSizeChange = (val: number) => {
|
|
|
|
|
+ queryParams.pageSize = val
|
|
|
handleQuery()
|
|
handleQuery()
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+const handleCurrentChange = (val: number) => {
|
|
|
|
|
+ queryParams.pageNo = val
|
|
|
|
|
+ getList()
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
/** 添加/修改操作 */
|
|
/** 添加/修改操作 */
|
|
|
const formRef = ref()
|
|
const formRef = ref()
|
|
|
const openForm = (type: string, id?: number) => {
|
|
const openForm = (type: string, id?: number) => {
|
|
@@ -236,3 +248,98 @@ onMounted(async () => {
|
|
|
await getList()
|
|
await getList()
|
|
|
})
|
|
})
|
|
|
</script>
|
|
</script>
|
|
|
|
|
+
|
|
|
|
|
+<style scoped>
|
|
|
|
|
+.information-query {
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ flex-wrap: wrap;
|
|
|
|
|
+ align-items: center;
|
|
|
|
|
+ justify-content: space-between;
|
|
|
|
|
+ gap: 12px 24px;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.query-row {
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ flex: 1 1 auto;
|
|
|
|
|
+ flex-wrap: wrap;
|
|
|
|
|
+ align-items: center;
|
|
|
|
|
+ gap: 12px 24px;
|
|
|
|
|
+ min-width: 0;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.query-row :deep(.el-form-item__label) {
|
|
|
|
|
+ white-space: nowrap;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.query-actions {
|
|
|
|
|
+ flex: 0 0 auto;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.query-actions :deep(.el-form-item__content) {
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ flex-wrap: wrap;
|
|
|
|
|
+ gap: 8px;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.query-actions :deep(.el-button) {
|
|
|
|
|
+ margin-left: 0;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.query-control {
|
|
|
|
|
+ width: 200px;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.query-control--category {
|
|
|
|
|
+ width: 220px;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.query-control--date {
|
|
|
|
|
+ width: 240px;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+:deep(.el-form-item) {
|
|
|
|
|
+ margin-bottom: 0;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+@media (width <= 1200px) {
|
|
|
|
|
+ .information-page {
|
|
|
|
|
+ grid-template-rows: auto minmax(480px, 1fr);
|
|
|
|
|
+ height: auto;
|
|
|
|
|
+ min-height: calc(
|
|
|
|
|
+ 100vh - 20px - var(--top-tool-height) - var(--tags-view-height) - var(--app-footer-height)
|
|
|
|
|
+ );
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .query-actions {
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+ }
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+@media (width <= 768px) {
|
|
|
|
|
+ .information-query {
|
|
|
|
|
+ padding: 12px;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .query-row,
|
|
|
|
|
+ .query-row :deep(.el-form-item),
|
|
|
|
|
+ .query-actions {
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .query-control,
|
|
|
|
|
+ .query-control--category,
|
|
|
|
|
+ .query-control--date {
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .query-actions :deep(.el-form-item__content) {
|
|
|
|
|
+ display: grid;
|
|
|
|
|
+ grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .query-actions :deep(.el-button) {
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+ }
|
|
|
|
|
+}
|
|
|
|
|
+</style>
|