From e205cad00ed14b91f7c7395146941ade750982bb Mon Sep 17 00:00:00 2001 From: zhuzhuanzhuan Date: 星期三, 17 一月 2024 15:29:13 +0800 Subject: [PATCH] 1、扭矩配置页面更名为参数配置,增加字段“进给参数” 2、设备监控页面设备表增加状态异常说明字段以及操作列状态反馈功能(具备鉴权功能) 3、设备加工工件报表页面取消分页器及日期字段 4、设备日志页面增加扭矩及进给参数工作曲线 5、设备运行参数报警页面新增至mdc模块数据报表菜单下并完成所有布局及功能实现 6、优化车间看板页面代码,手动设置拖拽区域高度以试图解决进入页面后无法随意拖拽问题(未在现场调试),全屏模式下无法使用功能,从全屏模式切换至普通模式下刷新页面以及优化设备详情弹窗样式 --- 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..8ec296e 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==='kitty'">鏌ヨ</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