Blame view

ant-design-vue-jeecg/src/views/system/monitor/modules/ApiLogForm.vue 6.92 KB
1
2
3
4
5
6
7
<template>
  <a-spin :spinning="confirmLoading">
    <j-form-container :disabled="formDisabled">
      <a-form-model ref="form" :model="model" :rules="validatorRules" slot="detail">
        <a-row>
          <a-col :span="24">
            <a-form-model-item label="接口名称" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="apiName">
肖超群 authored
8
              <a-input v-model="model.apiName" placeholder="请输入接口名称"></a-input>
9
10
11
12
            </a-form-model-item>
          </a-col>
          <a-col :span="24">
            <a-form-model-item label="请求类型" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="apiMethod">
肖超群 authored
13
              <a-input v-model="model.apiMethod" placeholder="请输入请求类型"></a-input>
14
15
16
17
            </a-form-model-item>
          </a-col>
          <a-col :span="24">
            <a-form-model-item label="请求方地址" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="ip">
肖超群 authored
18
              <a-input v-model="model.ip" placeholder="请输入请求方地址"></a-input>
19
20
21
22
            </a-form-model-item>
          </a-col>
          <a-col :span="24">
            <a-form-model-item label="请求方名称" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="responseFrom">
肖超群 authored
23
              <a-input v-model="model.responseFrom" placeholder="请输入请求方名称"></a-input>
24
25
26
27
            </a-form-model-item>
          </a-col>
          <a-col :span="24">
            <a-form-model-item label="响应方名称" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="responseBy">
肖超群 authored
28
              <a-input v-model="model.responseBy" placeholder="请输入响应方名称"></a-input>
29
30
31
32
            </a-form-model-item>
          </a-col>
          <a-col :span="24">
            <a-form-model-item label="请求地址" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="url">
肖超群 authored
33
              <a-input v-model="model.url" placeholder="请输入请求地址"></a-input>
34
35
36
37
            </a-form-model-item>
          </a-col>
          <a-col :span="24">
            <a-form-model-item label="请求时间" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="requestTime">
肖超群 authored
38
39
              <j-date placeholder="请选择请求时间" v-model="model.requestTime" :show-time="true"
                      date-format="YYYY-MM-DD HH:mm:ss" style="width: 100%"/>
40
41
42
43
            </a-form-model-item>
          </a-col>
          <a-col :span="24">
            <a-form-model-item label="响应时间" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="responseTime">
肖超群 authored
44
45
              <j-date placeholder="请选择响应时间" v-model="model.responseTime" :show-time="true"
                      date-format="YYYY-MM-DD HH:mm:ss" style="width: 100%"/>
46
47
48
49
            </a-form-model-item>
          </a-col>
          <a-col :span="24">
            <a-form-model-item label="请求头" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="requestHeader">
肖超群 authored
50
              <a-input v-model="model.requestHeader" placeholder="请输入请求头"></a-input>
51
52
53
54
            </a-form-model-item>
          </a-col>
          <a-col :span="24">
            <a-form-model-item label="请求内容" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="requestBody">
肖超群 authored
55
              <a-input v-model="model.requestBody" placeholder="请输入请求内容"></a-input>
56
57
58
59
            </a-form-model-item>
          </a-col>
          <a-col :span="24">
            <a-form-model-item label="响应头" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="responseHeader">
肖超群 authored
60
              <a-input v-model="model.responseHeader" placeholder="请输入响应头"></a-input>
61
62
63
64
            </a-form-model-item>
          </a-col>
          <a-col :span="24">
            <a-form-model-item label="响应内容" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="responseBody">
肖超群 authored
65
              <a-input v-model="model.responseBody" placeholder="请输入响应内容"></a-input>
66
67
68
69
            </a-form-model-item>
          </a-col>
          <a-col :span="24">
            <a-form-model-item label="响应耗时(毫秒)" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="duration">
肖超群 authored
70
              <a-input v-model="model.duration" placeholder="请输入响应耗时(毫秒)"></a-input>
71
72
73
74
            </a-form-model-item>
          </a-col>
          <a-col :span="24">
            <a-form-model-item label="httpCode" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="httpCode">
肖超群 authored
75
              <a-input-number v-model="model.httpCode" placeholder="请输入httpCode" style="width: 100%"/>
76
77
78
79
            </a-form-model-item>
          </a-col>
          <a-col :span="24">
            <a-form-model-item label="业务响应码" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="retCode">
肖超群 authored
80
              <a-input-number v-model="model.retCode" placeholder="请输入业务响应码" style="width: 100%"/>
81
82
83
84
            </a-form-model-item>
          </a-col>
          <a-col :span="24">
            <a-form-model-item label="异常堆栈信息" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="exception">
肖超群 authored
85
              <a-input v-model="model.exception" placeholder="请输入异常堆栈信息"></a-input>
86
87
88
89
90
91
92
93
94
95
            </a-form-model-item>
          </a-col>
        </a-row>
      </a-form-model>
    </j-form-container>
  </a-spin>
</template>

<script>
肖超群 authored
96
97
import {httpAction, getAction} from '@/api/manage'
import {validateDuplicateValue} from '@/utils/util'
98
肖超群 authored
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
export default {
  name: 'ApiLogForm',
  components: {},
  props: {
    //表单禁用
    disabled: {
      type: Boolean,
      default: false,
      required: false
    }
  },
  data() {
    return {
      model: {},
      labelCol: {
        xs: {span: 24},
        sm: {span: 5},
      },
      wrapperCol: {
        xs: {span: 24},
        sm: {span: 16},
      },
      confirmLoading: false,
      validatorRules: {},
      url: {
        add: "/monitor/apiLog/add",
        edit: "/monitor/apiLog/edit",
        queryById: "/monitor/apiLog/queryById"
127
      }
肖超群 authored
128
129
130
131
132
    }
  },
  computed: {
    formDisabled() {
      return this.disabled
133
    },
肖超群 authored
134
135
136
137
138
139
140
141
  },
  created() {
    //备份model原始值
    this.modelDefault = JSON.parse(JSON.stringify(this.model));
  },
  methods: {
    add() {
      this.edit(this.modelDefault);
142
    },
肖超群 authored
143
144
145
    edit(record) {
      this.model = Object.assign({}, record);
      this.visible = true;
146
    },
肖超群 authored
147
148
149
150
151
152
153
154
155
156
157
158
159
160
    submitForm() {
      const that = this;
      // 触发表单验证
      this.$refs.form.validate(valid => {
        if (valid) {
          that.confirmLoading = true;
          let httpurl = '';
          let method = '';
          if (!this.model.id) {
            httpurl += this.url.add;
            method = 'post';
          } else {
            httpurl += this.url.edit;
            method = 'put';
161
          }
肖超群 authored
162
163
164
165
166
167
168
169
170
171
172
          httpAction(httpurl, this.model, method).then((res) => {
            if (res.success) {
              that.$message.success(res.message);
              that.$emit('ok');
            } else {
              that.$message.warning(res.message);
            }
          }).finally(() => {
            that.confirmLoading = false;
          })
        }
易文鹏 authored
173
肖超群 authored
174
175
      })
    },
176
  }
肖超群 authored
177
}
178
</script>