|
@@ -102,6 +102,7 @@ export default {
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
+ // searchTitle:'接口',
|
|
|
showDialog: false,
|
|
|
title: "新增",
|
|
|
rowObj: {},
|
|
@@ -158,7 +159,7 @@ export default {
|
|
|
tableHeaderTitle: "项目列表",
|
|
|
tabActive: 1,
|
|
|
tabs: [
|
|
|
- { label: "接口箭头监控", value: 1, active: true },
|
|
|
+ { label: "接口监听监控", value: 1, active: true },
|
|
|
{
|
|
|
label: "kafka消费生产监控",
|
|
|
value: 2,
|
|
@@ -194,46 +195,66 @@ export default {
|
|
|
|
|
|
headerFormData: [
|
|
|
{
|
|
|
- label: "关键字",
|
|
|
- fieldName: "dataManner",
|
|
|
+ label: "接口",
|
|
|
+ fieldName: "url",
|
|
|
type: "input",
|
|
|
value: "",
|
|
|
- placeholder: "请输入关键字"
|
|
|
+ placeholder: "请输入接口"
|
|
|
// isRequired: true,
|
|
|
},
|
|
|
+ ],
|
|
|
+ headerFormData1: [
|
|
|
{
|
|
|
- fieldName: "status",
|
|
|
- label: "状态",
|
|
|
- type: "select",
|
|
|
- trigger: "change",
|
|
|
+ label: "接口",
|
|
|
+ fieldName: "url",
|
|
|
+ type: "input",
|
|
|
value: "",
|
|
|
- isRequired: false,
|
|
|
- options: [
|
|
|
- { value: 1, label: "正常" },
|
|
|
- { value: 0, label: "停用" }
|
|
|
- ]
|
|
|
- }
|
|
|
- // {
|
|
|
- // label: "用户状态",
|
|
|
- // fieldName: "gender",
|
|
|
- // type: "select",
|
|
|
- // value: "",
|
|
|
- // placeholder: "请选择用户状态",
|
|
|
- // isRequired: true,
|
|
|
- // options: [
|
|
|
- // { label: "男", value: "male" },
|
|
|
- // { label: "女", value: "female" },
|
|
|
- // ],
|
|
|
- // },
|
|
|
- // {
|
|
|
- // label: "生日",
|
|
|
- // fieldName: "birthdate",
|
|
|
- // type: "date",
|
|
|
- // value: "",
|
|
|
- // placeholder: "请选择生日",
|
|
|
- // isRequired: false,
|
|
|
- // },
|
|
|
- ]
|
|
|
+ placeholder: "请输入接口"
|
|
|
+ // isRequired: true,
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ headerFormData2: [
|
|
|
+ {
|
|
|
+ label: "主题Topic名称",
|
|
|
+ fieldName: "tabName",
|
|
|
+ type: "input",
|
|
|
+ value: "",
|
|
|
+ placeholder: "请输入主题Topic名称"
|
|
|
+ // isRequired: true,
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ headerFormData3: [
|
|
|
+ {
|
|
|
+ label: "项目名称",
|
|
|
+ fieldName: "systemName",
|
|
|
+ type: "input",
|
|
|
+ value: "",
|
|
|
+ placeholder: "请输入项目名称"
|
|
|
+ // isRequired: true,
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ headerFormData4: [
|
|
|
+ {
|
|
|
+ label: "文件夹名称",
|
|
|
+ fieldName: "filepath",
|
|
|
+ type: "input",
|
|
|
+ value: "",
|
|
|
+ placeholder: "请输入文件夹名称"
|
|
|
+ // isRequired: true,
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ headerFormData6: [
|
|
|
+ {
|
|
|
+ label: "心跳监测项目",
|
|
|
+ fieldName: "url",
|
|
|
+ type: "input",
|
|
|
+ value: "",
|
|
|
+ placeholder: "请输入心跳监测项目"
|
|
|
+ // isRequired: true,
|
|
|
+ },
|
|
|
+ ],
|
|
|
+
|
|
|
+
|
|
|
};
|
|
|
},
|
|
|
|