@@ -6,7 +6,7 @@
:data="scheduleList"
:header-cell-style="{ backgroundColor: 'rgba(232,232,232,0.4)', color: 'rgb(74, 74, 74)', fontSize: '14px', fontWeight: '500'}"
:row-style="{'background-color': 'transparent'}"
- style="width: 100%"
+ style="max-width: 100%"
show-overflow-tooltip="true"
row-key="id"
>
@@ -117,18 +117,24 @@
<div class="title-left-name">
<div class="require-plan">
需求计划
+ <span>🔒已锁定</span>
<span><i class="el-icon-warning-outline" />每个任务仅支持一次提测和一次准出,请合理拆解后任务再排期</span>
</div>
- <div>
+ <div class="require-list">
<schedule-list
:id="requirementId"
:type-list="taskScheduleEvent"
class-name="white"
:all="true"
:no-move="false"
+ style="flex:2;border-right: 1px solid red"
/>
+ <div style=" flex:1; min-width: 200px; text-align: center">
+ <div>排期变更记录</div>
+ <div>额 sad sad</div>
+ </div>
</section>
<section class="main-section">
@@ -469,6 +475,11 @@ export default {
height: calc(100vh - 140px);
overflow: scroll;
}
+.require-list {
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+}
.main-section {
@include main-section;
.require-plan {