Nenhuma descrição
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

Form.php 1.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\admin\model;
  14. use think\Db;
  15. use think\Model;
  16. class Form extends Model
  17. {
  18. public $admin_lang = 'cn';
  19. // 初始化
  20. protected function initialize()
  21. {
  22. // 需要调用`Model`的`initialize`方法
  23. parent::initialize();
  24. $this->admin_lang = get_admin_lang();
  25. }
  26. // 查询表单提交的数量
  27. public function GetFormListCount($form_ids = [])
  28. {
  29. // 查询条件
  30. $where = [
  31. 'typeid' => ['IN', $form_ids],
  32. 'form_type' => 1,
  33. 'lang' => $this->admin_lang,
  34. ];
  35. // 执行查询
  36. $form_list_count = Db::name('guestbook')
  37. ->field('typeid as form_id, count(aid) AS count')
  38. ->where($where)
  39. ->group('form_id')
  40. ->getAllWithIndex('form_id');
  41. // 返回结果
  42. return $form_list_count;
  43. }
  44. /**
  45. * 删除的后置操作方法
  46. * 自定义的一个函数 用于数据删除后做的相应处理操作, 使用时手动调用
  47. * @param int $aid
  48. */
  49. public function afterDel($aidArr = array())
  50. {
  51. if (is_string($aidArr)) {
  52. $aidArr = explode(',', $aidArr);
  53. }
  54. // 同时删除属性内容
  55. Db::name('guestbook_attr')->where([
  56. 'aid' => ['IN', $aidArr]
  57. ])->delete();
  58. }
  59. }