소스 검색

交稿日期修改

dsy 1 주 전
부모
커밋
777f050f5a
1개의 변경된 파일11개의 추가작업 그리고 6개의 파일을 삭제
  1. 11 6
      src/views/personal_workbench/project/ProductionEditorialManage.vue

+ 11 - 6
src/views/personal_workbench/project/ProductionEditorialManage.vue

@@ -27,11 +27,11 @@
       <div class="list-title">
         <span class="title-cell">教材章节结构</span>
         <span class="title-cell">制作人</span>
+        <span class="title-cell">交稿日期</span>
         <span class="title-cell">审校人</span>
         <span class="title-cell">状态</span>
         <span class="title-cell">最后编辑人</span>
         <span class="title-cell">最后编辑时间</span>
-        <span class="title-cell">交稿日期</span>
         <span class="title-cell">操作</span>
       </div>
       <div class="chapters-container">
@@ -84,6 +84,12 @@
             <span>{{ producer_list.map((producer) => producer.name).join(';') }}</span>
           </div>
           <div
+            class="edit-end-date"
+            :style="{ color: !isEnable(is_root) && isEnable(is_inherited_producer) ? '#ff4757' : 'default' }"
+          >
+            {{ isEnable(is_leaf_chapter) ? edit_end_date : '' }}
+          </div>
+          <div
             class="audit nowrap-ellipsis"
             :style="{ color: !isEnable(is_root) && isEnable(is_inherited_auditor) ? '#ff4757' : 'default' }"
             :title="auditor_desc"
@@ -93,7 +99,6 @@
           <div class="status">{{ status_name }}</div>
           <div class="last-editor">{{ isEnable(is_leaf_chapter) ? last_editor_name : '' }}</div>
           <div class="last-edit-time">{{ isEnable(is_leaf_chapter) ? last_edit_time : '' }}</div>
-          <div class="edit-end-date">{{ isEnable(is_leaf_chapter) ? edit_end_date : '' }}</div>
           <div class="operator">
             <template v-if="isEnable(is_leaf_chapter)">
               <span v-if="i > 0 && computedIsFirst(i)" class="link" @click="moveChapterTreeNode(i, 0)">上移</span>
@@ -587,11 +592,11 @@ export default {
       }
 
       &:nth-child(3) {
-        width: 200px;
+        width: 108px;
       }
 
       &:nth-child(4) {
-        width: 120px;
+        width: 200px;
       }
 
       &:nth-child(5) {
@@ -599,11 +604,11 @@ export default {
       }
 
       &:nth-child(6) {
-        width: 175px;
+        width: 120px;
       }
 
       &:nth-child(7) {
-        width: 108px;
+        width: 175px;
       }
 
       &:last-child {