qinzhipeng_v@didiglobal.com 4 years ago
parent
commit
74cbd174ec
1 changed files with 7 additions and 1 deletions
  1. 7 1
      src/views/workbench/components/listView.vue

+ 7 - 1
src/views/workbench/components/listView.vue

@@ -1,5 +1,5 @@
 <template>
-  <div>
+  <div :class="{'person': workbenchType === '个人', 'team': workbenchType === '团队'}">
     <div class="team-view">
       <el-radio-group v-model="team_radio1" size="small" @change="radio_aelect">
         <el-radio-button label="忙碌" />
@@ -354,6 +354,12 @@ export default {
 </script>
 
 <style lang="scss" scoped>
+.person {
+  min-height: calc(100vh - 378px);
+}
+.team {
+  min-height: calc(100vh - 196px);
+}
 .team-view {
   margin: 5px 30px 20px;
   .team-time {