新增院内导视页两个字段

This commit is contained in:
sangchengzhi
2026-01-16 16:53:39 +08:00
parent 7f78b3ec6b
commit 7220d40021
4 changed files with 159 additions and 157 deletions

View File

@@ -446,10 +446,10 @@ export default {
},
/** 开始自动刷新 */
startAutoRefresh() {
// 每10秒直接调用一次getList()方法
// 每100秒直接调用一次getList()方法
this.autoRefreshTimer = setInterval(() => {
this.getList();
}, 10000);
}, 60000);
},
/** 停止自动刷新 */
stopAutoRefresh() {
@@ -535,7 +535,8 @@ export default {
this.$modal.confirm('是否确认打回该申请?').then(() => {
// 使用专门的打回接口只需要传递id
const rejectData = {
id: row.id
id: row.id,
status: 4,
};
console.log('打回操作提交的数据:', rejectData);