|
@@ -1,904 +1,468 @@
|
|
|
<template>
|
|
|
- <div class="integration__cont__map__cont">
|
|
|
- <Minheader
|
|
|
- :is-statuser="true"
|
|
|
- :is-Journal="true"
|
|
|
- @addJournalForm="addJournalForm"
|
|
|
- >
|
|
|
- <template #header>
|
|
|
- <div class="status flex-wrap">
|
|
|
- <div class="manageTitle">服务拓扑</div>
|
|
|
- <div class="typestart flex-wrap">
|
|
|
- <div class="name">
|
|
|
- <div class="log"></div>
|
|
|
- 正常
|
|
|
- </div>
|
|
|
- <div class="name">
|
|
|
- <div class="log1"></div>
|
|
|
- 异常
|
|
|
- </div>
|
|
|
+ <div class="airportInfo scroll-y">
|
|
|
+ <div class="wrap">
|
|
|
+ <MinHeader
|
|
|
+ :is-auth="true"
|
|
|
+ :is-statuser="true"
|
|
|
+ @addForm="addServiceHandler"
|
|
|
+ >
|
|
|
+ <template #header>
|
|
|
+ <div class="status flex-wrap">
|
|
|
+ <div class="manageTitle">服务管理</div>
|
|
|
+ <div class="status0"><span class="icon"></span>启动</div>
|
|
|
+ <div class="status2"><span class="icon"></span>异常</div>
|
|
|
+ <div class="status1"><span class="icon"></span>停止</div>
|
|
|
</div>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- </Minheader>
|
|
|
- <div class="integration__cont" ref="chartDom"></div>
|
|
|
- <Dialog
|
|
|
- width="1200px"
|
|
|
- :flag="flag"
|
|
|
- :type="type"
|
|
|
- :msgTitle="msgTitle"
|
|
|
- @resetForm="resetForm"
|
|
|
- >
|
|
|
- <div class="diacont">
|
|
|
- <div class="interfaceLog_head flex">
|
|
|
- <div class="interfaceLog_head_time flex-act">
|
|
|
- <div class="header_name">当前服务:Kafka原始报文</div>
|
|
|
- </div>
|
|
|
- <div class="interfaceLog_head_btn flex">
|
|
|
- <div class="interfaceLog_head_time_start r12">
|
|
|
- <el-date-picker
|
|
|
- v-model="timeStart"
|
|
|
- size="default"
|
|
|
- type="datetime"
|
|
|
- placeholder="选择开始日期时间"
|
|
|
- format="YYYY-MM-DD HH:mm:ss"
|
|
|
- value-format="YYYY-MM-DD HH:mm:ss"
|
|
|
- :clearable="false"
|
|
|
- @change="timeSelectHandler"
|
|
|
- />
|
|
|
- </div>
|
|
|
- <div class="interfaceLog_head_time_end r16">
|
|
|
- <el-date-picker
|
|
|
- v-model="timeEnd"
|
|
|
- size="default"
|
|
|
- type="datetime"
|
|
|
- placeholder="选择结束日期时间"
|
|
|
- format="YYYY-MM-DD HH:mm:ss"
|
|
|
- value-format="YYYY-MM-DD HH:mm:ss"
|
|
|
- :clearable="false"
|
|
|
- @change="timeSelectHandler"
|
|
|
- />
|
|
|
- </div>
|
|
|
- <Search
|
|
|
- :is-title="false"
|
|
|
- @get-search-data="getSearchData"
|
|
|
- @clear-search-data="clearSearchData"
|
|
|
- />
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- <div class="interfaceLog_content">
|
|
|
- <el-row :gutter="24">
|
|
|
- <el-col :span="19">
|
|
|
- <DataTable
|
|
|
- :tableHeader="tableColumns"
|
|
|
- :tableData="tableData"
|
|
|
- :tableProperty="{ rowKey: 'ID' }"
|
|
|
- @load="load"
|
|
|
- @row-click="rowClickHandler"
|
|
|
- />
|
|
|
+ </template>
|
|
|
+ </MinHeader>
|
|
|
+ <div class="app-containers">
|
|
|
+ <DataTable
|
|
|
+ :is-Status="true"
|
|
|
+ :table-header="tableColumns"
|
|
|
+ :table-data="tableData"
|
|
|
+ :table-btn-group="tableBtnGroup"
|
|
|
+ btn-group-width="310px"
|
|
|
+ :table-property="{ rowKey: 'ID' }"
|
|
|
+ @btn-click="btnClickHandler"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ <Dialog
|
|
|
+ :width="serviceDialogWidth"
|
|
|
+ :flag="serviceDialogVisible"
|
|
|
+ :type="type"
|
|
|
+ :del-name="delName"
|
|
|
+ :msg-title="msgTitle"
|
|
|
+ @delRest="delCancelHandler"
|
|
|
+ >
|
|
|
+ <el-form
|
|
|
+ ref="serviceForm"
|
|
|
+ class="service-form"
|
|
|
+ :model="serviceForm"
|
|
|
+ :rules="serviceFormRules"
|
|
|
+ label-position="right"
|
|
|
+ label-width="82px"
|
|
|
+ size="mini"
|
|
|
+ >
|
|
|
+ <el-row :gutter="36" type="flex">
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item label="服务名称" prop="serviceName">
|
|
|
+ <el-input
|
|
|
+ v-model="serviceForm.serviceName"
|
|
|
+ placeholder="请输入服务名称"
|
|
|
+ clearable
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item
|
|
|
+ label="前序输出编号"
|
|
|
+ label-width="114px"
|
|
|
+ prop="serviceOutputID"
|
|
|
+ >
|
|
|
+ <el-input
|
|
|
+ v-model="serviceForm.serviceOutputID"
|
|
|
+ placeholder="请输入前序输出编号"
|
|
|
+ clearable
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
</el-col>
|
|
|
- <el-col :span="5">
|
|
|
- <div class="interfaceLog_content_progress">
|
|
|
- <el-timeline>
|
|
|
- <el-timeline-item
|
|
|
- v-for="(item, index) in progressList"
|
|
|
- :key="index"
|
|
|
- >
|
|
|
- <div class="list">
|
|
|
- <div class="list_status"></div>
|
|
|
- <div class="list_title">{{ item.logType }}</div>
|
|
|
- <div class="list_code">{{ item.resultCode }}</div>
|
|
|
- <div class="list_time">{{ item.logTime }}</div>
|
|
|
- <!-- <div class="list_detial">{{ item.resultDetails }}</div> -->
|
|
|
- </div>
|
|
|
- </el-timeline-item>
|
|
|
- </el-timeline>
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item label="类型" prop="serviceType">
|
|
|
+ <el-select v-model="serviceForm.serviceType" clearable>
|
|
|
+ <el-option :value="1" label="管理前端" />
|
|
|
+ <el-option :value="2" label="管理后端" />
|
|
|
+ <el-option :value="3" label="业务前端" />
|
|
|
+ <el-option :value="4" label="业务后端" />
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item label-width="14px">
|
|
|
+ <el-radio-group v-model="serviceForm.isAsynchronous">
|
|
|
+ <el-radio :label="1">同步</el-radio>
|
|
|
+ <el-radio :label="0">异步</el-radio>
|
|
|
+ </el-radio-group>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="12">
|
|
|
+ <div class="flex">
|
|
|
+ <el-form-item label="数据来源" prop="dataSourceID">
|
|
|
+ <el-select v-model="serviceForm.dataSourceID" clearable>
|
|
|
+ <el-option
|
|
|
+ v-for="dataSource in dataSourceList"
|
|
|
+ :key="dataSource.dataSourceID"
|
|
|
+ :value="dataSource.dataSourceID"
|
|
|
+ :label="dataSource.dataSourceName"
|
|
|
+ />
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ size="small"
|
|
|
+ style="height: 28px; line-height: 0px"
|
|
|
+ @click="addDataSourceHandler"
|
|
|
+ >新增</el-button
|
|
|
+ >
|
|
|
</div>
|
|
|
</el-col>
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item
|
|
|
+ label="数据来源对象"
|
|
|
+ label-width="114px"
|
|
|
+ prop="sourceObjectName"
|
|
|
+ >
|
|
|
+ <el-input
|
|
|
+ v-model="serviceForm.sourceObjectName"
|
|
|
+ placeholder="请输入数据来源对象名称"
|
|
|
+ clearable
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item label="服务描述" prop="serviceDescribe">
|
|
|
+ <el-input
|
|
|
+ v-model="serviceForm.serviceDescribe"
|
|
|
+ placeholder="请输入描述"
|
|
|
+ clearable
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item
|
|
|
+ label="生命周期ID键名"
|
|
|
+ prop="lifeCycleCol"
|
|
|
+ label-width="114px"
|
|
|
+ >
|
|
|
+ <el-input
|
|
|
+ v-model="serviceForm.lifeCycleCol"
|
|
|
+ placeholder="请输入生命周期ID键名"
|
|
|
+ clearable
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="24">
|
|
|
+ <el-form-item label="取值规则" prop="computingMethod">
|
|
|
+ <el-input
|
|
|
+ v-model="serviceForm.computingMethod"
|
|
|
+ placeholder="请输入取值规则"
|
|
|
+ type="textarea"
|
|
|
+ :autosize="{ minRows: 4, maxRows: 4 }"
|
|
|
+ resize="none"
|
|
|
+ clearable
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="24">
|
|
|
+ <el-form-item label="检测规则" prop="validationExpression">
|
|
|
+ <el-input
|
|
|
+ v-model="serviceForm.validationExpression"
|
|
|
+ placeholder="请输入检测规则"
|
|
|
+ type="textarea"
|
|
|
+ :autosize="{ minRows: 4, maxRows: 4 }"
|
|
|
+ resize="none"
|
|
|
+ clearable
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="8">
|
|
|
+ <el-form-item label="启动时间" prop="startTime">
|
|
|
+ <el-date-picker
|
|
|
+ v-model="serviceForm.startTime"
|
|
|
+ type="datetime"
|
|
|
+ format="yyyy-MM-dd HH:mm"
|
|
|
+ value-format="yyyy-MM-dd HH:mm"
|
|
|
+ placeholder="请选择启动时间"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="8">
|
|
|
+ <el-form-item label="停止时间" prop="stopTime">
|
|
|
+ <el-date-picker
|
|
|
+ v-model="serviceForm.stopTime"
|
|
|
+ type="datetime"
|
|
|
+ format="yyyy-MM-dd HH:mm"
|
|
|
+ value-format="yyyy-MM-dd HH:mm"
|
|
|
+ placeholder="请选择停止时间"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="8">
|
|
|
+ <el-form-item
|
|
|
+ label="失败重试次数"
|
|
|
+ prop="retryCount"
|
|
|
+ label-width="100px"
|
|
|
+ >
|
|
|
+ <el-input
|
|
|
+ v-model="serviceForm.retryCount"
|
|
|
+ type="number"
|
|
|
+ placeholder="请输入重试次数"
|
|
|
+ clearable
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="8">
|
|
|
+ <el-form-item label="循环次数" prop="loopCount">
|
|
|
+ <el-input
|
|
|
+ v-model="serviceForm.loopCount"
|
|
|
+ type="number"
|
|
|
+ placeholder="请输入循环次数"
|
|
|
+ clearable
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="8">
|
|
|
+ <el-form-item label="循环频率" prop="frequencyCount">
|
|
|
+ <el-input
|
|
|
+ v-model="serviceForm.frequencyCount"
|
|
|
+ type="number"
|
|
|
+ placeholder="请输入循环频率"
|
|
|
+ clearable
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="8">
|
|
|
+ <el-form-item
|
|
|
+ label="循环频率单位"
|
|
|
+ prop="frequencyUnit"
|
|
|
+ label-width="100px"
|
|
|
+ >
|
|
|
+ <el-select v-model="serviceForm.frequencyUnit" clearable>
|
|
|
+ <el-option label="天" :value="24 * 60 * 60 * 1000" />
|
|
|
+ <el-option label="小时" :value="60 * 60 * 1000" />
|
|
|
+ <el-option label="分钟" :value="60 * 1000" />
|
|
|
+ <el-option label="秒" :value="1000" />
|
|
|
+ <el-option label="毫秒" :value="1" />
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item
|
|
|
+ label="日志存储位置"
|
|
|
+ label-width="100px"
|
|
|
+ prop="logDataSourceID"
|
|
|
+ >
|
|
|
+ <el-select v-model="serviceForm.logDataSourceID">
|
|
|
+ <el-option
|
|
|
+ v-for="dataSource in dataSourceList"
|
|
|
+ :key="dataSource.dataSourceID"
|
|
|
+ :value="dataSource.dataSourceID"
|
|
|
+ :label="dataSource.dataSourceName"
|
|
|
+ />
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item
|
|
|
+ label="日志过滤条件"
|
|
|
+ label-width="100px"
|
|
|
+ prop="logList"
|
|
|
+ >
|
|
|
+ <el-input
|
|
|
+ v-model="serviceForm.logList"
|
|
|
+ placeholder="请输入日志过滤条件"
|
|
|
+ clearable
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
</el-row>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </Dialog>
|
|
|
+ </el-form>
|
|
|
+ </Dialog>
|
|
|
+ <Dialog
|
|
|
+ type="add"
|
|
|
+ width="600px"
|
|
|
+ :flag="dataSourceDialogVisible"
|
|
|
+ msg-title="新增数据来源"
|
|
|
+ @delRest="delCancelHandler"
|
|
|
+ ></Dialog>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</template>
|
|
|
<script setup lang="ts">
|
|
|
-import Minheader from '@/components/minheader/index.vue'
|
|
|
import DataTable from '@/components/tableTemp/index.vue'
|
|
|
+import MinHeader from '@/components/minheader/index.vue'
|
|
|
import Dialog from '@/components/dialog/index.vue'
|
|
|
-import { Ref, provide } from 'vue'
|
|
|
-import * as echarts from 'echarts'
|
|
|
-import _ from 'lodash'
|
|
|
-import { ElMessage } from 'element-plus'
|
|
|
-import { Query } from '@/api/dataIntegration'
|
|
|
-import img1 from '@/assets/integr/jiekou_blue.png'
|
|
|
-import img2 from '@/assets/integr/jiekou_red.png'
|
|
|
-import img3 from '@/assets/integr/pull_blue.png'
|
|
|
-import img4 from '@/assets/integr/kafka_blue.png'
|
|
|
-import img5 from '@/assets/integr/push_blue.png'
|
|
|
-import img6 from '@/assets/integr/save_blue.png'
|
|
|
-import img7 from '@/assets/integr/mysql_blue.png'
|
|
|
-import img8 from '@/assets/integr/pull_red.png'
|
|
|
|
|
|
-let serviceID: number
|
|
|
-
|
|
|
-
|
|
|
-provide('echarts', echarts)
|
|
|
-const chartDom = ref<HTMLDivElement | null>(null)
|
|
|
-const myChart = ref<Ref<echarts.ECharts> | null>(null)
|
|
|
-const flag = ref(false) //弹窗开关
|
|
|
-const type = ref('') //判断是否删除
|
|
|
-const msgTitle = ref('查看日志') //弹窗标题
|
|
|
-const getAssetsFile = (url: string) => {
|
|
|
- return new URL(`../assets/integr/${url}`, import.meta.url).href
|
|
|
+interface DataSource {
|
|
|
+ dataSourceID: string
|
|
|
+ dataSourceName: string
|
|
|
}
|
|
|
-const datas = ref<any[]>([])
|
|
|
-const resizeDelay = 300
|
|
|
-//默认节点
|
|
|
-// const defaultImg = getAssetsFile("jiekou_blue.png");
|
|
|
-const defaultImg = 'image://' + img1
|
|
|
-//默认节点-错误
|
|
|
-const defaultImgError = 'image://' + img2
|
|
|
-//拉取节点
|
|
|
-const pullImg = 'image://' + img3
|
|
|
-//拉取节点-错误
|
|
|
-const pullImgError = 'image://' + img8
|
|
|
-//kafka节点
|
|
|
-const kafkaImg = 'image://' + img4
|
|
|
-//kafka节点-错误
|
|
|
-const kafkaImgError = getAssetsFile('kafka_red.png')
|
|
|
-//推送节点
|
|
|
-const pushImg = 'image://' + img5
|
|
|
-//推送节点-错误
|
|
|
-const pushImgError = 'image://' + getAssetsFile('push_red.png')
|
|
|
-//存储节点
|
|
|
-const saveImg = 'image://' + img6
|
|
|
-//存储节点-错误
|
|
|
-const saveImgError = getAssetsFile('save_red.png')
|
|
|
-//存储节点
|
|
|
-const mysqlImg = 'image://' + img7
|
|
|
-//存储节点-错误
|
|
|
-const mysqlImgError = getAssetsFile('mysql_red.png')
|
|
|
-const nodeDataList = ref([
|
|
|
- {
|
|
|
- name: '星盟SBH',
|
|
|
- linkTargetName: 'Kafka',
|
|
|
- linkValue: ' ',
|
|
|
- coordConfig: {
|
|
|
- level: '0',
|
|
|
- },
|
|
|
- value: [10, 245],
|
|
|
- draggable: false,
|
|
|
- fixed: true,
|
|
|
- symbol: defaultImg,
|
|
|
- symbolSize: 60,
|
|
|
- },
|
|
|
- // {
|
|
|
- // name: "星盟SBH",
|
|
|
- // linkTargetName: "国航主动拉取节点",
|
|
|
- // linkValue: " ",
|
|
|
- // coordConfig: {
|
|
|
- // level: "0",
|
|
|
- // },
|
|
|
- // value: [10, 220],
|
|
|
- // draggable: false,
|
|
|
- // fixed: true,
|
|
|
- // symbol: defaultImg,
|
|
|
- // symbolSize: 30,
|
|
|
- // },
|
|
|
- // {
|
|
|
- // name: "局方公共平台",
|
|
|
- // linkTargetName: "国航主动拉取节点",
|
|
|
- // linkValue: " ",
|
|
|
- // coordConfig: {
|
|
|
- // level: "0",
|
|
|
- // },
|
|
|
- // value: [10, 190],
|
|
|
- // draggable: false,
|
|
|
- // symbol: defaultImgError,
|
|
|
- // symbolSize: 30,
|
|
|
- // },
|
|
|
- // {
|
|
|
- // name: "离港高频",
|
|
|
- // linkTargetName: "国航主动拉取节点",
|
|
|
- // linkValue: " ",
|
|
|
- // coordConfig: {
|
|
|
- // level: "0",
|
|
|
- // },
|
|
|
- // value: [10, 160],
|
|
|
- // draggable: false,
|
|
|
- // symbol: defaultImg,
|
|
|
- // symbolSize: 30,
|
|
|
- // },
|
|
|
- // {
|
|
|
- // name: "WT",
|
|
|
- // linkTargetName: "国航主动拉取节点",
|
|
|
- // linkValue: " ",
|
|
|
- // coordConfig: {
|
|
|
- // level: "0",
|
|
|
- // },
|
|
|
- // value: [10, 130],
|
|
|
- // draggable: false,
|
|
|
- // symbol: defaultImg,
|
|
|
- // symbolSize: 30,
|
|
|
- // },
|
|
|
- // {
|
|
|
- // name: "特殊及异常行李",
|
|
|
- // linkTargetName: "国航主动拉取节点",
|
|
|
- // linkValue: " ",
|
|
|
- // coordConfig: {
|
|
|
- // level: "0",
|
|
|
- // },
|
|
|
- // value: [10, 100],
|
|
|
- // draggable: false,
|
|
|
- // symbol: defaultImg,
|
|
|
- // symbolSize: 30,
|
|
|
- // },
|
|
|
- // {
|
|
|
- // name: "SCS",
|
|
|
- // linkTargetName: "国航被动接收节点",
|
|
|
- // linkValue: " ",
|
|
|
- // coordConfig: {
|
|
|
- // level: "0",
|
|
|
- // },
|
|
|
- // value: [10, 70],
|
|
|
- // draggable: false,
|
|
|
- // symbol: defaultImg,
|
|
|
- // symbolSize: 30,
|
|
|
- // },
|
|
|
- // {
|
|
|
- // name: "ERP",
|
|
|
- // linkTargetName: "国航被动接收节点",
|
|
|
- // linkValue: " ",
|
|
|
- // coordConfig: {
|
|
|
- // level: "0",
|
|
|
- // },
|
|
|
- // value: [10, 40],
|
|
|
- // draggable: false,
|
|
|
- // symbol: defaultImg,
|
|
|
- // symbolSize: 30,
|
|
|
- // },
|
|
|
- // {
|
|
|
- // name: "服务质量",
|
|
|
- // linkTargetName: "国航被动接收节点",
|
|
|
- // linkValue: " ",
|
|
|
- // coordConfig: {
|
|
|
- // level: "0",
|
|
|
- // },
|
|
|
- // value: [10, 10],
|
|
|
- // draggable: false,
|
|
|
- // symbol: defaultImg,
|
|
|
- // symbolSize: 30,
|
|
|
- // },
|
|
|
- //节点B,C,D ....n
|
|
|
- // {
|
|
|
- // name: "首都机场边缘节点",
|
|
|
- // linkTargetName: "国航主动拉取节点",
|
|
|
- // linkValue: " ",
|
|
|
- // coordConfig: {
|
|
|
- // level: "1",
|
|
|
- // },
|
|
|
- // symbol: pullImg,
|
|
|
- // symbolSize: 60,
|
|
|
- // draggable: false,
|
|
|
- // value: [40, 245],
|
|
|
- // },
|
|
|
- // {
|
|
|
- // name: "国航主动拉取节点",
|
|
|
- // linkTargetName: "Kafka",
|
|
|
- // linkValue: " ",
|
|
|
- // coordConfig: {
|
|
|
- // level: "2",
|
|
|
- // },
|
|
|
- // symbol: pullImg,
|
|
|
- // symbolSize: 60,
|
|
|
- // draggable: false,
|
|
|
- // value: [80, 180],
|
|
|
- // },
|
|
|
- // {
|
|
|
- // name: "国航被动接收节点",
|
|
|
- // linkTargetName: "Kafka",
|
|
|
- // linkValue: " ",
|
|
|
- // coordConfig: {
|
|
|
- // level: "2",
|
|
|
- // },
|
|
|
- // symbol: pullImg,
|
|
|
- // symbolSize: 60,
|
|
|
- // draggable: false,
|
|
|
- // value: [80, 100],
|
|
|
- // },
|
|
|
- {
|
|
|
- name: 'Kafka',
|
|
|
- linkTargetName: 'BSMBPM报文解析',
|
|
|
- linkValue: ' ',
|
|
|
- coordConfig: { level: '3' },
|
|
|
- symbolSize: 60,
|
|
|
- symbol: kafkaImg,
|
|
|
- draggable: false,
|
|
|
- value: [40, 245],
|
|
|
- },
|
|
|
- {
|
|
|
- name: 'BSMBPM报文解析',
|
|
|
- linkTargetName: 'BSM',
|
|
|
- linkValue: ' ',
|
|
|
- coordConfig: { level: '3' },
|
|
|
- symbolSize: 60,
|
|
|
- symbol: pullImgError,
|
|
|
- draggable: false,
|
|
|
- value: [70, 245],
|
|
|
- },
|
|
|
- // {
|
|
|
- // name: "Kafka ",
|
|
|
- // linkTargetName: "BPM",
|
|
|
- // linkValue: " ",
|
|
|
- // coordConfig: { level: "3" },
|
|
|
- // symbolSize: 60,
|
|
|
- // symbol: kafkaImg,
|
|
|
- // draggable: false,
|
|
|
- // label: {
|
|
|
- // show: false,
|
|
|
- // },
|
|
|
- // value: [120, 140],
|
|
|
- // },
|
|
|
- // {
|
|
|
- // name: "Kafka ",
|
|
|
- // linkTargetName: "航班",
|
|
|
- // linkValue: " ",
|
|
|
- // coordConfig: { level: "3" },
|
|
|
- // symbolSize: 60,
|
|
|
- // symbol: kafkaImg,
|
|
|
- // draggable: false,
|
|
|
- // label: {
|
|
|
- // show: false,
|
|
|
- // },
|
|
|
- // value: [120, 140],
|
|
|
- // },
|
|
|
- // {
|
|
|
- // name: "Kafka ",
|
|
|
- // linkTargetName: "行李投诉",
|
|
|
- // linkValue: " ",
|
|
|
- // coordConfig: { level: "3" },
|
|
|
- // symbolSize: 60,
|
|
|
- // symbol: kafkaImg,
|
|
|
- // draggable: false,
|
|
|
- // label: {
|
|
|
- // show: false,
|
|
|
- // },
|
|
|
- // value: [120, 140],
|
|
|
- // },
|
|
|
- // {
|
|
|
- // name: "Kafka ",
|
|
|
- // linkTargetName: "旅客",
|
|
|
- // linkValue: " ",
|
|
|
- // coordConfig: { level: "3" },
|
|
|
- // symbolSize: 60,
|
|
|
- // symbol: kafkaImg,
|
|
|
- // draggable: false,
|
|
|
- // label: {
|
|
|
- // show: false,
|
|
|
- // },
|
|
|
- // value: [120, 140],
|
|
|
- // },
|
|
|
- {
|
|
|
- name: 'BSM',
|
|
|
- linkTargetName: '解析服务',
|
|
|
- linkValue: ' ',
|
|
|
- coordConfig: { level: '4' },
|
|
|
- symbolSize: 60,
|
|
|
- symbol: defaultImg,
|
|
|
- draggable: false,
|
|
|
- value: [100, 245],
|
|
|
- },
|
|
|
- {
|
|
|
- name: 'BPM',
|
|
|
- linkTargetName: '推送节点',
|
|
|
- linkValue: ' ',
|
|
|
- coordConfig: { level: '4' },
|
|
|
- symbolSize: 60,
|
|
|
- symbol: defaultImg,
|
|
|
- draggable: false,
|
|
|
- value: [100, 200],
|
|
|
- },
|
|
|
- {
|
|
|
- name: '航班',
|
|
|
- linkTargetName: '解析服务',
|
|
|
- linkValue: ' ',
|
|
|
- coordConfig: { level: '4' },
|
|
|
- symbolSize: 30,
|
|
|
- symbol: defaultImg,
|
|
|
- draggable: false,
|
|
|
- value: [160, 120],
|
|
|
- },
|
|
|
- {
|
|
|
- name: '行李投诉',
|
|
|
- linkTargetName: '解析服务',
|
|
|
- linkValue: ' ',
|
|
|
- coordConfig: { level: '4' },
|
|
|
- symbolSize: 30,
|
|
|
- symbol: defaultImg,
|
|
|
- draggable: false,
|
|
|
- value: [160, 90],
|
|
|
- },
|
|
|
- {
|
|
|
- name: '旅客',
|
|
|
- linkTargetName: '解析服务',
|
|
|
- linkValue: ' ',
|
|
|
- coordConfig: { level: '4' },
|
|
|
- symbolSize: 30,
|
|
|
- symbol: defaultImg,
|
|
|
- draggable: false,
|
|
|
- value: [160, 60],
|
|
|
- },
|
|
|
- {
|
|
|
- name: '推送节点',
|
|
|
- linkTargetName: '首都机场BHS ',
|
|
|
- linkValue: ' ',
|
|
|
- coordConfig: { level: '5' },
|
|
|
- symbolSize: 60,
|
|
|
- symbol: pushImg,
|
|
|
- draggable: false,
|
|
|
- value: [200, 160],
|
|
|
- },
|
|
|
- {
|
|
|
- name: '推送节点 ',
|
|
|
- linkTargetName: '星盟SBH ',
|
|
|
- linkValue: ' ',
|
|
|
- coordConfig: { level: '5' },
|
|
|
- symbolSize: 60,
|
|
|
- symbol: pushImg,
|
|
|
- draggable: false,
|
|
|
- label: {
|
|
|
- show: false,
|
|
|
- },
|
|
|
- value: [200, 160],
|
|
|
- },
|
|
|
- {
|
|
|
- name: '推送节点 ',
|
|
|
- linkTargetName: '局方公共平台 ',
|
|
|
- linkValue: ' ',
|
|
|
- coordConfig: { level: '5' },
|
|
|
- symbolSize: 60,
|
|
|
- symbol: pushImg,
|
|
|
- draggable: false,
|
|
|
- label: {
|
|
|
- show: false,
|
|
|
- },
|
|
|
- value: [200, 160],
|
|
|
- },
|
|
|
- {
|
|
|
- name: '推送节点 ',
|
|
|
- linkTargetName: '行李推送事件',
|
|
|
- linkValue: ' ',
|
|
|
- coordConfig: { level: '5' },
|
|
|
- symbolSize: 60,
|
|
|
- symbol: pushImg,
|
|
|
- draggable: false,
|
|
|
- label: {
|
|
|
- show: false,
|
|
|
- },
|
|
|
- value: [200, 160],
|
|
|
- },
|
|
|
- {
|
|
|
- name: '推送节点 ',
|
|
|
- linkTargetName: 'ES',
|
|
|
- linkValue: ' ',
|
|
|
- coordConfig: { level: '5' },
|
|
|
- symbolSize: 60,
|
|
|
- symbol: pushImg,
|
|
|
- draggable: false,
|
|
|
- label: {
|
|
|
- show: false,
|
|
|
- },
|
|
|
- value: [200, 160],
|
|
|
- },
|
|
|
- {
|
|
|
- name: '解析服务',
|
|
|
- linkTargetName: ' Kafka',
|
|
|
- linkValue: ' ',
|
|
|
- coordConfig: { level: '5' },
|
|
|
- symbolSize: 60,
|
|
|
- symbol: pushImg,
|
|
|
- draggable: false,
|
|
|
- value: [200, 100],
|
|
|
- },
|
|
|
- {
|
|
|
- name: '首都机场BHS ',
|
|
|
- linkTargetName: '首都机场BHS ',
|
|
|
- linkValue: ' ',
|
|
|
- coordConfig: { level: '6' },
|
|
|
- symbolSize: 30,
|
|
|
- symbol: defaultImg,
|
|
|
- draggable: false,
|
|
|
- value: [240, 220],
|
|
|
- },
|
|
|
- {
|
|
|
- name: '星盟SBH ',
|
|
|
- linkTargetName: '星盟SBH ',
|
|
|
- linkValue: ' ',
|
|
|
- coordConfig: { level: '6' },
|
|
|
- symbolSize: 30,
|
|
|
- symbol: defaultImg,
|
|
|
- draggable: false,
|
|
|
- value: [240, 190],
|
|
|
- },
|
|
|
- {
|
|
|
- name: '局方公共平台 ',
|
|
|
- linkTargetName: '局方公共平台 ',
|
|
|
- linkValue: ' ',
|
|
|
- coordConfig: { level: '6' },
|
|
|
- symbolSize: 30,
|
|
|
- symbol: defaultImg,
|
|
|
- draggable: false,
|
|
|
- value: [240, 160],
|
|
|
- },
|
|
|
- {
|
|
|
- name: '行李推送事件',
|
|
|
- linkTargetName: '行李推送事件',
|
|
|
- linkValue: ' ',
|
|
|
- coordConfig: { level: '6' },
|
|
|
- symbolSize: 30,
|
|
|
- symbol: defaultImg,
|
|
|
- draggable: false,
|
|
|
- value: [240, 130],
|
|
|
- },
|
|
|
+
|
|
|
+// 表格
|
|
|
+const tableColumns = ref([])
|
|
|
+const tableData = ref<any[]>([])
|
|
|
+const tableBtnGroup = [
|
|
|
{
|
|
|
- name: 'ES',
|
|
|
- linkTargetName: 'ES',
|
|
|
- linkValue: ' ',
|
|
|
- coordConfig: { level: '6' },
|
|
|
- symbolSize: 30,
|
|
|
- symbol: defaultImg,
|
|
|
- draggable: false,
|
|
|
- value: [240, 100],
|
|
|
+ name: '查看',
|
|
|
+ className: 'editBtn',
|
|
|
+ param: 1,
|
|
|
},
|
|
|
{
|
|
|
- name: ' Kafka',
|
|
|
- linkTargetName: '存储服务',
|
|
|
- linkValue: ' ',
|
|
|
- coordConfig: { level: '6' },
|
|
|
- symbolSize: 30,
|
|
|
- symbol: defaultImg,
|
|
|
- draggable: false,
|
|
|
- value: [240, 70],
|
|
|
+ name: '编辑',
|
|
|
+ className: 'editBtn',
|
|
|
+ param: 2,
|
|
|
},
|
|
|
{
|
|
|
- name: '存储服务',
|
|
|
- linkTargetName: 'Mysql',
|
|
|
- linkValue: ' ',
|
|
|
- coordConfig: { level: '7' },
|
|
|
- symbolSize: 60,
|
|
|
- symbol: saveImg,
|
|
|
- draggable: false,
|
|
|
- value: [280, 160],
|
|
|
+ name: '停止',
|
|
|
+ className: 'editBtn',
|
|
|
+ param: 3,
|
|
|
},
|
|
|
{
|
|
|
- name: 'Mysql',
|
|
|
- linkTargetName: 'Mysql',
|
|
|
- linkValue: ' ',
|
|
|
- coordConfig: { level: '8' },
|
|
|
- symbolSize: 60,
|
|
|
- symbol: mysqlImg,
|
|
|
- draggable: false,
|
|
|
- value: [340, 160],
|
|
|
- },
|
|
|
-])
|
|
|
-const options = reactive({
|
|
|
- itemStyle: {
|
|
|
- normal: {
|
|
|
- color: '#67C23A',
|
|
|
- },
|
|
|
- shadowBlur: 0,
|
|
|
- },
|
|
|
- textStyle: {
|
|
|
- color: '#444',
|
|
|
- fontSize: 16,
|
|
|
- fontWeight: 600,
|
|
|
- },
|
|
|
- grid: {
|
|
|
- top: 20,
|
|
|
- bottom: 10,
|
|
|
- left: 0,
|
|
|
- right: 0,
|
|
|
- },
|
|
|
- legend: [
|
|
|
- {
|
|
|
- formatter: function (name) {
|
|
|
- return echarts.format.truncateText(name, 200, '12px', '…', {})
|
|
|
- },
|
|
|
- tooltip: {
|
|
|
- show: true,
|
|
|
- },
|
|
|
- selectedMode: 'false',
|
|
|
- bottom: 20,
|
|
|
- },
|
|
|
- ],
|
|
|
- animationDuration: 500,
|
|
|
- animationEasingUpdate: 'quinticInOut',
|
|
|
- xAxis: {
|
|
|
- show: false,
|
|
|
- type: 'value',
|
|
|
- },
|
|
|
- yAxis: {
|
|
|
- show: false,
|
|
|
- type: 'value',
|
|
|
+ name: '删除',
|
|
|
+ className: 'delBtn',
|
|
|
+ param: 4,
|
|
|
},
|
|
|
- series: [
|
|
|
- {
|
|
|
- type: 'graph',
|
|
|
- coordinateSystem: 'cartesian2d',
|
|
|
- //圆形上面的文字
|
|
|
- label: {
|
|
|
- position: 'bottom',
|
|
|
- show: true,
|
|
|
- fontSize: 12,
|
|
|
- },
|
|
|
- itemStyle: {
|
|
|
- color: '#409eff',
|
|
|
+]
|
|
|
+const btnClickHandler = (rowIndex: number, row: Object, param: number) => {}
|
|
|
|
|
|
- shadowBlur: 0,
|
|
|
- },
|
|
|
- lineStyle: {
|
|
|
- width: 0,
|
|
|
- shadowColor: 'none',
|
|
|
- color: '#ff0000',
|
|
|
- },
|
|
|
- data: <any[]>[],
|
|
|
- links: <any[]>[],
|
|
|
- },
|
|
|
- ],
|
|
|
-})
|
|
|
-const getCoordDataList = (): any[] => {
|
|
|
- let coorDataDict = {}
|
|
|
- let defaultConfig = {
|
|
|
- type: 'lines', //块1,2...n到节点A,B...N
|
|
|
- coordinateSystem: 'cartesian2d',
|
|
|
- // animationDelay: 10000,
|
|
|
- z: 1,
|
|
|
- effect: {
|
|
|
- show: true,
|
|
|
- smooth: true,
|
|
|
- trailLength: 0,
|
|
|
- symbol: 'arrow',
|
|
|
- color: '#92A7D5',
|
|
|
- symbolSize: 10,
|
|
|
- period: 3,
|
|
|
- delay: 1500,
|
|
|
- loop: true,
|
|
|
- },
|
|
|
- lineStyle: {
|
|
|
- normal: {
|
|
|
- curveness: 0,
|
|
|
- color: '#92A7D5',
|
|
|
- width: 1,
|
|
|
- },
|
|
|
- },
|
|
|
- data: [],
|
|
|
- }
|
|
|
- nodeDataList.value.map(item => {
|
|
|
- if (item.coordConfig !== undefined) {
|
|
|
- if (!(item.coordConfig.level in coorDataDict)) {
|
|
|
- let coorConfig = JSON.parse(JSON.stringify(defaultConfig))
|
|
|
- if (item.coordConfig.lineStyle !== undefined) {
|
|
|
- coorConfig.lineStyle = item.coordConfig.lineStyle
|
|
|
- }
|
|
|
- if (item.coordConfig.effect !== undefined) {
|
|
|
- coorConfig.effect = item.coordConfig.effect
|
|
|
- }
|
|
|
- coorDataDict[item.coordConfig.level] = coorConfig
|
|
|
- }
|
|
|
-
|
|
|
- let coordData = [
|
|
|
- item.value,
|
|
|
- nodeDataList.value.filter(i => i.name == item.linkTargetName)[0]
|
|
|
- .value ||
|
|
|
- nodeDataList.value.filter(i => i.name == item.linkTargetName)[1]
|
|
|
- .value,
|
|
|
- ]
|
|
|
- coorDataDict[item.coordConfig.level].data.push({
|
|
|
- coords: coordData,
|
|
|
- })
|
|
|
- if (item.coordConfig.bilateral) {
|
|
|
- coorDataDict[item.coordConfig.level].data.push({
|
|
|
- coords: coordData.reverse(),
|
|
|
- })
|
|
|
- }
|
|
|
- }
|
|
|
- })
|
|
|
- return Object.values(coorDataDict)
|
|
|
-}
|
|
|
-nodeDataList.value.forEach(item => {
|
|
|
- datas.value.push({
|
|
|
- source: item.name,
|
|
|
- value: item.linkValue,
|
|
|
- target: item.linkTargetName,
|
|
|
- })
|
|
|
-})
|
|
|
-const resizeHandler = () => {
|
|
|
- myChart.value?.resize()
|
|
|
+// 新增/删除-弹窗
|
|
|
+const serviceDialogVisible = ref(false) // 弹窗开关
|
|
|
+const type = ref('del') // 弹窗类型是否删除
|
|
|
+const serviceDialogWidth = computed(() =>
|
|
|
+ type.value === 'del' ? '600px' : '878px'
|
|
|
+)
|
|
|
+const delName = ref('') // 删除对象名
|
|
|
+const msgTitle = '新增服务管理' // 新增弹窗-标题
|
|
|
+const addServiceHandler = () => {
|
|
|
+ type.value = 'add'
|
|
|
+ serviceDialogVisible.value = true
|
|
|
}
|
|
|
-onMounted(() => {
|
|
|
- options.series[0].data = nodeDataList.value
|
|
|
- options.series[0].links = datas.value
|
|
|
- options.series.push(...getCoordDataList())
|
|
|
- myChart.value = echarts.init(chartDom.value as HTMLDivElement)
|
|
|
- myChart.value.setOption(options as echarts.EChartOption, true)
|
|
|
- window.addEventListener('resize', _.debounce(resizeHandler, resizeDelay))
|
|
|
-})
|
|
|
-// // 事件
|
|
|
-// myChart.on("click", (params) => {
|
|
|
-// console.log(params);
|
|
|
-// });
|
|
|
+const delCancelHandler = () => {}
|
|
|
|
|
|
-//新增
|
|
|
-const addJournalForm = () => {
|
|
|
- msgTitle.value = '查看日志'
|
|
|
- flag.value = true
|
|
|
-}
|
|
|
-//取消
|
|
|
-const resetForm = () => {
|
|
|
- flag.value = false
|
|
|
+// 新增服务-表单
|
|
|
+const serviceForm = reactive({
|
|
|
+ serviceName: '',
|
|
|
+ serviceOutputID: null,
|
|
|
+ serviceType: null,
|
|
|
+ dataSourceID: null,
|
|
|
+ sourceObjectName: '',
|
|
|
+ lifeCycleCol: '',
|
|
|
+ isAsynchronous: 1,
|
|
|
+ threads: null,
|
|
|
+ datatype: null,
|
|
|
+ computingMethod: '',
|
|
|
+ validationExpression: '',
|
|
|
+ startTime: null,
|
|
|
+ stopTime: null,
|
|
|
+ retryCount: null,
|
|
|
+ loopCount: null,
|
|
|
+ frequencyCount: null,
|
|
|
+ frequencyUnit: null,
|
|
|
+ serviceDescribe: '',
|
|
|
+ logDataSourceID: null,
|
|
|
+ logList: '',
|
|
|
+})
|
|
|
+const serviceFormRules = {
|
|
|
+ serviceName: [
|
|
|
+ {
|
|
|
+ required: true,
|
|
|
+ message: '请输入服务名称',
|
|
|
+ trigger: ['change', 'blur'],
|
|
|
+ },
|
|
|
+ ],
|
|
|
}
|
|
|
+const dataSourceList = ref<DataSource[]>([])
|
|
|
|
|
|
-const getSearchData = (text: string) => {
|
|
|
- console.log(text)
|
|
|
+// 新增数据来源-弹窗
|
|
|
+const dataSourceDialogVisible = ref(false)
|
|
|
+const addDataSourceHandler = () => {}
|
|
|
+// 新增数据来源-表单
|
|
|
+</script>
|
|
|
+<style lang="scss" scoped>
|
|
|
+.app-containers {
|
|
|
+ height: calc(100vh - 180px);
|
|
|
}
|
|
|
-const clearSearchData = () => {}
|
|
|
|
|
|
-type TableColumn = {
|
|
|
- label: string
|
|
|
- key: string
|
|
|
+.icon {
|
|
|
+ width: 14px;
|
|
|
+ height: 14px;
|
|
|
+ background: #2d67e3;
|
|
|
+ border-radius: 2px;
|
|
|
+ display: inline-block;
|
|
|
+ vertical-align: middle;
|
|
|
+ margin-right: 10px;
|
|
|
+ position: relative;
|
|
|
+ top: -2px;
|
|
|
}
|
|
|
-let page = 0
|
|
|
-const loading = ref(false)
|
|
|
-const noMore = ref(false)
|
|
|
-const loadDisabled = computed(() => loading.value || noMore.value)
|
|
|
-//表头
|
|
|
-const tableColumns = ref<TableColumn[]>([])
|
|
|
-//列表
|
|
|
-const tableData = ref<any[]>([])
|
|
|
-const resetTable = () => {
|
|
|
- page = 0
|
|
|
- loading.value = false
|
|
|
- noMore.value = false
|
|
|
- tableData.value = []
|
|
|
+.status0,
|
|
|
+.status2 {
|
|
|
+ margin-right: 28px;
|
|
|
+ position: relative;
|
|
|
+ top: 5px;
|
|
|
}
|
|
|
-const getTableData = async () => {
|
|
|
- try {
|
|
|
- loading.value = true
|
|
|
- const {
|
|
|
- code,
|
|
|
- returnData: { columnSet, listValues },
|
|
|
- } = await Query({
|
|
|
- id: DATACONTENT_ID.sysServiceTopTable,
|
|
|
- needPage: ++page,
|
|
|
- dataContent: [serviceID, timeStart.value, timeEnd.value],
|
|
|
- })
|
|
|
- if (Number(code) === 0) {
|
|
|
- tableColumns.value = columnSet.map(column => ({
|
|
|
- label: column.columnLabel,
|
|
|
- key: column.columnName,
|
|
|
- ...column,
|
|
|
- }))
|
|
|
- if (listValues.length === 0) {
|
|
|
- page--
|
|
|
- noMore.value = true
|
|
|
- }
|
|
|
- tableData.value.push(...listValues)
|
|
|
- loading.value = false
|
|
|
- } else {
|
|
|
- throw new Error('获取数据失败')
|
|
|
- }
|
|
|
- } catch (error: any) {
|
|
|
- page--
|
|
|
- loading.value = false
|
|
|
- ElMessage.error(error.message)
|
|
|
+.status1 {
|
|
|
+ position: relative;
|
|
|
+ top: 5px;
|
|
|
+ .icon {
|
|
|
+ background-color: #afb4bf;
|
|
|
}
|
|
|
}
|
|
|
-const load = () => {
|
|
|
- if (loadDisabled.value) {
|
|
|
- return
|
|
|
+.status2 {
|
|
|
+ .icon {
|
|
|
+ background-color: #eb2f3b;
|
|
|
}
|
|
|
- getTableData()
|
|
|
}
|
|
|
|
|
|
-const getToday = () => {
|
|
|
- const now = new Date()
|
|
|
- const year = now.getFullYear()
|
|
|
- const month = now.getMonth() + 1
|
|
|
- const date = now.getDate()
|
|
|
- return `${year}-${month}-${date}`
|
|
|
-}
|
|
|
-const today = getToday()
|
|
|
-const timeStart = ref(`${today} 00:00:00`)
|
|
|
-const timeEnd = ref(`${today} 23:59:59`)
|
|
|
-const timeSelectHandler = () => {
|
|
|
- const startTime = new Date(timeStart.value).getTime()
|
|
|
- const endTime = new Date(timeEnd.value).getTime()
|
|
|
- if (startTime > endTime) {
|
|
|
- ElMessage.error('开始时间不能大于结束时间')
|
|
|
- timeEnd.value = ''
|
|
|
- return
|
|
|
- }
|
|
|
- if (startTime < endTime - (3 * 24 * 60 * 60 - 1) * 1000) {
|
|
|
- ElMessage.error('间隔时间不能大于三天')
|
|
|
- timeEnd.value = ''
|
|
|
- return
|
|
|
- }
|
|
|
- resetTable()
|
|
|
- getTableData()
|
|
|
-}
|
|
|
-
|
|
|
-type progressItem = {
|
|
|
- logType: string
|
|
|
- resultCode: string
|
|
|
- logTime: string
|
|
|
- resultDetails?: string
|
|
|
-}
|
|
|
-const progressList = ref<progressItem[]>([])
|
|
|
-progressList.value.push(
|
|
|
- ...Array.from({ length: 3 }).map(() => ({
|
|
|
- logType: '更新 Github 模板',
|
|
|
- resultCode: '989665554',
|
|
|
- logTime: '2022-4-26 15:48:55',
|
|
|
- }))
|
|
|
-)
|
|
|
-const rowClickHandler = (row, column, event) => {
|
|
|
- progressList.value = []
|
|
|
- if (row.logObject) {
|
|
|
- tableData.value.forEach(record => {
|
|
|
- if (record.logObject == row.logObject) {
|
|
|
- progressList.value.push(record)
|
|
|
+.service-form:deep {
|
|
|
+ display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ > .el-row {
|
|
|
+ flex-wrap: wrap;
|
|
|
+ > .el-col .el-form-item {
|
|
|
+ margin-bottom: 20px;
|
|
|
+ .el-form-item__label {
|
|
|
+ padding-right: 16px;
|
|
|
}
|
|
|
- })
|
|
|
- } else {
|
|
|
- progressList.value.push(row)
|
|
|
+ .el-input,
|
|
|
+ .el-select {
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+ .el-input__inner,
|
|
|
+ .el-textarea__inner {
|
|
|
+ padding-left: 8px;
|
|
|
+ }
|
|
|
+ .el-date-editor {
|
|
|
+ .el-input__prefix,
|
|
|
+ .el-input__suffix {
|
|
|
+ right: 5px;
|
|
|
+ left: unset;
|
|
|
+ font-size: 16px;
|
|
|
+ color: #101116;
|
|
|
+ .el-input__suffix-inner {
|
|
|
+ font-size: 16px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ &.value-not-null:hover .el-input__prefix {
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
-}
|
|
|
-</script>
|
|
|
-<style lang="scss" scoped>
|
|
|
-.integration__cont__map__cont {
|
|
|
- width: 100%;
|
|
|
- height: 100%;
|
|
|
- .header_name {
|
|
|
- font-size: 16px;
|
|
|
- font-family: Microsoft YaHei;
|
|
|
- font-weight: bold;
|
|
|
- color: #303133;
|
|
|
+ label,
|
|
|
+ span,
|
|
|
+ button,
|
|
|
+ input,
|
|
|
+ optgroup,
|
|
|
+ select,
|
|
|
+ textarea {
|
|
|
+ font-family: Helvetica, Microsoft YaHei;
|
|
|
+ font-size: 14px;
|
|
|
+ font-weight: 400;
|
|
|
}
|
|
|
- .integration__cont {
|
|
|
- background: #ffffff;
|
|
|
- border-radius: 4px;
|
|
|
- padding: 35px;
|
|
|
- width: 100%;
|
|
|
- height: calc(100vh - 177px);
|
|
|
+ label {
|
|
|
+ color: #303133;
|
|
|
}
|
|
|
- .typestart {
|
|
|
- height: 100%;
|
|
|
- .name {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- }
|
|
|
- .name:nth-child(2) {
|
|
|
- margin-left: 24px;
|
|
|
- }
|
|
|
- .log {
|
|
|
- width: 14px;
|
|
|
- height: 14px;
|
|
|
- background: #041741;
|
|
|
- border-radius: 2px;
|
|
|
- margin-right: 12px;
|
|
|
+ input {
|
|
|
+ color: #101116;
|
|
|
+ &::-webkit-outer-spin-button,
|
|
|
+ &::-webkit-inner-spin-button {
|
|
|
+ -webkit-appearance: none !important;
|
|
|
+ &[type='number'] {
|
|
|
+ -moz-appearance: textfield !important;
|
|
|
+ }
|
|
|
}
|
|
|
- .log1 {
|
|
|
- width: 14px;
|
|
|
- height: 14px;
|
|
|
- background: #e32d2d;
|
|
|
- border-radius: 2px;
|
|
|
- margin-right: 12px;
|
|
|
+ .el-radio {
|
|
|
+ font-weight: 400;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
-.interfaceLog_content {
|
|
|
- margin-top: 24px;
|
|
|
- // height: 452px;
|
|
|
- // overflow: hidden;
|
|
|
-}
|
|
|
</style>
|