From 74864a3e4ad2dc61123ed7cd092720edb26c74b2 Mon Sep 17 00:00:00 2001 From: "wu.jian2" Date: Wed, 26 Jul 2023 10:22:04 +0800 Subject: [PATCH] =?UTF-8?q?style:=20=E8=B0=83=E6=95=B4=E7=BB=84=E4=BB=B6?= =?UTF-8?q?=E5=BA=93=E5=A4=B4=E9=83=A8=E6=90=9C=E7=B4=A2=E5=8C=BA=E5=9F=9F?= =?UTF-8?q?=E5=8F=B3=E5=AF=B9=E9=BD=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../BigScreenDesign/ComponentDialog/index.vue | 1 - .../DataSetSetting/dataSetSetting.vue | 49 ++++++++++--------- 2 files changed, 25 insertions(+), 25 deletions(-) diff --git a/data-room-ui/packages/BigScreenDesign/ComponentDialog/index.vue b/data-room-ui/packages/BigScreenDesign/ComponentDialog/index.vue index cf16b0bf..a2dad27d 100644 --- a/data-room-ui/packages/BigScreenDesign/ComponentDialog/index.vue +++ b/data-room-ui/packages/BigScreenDesign/ComponentDialog/index.vue @@ -165,7 +165,6 @@ diff --git a/data-room-ui/packages/DataSetSetting/dataSetSetting.vue b/data-room-ui/packages/DataSetSetting/dataSetSetting.vue index d993bbf7..3e3cfb37 100644 --- a/data-room-ui/packages/DataSetSetting/dataSetSetting.vue +++ b/data-room-ui/packages/DataSetSetting/dataSetSetting.vue @@ -23,9 +23,9 @@ class="bs-data-set-management" :is-border="true" :is-dialog="true" - :ToAdd='isAdd' - :doEdit='doEdit' - :isDelete='isDelete' + :to-add="isAdd" + :do-edit="doEdit" + :is-delete="isDelete" :ds-id="dataSetId" :multiple="multiple" :ds-value="DataDsValue" @@ -42,9 +42,9 @@ class="bs-data-set-management" :is-border="true" :is-dialog="true" - :ToAdd='isAdd' - :doEdit='doEdit' - :isDelete='isDelete' + :to-add="isAdd" + :do-edit="doEdit" + :is-delete="isDelete" :ds-id="dataSetId" :multiple="multiple" :ds-value="DataDsValue" @@ -114,36 +114,36 @@ export default { } } }, - isAdd(){ - let a=-1 - if(window.BS_CONFIG?.datasetAuth) { - a=window.BS_CONFIG?.datasetAuth.findIndex(item=>item=='unAdd') + isAdd () { + let a = -1 + if (window.BS_CONFIG?.datasetAuth) { + a = window.BS_CONFIG?.datasetAuth.findIndex(item => item === 'unAdd') } - if(a==-1){ + if (a === -1) { return true - }else{ + } else { return false } }, - doEdit(){ - let a=-1 - if(window.BS_CONFIG?.datasetAuth) { - a=window.BS_CONFIG?.datasetAuth.findIndex(item=>item=='unEdit') + doEdit () { + let a = -1 + if (window.BS_CONFIG?.datasetAuth) { + a = window.BS_CONFIG?.datasetAuth.findIndex(item => item === 'unEdit') } - if(a==-1){ + if (a === -1) { return true - }else{ + } else { return false } }, - isDelete(){ - let a=-1 - if(window.BS_CONFIG?.datasetAuth) { - a=window.BS_CONFIG?.datasetAuth.findIndex(item=>item=='unDelete') + isDelete () { + let a = -1 + if (window.BS_CONFIG?.datasetAuth) { + a = window.BS_CONFIG?.datasetAuth.findIndex(item => item === 'unDelete') } - if(a==-1){ + if (a === -1) { return true - }else{ + } else { return false } } @@ -204,6 +204,7 @@ export default { ::v-deep .bs-container { padding: 0; min-height: 550px; + background-color: var(--bs-background-2) !important; .el-table { max-height: calc(90vh - 350px);