Explorar el Código

待办任务显示修改

duy hace 9 meses
padre
commit
18203f5b2f
Se han modificado 1 ficheros con 15 adiciones y 1 borrados
  1. 15 1
      src/views/tasks/hc-data.vue

+ 15 - 1
src/views/tasks/hc-data.vue

@@ -1,5 +1,5 @@
 <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>
             <el-button :disabled="tableCheckedKeys.length <= 0" hc-btn type="primary" @click="batchApprovalTaskClick">批量审批</el-button>
         </template -->
@@ -215,3 +215,17 @@ const taskReviewFinish = () => {
     getTableData()
 }
 </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>