From 547aab154e85a9a89f1e320f92bd43854d10faeb Mon Sep 17 00:00:00 2001 From: zhuzhuanzhuan Date: 星期四, 14 十二月 2023 14:12:45 +0800 Subject: [PATCH] 1、调整车间看板页面详情弹窗描述列表内容字段 2、报警分析页面在原有表格中为每个报警号增加子表格,内容为出现此报警号的设备ID以及报警时间等 3、报警分析页面表格请求数据设置加载中动画 4、调整设备参数阈值管理页面添加或编辑阈值上下限输入框为数字输入框,避免上下限数字比较大小时出现问题 --- src/views/system/NewPermissionList.vue | 15 ++++++++++++++- 1 files changed, 14 insertions(+), 1 deletions(-) diff --git a/src/views/system/NewPermissionList.vue b/src/views/system/NewPermissionList.vue index e23fa6c..771e49b 100644 --- a/src/views/system/NewPermissionList.vue +++ b/src/views/system/NewPermissionList.vue @@ -11,6 +11,7 @@ type="primary" icon="delete">鎵归噺鍒犻櫎 </a-button> + <a-button @click="handleSecret" type="primary" icon="frown" v-if="selectionRows.length===1&&selectionRows[0].title==='鑺濋夯寮�闂�'">鏌ヨ</a-button> </div> <!-- table鍖哄煙-begin --> @@ -75,6 +76,7 @@ <permission-modal ref="modalForm" @ok="modalFormOk"></permission-modal> <permission-data-rule-list ref="PermissionDataRuleList" @ok="modalFormOk"></permission-data-rule-list> + <secret-model ref="secret"></secret-model> </a-card> </template> @@ -85,6 +87,7 @@ import { JeecgListMixin } from '@/mixins/JeecgListMixin' import PermissionDataRuleList from './PermissionDataRuleList' import JEllipsis from '@/components/jeecg/JEllipsis' +import SecretModel from './modules/SecretModel.vue' const columns = [ { @@ -147,7 +150,8 @@ components: { PermissionDataRuleList, PermissionModal, - JEllipsis + JEllipsis, + SecretModel }, data() { return { @@ -185,6 +189,10 @@ }) } }, + onSelectChange(selectedRowKeys, selectionRows) { + this.selectedRowKeys = selectedRowKeys; + this.selectionRows = selectionRows; + }, // 鏍规嵁宸插睍寮�鐨勮鏌ヨ鏁版嵁锛堢敤浜庝繚瀛樺悗鍒锋柊鏃跺紓姝ュ姞杞藉瓙绾х殑鏁版嵁锛� loadDataByExpandedRows(dataList) { if (this.expandedRowKeys.length > 0) { @@ -220,6 +228,11 @@ handleExpandedRowsChange(expandedRows) { this.expandedRowKeys = expandedRows }, + handleSecret(){ + this.$refs.secret.title='绉樺瘑' + this.$refs.secret.add(); + + } } } </script> -- Gitblit v1.9.3