list.forEach(arg => {
  if (arg.event_state === '0') {
    this.$message.warning('警告')
    throw new Error()  // 终止跳出循环
  }
})