修改禅道已知bug

This commit is contained in:
范强强
2022-09-07 18:03:41 +08:00
parent d99ddf5b86
commit fe2c854acb
6 changed files with 27 additions and 27 deletions
@@ -41,9 +41,9 @@
</div> </div>
</div> </div>
<div class="drawer-bootom-button"> <!-- <div class="drawer-bootom-button">-->
<a-button @click="handleCancel" type="danger">{{$t('cancel')}}</a-button> <!-- <a-button @click="handleCancel" type="danger">{{$t('cancel')}}</a-button>-->
</div> <!-- </div>-->
</a-drawer> </a-drawer>
<classificationMaintenanceAdd ref="classificationMaintenanceAddRef" <classificationMaintenanceAdd ref="classificationMaintenanceAddRef"
@classificationMaintenanceAddForm="classificationMaintenanceAddForm"/> @classificationMaintenanceAddForm="classificationMaintenanceAddForm"/>
@@ -46,9 +46,9 @@
</div> </div>
</div> </div>
<div class="drawer-bootom-button"> <!-- <div class="drawer-bootom-button">-->
<a-button @click="handleCancel" type="danger">{{$t('cancel')}}</a-button> <!-- <a-button @click="handleCancel" type="danger">{{$t('cancel')}}</a-button>-->
</div> <!-- </div>-->
</a-drawer> </a-drawer>
<countryCardReleaseModelAdd ref="countryCardReleaseModelAddRef" <countryCardReleaseModelAdd ref="countryCardReleaseModelAddRef"
@countryCardReleaseModelAddForm="countryCardReleaseModelAddForm"/> @countryCardReleaseModelAddForm="countryCardReleaseModelAddForm"/>
@@ -41,9 +41,9 @@
</div> </div>
</div> </div>
<div class="drawer-bootom-button"> <!-- <div class="drawer-bootom-button">-->
<a-button @click="handleCancel" type="danger">{{$t('cancel')}}</a-button> <!-- <a-button @click="handleCancel" type="danger">{{$t('cancel')}}</a-button>-->
</div> <!-- </div>-->
</a-drawer> </a-drawer>
<optionMaintenanceAdd ref="optionMaintenanceAddRef" <optionMaintenanceAdd ref="optionMaintenanceAddRef"
@optionMaintenanceAddForm="optionMaintenanceAddForm"/> @optionMaintenanceAddForm="optionMaintenanceAddForm"/>
@@ -75,7 +75,8 @@
title: this.$t('clauseNo'), title: this.$t('clauseNo'),
dataIndex: 'itemNum', dataIndex: 'itemNum',
align: 'center', align: 'center',
ellipsis: true ellipsis: true,
width: 120
}, },
{ {
title: this.$t('clauseName'), title: this.$t('clauseName'),
@@ -11,7 +11,7 @@
<div class="myList-box-content-box" v-for="(item,index) in dataSource" :key="index" @click="prcClick(item)"> <div class="myList-box-content-box" v-for="(item,index) in dataSource" :key="index" @click="prcClick(item)">
<div class="top"> <div class="top">
<span class="top-text" :title="item.prcName">{{item.prcName}}</span> <span class="top-text" :title="item.prcName">{{item.prcName}}</span>
<span class="top-admin" :title="prcTypeName[item.prcType]">{{prcTypeName[item.prcType]}}</span> <!-- <span class="top-admin" :title="prcTypeName[item.prcType]">{{prcTypeName[item.prcType]}}</span>-->
</div> </div>
<div class="button"> <div class="button">
{{item.creatTime}} {{item.creatTime}}
@@ -161,25 +161,24 @@
font-family: Blue Sky Noto; font-family: Blue Sky Noto;
font-weight: 400; font-weight: 400;
color: #040B29; color: #040B29;
max-width: 50%; max-width: calc(100% - 72px);
display: inline-block; display: inline-block;
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
white-space: nowrap; white-space: nowrap;
} }
/*.top-admin {*/
.top-admin { /* font-size: 16px;*/
font-size: 16px; /* font-family: Blue Sky Noto;*/
font-family: Blue Sky Noto; /* display: inline-block;*/
display: inline-block; /* font-weight: 400;*/
font-weight: 400; /* color: #040B29;*/
color: #040B29; /* margin-left: 4px;*/
margin-left: 4px; /* max-width: calc(50% - 72px);*/
max-width: calc(50% - 72px); /* overflow: hidden;*/
overflow: hidden; /* text-overflow: ellipsis;*/
text-overflow: ellipsis; /* white-space: nowrap;*/
white-space: nowrap; /*}*/
}
} }
.button { .button {
@@ -377,7 +377,7 @@
return return
} }
for (let i = 0; i < this.resultData.textLeft.length; i++) { for (let i = 0; i < this.resultData.textLeft.length; i++) {
if (node.parentId && node.itemName == this.resultData.textLeft[i].itemsName) { if (node.parentId && node.menuId == this.resultData.textLeft[i].menuId) {
detailContent[0].scrollTop = detailLeft[i].offsetTop - 150 detailContent[0].scrollTop = detailLeft[i].offsetTop - 150
return return
} }
@@ -392,7 +392,7 @@
return return
} }
for (let i = 0; i < this.resultData.textRight.length; i++) { for (let i = 0; i < this.resultData.textRight.length; i++) {
if (node.parentId && node.itemName == this.resultData.textRight[i].itemsName) { if (node.parentId && node.menuId == this.resultData.textRight[i].menuId) {
detailContent[0].scrollTop = detailRight[i].offsetTop - 150 detailContent[0].scrollTop = detailRight[i].offsetTop - 150
return return
} }