MTR探测策略/MTRAgent管理模块
1、MTRAgent管理模块 2、MTR探测策略 3、修改流量图默认显示时间 4、优化并修改bug
This commit is contained in:
@@ -162,6 +162,7 @@
|
||||
:format="formVal.format || 'yyyy-MM-dd HH:mm:ss'"
|
||||
:value-format="formVal.valueFormat || 'yyyy-MM-dd HH:mm:ss'"
|
||||
@[formVal.eventName]="(val) => handleChange(key,val,formVal)"
|
||||
:picker-options="formVal.pickerOptions || {}"
|
||||
></el-date-picker>
|
||||
</template>
|
||||
|
||||
@@ -242,18 +243,20 @@
|
||||
</el-row>
|
||||
</template>
|
||||
<!-- 表单操作按钮 -->
|
||||
<el-row v-if="config && config['buttonGroup'] || !config['buttonGroup']" style="float: right;">
|
||||
<template v-if="config['buttonGroup'] && config['buttonGroup'].length > 0">
|
||||
<el-form-item>
|
||||
<el-button v-for="item of config['buttonGroup']" :type="item.type" @click="fnEventChange(item)">{{item.title}}</el-button>
|
||||
</el-form-item>
|
||||
</template>
|
||||
<template v-else-if="!config['buttonGroup'] || config['buttonGroup'] && config['buttonGroup'].length !== 0">
|
||||
<el-form-item>
|
||||
<el-button type="primary" @click="submitForm('submit')">提交</el-button>
|
||||
<el-button @click="handleReset">返回</el-button>
|
||||
</el-form-item>
|
||||
</template>
|
||||
<el-row v-if="config && config['buttonGroup'] || !config['buttonGroup']">
|
||||
<div style="float: right;margin-right: 20px;">
|
||||
<template v-if="config['buttonGroup'] && config['buttonGroup'].length > 0">
|
||||
<el-form-item>
|
||||
<el-button v-for="item of config['buttonGroup']" :type="item.type" @click="fnEventChange(item)">{{item.title}}</el-button>
|
||||
</el-form-item>
|
||||
</template>
|
||||
<template v-else-if="!config['buttonGroup'] || config['buttonGroup'] && config['buttonGroup'].length !== 0">
|
||||
<el-form-item>
|
||||
<el-button type="primary" @click="submitForm('submit')">提交</el-button>
|
||||
<el-button @click="handleReset">返回</el-button>
|
||||
</el-form-item>
|
||||
</template>
|
||||
</div>
|
||||
</el-row>
|
||||
</el-form>
|
||||
</div>
|
||||
|
||||
@@ -442,7 +442,7 @@
|
||||
<style>
|
||||
.my-custom-tooltip {
|
||||
box-sizing: border-box !important;
|
||||
max-height: 500px !important; /* 设置最大高度 */
|
||||
max-height: 300px !important; /* 设置最大高度 */
|
||||
overflow-y: auto !important; /* 内容超出时显示垂直滚动条 */
|
||||
line-height: 1.5 !important; /* 设置行高,提升可读性 */
|
||||
padding: 8px 12px !important; /* 设置内边距 */
|
||||
|
||||
Reference in New Issue
Block a user