You've already forked my-video-workflow
时间、并添加查看稿件名
This commit is contained in:
@ -57,6 +57,10 @@
|
||||
<td>当前上传状态</td>
|
||||
<td :class="collector.basic.uploading ? 'success' : 'warning'"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>上一个稿件名</td>
|
||||
<td>{{ current_workflow.name }}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<h2>配置状态</h2>
|
||||
@ -295,7 +299,11 @@
|
||||
bili_dir: "",
|
||||
xigua_dir: "",
|
||||
}
|
||||
}
|
||||
},
|
||||
current_workflow: {
|
||||
id: 0,
|
||||
name: "",
|
||||
},
|
||||
}
|
||||
},
|
||||
created() {
|
||||
@ -309,6 +317,11 @@
|
||||
}).then((response) => {
|
||||
this.collector.uploader = response.data;
|
||||
})
|
||||
axios({
|
||||
url: "/api/bilirecorder/"
|
||||
}).then((response) => {
|
||||
this.current_workflow = response.data;
|
||||
})
|
||||
axios({
|
||||
url: "/api/config/"
|
||||
}).then((response) => {
|
||||
|
Reference in New Issue
Block a user