|
@@ -3,6 +3,8 @@
|
|
|
namespace app\admin\controller;
|
|
|
|
|
|
use app\common\controller\Backend;
|
|
|
+use app\common\model\ProduceGzdx;
|
|
|
+use app\common\service\ProduceOrderService;
|
|
|
|
|
|
/**
|
|
|
* 产品信息管理
|
|
@@ -18,11 +20,11 @@ class Produce extends Backend
|
|
|
*/
|
|
|
protected $model = null;
|
|
|
|
|
|
- protected $operatorData = [
|
|
|
- 'cucc' => '联通',
|
|
|
- 'cmcc' => '移动',
|
|
|
- 'ctcc' => '电信',
|
|
|
- ];
|
|
|
+ // protected $operatorData = [
|
|
|
+ // 'cucc' => '联通',
|
|
|
+ // 'cmcc' => '移动',
|
|
|
+ // 'ctcc' => '电信',
|
|
|
+ // ];
|
|
|
|
|
|
protected $homeLocationType = [
|
|
|
'address' => '根据收货地址自动选择(该选项无需单独填写号码归属地)',
|
|
@@ -39,7 +41,8 @@ class Produce extends Backend
|
|
|
{
|
|
|
parent::_initialize();
|
|
|
$this->model = new \app\common\model\Produce;
|
|
|
- $this->assign('operatorData', $this->operatorData);
|
|
|
+
|
|
|
+ $this->assign('operatorData', ProduceOrderService::PRODUCE_TYPE);
|
|
|
$this->assign('homeLocationType', $this->homeLocationType);
|
|
|
$this->assign('numSelectType', $this->numSelectType);
|
|
|
}
|
|
@@ -74,9 +77,10 @@ class Produce extends Backend
|
|
|
->order($sort, $order)
|
|
|
->paginate($limit);
|
|
|
|
|
|
- foreach ($list as $row) {
|
|
|
- $row->operator_name = $this->operatorData[$row->operator] ?? '未知';
|
|
|
- }
|
|
|
+ // $operatorData = ProduceOrderService::PRODUCE_TYPE;
|
|
|
+ // foreach ($list as $row) {
|
|
|
+ // $row->operator_name = $operatorData[$row->operator] ?? '未知';
|
|
|
+ // }
|
|
|
|
|
|
$result = array("total" => $list->total(), "rows" => $list->items());
|
|
|
|
|
@@ -84,5 +88,46 @@ class Produce extends Backend
|
|
|
}
|
|
|
return $this->view->fetch();
|
|
|
}
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 查看
|
|
|
+ */
|
|
|
+ public function select_index()
|
|
|
+ {
|
|
|
+ //设置过滤方法
|
|
|
+ $produceType = $this->request->request('produce_type');
|
|
|
+ $model = $this->model;
|
|
|
+ $field = '';
|
|
|
+ if ($produceType == 'cucc') {
|
|
|
+ $model = $this->model;
|
|
|
+ $field = 'id as value, local_code as name';
|
|
|
+ } else if ($produceType == 'gz_ctcc') {
|
|
|
+ $model = new ProduceGzdx();
|
|
|
+ $field = 'id as value, upstream_no as name';
|
|
|
+ }
|
|
|
+
|
|
|
+ $list = $model->field($field)->select();
|
|
|
+
|
|
|
+ return $this->success('', '', $list);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 产品类型
|
|
|
+ *
|
|
|
+ * @return void
|
|
|
+ */
|
|
|
+ public function produce_type()
|
|
|
+ {
|
|
|
+ $operatorData = ProduceOrderService::PRODUCE_TYPE;
|
|
|
+ $result = [];
|
|
|
+ foreach ($operatorData as $key => $value) {
|
|
|
+ $result[] = [
|
|
|
+ 'value' => $key,
|
|
|
+ 'name' => $value,
|
|
|
+ ];
|
|
|
+ }
|
|
|
+
|
|
|
+ return $this->success('', '', $result);
|
|
|
+ }
|
|
|
|
|
|
}
|