修改禅道已知bug

This commit is contained in:
qq787203167
2022-03-30 17:47:31 +08:00
parent fa5af4f6a5
commit c289c23ec1
3 changed files with 21 additions and 3 deletions
+1
View File
@@ -562,5 +562,6 @@ module.exports = {
documentSplitTemplate:'document split template',
batSetting:'batch setting',
selectDirectoryTerms:'please select the directory location to add terms',
StandardBreakdown:"Standard breakdown",
}
+1 -1
View File
@@ -566,5 +566,5 @@ module.exports = {
documentSplitTemplate:'文档拆分模板',
batSetting:'批量设置',
selectDirectoryTerms:'请选择添加条款的目录位置',
StandardBreakdown:'标准分解单',
}
@@ -90,6 +90,7 @@
@click="pdfPreview(ol.value)">
{{ol.value ? ol.value.fileName : '--'}}
</span>
<span class="Standard-breakdown" v-if="ol.splitFlag == 1" @click="breakdown(ol)">{{$t('StandardBreakdown')}}</span>
</td>
<td class="tdInformation rightTdInformation">
<span v-show="ol.value" @click="download(ol.value)">
@@ -334,13 +335,21 @@
this.visibleRelated = true
this.dataSourceRelated = val.list
}
},
breakdown(item) {
this.$router.push({
path: '/docManage/splitting/splitDetail',
query: {
infoId: item.splitInfoId
}
})
}
}
}
</script>
<style>
.highlight-class{
color:#00B3BE;
.highlight-class {
color: #00B3BE;
}
</style>
<style lang="less" scoped>
@@ -589,4 +598,12 @@
box-sizing: border-box;
border-left: none;
}
.Standard-breakdown {
display: inline-block;
position: absolute;
right: 153px;
margin-top: 1px;
cursor: pointer;
}
</style>