callLinuxCommand.vue 2.12 KB
<template xmlns:el-col="http://www.w3.org/1999/html">
  <div>
    <br/>
    <span>查询打点服务器log</span>
    <el-table
      :data="callLinuxCommand"
      border
      style="width: 100%"
      :header-cell-style="{background: 'deepskyblue', color: 'snow'}">
      <el-table-column
        prop="pt"
        label="打点编号"
        min-width="2">
      </el-table-column>
      <el-table-column
        prop="h_plat"
        label="手机系统(0-IOS,1-安卓)"
        min-width="1">
      </el-table-column>
      <el-table-column
        prop="pi_ext_shareInfo.type"
        label="类型"
        min-width="1">
      </el-table-column>
      <el-table-column
        prop="now"
        label="时间戳"
        min-width="2">
      </el-table-column>
    </el-table>
  </div>
</template>

<script>
  export default {
    data() {
      return {
        size: this.$route.query.size,
        huanjing: this.$route.query.huanjing,
        callLinuxCommand: []
      }
    },
    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/callLinuxCommand?'+this.$qs.stringify({
          size: this.size,
          type: this.huanjing
        }),config).then((res)=>{
          console.log(res.data)
          if(res.data=='sizetoolong') {
            this.$message({
              showClose: true,
              message: '查询行数要小于1000条',
              type: 'error'
            });
          } else {
            this.callLinuxCommand=res.data
          }
          loading.close();
        }).catch(error=>{
          console.log(error);
          loading.close();
          this.$message({
            showClose: true,
            message: '服务器处理失败,请核对参数!',
            type: 'error'
          });
        })
      }
    }
  }
</script>