Questionnaire.php 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. <?php
  2. namespace app\admin\controller;
  3. use think\App;
  4. class Questionnaire extends Auth
  5. {
  6. public function __construct(App $app = null) {
  7. parent::__construct($app);
  8. $this->model= new \app\common\model\Questionnaire();
  9. $this->table= $this->model->table;
  10. $this->table1= 'questionnaire_record';
  11. }
  12. public function index(){
  13. if(request()->isAjax()){
  14. //分页参数
  15. $length = input('rows',10,'intval'); //每页条数
  16. $page = input('page',1,'intval'); //第几页
  17. $start = ($page - 1) * $length; //分页开始位置
  18. //排序
  19. $sortRow = input('sidx','id','trim'); //排序列
  20. $sort = input('sord','desc','trim'); //排序方式
  21. $order = $sortRow.' '.$sort;
  22. $title = input('title','','trim');
  23. if($title){
  24. $map[] = ['title','like','%'.$title.'%'];
  25. }
  26. $enable = input('enable','','trim');
  27. if($enable != ''){
  28. $map[] = ['enable','=',$enable];
  29. }
  30. $map[] = ['del','=',0];
  31. $map[] = ['org_id','=',$this->orgId];
  32. $map= empty($map) ? true: $map;
  33. //数据查询
  34. $lists = db($this->table)->where($map)->limit($start,$length)->order($order)->select();
  35. foreach ($lists as $k=>$v){
  36. $lists[$k]['records'] = db('questionnaire_record')
  37. ->where('questionnaire_id',$v['id'])
  38. ->count();
  39. }
  40. //数据返回
  41. $totalCount = db($this->table)->where($map)->count();
  42. $totalPage = ceil($totalCount/$length);
  43. $result['page'] = $page;
  44. $result['total'] = $totalPage;
  45. $result['records'] = $totalCount;
  46. $result['rows'] = $lists;
  47. return json($result);
  48. }else{
  49. $this->assign('m_name','问卷调查列表');
  50. return $this->fetch();
  51. }
  52. }
  53. public function record($id){
  54. if(request()->isAjax()){
  55. //分页参数
  56. $length = input('rows',10,'intval'); //每页条数
  57. $page = input('page',1,'intval'); //第几页
  58. $start = ($page - 1) * $length; //分页开始位置
  59. //排序
  60. $sortRow = input('sidx','id','trim'); //排序列
  61. $sort = input('sord','desc','trim'); //排序方式
  62. $order = $sortRow.' '.$sort;
  63. $title = input('title','','trim');
  64. if($title){
  65. $map[] = ['title','like','%'.$title.'%'];
  66. }
  67. $enable = input('enable','','trim');
  68. if($enable != ''){
  69. $map[] = ['enable','=',$enable];
  70. }
  71. $map[] = ['questionnaire_id','=',$id];
  72. $map= empty($map) ? true: $map;
  73. //数据查询
  74. $lists = db($this->table1)->where($map)->limit($start,$length)->order($order)->select();
  75. //数据返回
  76. $totalCount = db($this->table1)->where($map)->count();
  77. $totalPage = ceil($totalCount/$length);
  78. $result['page'] = $page;
  79. $result['total'] = $totalPage;
  80. $result['records'] = $totalCount;
  81. $result['rows'] = $lists;
  82. return json($result);
  83. }else{
  84. $info = db($this->table)
  85. ->where('id',$id)
  86. ->find();
  87. $this->assign('m_name','['.$info['title'].']'.'回收记录');
  88. $this->assign('id',$id);
  89. return $this->fetch();
  90. }
  91. }
  92. /**
  93. * 新增/编辑
  94. */
  95. public function add($id=0){
  96. if(request()->isPost()){
  97. $question = input('question');
  98. $title = input('title');
  99. $description = input('description');
  100. if(!$question){
  101. $this->error('未设置题目');
  102. }
  103. if(!$title){
  104. $this->error('未设置名称');
  105. }
  106. $data = [
  107. 'title' => $title,
  108. 'description' => $description,
  109. 'questions' => $question,
  110. 'enable' => 0,
  111. 'user_id' => $this->userId,
  112. 'create_time' => getTime(),
  113. 'org_id' => $this->orgId
  114. ];
  115. $ret = db($this->table)->insertGetId($data);
  116. if($ret){
  117. $this->success('操作成功');
  118. }else{
  119. $this->error('操作失败');
  120. }
  121. }else{
  122. return $this->fetch();
  123. }
  124. }
  125. public function share($id){
  126. $info =db($this->table)
  127. ->where('id',$id)
  128. ->find();
  129. $strs = aes_encrypt('wj',config('app.encryption_key'));
  130. $code = getSite().'/h5/Wj/index?id='.$id.'&code='.$strs.'&orgId='.$info['org_id'];
  131. $this->assign('url',$code);
  132. return $this->fetch();
  133. }
  134. /**
  135. * 删除记录
  136. * @param int $id
  137. */
  138. public function del($id=0){
  139. if(!$id){
  140. $this->error('参数错误');
  141. }
  142. $res = db($this->table)->where('id',$id)->setField('del',1);
  143. if($res){
  144. $this->success('删除成功');
  145. }else{
  146. $this->error('删除失败');
  147. }
  148. }
  149. public function fb($id=0,$status=0){
  150. $enable = $status==1?0:1;
  151. $res = db($this->table)->where('id',$id)->setField('enable',$enable);
  152. if($res){
  153. $this->success('操作成功');
  154. }else{
  155. $this->error('操作失败');
  156. }
  157. }
  158. /**
  159. * 改变字段值
  160. * @param int $fv
  161. * @param string $fn
  162. * @param int $fv
  163. */
  164. public function changeField($id=0,$fn='',$fv=0){
  165. if(!$fn||!$id){
  166. $this->error('参数错误');
  167. }
  168. $res = db($this->table)->where('id',$id)->setField($fn,$fv);
  169. if($res){
  170. $this->success('操作成功');
  171. }else{
  172. $this->error('操作失败');
  173. }
  174. }
  175. //回收记录详情
  176. public function info($id){
  177. $info = $this->model->record_info($id);
  178. if (!$info) {
  179. exit('数据不存在');
  180. }
  181. $this->assign('info',$info);
  182. return $this->fetch();
  183. }
  184. }