Sin descripción
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

FormField.php 3.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: admin
  5. * Date: 2022/2/24
  6. * Time: 15:11
  7. */
  8. namespace app\admin\model;
  9. use think\Db;
  10. use think\Model;
  11. class FormField extends Model
  12. {
  13. // 初始化
  14. protected function initialize()
  15. {
  16. // 需要调用`Model`的`initialize`方法
  17. parent::initialize();
  18. }
  19. // 获取表单数据(单条\全部)
  20. public function GetFormFieldData($FormID = null, $FieldID = null, $FieID = null, $Order = null)
  21. {
  22. $Order = !empty($Order) ? $Order : 'sort_order asc, form_id desc, field_id asc';
  23. $FieID = !empty($FieID) ? $FieID : '*';
  24. // 查询条件
  25. $where = [
  26. 'lang' => get_admin_lang(),
  27. ];
  28. if (!empty($FormID)) $where['form_id'] = $FormID;
  29. // 执行查询
  30. if (!empty($FieldID)) {
  31. $where['field_id'] = $FieldID;
  32. $form_field = $this->where($where)->field($FieID)->find();
  33. } else {
  34. $form_field = $this->where($where)->field($FieID)->order($Order)->select();
  35. }
  36. //指定不出现下级的
  37. $field_region_all_type = config('global.field_region_all_type');
  38. //拆解关联区域的默认值字段
  39. foreach ($form_field as $key=>$val){
  40. $region = [
  41. 'parent_id' => '-1',
  42. 'region_id' => '-1',
  43. 'region_names' => '',
  44. 'region_ids' => '',
  45. ];
  46. if ($val['field_type'] == 'region'){
  47. $dfvalue = unserialize($val['field_value']);
  48. if (0 == $dfvalue['region_id']) {
  49. $parent_id = $dfvalue['region_id'];
  50. } else {
  51. // 查询当前选中的区域父级ID
  52. $parent_id = Db::name('region')->where("id", $dfvalue['region_id'])->getField('parent_id');
  53. if (0 == $parent_id) {
  54. $parent_id = $dfvalue['region_id'];
  55. }
  56. }
  57. $city_list = [];
  58. if ($parent_id && !in_array($parent_id,$field_region_all_type)){
  59. $city_list = Db::name('region')->where("parent_id", $parent_id)->select();
  60. }
  61. // 加载数据到模板
  62. $region = [
  63. 'city_list' => $city_list,
  64. 'parent_id' => $parent_id,
  65. 'region_id' => $dfvalue['region_id'],
  66. 'region_names' => $dfvalue['region_names'],
  67. 'region_ids' => $dfvalue['region_ids'],
  68. ];
  69. }
  70. $form_field[$key]['region'] = $region;
  71. }
  72. // 返回结果
  73. return $form_field;
  74. }
  75. // 删除表单字段
  76. public function FormFieldDelete($post = [])
  77. {
  78. // 删除条件
  79. $where = [
  80. 'lang' => get_admin_lang(),
  81. 'form_id' => $post['form_id'],
  82. 'field_id' => ['NOT IN', $post['field_id']]
  83. ];
  84. // 执行删除
  85. $ResultID = $this->where($where)->delete();
  86. // 返回结果
  87. return $ResultID;
  88. }
  89. // 查询字段数量
  90. public function GetFormFieldTotal($form_ids = [])
  91. {
  92. // 查询条件
  93. $where = [
  94. 'form_id' => ['IN', $form_ids],
  95. ];
  96. // 执行查询
  97. $form_field_total = $this ->field('form_id, count(form_id) AS total')
  98. ->where($where)
  99. ->group('form_id')
  100. ->getAllWithIndex('form_id');
  101. // 返回结果
  102. return $form_field_total;
  103. }
  104. }