callLinuxLogByUid.vue 1.52 KB
<template xmlns:el-col="http://www.w3.org/1999/html">
  <div>
    <br/>
    <span>查询服务器log,最多展示100条</span>
    <el-table
      :data="callLinuxLogByUid"
      border
      style="width: 100%"
      :header-cell-style="{background: 'deepskyblue', color: 'snow'}">
      <el-table-column
        prop="line"
        label="详细LOG"
        min-width="1">
      </el-table-column>
    </el-table>
  </div>
</template>

<script>
  export default {
    data() {
      return {
        uid: this.$route.query.uid,
        method: this.$route.query.method,
        callLinuxLogByUid: []
      }
    },
    mounted() {
      this.activity()
    },
    methods: {
      activity() {
        const loading = this.$loading({
          lock: true,
          text: '加载中...',
          spinner: 'el-icon-loading',
          background: 'rgba(0, 0, 0, 0.7)'
        });
        let config = {
          headers: {
            'Content-Type': 'application/x-www-form-urlencoded'
          }
        }
        this.$http.get('/tool/callLinuxLogByUid?'+this.$qs.stringify({
          uid: this.uid,
          method: this.method
        }),config).then((res)=>{
          console.log(res.data)
          this.callLinuxLogByUid=res.data
          loading.close();
        }).catch(error=>{
          console.log(error);
          loading.close();
          this.$message({
            showClose: true,
            message: '服务器处理失败,请核对参数!',
            type: 'error'
          });
        })
      }
    }
  }
</script>