|
@@ -31,6 +31,7 @@
|
|
|
<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>
|
|
|
<div class="chapters-container">
|
|
<div class="chapters-container">
|
|
@@ -49,6 +50,7 @@
|
|
|
status_name,
|
|
status_name,
|
|
|
last_editor_name,
|
|
last_editor_name,
|
|
|
last_edit_time,
|
|
last_edit_time,
|
|
|
|
|
+ edit_end_date,
|
|
|
},
|
|
},
|
|
|
i
|
|
i
|
|
|
) in node_list"
|
|
) in node_list"
|
|
@@ -91,6 +93,7 @@
|
|
|
<div class="status">{{ status_name }}</div>
|
|
<div class="status">{{ status_name }}</div>
|
|
|
<div class="last-editor">{{ isEnable(is_leaf_chapter) ? last_editor_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="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">
|
|
<div class="operator">
|
|
|
<template v-if="isEnable(is_leaf_chapter)">
|
|
<template v-if="isEnable(is_leaf_chapter)">
|
|
|
<span v-if="i > 0 && computedIsFirst(i)" class="link" @click="moveChapterTreeNode(i, 0)">上移</span>
|
|
<span v-if="i > 0 && computedIsFirst(i)" class="link" @click="moveChapterTreeNode(i, 0)">上移</span>
|
|
@@ -424,9 +427,10 @@ export default {
|
|
|
* @param {Object} data - 章节制作人数据
|
|
* @param {Object} data - 章节制作人数据
|
|
|
* @param {string} data.node_id - 章节ID
|
|
* @param {string} data.node_id - 章节ID
|
|
|
* @param {string} data.producer_id_list - 制作人ID列表
|
|
* @param {string} data.producer_id_list - 制作人ID列表
|
|
|
|
|
+ * @param {string} data.edit_end_date - 交稿日期
|
|
|
*/
|
|
*/
|
|
|
chapterSetProducer(data) {
|
|
chapterSetProducer(data) {
|
|
|
- ChapterSetProducer({ book_id: this.book_id, ...data })
|
|
|
|
|
|
|
+ ChapterSetProducer({ book_id: this.book_id, ...data, edit_end_date: data.edit_end_date })
|
|
|
.then(() => {
|
|
.then(() => {
|
|
|
this.getBookChapterStructExpandList();
|
|
this.getBookChapterStructExpandList();
|
|
|
this.$message.success('制作人设置成功');
|
|
this.$message.success('制作人设置成功');
|
|
@@ -580,6 +584,10 @@ export default {
|
|
|
width: 175px;
|
|
width: 175px;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ &:nth-child(7) {
|
|
|
|
|
+ width: 108px;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
&:last-child {
|
|
&:last-child {
|
|
|
flex: 1;
|
|
flex: 1;
|
|
|
min-width: 200px;
|
|
min-width: 200px;
|