index.vue 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <template>
  2. <div class="contain-block meterFunc">
  3. <span class="contain-title-leftblock">
  4. <i class="iconfont icon-juxing"/>控制测试</span>
  5. <div class="contain-data">
  6. <tabControlTest :selectAggregate="selectAggregate"/>
  7. </div>
  8. </div>
  9. </template>
  10. <script>
  11. import tabControlTest from "@/components/point/report/tabControlTest";
  12. import {queryDataSourceCount} from "@/fetch/point_http"
  13. import {pointTest, settingValue} from '@/api/scan/request'
  14. export default {
  15. name: "index",
  16. components: {tabControlTest},
  17. data() {
  18. return {
  19. selectAggregate: {
  20. originList: [], //数据源
  21. settingList: [],//控制测试列表
  22. }
  23. }
  24. },
  25. created() {
  26. this.getOriginList()
  27. },
  28. methods: {
  29. //查询数据源
  30. getOriginList() {
  31. queryDataSourceCount({}, res => {
  32. this.selectAggregate.originList = res.Content.map(i => i.Name).filter(t => t)
  33. })
  34. },
  35. }
  36. }
  37. </script>
  38. <style lang="less" scoped>
  39. .contain-block {
  40. height: 100%;
  41. background: white;
  42. width: 100%;
  43. }
  44. .contain-title-leftblock {
  45. height: 30px;
  46. line-height: 30px;
  47. /*border-left: 8px solid black;*/
  48. display: inline-block;
  49. margin: 8px 0;
  50. font-weight: 600;
  51. padding-left: 8px;
  52. cursor: default;
  53. }
  54. .contain-data {
  55. /*overflow: auto;*/
  56. height: calc(100% - 46px);
  57. }
  58. @media screen and (max-width: 1600px) {
  59. .meterFunc {
  60. width: calc(100% - 400px);
  61. }
  62. }
  63. </style>