|
@@ -29,8 +29,20 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="i_body_contant">
|
|
|
- <Diary v-if="type == 1" :oid="oid" :userid="userid" :org="org" :cid="cid"></Diary>
|
|
|
- <Score v-if="type == 2" :oid="oid" :userid="userid" :org="org" :cid="cid"></Score>
|
|
|
+ <Diary
|
|
|
+ v-if="type == 1"
|
|
|
+ :oid="oid"
|
|
|
+ :userid="userid"
|
|
|
+ :org="org"
|
|
|
+ :cid="cid"
|
|
|
+ ></Diary>
|
|
|
+ <Score
|
|
|
+ v-if="type == 2"
|
|
|
+ :oid="oid"
|
|
|
+ :userid="userid"
|
|
|
+ :org="org"
|
|
|
+ :cid="cid"
|
|
|
+ ></Score>
|
|
|
<Report v-if="type == 3" :oid="oid" :userid="userid" :org="org"></Report>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -143,6 +155,7 @@ export default {
|
|
|
}
|
|
|
.i_body_title > .title_box > .active {
|
|
|
background: #f8fafe;
|
|
|
+ border-radius: 10px 10px 0 0;
|
|
|
}
|
|
|
|
|
|
.i_body_title > .title_box > .active:nth-child(1) div:first-child {
|
|
@@ -162,6 +175,6 @@ export default {
|
|
|
width: calc(100% - 40px);
|
|
|
height: calc(100% - 90px);
|
|
|
background: #f8fafe;
|
|
|
- border-radius: 10px;
|
|
|
+ border-radius: 0 10px 10px 10px;
|
|
|
}
|
|
|
</style>
|