feature/main20240421
郭嘉 6 months ago
parent 2aca9e3047
commit 592cab4819
  1. 11
      app/admin/controller/Feedback.php
  2. 1
      public/install/data/install_struct.sql

@ -47,6 +47,17 @@ class Feedback extends Controller
return $this->renderError('添加失败');
}
public function edit(): Json
{
// 商城详情
$model = feedbackModel::detail($this->postForm()['feedback_id']);
// 更新记录
if (!$model->edit($this->postForm())) {
return $this->renderError($model->getError() ?: '更新失败');
}
return $this->renderSuccess('更新成功');
}
/**
* 列表

@ -1784,6 +1784,7 @@ CREATE TABLE `yoshop_feedback` (
`merchant_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '商户ID、商店ID 隔离商城里面的商户',
`imgs` varchar(200) NOT NULL DEFAULT '' COMMENT '图片ID',
`suggest` longtext NOT NULL COMMENT '反馈建议',
`answer` longtext NOT NULL COMMENT '管理员回答',
`type` int(1) unsigned NOT NULL DEFAULT '1' COMMENT '问题类型',
`user_name` varchar(100) NOT NULL DEFAULT '' COMMENT '买家用户名',
`real_name` varchar(100) NOT NULL DEFAULT '' COMMENT '真实用户名',

Loading…
Cancel
Save