Authored by 毕凯

无用代码删除

<template>
<div>
<div class="filter">
<Input v-model="value" placeholder="日志集" style="width: 300px"></Input>
<Input v-model="value" placeholder="日志主题" style="width: 300px"></Input>
<Input v-model="value" placeholder="检索关键词多个以空格分隔" style="width: 300px"></Input>
<Select v-model="model1" style="width:200px">
<Option v-for="item in cityList" :value="item.value" :key="item.value">{{ item.label }}</Option>
</Select>
</div>
<Table highlight-row ref="currentRowTable" :columns="columns" :data="logs"></Table>
</div>
</template>
... ...