Blame view

ant-design-vue-jeecg/src/views/system/monitor/modules/ApiLogForm.vue 6.33 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
            </a-form-model-item>
          </a-col>
          <a-col :span="24">
17
18
            <a-form-model-item label="请求方名称" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="requestFrom">
              <a-input v-model="model.requestFrom" placeholder="请输入请求方名称"></a-input>
19
20
21
            </a-form-model-item>
          </a-col>
          <a-col :span="24">
22
23
24
25
26
27
28
29
30
31
32
33
            <a-form-model-item label="请求方IP" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="ip">
              <a-input v-model="model.ip" placeholder="请输入请求方IP"></a-input>
            </a-form-model-item>
          </a-col>
          <a-col :span="24">
            <a-form-model-item label="请求地址" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="url">
              <a-input v-model="model.url" placeholder="请输入请求地址"></a-input>
            </a-form-model-item>
          </a-col>
          <a-col :span="24">
            <a-form-model-item label="请求内容" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="requestBody">
              <a-input v-model="model.requestBody" 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="responseBy">
肖超群 authored
38
              <a-input v-model="model.responseBy" placeholder="请输入响应方名称"></a-input>
39
40
41
            </a-form-model-item>
          </a-col>
          <a-col :span="24">
42
43
            <a-form-model-item label="响应内容" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="responseBody">
              <a-input v-model="model.responseBody" placeholder="请输入响应内容"></a-input>
44
45
46
47
            </a-form-model-item>
          </a-col>
          <a-col :span="24">
            <a-form-model-item label="请求时间" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="requestTime">
肖超群 authored
48
49
              <j-date placeholder="请选择请求时间" v-model="model.requestTime" :show-time="true"
                      date-format="YYYY-MM-DD HH:mm:ss" style="width: 100%"/>
50
51
52
53
            </a-form-model-item>
          </a-col>
          <a-col :span="24">
            <a-form-model-item label="响应时间" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="responseTime">
肖超群 authored
54
55
              <j-date placeholder="请选择响应时间" v-model="model.responseTime" :show-time="true"
                      date-format="YYYY-MM-DD HH:mm:ss" style="width: 100%"/>
56
57
58
59
            </a-form-model-item>
          </a-col>
          <a-col :span="24">
            <a-form-model-item label="响应耗时(毫秒)" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="duration">
肖超群 authored
60
              <a-input v-model="model.duration" placeholder="请输入响应耗时(毫秒)"></a-input>
61
62
63
64
            </a-form-model-item>
          </a-col>
          <a-col :span="24">
            <a-form-model-item label="httpCode" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="httpCode">
肖超群 authored
65
              <a-input-number v-model="model.httpCode" placeholder="请输入httpCode" style="width: 100%"/>
66
67
68
69
            </a-form-model-item>
          </a-col>
          <a-col :span="24">
            <a-form-model-item label="业务响应码" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="retCode">
肖超群 authored
70
              <a-input-number v-model="model.retCode" placeholder="请输入业务响应码" style="width: 100%"/>
71
72
73
74
            </a-form-model-item>
          </a-col>
          <a-col :span="24">
            <a-form-model-item label="异常堆栈信息" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="exception">
肖超群 authored
75
              <a-input v-model="model.exception" placeholder="请输入异常堆栈信息"></a-input>
76
77
78
79
80
81
82
83
84
85
            </a-form-model-item>
          </a-col>
        </a-row>
      </a-form-model>
    </j-form-container>
  </a-spin>
</template>

<script>
肖超群 authored
86
87
import {httpAction, getAction} from '@/api/manage'
import {validateDuplicateValue} from '@/utils/util'
88
肖超群 authored
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
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"
117
      }
肖超群 authored
118
119
120
121
122
    }
  },
  computed: {
    formDisabled() {
      return this.disabled
123
    },
肖超群 authored
124
125
126
127
128
129
130
131
  },
  created() {
    //备份model原始值
    this.modelDefault = JSON.parse(JSON.stringify(this.model));
  },
  methods: {
    add() {
      this.edit(this.modelDefault);
132
    },
肖超群 authored
133
134
135
    edit(record) {
      this.model = Object.assign({}, record);
      this.visible = true;
136
    },
肖超群 authored
137
138
139
140
141
142
143
144
145
146
147
148
149
150
    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';
151
          }
肖超群 authored
152
153
154
155
156
157
158
159
160
161
162
          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
163
肖超群 authored
164
165
      })
    },
166
  }
肖超群 authored
167
}
168
</script>