|
@@ -1,5 +1,5 @@
|
|
<template>
|
|
<template>
|
|
- <hc-tab-card :tabs="tabsData" :tab-key="tabsKey" @change="tabsClick">
|
|
|
|
|
|
+ <hc-tab-card :tabs="tabsData" :tab-key="tabsKey" ui="task-ui" @change="tabsClick">
|
|
<!-- template v-if="tabsKey === '1'" #extra>
|
|
<!-- template v-if="tabsKey === '1'" #extra>
|
|
<el-button :disabled="tableCheckedKeys.length <= 0" hc-btn type="primary" @click="batchApprovalTaskClick">批量审批</el-button>
|
|
<el-button :disabled="tableCheckedKeys.length <= 0" hc-btn type="primary" @click="batchApprovalTaskClick">批量审批</el-button>
|
|
</template -->
|
|
</template -->
|
|
@@ -215,3 +215,17 @@ const taskReviewFinish = () => {
|
|
getTableData()
|
|
getTableData()
|
|
}
|
|
}
|
|
</script>
|
|
</script>
|
|
|
|
+
|
|
|
|
+<style lang="scss">
|
|
|
|
+.hc-div-new-card-box.hc-tab-card-box .el-card .tab-card-header-tabs .item.cur {
|
|
|
|
+ background-color: var(--el-color-primary);
|
|
|
|
+ color: white;
|
|
|
|
+ }
|
|
|
|
+ .hc-div-new-card-box.hc-tab-card-box .el-card .tab-card-header-tabs .item:after{
|
|
|
|
+ bottom: -6px;
|
|
|
|
+ }
|
|
|
|
+ .hc-div-new-card-box.hc-tab-card-box .el-card .tab-card-header-tabs .item{
|
|
|
|
+ border:1px solid var(--el-border-color);
|
|
|
|
+ border-bottom: none;
|
|
|
|
+ }
|
|
|
|
+</style>
|