update 基本完成设备数采

This commit is contained in:
2022-08-18 16:38:49 +08:00
parent dedcedec06
commit 197b4734d5
4 changed files with 191 additions and 99 deletions

View File

@@ -7,7 +7,6 @@
<el-form-item>
<el-button @click="getDataList()">查询</el-button>
<el-button v-if="$hasPermission('monitoring:equipmenplcparam:save')" type="primary" @click="addOrUpdateHandle()">新增</el-button>
</el-form-item>
</el-form>
<!-- <el-table :data="dataList" border v-loading="dataListLoading" @selection-change="selectionChangeHandle" style="width: 100%;">
@@ -46,7 +45,7 @@
</template>
</el-table-column>
</el-table> -->
<base-table :data="dataList" :table-head-configs="tableConfigs" :max-height="500" />
<base-table :data="dataList" :table-head-configs="tableConfigs" :max-height="500" />
<el-pagination
@size-change="sizeChangeHandle"
@current-change="currentChangeHandle"
@@ -69,42 +68,31 @@ import TableOperateComponent from '@/components/base-table/components/operationC
import TableTextComponent from '@/components/base-table/components/detailComponent'
const tableConfigs = [
{ "prop": "id", "name": "ID" },
{ "prop": "plcConId", "name": "plc连接表ID" },
{ "prop": "type", "name": "类型status、data、constant" },
{ "prop": "paramCode", "name": "参数编码" },
{ "prop": "paramName", "name": "参数名称" },
{ "prop": "paramAddress", "name": "参数地址,对应实时数据库表的列名" },
{
"prop": "valueType",
"name": "参数值类型int、long、boolean、string、list 暂不使用"
},
{ "prop": "unitDictValue", "name": "单位 关联数据字典表label_value" },
{ "prop": "minValue", "name": "最小值" },
{ "prop": "maxValue", "name": "最大值" },
{ "prop": "defaultValue", "name": "参数设定标准值" },
{ "prop": "description", "name": "描述" },
{ "prop": "enabled", "name": "启用状态:0 、停用1、启用" },
{ "prop": "remark", "name": "备注" },
{ "prop": "valid", "name": "删除标志,是否有效:1 可用 0不可用" },
{ "prop": "creatorId", "name": "创建人" },
{ "prop": "creatorName", "name": "创建人姓名" },
{ "prop": "createTime", "name": "添加时间" },
{ "prop": "updaterId", "name": "更新人" },
{ "prop": "updaterName", "name": "更新人姓名" },
{ "prop": "updateTime", "name": "更新时间" },
{ "prop": "version", "name": "版本号" },
{ "prop": "collection", "name": "0 代表不采集, 1 代表采集" },
{ "prop": "collectionCycle", "name": "采集周期s 暂不使用" },
{ "prop": "reportingCycle", "name": "上报周期s 暂不使用" },
{ "prop": "reportingMethod", "name": "上报方式 暂不使用" },
{ "prop": "reportingCode", "name": "上报编码 暂不使用" }, { prop: 'operations', name: '操作', fixed: 'right', width: 180, subcomponent: TableOperateComponent, options: ['edit', 'delete'] }
{ type: 'index', name: '序号' },
{ prop: 'plcConId', name: 'plc连接表ID' },
{ prop: 'paramCode', name: '参数编码' },
{ prop: 'paramName', name: '参数名称' },
{ prop: 'paramAddress', name: '参数地址' },
{ prop: 'unitDictValue', name: '单位' },
{ prop: 'minValue', name: '最小值' },
{ prop: 'maxValue', name: '最大值' },
{ prop: 'defaultValue', name: '参数设定标准值' },
{ prop: 'description', name: '描述' },
{ prop: 'enabled', name: '启用状态:0 、停用1、启用' },
{ prop: 'remark', name: '备注' },
// { prop: 'createTime', name: '添加时间' },
{ prop: 'collection', name: '0 代表不采集, 1 代表采集' },
// { prop: 'collectionCycle', name: '采集周期s 暂不使用' },
// { prop: 'reportingCycle', name: '上报周期s 暂不使用' },
// { prop: 'reportingMethod', name: '上报方式 暂不使用' },
// { prop: 'reportingCode', name: '上报编码 暂不使用' },
{ prop: 'operations', name: '操作', fixed: 'right', width: 180, subcomponent: TableOperateComponent, options: ['edit', 'delete'] }
]
export default {
data() {
return {tableConfigs,
return {
tableConfigs,
dataForm: {
key: ''
},
@@ -118,7 +106,8 @@ export default {
}
},
components: {
AddOrUpdate,BaseTable
AddOrUpdate,
BaseTable
},
activated() {
this.getDataList()