|
|
@@ -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 {
|