diff --git a/app/controller/admin/Form.php b/app/controller/admin/Form.php
index 7c0c5ae5..81ec3861 100644
--- a/app/controller/admin/Form.php
+++ b/app/controller/admin/Form.php
@@ -272,7 +272,7 @@ class Form extends Base {
* @author K先森 <77413254@qq.com>
*/
public function status() {
- $id = $this->getArrayParam('id');
+ $id = $this->request->param('form_id', 0);
$status = input('status', '0', 'trim,intval');
if (!$id) {
@@ -280,7 +280,7 @@ class Form extends Base {
}
$map['id'] = array('IN', $id);
- $result = db('form')->where($map)->setField('status', $status);
+ $result = FormM::where($map)->update(['status'=>$status]);
if ($result) {
return $this->success("设置成功!");
} else {
diff --git a/app/model/Model.php b/app/model/Model.php
index c74badcc..3f91e238 100644
--- a/app/model/Model.php
+++ b/app/model/Model.php
@@ -41,7 +41,7 @@ class Model extends \think\Model {
'title' => ['name' => 'title', 'title' => '标题', 'type' => 'text', 'length' => 200, 'extra' => '', 'remark' => '标题', 'is_show' => 1, 'is_must' => 1, 'value' => ''],
'category_id' => ['name' => 'category_id', 'title' => '栏目', 'type' => 'bind', 'length' => 10, 'extra' => 'category:tree', 'remark' => '栏目', 'is_show' => 1, 'is_must' => 1, 'value' => '0'],
'uid' => ['name' => 'uid', 'title' => '用户UID', 'type' => 'num', 'length' => 11, 'extra' => '', 'remark' => '用户UID', 'is_show' => 0, 'is_must' => 1, 'value' => '0'],
- 'cover_id' => ['name' => 'cover_id', 'title' => '内容封面', 'type' => 'image', 'length' => 10, 'extra' => '', 'remark' => '内容封面', 'is_show' => 1, 'is_must' => 0, 'value' => ''],
+ 'cover_id' => ['name' => 'cover_id', 'title' => '内容封面', 'type' => 'image', 'length' => 10, 'extra' => '', 'remark' => '内容封面', 'is_show' => 1, 'is_must' => 0, 'value' => '0'],
'description' => ['name' => 'description', 'title' => '内容描述', 'type' => 'textarea', 'length' => '', 'extra' => '', 'remark' => '内容描述', 'is_show' => 1, 'is_must' => 0, 'value' => ''],
'content' => ['name' => 'content', 'title' => '内容', 'type' => 'editor', 'length' => '', 'extra' => '', 'remark' => '内容', 'is_show' => 1, 'is_must' => 0, 'value' => ''],
'status' => ['name' => 'status', 'title' => '数据状态', 'type' => 'select', 'length' => 2, 'extra' => "-1:删除\r\n0:禁用\r\n1:正常\r\n2:待审核\r\n3:草稿", 'remark' => '数据状态', 'is_show' => 1, 'is_must' => 1, 'value' => '1'],
diff --git a/view/admin/model/index.html b/view/admin/model/index.html
index c37f4bd2..c935ddb9 100644
--- a/view/admin/model/index.html
+++ b/view/admin/model/index.html
@@ -51,7 +51,12 @@
{$item['status'] ? '禁用' : '启用'}
编辑
删除
- 数据
+
+ {if $item['status']}
+ 数据
+ {else}
+ 数据
+ {/if}
{/volist}