|
@@ -25,7 +25,6 @@
|
|
|
</el-form>
|
|
|
<el-table v-loading='loading' :data="list" style="width: 100%;margin-top:10px;" height="50vh">
|
|
|
<el-table-column align="center" prop="name" label="公告名称"/>
|
|
|
- <el-table-column align="center" prop="ctime" label="创建时间"/>
|
|
|
<el-table-column align="center" prop="date" label="状态">
|
|
|
<template slot-scope="scope">
|
|
|
<span v-if="scope.row.status==1">编辑中</span>
|
|
@@ -33,6 +32,7 @@
|
|
|
<span v-if="scope.row.status==-1">下线</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column align="center" prop="ctime" label="创建时间"/>
|
|
|
<el-table-column align="center" prop="date" label="操作">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button @click="handleEdit(scope.row)" size="mini" type="warning">编辑</el-button>
|