时间、并添加查看稿件名

This commit is contained in:
2022-07-29 14:05:50 +08:00
parent f418c64984
commit af388ac3f4
2 changed files with 18 additions and 5 deletions

View File

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