一、修改文件 \public\assets\js\require-backend.js

①增加一行

fastadmin bootstrap table 表格列表设置自动刷新_bootstrap

'bootstrap-table-auto-refresh': '../libs/bootstrap-table/dist/extensions/auto-refresh/bootstrap-table-auto-refresh',

②增加三行

fastadmin bootstrap table 表格列表设置自动刷新_bootstrap_02

'bootstrap-table-auto-refresh': {
  deps: ['bootstrap-table'],
  exports: '$.fn.bootstrapTable.defaults'
},

二、修改文件 public\assets\js\require-table.js

添加一个属性

fastadmin bootstrap table 表格列表设置自动刷新_数据_03

'bootstrap-table-auto-refresh'

三、在生成的对应js文件中增加两行

fastadmin bootstrap table 表格列表设置自动刷新_bootstrap_04

autoRefresh:true,//true=开启
autoRefreshInterval:10

四、最后在终端重新打包一下框架js、css

php think min -m backend -r all

 

列表页会出现一个钟表图标

fastadmin bootstrap table 表格列表设置自动刷新_数据_05

 

 

五、测试

刷新页面,试着打开一个新的浏览器窗口,添加好数据,观察之前的页面,发现数据自动出现,证明设置成功。