ApiLogList.vue 13.8 KB
<template>
  <a-card :bordered="false">
    <!-- 查询区域 -->
    <div class="table-page-search-wrapper">
      <a-form layout="inline" @keyup.enter.native="searchQuery">
        <a-row :gutter="24">
          <a-col :xl='6' :lg='7' :md='8' :sm='24'>
            <a-form-item :label="$t('log.apiName')">
              <a-select show-search :placeholder="$t('log.inputApiName')" option-filter-prop='children' v-model='queryParam.apiName'>
                <a-select-option v-for='name in apiNameList' :key='name' :value='name'>
                  {{ name }}
                </a-select-option>
              </a-select>
            </a-form-item>
          </a-col>
          <a-col :xl="6" :lg="7" :md="8" :sm="24">
            <a-form-item :label="$t('log.requestFrom')">
              <a-input :placeholder="$t('log.inputRequestFrom')" v-model="queryParam.requestFrom"></a-input>
            </a-form-item>
          </a-col>
          <a-col :xl="6" :lg="7" :md="8" :sm="24">
            <a-form-item :label="$t('log.responseBy')">
              <a-input :placeholder="$t('log.inputResponseBy')" v-model="queryParam.responseBy"></a-input>
            </a-form-item>
          </a-col>
          <a-col :xl="6" :lg="7" :md="8" :sm="24">
            <a-form-item :label="$t('log.url')">
              <a-input :placeholder="$t('log.inputUrl')" v-model="queryParam.url"></a-input>
            </a-form-item>
          </a-col>
          <a-col :xl="6" :lg="7" :md="8" :sm="24">
            <a-form-item :label="$t('log.requestBody')">
              <j-input :placeholder="$t('log.inputRequestBody')" v-model="queryParam.requestBody"></j-input>
            </a-form-item>
          </a-col>
          <a-col :xl="6" :lg="7" :md="8" :sm="24">
            <a-form-item :label="$t('log.responseBody')">
              <j-input :placeholder="$t('log.inputResponseBody')" v-model="queryParam.responseBody"></j-input>
            </a-form-item>
          </a-col>
          <a-col :xl="12" :lg="14" :md="16" :sm="24">
            <a-form-item :label="$t('log.requestTime')">
              <j-date
                :show-time="true"
                date-format="YYYY-MM-DD HH:mm:ss"
                :placeholder="$t('log.inputRequestTime_begin')"
                class="query-group-cust"
                v-model="queryParam.requestTime_begin"
              />
              <span class="query-group-split-cust"></span>
              <j-date
                :show-time="true"
                date-format="YYYY-MM-DD HH:mm:ss"
                :placeholder="$t('log.inputRequestTime_end')"
                class="query-group-cust"
                v-model="queryParam.requestTime_end"
              />
            </a-form-item>
          </a-col>
          <a-col :xl="6" :lg="7" :md="8" :sm="24">
            <a-form-item :label="$t('log.retCode')">
              <a-input :placeholder="$t('log.inputRetCode')" v-model="queryParam.retCode"></a-input>
            </a-form-item>
          </a-col>
          <a-col :xl="6" :lg="7" :md="8" :sm="24">
            <a-form-item :label="$t('log.httpCode')">
              <a-input :placeholder="$t('log.inputHttpCode')" v-model="queryParam.httpCode"></a-input>
            </a-form-item>
          </a-col>
          <a-col :xl="6" :lg="7" :md="8" :sm="24">
            <a-form-item :label="$t('log.duration_begin')">
              <a-input :placeholder="$t('log.inputDuration_begin')" v-model="queryParam.duration_begin"></a-input>
            </a-form-item>
          </a-col>
          <a-col :xl="6" :lg="7" :md="8" :sm="24">
            <span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
              <a-button type="primary" @click="searchQuery" icon="search">{{ $t('button.search') }}</a-button>
              <a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">{{ $t('button.reset') }}</a-button>
            </span>
          </a-col>
        </a-row>
      </a-form>
    </div>
    <!-- 查询区域-END -->

    <!-- 操作按钮区域 -->
    <div class="table-operator">
      <a-button v-has="'apiLog:add'" @click="handleAdd" type="primary" icon="plus">{{ $t('button.new') }}</a-button>
      <a-button v-has="'apiLog:export'" type="primary" icon="download" @click="handleExportXls('接口日志')">{{ $t('button.export') }}</a-button>
      <j-super-query :fieldList="superFieldList" v-has="'apiLog:superQuery'" @handleSuperQuery="handleSuperQuery"/>
    </div>

    <!-- table区域-begin -->
    <div>
      <a-table
        ref="table"
        size="middle"
        :scroll="{ x: true }"
        bordered
        rowKey="id"
        :columns="columns"
        :dataSource="dataSource"
        :pagination="ipagination"
        :loading="loading"
        class="j-table-force-nowrap"
        @change="handleTableChange"
      >
        <template :slot="expandedRowRender" slot-scope="record">
          <div style="margin: 0">
            <div>
              <a-button @click="copyToClipboard(record.requestHeader)" type="link" icon="copy" style="vertical-align: revert;"></a-button>
              <span style="vertical-align: initial; word-break:break-all; white-space:pre-wrap; overflow:hidden; color:#b3b3b3;"><!--请求头:-->{{
                  $t('log.expandHeader')
                }}:</span>
              <a-button @click="record.expandHeader = !record.expandHeader" type="link" icon="down-circle" style="vertical-align: revert;"></a-button>
              <span v-if="record.expandHeader"
                    style="padding:0 0 0 32px;display: block; vertical-align: initial; word-break:break-all; white-space:pre-wrap; overflow:hidden; color:#b3b3b3;">{{
                  record.requestHeader
                }}</span>
            </div>
            <div>
              <a-button @click="copyToClipboard(record.requestBody)" type="link" icon="copy" style="vertical-align: revert;"></a-button>
              <span style="vertical-align: initial; word-break:break-all; white-space:pre-wrap; overflow:hidden; color: saddlebrown;"><!--请求内容-->{{
                  $t('log.requestBody')
                }}:{{ record.requestBody }}</span>
            </div>
            <div>
              <a-button @click="copyToClipboard(record.responseBody)" type="link" icon="copy" style="vertical-align: revert;"></a-button>
              <span style="vertical-align: initial; word-break:break-all; white-space:pre-wrap; overflow:hidden; color:#0066CC;"><!--响应内容-->{{
                  $t('log.responseBody')
                }}:{{ record.responseBody }}</span>
            </div>
            <div v-if="record.exception">
              <a-button @click="copyToClipboard(record.exception)" type="link" icon="copy" style="vertical-align: revert;"></a-button>
              <span style="vertical-align: initial; word-break:break-all; white-space:pre-wrap; overflow:hidden; color:red"><!--异常堆栈信息-->{{
                  $t('log.exceptionStackInfo')
                }}:{{ record.exception }}</span>
            </div>
          </div>
        </template>
        <span slot="action" slot-scope="text, record">
          <a v-has="'apiLog:edit'" @click="handleEdit(record)">{{ $t('button.edit') }}<a-divider type="vertical"/></a>
          <a @click="handleDetail(record)">{{ record.apiName }}</a>
        </span>
      </a-table>
    </div>

    <api-log-modal ref="modalForm" @ok="modalFormOk"></api-log-modal>
  </a-card>
</template>

<script>
import moment from 'moment'
import '@/assets/less/TableExpand.less'
import {mixinDevice} from '@/utils/mixin'
import {JeecgListMixin} from '@/mixins/JeecgListMixin'
import ApiLogModal from './modules/ApiLogModal'
import JEllipsis from '@comp/jeecg/JEllipsis'
import {getApiNameList} from '@api/api'
import ClipboardJS from 'clipboard'

export default {
  name: 'ApiLogList',
  mixins: [JeecgListMixin, mixinDevice],
  components: {
    ApiLogModal,
    JEllipsis
  },
  data() {
    return {
      description: '接口日志管理页面',
      apiNameList: [],
      queryParam: {
        requestTime_begin: this.getDefaultDate(),
        requestTime_end: this.getEndDefaultDate()
      },
      // 表头
      columns: [
        {
          title: this.$t('log.apiName'),
          align: 'center',
          dataIndex: 'apiName'
        },
        {
          title: this.$t('log.apiMethod'),
          align: 'center',
          dataIndex: 'apiMethod'
        },
        {
          title: this.$t('log.requestFrom'),
          align: 'center',
          dataIndex: 'requestFrom'
        },
        {
          title: this.$t('log.ip'),
          align: 'center',
          dataIndex: 'ip'
        },
        {
          title: this.$t('log.url'),
          align: 'center',
          dataIndex: 'url'
        },
        {
          title: this.$t('log.responseBy'),
          align: 'center',
          dataIndex: 'responseBy'
        },
        {
          title: this.$t('log.retCode'),
          align: 'center',
          dataIndex: 'retCode'
        },
        {
          title: this.$t('log.httpCode'),
          align: 'center',
          dataIndex: 'httpCode'
        },
        {
          title: this.$t('api.duration'),
          align: 'center',
          dataIndex: 'duration'
        },
        {
          title: this.$t('log.requestTime'),
          align: 'center',
          dataIndex: 'requestTime'
        },
        {
          title: this.$t('log.responseTime'),
          align: 'center',
          dataIndex: 'responseTime'
        },
      ],
      url: {
        list: '/monitor/apiLog/list',
        delete: '/monitor/apiLog/delete',
        deleteBatch: '/monitor/apiLog/deleteBatch',
        exportXlsUrl: '/monitor/apiLog/exportXls',
        importExcelUrl: 'monitor/apiLog/importExcel'
      },
      dictOptions: {},
      superFieldList: [],
      expandedRowRender: undefined
    }
  },
  created() {
    this.getSuperFieldList()
    this.loadFrom()
  },
  mounted() {
    this.expandedRowRender = "expandedRowRender";
  },
  computed: {
    importExcelUrl: function () {
      return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`
    }
  },
  methods: {
    searchQuery() {
      if (!!this.queryParam.requestBody && this.queryParam.requestBody != '**' && !this.queryParam.apiName) {
        this.$message.warning('请选择接口名称!');
        return
      }
      if (!!this.queryParam.responseBody && this.queryParam.responseBody != '**' && !this.queryParam.apiName) {
        this.$message.warning('请选择接口名称!');
        return
      }
      if (!this.queryParam.requestTime_begin) {
        this.$message.warning('请选择请求开始时间!');
        return
      }
      if (!this.queryParam.requestTime_end) {
        this.$message.warning('请选择请求结束时间!');
        return
      }
      this.loadData(1, this.value)
    },
    searchReset() {
      let that = this;
      Object.keys(that.queryParam).forEach(function (key) {
        that.queryParam[key] = '';
      });
      that.queryParam['requestTime_begin'] = this.getDefaultDate()
      that.queryParam['requestTime_end'] = this.getEndDefaultDate()
    },
    getDefaultDate() {
      var tempDate = new Date()
      tempDate.setDate(tempDate.getDate() - 7)
      return moment(tempDate).utcOffset(480).format('YYYY-MM-DD 00:00:00');
    },
    getEndDefaultDate() {
      var tempDate = new Date()
      tempDate.setDate(tempDate.getDate() + 1)
      return moment(tempDate).utcOffset(480).format('YYYY-MM-DD 00:00:00');
    },
    loadFrom() {
      getApiNameList().then((res) => {
        if (res.success) {
          this.apiNameList = res.result
        }
      })
    },
    copyToClipboard(content) {
      const clipboard = new ClipboardJS('.copy-button', {
        text: () => content
      });

      clipboard.on('success', () => {
        clipboard.destroy();
        this.$message.success('已复制到剪贴板');
      });

      clipboard.on('error', () => {
        clipboard.destroy();
        this.$message.error('复制失败');
      });

      clipboard.onClick(event); // 添加这一行来触发点击事件
    },
    initDictConfig() {
    },
    getSuperFieldList() {
      let fieldList = []
      fieldList.push({type: 'string', value: 'apiName', text: this.$t('log.apiName'), dictCode: ''})
      fieldList.push({type: 'string', value: 'apiMethod', text: this.$t('log.apiMethod'), dictCode: ''})
      fieldList.push({type: 'string', value: 'ip', text: this.$t('log.ip'), dictCode: ''})
      fieldList.push({type: 'string', value: 'requestFrom', text: this.$t('log.requestFrom'), dictCode: ''})
      fieldList.push({type: 'string', value: 'responseBy', text: this.$t('log.responseBy'), dictCode: ''})
      fieldList.push({type: 'string', value: 'url', text: this.$t('log.url'), dictCode: ''})
      fieldList.push({type: 'datetime', value: 'requestTime', text: this.$t('log.requestTime')})
      fieldList.push({type: 'datetime', value: 'responseTime', text: this.$t('log.responseTime')})
      //fieldList.push({type: 'Text', value: 'requestHeader', text: this.$t('log.requestHeader'), dictCode: ''})
      fieldList.push({type: 'Text', value: 'requestBody', text: this.$t('log.requestBody'), dictCode: ''})
      //fieldList.push({type: 'Text', value: 'responseHeader', text: this.$t('log.responseHeader'), dictCode: ''})
      fieldList.push({type: 'Text', value: 'responseBody', text: this.$t('log.responseBody'), dictCode: ''})
      fieldList.push({type: 'string', value: 'duration', text: this.$t('log.duration'), dictCode: ''})
      fieldList.push({type: 'int', value: 'httpCode', text: this.$t('log.httpCode'), dictCode: ''})
      fieldList.push({type: 'int', value: 'retCode', text: this.$t('log.retCode'), dictCode: ''})
      fieldList.push({type: 'Text', value: 'exception', text: this.$t('log.exception'), dictCode: ''})
      fieldList.push({type: 'datetime', value: 'createTime', text: this.$t('log.createTime')})
      this.superFieldList = fieldList
    }
  }
}
</script>
<style scoped>
@import '~@assets/less/common.less';
</style>