@@ -235,16 +235,9 @@ yarn build
### TODO List
-* 内容管理-农事天地
- * 列表 缺筛选条件
- - 姓名 user_name
- - 状态 track_status 0 隐藏 1 显示
- - 发布时间 start_time 开始时间 end_time 结束时间
- * 列表 缺字段
- - 农户名字 user_name
-
* 内容管理-通知管理
- * 缺列表、发布、编辑(含置顶)、删除接口
+ * 列表
+ - 状态(隐藏/显示)是怎么控制的
* 内容管理-村长说农事
* 新增/编辑 缺接口
@@ -139,7 +139,7 @@ export default {
dialog: !!this.value,
form: {
'user_id': '',
- 'user_name': '', // todo 发布人姓名
+ 'user_name': '',
'track_content': '',
'track_img_url': [],
'track_status': 1 // 状态(0隐藏1显示)
@@ -1,7 +1,6 @@
<template>
<div class="padding-20">
<div class="search-box">
- <!--TODO 筛选-->
<el-form
ref="form"
:inline="true"
@@ -55,7 +54,6 @@
border
:max-height="vheight">
<el-table-column label="发布人" prop="user_id" min-width="140">
- <!-- todo 农户名字 -->
<template slot-scope="scope">{{ scope.row.user_id }}{{ scope.row.user_name }}</template>
</el-table-column>
<el-table-column label="发布内容" prop="track_content" min-width="200" show-overflow-tooltip></el-table-column>