新增院内导视页两个字段
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user