|
@@ -1,36 +1,17 @@
|
|
|
<template>
|
|
|
- <zz-table
|
|
|
- :cols="cols"
|
|
|
- :settings="{ showIndex: true, stripe: true }"
|
|
|
- :loading="mixins_onQuery"
|
|
|
- :data="mixins_list"
|
|
|
- :pageset="mixins_pageset"
|
|
|
- @page-change="pageChange"
|
|
|
- @selection-change="selectionChange"
|
|
|
- >
|
|
|
- <!-- <template slot-scope="scope" slot="opt">
|
|
|
- <div class="opt">
|
|
|
- <el-tooltip effect="light" placement="bottom" content="详情">
|
|
|
- <i class="zoniot_font zoniot-icon-xiangqing" @click="lookDetail(scope.row)"></i>
|
|
|
- </el-tooltip>
|
|
|
- <el-tooltip effect="light" placement="bottom" content="终止">
|
|
|
- <i class="zoniot_font zoniot-icon-zhongzhi redText" v-if="scope.row.adStatus !== 3" @click="Scrap(scope.row.id)"></i>
|
|
|
- <i v-else class="zoniot_font zoniot-icon-zhongzhi ashText"></i>
|
|
|
- </el-tooltip>
|
|
|
-
|
|
|
- <el-tooltip effect="light" placement="bottom" content="删除">
|
|
|
- <i class="zoniot_font zoniot-icon-shanchu redText" @click="deluserbyidFn(scope.row.id)"></i>
|
|
|
- </el-tooltip>
|
|
|
- </div>
|
|
|
- </template> -->
|
|
|
- </zz-table>
|
|
|
+ <el-table :data="tableData" border style="width: 100%">
|
|
|
+ <el-table-column label="No." type="index" :width="70" align="left"></el-table-column>
|
|
|
+ <el-table-column prop="date" label="告警名称"> </el-table-column>
|
|
|
+ <el-table-column prop="date" label="告警时间" width="180"> </el-table-column>
|
|
|
+ <el-table-column prop="date" label="告警地址" > </el-table-column>
|
|
|
+ </el-table>
|
|
|
</template>
|
|
|
<script>
|
|
|
export default {
|
|
|
props: ['params'],
|
|
|
data() {
|
|
|
return {
|
|
|
- formData: {}
|
|
|
+ tableData:[]
|
|
|
};
|
|
|
},
|
|
|
methods: {
|