Sign in

ECS5 / ECS5.0Web · Files

Logo

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • ECS5.0Web
  • HHECS.Web
  • src
  • api
  • table.js
  • --
    965c27df
    胡菁 authored
    2025-04-02 17:16:29 +0800  
    Browse Code »
table.js 343 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
import request from '@/utils/request'

// 主任务状态
export function getHostType(data) {
  return request({
    url: '/api/System/GetDictWithDetailsLangs',
    method: 'post',
    data
  })
}

// 主任务状态
export function getTableList(data) {
  return request({
    url: '/api/MTask/GetMTasks',
    method: 'post',
    data
  })
}