Produce.php 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. <?php
  2. namespace app\admin\controller;
  3. use app\common\controller\Backend;
  4. use app\common\model\ProduceGzdx;
  5. use app\common\service\ProduceOrderService;
  6. /**
  7. * 产品信息管理
  8. *
  9. * @icon fa fa-circle-o
  10. */
  11. class Produce extends Backend
  12. {
  13. /**
  14. * Produce模型对象
  15. * @var \app\common\model\Produce
  16. */
  17. protected $model = null;
  18. // protected $operatorData = [
  19. // 'cucc' => '联通',
  20. // 'cmcc' => '移动',
  21. // 'ctcc' => '电信',
  22. // ];
  23. protected $homeLocationType = [
  24. 'address' => '根据收货地址自动选择(该选项无需单独填写号码归属地)',
  25. 'assign' => '输入运营商提供的指定归属地编码',
  26. ];
  27. protected $numSelectType = [
  28. 1 => '普通选号',
  29. 2 => '靓号选号',
  30. 3 => '全部',
  31. ];
  32. public function _initialize()
  33. {
  34. parent::_initialize();
  35. $this->model = new \app\common\model\Produce;
  36. $this->assign('operatorData', ProduceOrderService::PRODUCE_TYPE);
  37. $this->assign('homeLocationType', $this->homeLocationType);
  38. $this->assign('numSelectType', $this->numSelectType);
  39. }
  40. public function import()
  41. {
  42. parent::import();
  43. }
  44. /**
  45. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  46. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  47. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  48. */
  49. /**
  50. * 查看
  51. */
  52. public function index()
  53. {
  54. //设置过滤方法
  55. $this->request->filter(['strip_tags', 'trim']);
  56. if ($this->request->isAjax()) {
  57. //如果发送的来源是Selectpage,则转发到Selectpage
  58. if ($this->request->request('keyField')) {
  59. return $this->selectpage();
  60. }
  61. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  62. $list = $this->model
  63. ->where($where)
  64. ->order($sort, $order)
  65. ->paginate($limit);
  66. // $operatorData = ProduceOrderService::PRODUCE_TYPE;
  67. // foreach ($list as $row) {
  68. // $row->operator_name = $operatorData[$row->operator] ?? '未知';
  69. // }
  70. $result = array("total" => $list->total(), "rows" => $list->items());
  71. return json($result);
  72. }
  73. return $this->view->fetch();
  74. }
  75. /**
  76. * 查看
  77. */
  78. public function select_index()
  79. {
  80. //设置过滤方法
  81. $produceType = $this->request->request('produce_type');
  82. $model = $this->model;
  83. $field = '';
  84. if ($produceType == 'cucc') {
  85. $model = $this->model;
  86. $field = 'id as value, local_code as name';
  87. } else if ($produceType == 'gz_ctcc') {
  88. $model = new ProduceGzdx();
  89. $field = 'id as value, upstream_no as name';
  90. }
  91. $list = $model->field($field)->select();
  92. return $this->success('', '', $list);
  93. }
  94. /**
  95. * 产品类型
  96. *
  97. * @return void
  98. */
  99. public function produce_type()
  100. {
  101. $operatorData = ProduceOrderService::PRODUCE_TYPE;
  102. $result = [];
  103. foreach ($operatorData as $key => $value) {
  104. $result[] = [
  105. 'value' => $key,
  106. 'name' => $value,
  107. ];
  108. }
  109. return $this->success('', '', $result);
  110. }
  111. }